*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial,Helvetica,sans-serif;
    background:#0f1117;

}
html{
    scroll-behavior: smooth;
}
.header{

    position:fixed;

    left:0;
    top:0;

    width:100%;

    z-index:999;

    transition:.4s;

    padding:18px 0;

    background:rgba(15,17,23,.75);

    backdrop-filter:blur(15px);

}

.header.sticky{

    background:#0f1117;

    box-shadow:0 5px 20px rgba(0,0,0,.4);

}

.container{

    width:92%;

    max-width:1350px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo img{width: 200px;}

.navbar ul{

    display:flex;

    list-style:none;

    gap:40px;

}

.navbar a{

    color:#fff;

    text-decoration:none;

    font-size:16px;

    transition:.3s;

    position:relative;

}

.navbar a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#e11d35;

    transition:.3s;

}

.navbar a:hover::after{

    width:100%;

}

.navbar a:hover{

    color:#e11d35;

}

.header-btns{

    display:flex;

    gap:12px;

}

.call-btn,
.whatsapp-btn{

    padding:12px 22px;

    border-radius:8px;

    text-decoration:none;

    color:#fff;

    font-weight:600;

}

.call-btn{

    background:#e11d35;

}

.whatsapp-btn{

    background:#25D366;

}

.menu-toggle{

    display:none;

    font-size:30px;

    color:#fff;

    cursor:pointer;

}

@media(max-width:992px){

.navbar{

display:none;

position:absolute;

top:100%;

left:0;

width:100%;

background:#111;

}

.navbar.active{

display:block;

}

.navbar ul{

flex-direction:column;

gap:0;

}

.navbar li{

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

}

.navbar a{

display:block;

padding:18px;

}

.header-btns{

display:none;

}

.menu-toggle{

display:block;

}

.logo img{

width:150px;

}

}

/*----------- her0 ---------*/
.hero{

    position:relative;

    background:#0f1117;

    color:#fff;

    overflow:hidden;

    padding:170px 0 120px;

}

.hero-grid{

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),

    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);

    background-size:80px 80px;

    opacity:.4;

}

.hero-content{

    position:relative;

    display:grid;

    grid-template-columns:1fr 500px;

    gap:80px;

    align-items:center;

}

.hero-badge{

    display:inline-block;

    border:1px solid rgba(255,255,255,.15);

    padding:12px 22px;

    border-radius:40px;

    margin-bottom:30px;

    font-size:14px;

    letter-spacing:2px;

}

.hero h1{

    font-size:68px;

    line-height:1.1;

    margin-bottom:30px;

    font-weight:800;

}

.hero h1 span{

    color:#E11D35;

}

.hero p{

    color:#b9b9b9;

    font-size:20px;

    line-height:1.8;

    max-width:700px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin:45px 0;

}

.btn{

    padding:18px 35px;

    border-radius:10px;

    text-decoration:none;

    font-weight:700;

}

.whatsapp{

    background:#25D366;

    color:#fff;

}

.call{

    background:#E11D35;

    color:#fff;

}

.outline{

    border:1px solid rgba(255,255,255,.2);

    color:#fff;

}

.hero-contact{

    display:flex;

    gap:40px;

    color:#cfcfcf;

    margin-top:25px;

}

.solution-box{

    background:#171c25;

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

    border-radius:20px;

    padding:35px;

    box-shadow:0 20px 60px rgba(0,0,0,.45);

}

.solution-header{

    display:flex;

    justify-content:space-between;

    margin-bottom:30px;

    color:#999;

    font-size:14px;

}

.active-status{

    color:#35d96b;

}

.solution-box ul{

    list-style:none;

}

.solution-box li{

    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: 17px;

}

.solution-box li span{

    color:#888;

    margin-right:20px;

}

.solution-box li::after{content: "";width: 8px;height: 8px;border-radius: 50%;background: #25d366;box-shadow: 0 0 15px #25d366;animation: pulseDot 1.5s infinite ease-in-out;}


@keyframes pulseDot{
    0%{
        transform: translateY(-50%) scale(1);
        opacity: 1;
        box-shadow: 0 0 8px #25d366;
    }

    50%{
        transform: translateY(-50%) scale(1.4);
        opacity: .7;
        box-shadow: 0 0 18px #25d366;
    }

    100%{
        transform: translateY(-50%) scale(1);
        opacity: 1;
        box-shadow: 0 0 5px #25d366;
    }
}

@keyframes rippleDot{
    0%{
        transform: translateY(-50%) scale(.6);
        opacity: .8;
    }

    100%{
        transform: translateY(-50%) scale(2.5);
        opacity: 0;
    }
}

@media(max-width:1100px){

.hero-content{

grid-template-columns:1fr;

}

.hero h1{

font-size:48px;

}

.hero-right{

margin-top:50px;

}

}

@media(max-width:768px){

.hero{

padding-top:130px;

}

.hero h1{

font-size:38px;

}

.hero-buttons{

flex-direction:column;

}

.hero-contact{

flex-direction:column;

gap:15px;

}

.solution-box{

padding:25px;

}

}
/*==============================
      SOLUTIONS
==============================*/

.solutions{

    padding:120px 0;

    background:#0f1117;

}

.solutions-container{

    width:92%;
    max-width:1400px;
    margin:auto;

}

.solutions-heading{

    text-align:center;
    margin-bottom:70px;

}

.solutions-heading span{

    color:#E11D35;
    font-weight:700;
    letter-spacing:3px;

}

.solutions-heading h2{

    color:#fff;
    font-size:56px;
    margin:20px 0;

}

.solutions-heading p{

    color:#999;
    max-width:760px;
    margin:auto;
    line-height:1.8;

}

.solution-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    grid-auto-rows:230px;

    gap:25px;

}

.solution-card{

    background:#171c25;

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

    border-radius:22px;

    padding:35px;

    text-decoration:none;

    color:#fff;

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.solution-card::before{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    background:#E11D35;

    border-radius:50%;

    right:-180px;
    top:-180px;

    opacity:.12;

    transition:.4s;

}

.solution-card:hover::before{

    transform:scale(1.8);

}

.solution-card:hover{

    transform:translateY(-10px);

    border-color:#E11D35;

    box-shadow:0 20px 60px rgba(225,29,53,.18);

}

.large{

    grid-column:span 2;

}

.icon{

    width:70px;
    height:70px;

    border-radius:18px;

    background:#E11D35;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:25px;

}

.solution-card h3{

    font-size:30px;

    margin-bottom:15px;

}

.solution-card p{

    color:#bdbdbd;

    line-height:1.8;

}

.solution-card span{

    display:inline-block;

    margin-top:25px;

    color:#fff;

}

.small{

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.small h3{

    margin:0;

    font-size:24px;

}

/* Tablet */

@media(max-width:991px){

.solution-grid{

grid-template-columns:repeat(2,1fr);

}

.large{

grid-column:span 2;

}

}

/* Mobile */

@media(max-width:767px){

.solutions{

padding:80px 0;

}

.solution-grid{

grid-template-columns:1fr;

grid-auto-rows:auto;

}

.large{

grid-column:span 1;

}

.solution-card{

padding:30px;

}

.solutions-heading h2{

font-size:38px;

}

}

/**** about us ****/

/*=============================
        ABOUT HOME
=============================*/

.about-home{

    background:#fff;

    padding:120px 0;

}

.about-container{

    width:92%;

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-tag{

    display:inline-block;

    background:#ffe9ec;

    color:#E11D35;

    padding:8px 20px;

    border-radius:30px;

    font-weight:700;

    letter-spacing:2px;

}

.about-left h2{

    font-size:52px;

    margin:25px 0;

    line-height:1.2;

}

.about-left p{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;

}

.about-list{

    list-style:none;

    margin-bottom:40px;

}

.about-list li{

    margin-bottom:18px;

    font-size:18px;

}

.about-btn{

    display:inline-block;

    padding:18px 35px;

    background:#E11D35;

    color:#fff;

    border-radius:10px;

    text-decoration:none;

    transition:.3s;

}

.about-btn:hover{

    transform:translateY(-5px);

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:25px;

    display:block;

}

.experience{

    position:absolute;

    left:-40px;

    bottom:40px;

    background:#10141d;

    color:#fff;

    padding:30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

}

.experience h3{

    color:#E11D35;

    font-size:46px;

}

.about-counter{

    width:92%;

    max-width:1300px;

    margin:80px auto 0;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.about-counter div{

    background:#f8f9fc;

    border-radius:18px;

    padding:35px;

    text-align:center;

}

.about-counter h3{

    color:#E11D35;

    font-size:42px;

    margin-bottom:10px;

}

.about-counter span{

    color:#666;

}

/* Responsive */

@media(max-width:991px){

.about-container{

grid-template-columns:1fr;

}

.about-left{

order:2;

}

.about-right{

order:1;

}

.experience{

left:20px;

bottom:20px;

padding:20px;

}

.about-counter{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.about-home{

padding:80px 0;

}

.about-left h2{

font-size:34px;

}

.about-counter{

grid-template-columns:1fr;

}

.about-list li{

font-size:16px;

}

}


/*--- why choose ----*/
.why-choose{

    padding:100px 0;
    background:#f8f9fc;

}

.why-choose .container{

    max-width:1300px;
    width:90%;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 480px;
    gap:80px;
    align-items:center;

}

.section-tag{

    display:inline-block;

    padding:8px 18px;

    background:#ffe8eb;

    color:#e11d35;

    border-radius:40px;

    font-weight:700;

    margin-bottom:20px;

}

.why-left h2{

    font-size:50px;

    margin-bottom:25px;

    line-height:1.2;

}

.why-left p{

    color:#666;

    line-height:1.8;

    font-size:18px;

    margin-bottom:45px;

}

.feature-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

}

.feature-item{

    display:flex;

    gap:18px;

    background:#fff;

    padding:22px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    transition:.3s;

}

.feature-item:hover{

    transform:translateY(-8px);

}

.feature-icon{

    width:50px;
    height:50px;

    background:#e11d35;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:bold;

    font-size:22px;

    flex-shrink:0;

}

.feature-item h4{

    margin-bottom:8px;

}

.feature-item p{

    margin:0;

    font-size:15px;

}

.stats-card{

    background:#111722;

    border-radius:25px;

    padding:35px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

}

.stat-box{

    background:#1a2230;

    border-radius:18px;

    padding:35px;

    text-align:center;

}

.stat-box h3{

    color:#e11d35;

    font-size:42px;

    margin-bottom:10px;

}

.stat-box p{

    color:#ddd;

}

@media (max-width:991px){

.why-choose{
    padding:70px 0;
}

.why-choose .container{

    display:block;

}

.why-left{

    width:100%;

    margin-bottom:40px;

}

.why-left h2{

    font-size:34px;
    line-height:1.3;

}

.feature-list{

    display:grid;

    grid-template-columns:1fr;

    gap:20px;

}

.feature-item{

    width:100%;

}

.stats-card{

    width:100%;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    padding:20px;

}

.stat-box{

    padding:25px 15px;

}

.stat-box h3{

    font-size:32px;

}

}

@media(max-width:576px){

.stats-card{

grid-template-columns:1fr;

}

}


/*** why **/
.cta-section{

    padding:100px 20px;

    background:linear-gradient(135deg,#0f1117,#1a2230);

    position:relative;

    overflow:hidden;

}

.cta-section::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#e11d35;

    opacity:.08;

    border-radius:50%;

    top:-120px;

    left:-120px;

}

.cta-section::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:#25D366;

    opacity:.08;

    border-radius:50%;

    bottom:-120px;

    right:-120px;

}

.cta-content{

    position:relative;

    max-width:900px;

    margin:auto;

    text-align:center;

    color:#fff;

    z-index:2;

}

.cta-content span{

    color:#25D366;

    font-weight:700;

    letter-spacing:2px;

}

.cta-content h2{

    font-size:52px;

    margin:20px 0;

    line-height:1.2;

}

.cta-content p{

    color:#ccc;

    font-size:18px;

    line-height:1.8;

    max-width:700px;

    margin:0 auto 40px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-btn{

    padding:18px 40px;

    border-radius:10px;

    text-decoration:none;

    font-size:18px;

    font-weight:700;

    transition:.3s;

}

.call-btn{

    background:#e11d35;

    color:#fff;

}

.call-btn:hover{

    transform:translateY(-5px);

}

.whatsapp-btn{

    background:#25D366;

    color:#fff;

}

.whatsapp-btn:hover{

    transform:translateY(-5px);

}

@media(max-width:768px){

.cta-content h2{

font-size:34px;

}

.cta-btn{

width:100%;

}

}

/* ---------- AWARDS ---------- */

.team-gallery{
    padding:80px 0;
}

.team-gallery .container{
    width:90%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.gallery-item{
    text-align:center;
}

.gallery-item img{

    width:100%;
    
    object-fit:cover;

    border-radius:12px;

    cursor:pointer;

    transition:.4s;
}

.gallery-item img:hover{

    transform:scale(1.05);
    box-shadow:0 10px 30px rgba(0,0,0,.25);

}

.gallery-item h4{
    color:#fff;

    margin-top:15px;
    font-size:16px;
    font-weight:500;

}


/* Popup */

.lightbox{

    position:fixed;

    left:0;
    top:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.9);

    display:none;

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

    z-index:9999;

}

.lightbox.active{
    display:flex;
}

.lightbox img{

    max-width:85%;
    max-height:85%;

    border-radius:10px;

}

.close{

    position:absolute;

    top:25px;
    right:35px;

    color:#fff;

    font-size:45px;

    cursor:pointer;

}

.prev,
.next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    color:#fff;

    font-size:60px;

    cursor:pointer;

    user-select:none;

    padding:15px;

}

.lightbox .prev{
    left:30px;
}

.lightbox .next{
    right:30px;
}

.prev:hover,
.next:hover,
.close:hover{
    color:#ff9800;
}


/* Tablet */

@media(max-width:991px){

.team-gallery .container{

grid-template-columns:repeat(2,1fr);

}

}


/* Mobile */

@media(max-width:576px){

.team-gallery .container{

grid-template-columns:1fr;

}

.gallery-item img{

height:260px;

}

.lightbox img{

max-width:95%;
max-height:75%;

}

.prev,
.next{

font-size:40px;

}

.close{

font-size:38px;

}

}

/*==============================
      TESTIMONIAL SECTION
===============================*/

.testimonial-section{
    padding:100px 0;
    background:#f8f9fc;
    overflow:hidden;
}

.testimonial-container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* Heading */

.section-title{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.section-title span{
    display:inline-block;
    color:#E11D35;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:46px;
    margin-bottom:15px;
    color:#111;
}

.section-title p{
    color:#666;
    line-height:1.8;
    font-size:17px;
}

/*==============================
        SLIDER
===============================*/

.testimonial-wrapper{
    position:relative;
}

.testimonial-slider{
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    transition:0.5s ease;
}

/*==============================
      CARD
===============================*/

.testimonial-card{

    flex:0 0 33.3333%;

    padding:15px;

    box-sizing:border-box;

}

.testimonial-card-inner{

    background:#fff;

    border-radius:18px;

    padding:35px;

    height:100%;

    border:1px solid #eee;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.testimonial-card-inner:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

/* Stars */

.stars{

    color:#FDBA12;

    font-size:20px;

    margin-bottom:20px;

}

/* Review */

.testimonial-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

    font-size:16px;

}

/* Client */

.client{

    display:flex;

    align-items:center;

    gap:15px;

}

.client img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

}

.client h4{

    margin:0;

    font-size:20px;

}

.client span{

    color:#777;

    font-size:15px;

}

/*==============================
        BUTTONS
===============================*/

.testimonial-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:#E11D35;

    color:#fff;

    cursor:pointer;

    font-size:22px;

    transition:.3s;

    z-index:20;

}

.testimonial-btn:hover{

    background:#111;

}

.prev{

    left:-20px;

}

.next{

    right:-20px;

}

/*==============================
        TABLET
===============================*/

@media(max-width:991px){

.testimonial-card{

flex:0 0 50%;

}

.section-title h2{

font-size:36px;

}

.prev{

left:5px;

}

.next{

right:5px;

}

}

/*==============================
        MOBILE
===============================*/

@media(max-width:767px){

.testimonial-section{

padding:70px 0;

}

.section-title{

margin-bottom:35px;

padding:0 10px;

}

.section-title h2{

font-size:30px;

}

.section-title p{

font-size:15px;

}

.testimonial-card{

flex:0 0 100%;

padding:10px;

}

.testimonial-card-inner{

padding:25px;

}

.client{

flex-direction:column;

text-align:center;

}

.client img{

margin-bottom:10px;

}

.testimonial-btn{

width:42px;

height:42px;

font-size:18px;

top:45%;

}

.prev{

left:0;

}

.next{

right:0;

}

}

/*=========================
        FAQ
==========================*/

.faq-section{

    padding:100px 0;

    background:#10141d;

}

.faq-container{

    width:90%;

    max-width:1000px;

    margin:auto;

}

.faq-title{

    text-align:center;

    margin-bottom:60px;

}

.faq-title span{

    color:#E11D35;

    letter-spacing:2px;

    font-weight:bold;

}

.faq-title h2{

    color:#fff;

    font-size:48px;

    margin:15px 0;

}

.faq-title p{

    color:#bbb;

}

.faq-item{

    background:#1a2230;

    border-radius:12px;

    margin-bottom:20px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.06);

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    color:#fff;

    padding:25px;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:18px;

    font-weight:600;

}

.faq-question span{

    font-size:30px;

    color:#E11D35;

    transition:.3s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.35s ease;

}

.faq-answer p{

    padding:0 25px 25px;

    color:#bbb;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:300px;

}

.faq-item.active .faq-question span{

    transform:rotate(45deg);

}

@media(max-width:768px){

.faq-section{

padding:70px 0;

}

.faq-title h2{

font-size:34px;

}

.faq-question{

font-size:16px;

padding:20px;

}

}

/*============================
        CONTACT
=============================*/

.contact-section{

    padding:100px 0;

    background:#f8f9fc;

}

.contact-container{

    width:90%;

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 500px;

    gap:60px;

    align-items:start;

}

.section-tag{

    display:inline-block;

    background:#ffe8eb;

    color:#E11D35;

    padding:8px 18px;

    border-radius:30px;

    font-weight:bold;

    margin-bottom:20px;

}

.contact-left h2{

    font-size:48px;

    margin-bottom:20px;

}

.contact-left p{

    color:#666;

    line-height:1.8;

    margin-bottom:40px;

}

.info-box{

    display:flex;

    gap:20px;

    align-items:flex-start;

    padding:25px 0;

    border-bottom:1px solid #ddd;

}

.info-box:last-child{

    border:none;

}

.icon{

    width:60px;

    height:60px;

    background:#E11D35;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:12px;

    font-size:24px;

}

.info-box small{

    color:#888;

    display:block;

    margin-bottom:8px;

}

.info-box h4{

    font-size:22px;

    line-height:1.5;

}

/* Right */

.contact-right{

    background:#10141d;

    border-radius:20px;

    padding:40px;

}

.contact-right h3{

    color:#fff;

    margin-bottom:10px;

    font-size:34px;

}

.contact-right p{

    color:#bbb;

    margin-bottom:30px;

}

.contact-right input,

.contact-right textarea,

.contact-right select{

    width:100%;

    padding:16px;

    background:#1b2432;

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

    border-radius:10px;

    margin-bottom:20px;

    color:#fff;

    font-size:16px;

}

.contact-right textarea{

    resize:none;

    height:140px;

}

.contact-right button{

    width:100%;

    padding:18px;

    border:none;

    border-radius:10px;

    background:#E11D35;

    color:#fff;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

}

.contact-right button:hover{

    background:#c8122c;

}

/* Responsive */

@media(max-width:991px){

.contact-container{

grid-template-columns:1fr;

}

.contact-left{

margin-bottom:40px;

}

.contact-left h2{

font-size:36px;

}

.contact-right{

padding:30px;

}

}

@media(max-width:576px){

.contact-section{

padding:70px 0;

}

.info-box{

flex-direction:column;

}

.info-box h4{

font-size:18px;

}

.contact-right h3{

font-size:28px;

}

}

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

.footer{

    background:#0f1117;

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

    padding:25px 0;

}

.footer-container{

    width:90%;

    max-width:1300px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

}

.copyright{

    color:#b5b5b5;

    font-size:15px;

}

.footer-social{

    display:flex;

    gap:12px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#1a2230;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    transition:.35s;

}

.footer-social a:hover{

    background:#E11D35;

    transform:translateY(-4px);

}

/* Mobile */

@media(max-width:768px){

.footer{

padding:20px 0;

}

.footer-container{

flex-direction:column;

text-align:center;

}

.copyright{

font-size:14px;

line-height:1.7;

}

}