/* ===========================
   Newsletter
=========================== */

.newsletter {
    margin-top: 20px !important;
    margin-bottom: 10px !important;
}

.newsletter .container{

    width:min(99%,1400px);

    margin:0 auto;

    background:#061b49;
    border-radius:18px;

    padding:8px;

    display:flex;
    align-items:center;
    justify-content:space-between;

}

.newsletter-left{

    display:flex;
    align-items:center;
    gap:18px;

    flex:1;

}

.newsletter-icon img{

    width:64px;
    height:64px;
    object-fit:contain;

}

.newsletter-content h3{

    color:#fff;
    font-size:18px;
    margin:0 0 8px;

}

.newsletter-content p{

    color:#d7dceb;
    margin:0;font-size: 14px;

}

.newsletter-center {
    flex: 1;
    max-width: 380px;
    flex: 0 0 380px;
}

}

.newsletter-form{

    display:flex;
    background:#fff;
    border-radius:10px;
    overflow:hidden;

}

.newsletter-form input{

    flex:1;
    border:none;
    height:44px;
    padding:0 20px;
    font-size:15px;

}

.newsletter-form input:focus{

    outline:none;

}

.newsletter-form button{

    width:120px;
  height:44px;
    border:none;

    background:#f6a800;

    color:#fff;

    cursor:pointer;

    font-weight:700;

}

.newsletter-right{

    display:flex;
    gap:35px;

}

.newsletter-feature{

    display:flex;
    align-items:center;
    gap:12px;

}

.newsletter-feature img{

    width:40px;
    height:40px;

}

.newsletter-feature strong{

    display:block;
    color:#fff;
    font-size:16px;

}

.newsletter-feature span{

    color:#d7dceb;
    font-size:13px;

}


/* ===========================
   Footer
=========================== */

.footer {
    background: #061b49;
    color: #fff;
    max-width: 1400px;
    margin: 0 auto;
}
.footer .container{

    width:min(100%,1400px);

    margin:auto;

    padding:20px 15px 16px;

    box-sizing:border-box;

}

.footer-grid{

    display:grid;

    grid-template-columns:
        1.2fr
        1fr
        1fr
        1fr
        1.2fr;

    gap:24px;

}

.footer-column h4{

    margin:0 0 22px;
    font-size:20px;

}

.footer-column ul{

    margin:0;
    padding:0;
    list-style:none;

}

.footer-column li{

    margin-bottom:14px;

}

.footer-column a{

    color:#d8dceb;
    text-decoration:none;
    transition:.25s;

}

.footer-column a:hover{

    color:#f6a800;

}

.footer-column p{

    color:#d8dceb;
    line-height:2;

}

.footer-logo{

    height:60px;
    margin-bottom:28px;

}

.footer-contact{

    list-style:none;
    padding:0;
    margin:0;

}

.footer-contact li{

    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;

}

.footer-contact img{

    width:18px;
    height:18px;

}

.footer-social{

    display:flex;
    gap:12px;
    margin-top:25px;

}

.footer-social img{

    width:32px;
    height:32px;
    transition:.3s;

}

.footer-social img:hover{

    transform:translateY(-4px);

}


/* ===========================
Bottom
=========================== */

.footer-bottom{

    background:#041433;

}

.footer-bottom .container{
width:min(100%,1400px);

margin:auto;

padding:12px 15px;

box-sizing:border-box;
    display:flex;
    align-items:center;

    position:relative;
}

.footer-payments img{

    height: 47px;
    width: 300px;

}

.footer-copy{
    position:absolute;
    left:50%;
    transform:translateX(-50%);

    text-align:center;
    color:#c8cfdd;
    font-size:14px;
    line-height:1.7;
}
.footer-payments{
    margin-left:auto;
}

.back-top{
    position: fixed;
    bottom: 25px;
    left: 25px;
    border: none;
    background: transparent;
    box-shadow: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition: all .3s ease;
    z-index: 9999;
    padding: 0;
}

.back-top:hover{
    transform: translateY(-4px) scale(1.08);
}

.back-top.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-top img{
    width: 42px;
    height: 42px;
    display: block;
}



/* ===========================
Responsive
=========================== */

@media(max-width:991px){

.newsletter .container{

    flex-direction:column;

}

.newsletter-right{

    flex-wrap:wrap;
    justify-content:center;

}

.footer-grid{

    grid-template-columns:1fr 1fr;

}

.footer-bottom .container{

    flex-direction:column;
    gap:20px;

}

}

@media(max-width:768px){

.footer-grid{

    grid-template-columns:1fr;

}

.newsletter-form{

    flex-direction:column;

}

.newsletter-form button{

    width:100%;
    height:52px;

}

.newsletter-content{

    text-align:center;

}

.newsletter-left{

    justify-content:center;
    flex-direction:column;

}

.newsletter-right{

    flex-direction:column;

}

}

.footer-column{

    position:relative;

}

.footer-column:not(:last-child)::after{

    content:"";

    position:absolute;

    left:0px;

    top:0;

    width:1px;

    height:100%;

    background:rgba(255,255,255,.08);

}
.newsletter-menu{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px;justify-content:center}.newsletter-menu a{color:inherit;text-decoration:none;font-size:12px;opacity:.9}.newsletter-menu a:hover{opacity:1;color:#f6c344}
