/*==================================================
PREMIUM FOOTER
==================================================*/

.footer{

position:relative;

background:#081C34;

color:#fff;

padding-top:140px;

overflow:hidden;

}

/*=========================
NEWSLETTER
=========================*/

.newsletter-box{

position:relative;

margin-top:-80px;

margin-bottom:80px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

border-radius:30px;

padding:55px 60px;

display:flex;

justify-content:space-between;

align-items:center;

gap:40px;

overflow:hidden;

box-shadow:0 30px 80px rgba(0,0,0,.25);

}

.newsletter-box::before{

content:"";

position:absolute;

width:300px;

height:300px;

right:-120px;

top:-120px;

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

border-radius:50%;

}

.newsletter-content{

position:relative;

z-index:2;

flex:1;

}

.newsletter-content h2{

font-size:40px;

font-weight:800;

margin-bottom:15px;

color:#fff;

}

.newsletter-content p{

margin:0;

font-size:17px;

line-height:1.8;

color:rgba(255,255,255,.92);

}

.newsletter-form{

position:relative;

z-index:2;

display:flex;

gap:15px;

flex:1;

}

.newsletter-form input{

flex:1;

height:60px;

border:none;

border-radius:50px;

padding:0 25px;

font-size:16px;

}

.newsletter-form button{

height:60px;

padding:0 35px;

border:none;

border-radius:50px;

background:#fff;

color:var(--primary);

font-weight:700;

transition:.35s;

}

.newsletter-form button:hover{

background:var(--accent);

color:#fff;

}

/*=========================
FOOTER GRID
=========================*/

.footer-main{

padding-bottom:60px;

}

.footer-logo{

font-size:34px;

font-weight:900;

margin-bottom:20px;

color:#fff;

}

.footer-about{

color:rgba(255,255,255,.75);

line-height:1.9;

margin-bottom:30px;

}

.footer-title{

font-size:22px;

font-weight:700;

margin-bottom:25px;

position:relative;

padding-bottom:12px;

}

.footer-title::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:50px;

height:3px;

background:var(--secondary);

}

.footer-links{

list-style:none;

padding:0;

margin:0;

}

.footer-links li{

margin-bottom:14px;

}

.footer-links a{

color:rgba(255,255,255,.75);

transition:.35s;

}

.footer-links a:hover{

color:#fff;

padding-left:8px;

}

.footer-contact{

list-style:none;

padding:0;

margin:0;

}

.footer-contact li{

display:flex;

gap:15px;

margin-bottom:18px;

color:rgba(255,255,255,.80);

}

.footer-contact i{

color:var(--secondary);

margin-top:5px;

font-size:18px;

min-width:20px;

}

/*=========================
SOCIAL
=========================*/

.footer-social{

display:flex;

gap:15px;

margin-top:25px;

}

.footer-social a{

width:46px;

height:46px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

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

color:#fff;

transition:.35s;

}

.footer-social a:hover{

background:var(--secondary);

transform:translateY(-5px);

}

/*=========================
BOTTOM
=========================*/

.footer-bottom{

border-top:1px solid rgba(255,255,255,.08);

padding:25px 0;

}

.footer-bottom p{

margin:0;

color:rgba(255,255,255,.70);

}

.footer-bottom-links{

display:flex;

justify-content:flex-end;

gap:25px;

}

.footer-bottom-links a{

color:rgba(255,255,255,.70);

transition:.35s;

}

.footer-bottom-links a:hover{

color:#fff;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.footer{

padding-top:100px;

}

.newsletter-box{

margin-top:-60px;

padding:40px 30px;

flex-direction:column;

text-align:center;

}

.newsletter-content h2{

font-size:32px;

}

.newsletter-form{

width:100%;

flex-direction:column;

}

.newsletter-form input,

.newsletter-form button{

width:100%;

}

.footer-bottom{

text-align:center;

}

.footer-bottom-links{

justify-content:center;

margin-top:15px;

}

}

@media(max-width:576px){

.footer{

padding-top:80px;

}

.newsletter-box{

padding:30px 20px;

}

.newsletter-content h2{

font-size:26px;

}

.footer-logo{

font-size:28px;

}

.footer-title{

margin-top:30px;

}

.footer-bottom-links{

flex-wrap:wrap;

gap:15px;

}

}