html,
body{
    height:100%;
}

body{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

footer{
    margin-top:auto;
    margin-bottom:0;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#ffffff;
    color:#333;
    line-height:1.6;
}

a{
    text-decoration:none;
    color: #554949;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width: 1920px;
    max-width:95%;
    margin:auto;
}

header{
    background:#fff;
    padding:15px 0;
    border-bottom:1px solid #ddd;
}

.logo{
    font-size:42px;
    font-weight:700;
    color:#1f3558;
}

#scrollTopBtn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0d6efd;
    color:#fff;
    border-radius:4px;
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

#scrollTopBtn.show{
    opacity:1;
    visibility:visible;
}
/*footer*/
/* ==========================
   FOOTER
========================== */

footer{
    background:#fff;
    border-top:1px solid #e5e5e5;
    margin-top:40px;
    padding:30px 0;
}

.footer-content{
    text-align:center;
}

.footer-content p{
    margin-bottom:8px;
    color:#555;
    font-size:15px;
}

.footer-content p:last-child{
    margin-bottom:0;
}

.social-links{
    margin-top:15px;
    display:flex;
    justify-content:center;
    gap:12px;
}

.social-links a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    text-decoration:none;

    background:#f5f5f5;
    color:#1f3558;

    transition:.3s;
}

.social-links a:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateY(-3px);
}

.social-links .fa-facebook{
    color:#1877f2;
}

.social-links .fa-youtube{
    color:#ff0000;
}

.social-links .fa-instagram{
    color:#e4405f;
}

.social-links .fa-x-twitter{
    color:#000;
}

/* Footer Links */

.footer-links{
    margin-top:15px;
}

.footer-links a{
    color:#555;
    margin:0 10px;
    font-size:14px;
}

.footer-links a:hover{
    color:#0d6efd;
}
/*share buttons*/
.share{
margin-top:15px;
display:flex;
gap:8px;
}

.share a{
width:30px;
height:30px;
display:flex;
align-items:center;
justify-content:center;
border-radius:4px;
color:#fff;
font-size:14px;
text-decoration:none;
}

.whatsapp{background:#25D366;}
.facebook{background:#1877f2;}
.twitter{background:#1DA1F2;}
.telegram{background:#229ED9;}
.sharebtn{background:#3b5998;}

.pagination{
display:flex;
justify-content:center;
gap:10px;
padding:30px 0;
}

.pagination a{
padding:10px 15px;
border:1px solid #ddd;
text-decoration:none;
background:#fff;
color:#333;
}

.pagination a.active{
background:#0d6efd;
color:#fff;
}
