*{
    margin:0;
    padding:0;
    font-family:'Manrope',sans-serif;
}


/* =========================
   NAVBAR
========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#FFFFFF;
    border-top:4px solid #D4AF37;
    z-index:9999;

    transition:
        background .45s ease,
        box-shadow .45s ease;
}

.nav-container{
    width:100%;
    padding:0 15px;
    box-sizing:border-box;

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:80px;
}

/* =========================
   LOGO
========================= */

.logo img{
    height:60px;
    width:auto;
    display:block;

    transition:all .45s ease;
}

/* =========================
   RIGHT SIDE
========================= */

.nav-right{
    display:flex;
    align-items:center;
    gap:35px;
}

/* =========================
   NAV LINKS
========================= */

.nav-links{
    display:flex;
    align-items:center;
    gap:38px;
    list-style:none;
}

.nav-links li{
    position:relative;
}

.nav-links li a{
    text-decoration:none;
    color:#0B1F3A;
    font-size:16px;
    font-weight:500;
    transition:all .45s ease;
}

.nav-links li:hover > a{
    color:#D4AF37;
}

.nav-links li::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-38px;
    width:0;
    height:2px;
    background:#D4AF37;
    transition:.3s;
}

.nav-links li:hover::after{
    width:100%;
}

/* =========================
   DROPDOWN
========================= */

.ourservices > a{
    position:relative;
    padding-right:14px;
}

.ourservices > a::after{
    content:"";
    position:absolute;

    right:0;
    top:45%;

    width:6px;
    height:6px;

    border-right:1.5px solid #D4AF37;
    border-bottom:1.5px solid #D4AF37;

    transform:translateY(-50%) rotate(45deg);

    transition:.3s ease;
}

.ourservices:hover > a::after{
    transform:translateY(-50%) rotate(225deg);
}

.dropdown{
    position:absolute;
    top:68px;
    left:-20px;

    width:340px;

    background:#fff;
    border-top:2px solid #D4AF37;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    transition:.35s ease;
}

.ourservices:hover .dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown ul{
    list-style:none;
}

.dropdown ul li{
    border-bottom:1px solid #eee;
}

.dropdown ul li:last-child{
    border-bottom:none;
}

.dropdown ul li::after{
    display:none;
}

.dropdown ul li a{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 20px;
    font-size:13px;
    font-weight:500;
}

.dropdown ul li a:hover{
    background:#FAFAFA;
}

.arrow{
    color:#D4AF37;
}

/* =========================
   BUTTON
========================= */

.consult-btn{
    text-decoration:none;

    background:#D4AF37;
    color:#fff;
    
    padding:8px 16px;

    border-radius:4px;

    font-size:11px;
    font-weight:700;
    letter-spacing:.5px;

    transition:all .45s ease;
}

.consult-btn:hover{
    background:#BE9622;
}

/* =========================
   STICKY EFFECT
========================= */

.navbar.sticky{
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.navbar.sticky .nav-container{
    height:75px;
}

.navbar.sticky .logo img{
    height:55px;
    transform:scale(.95);
}

.navbar.sticky .nav-links li a{
    font-size:15px;
}

.navbar.sticky .consult-btn{
    padding:10px 18px;
    font-size:11px;
}

.navbar.sticky .dropdown{
    top:55px;
}

.navbar.sticky .nav-links li::after{
    bottom:-26px;
}

/* =========================
   MOBILE MENU
========================= */

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#0B1F3A;
    z-index:10001;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .nav-container{
        height:75px !important;
        padding:0 20px;
    }

    .logo img{
        height:50px !important;
    }

    .menu-toggle{
        display:block;
    }

    .nav-right{
        position:fixed;
        top:25px;
        left:-100%;

        width:100%;
        height:calc(100vh - 75px);

        background:#fff;

        overflow-y:auto;
        overflow-x:hidden;

        display:flex;
        flex-direction:column;
        align-items:flex-start;

        transition:left .4s ease;

        box-shadow:0 10px 20px rgba(0,0,0,.08);
    }

    .nav-right.active{
        left:0;
    }

    .nav-links{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links li::after{
        display:none;
    }

    .nav-links li a{
        width:100%;
        display:flex;
        align-items:center;
        justify-content:space-between;

        padding:18px 24px;

        border-bottom:1px solid #eee;

        font-size:15px;
        font-weight:600;
    }

    .ourservices > a{
        position:relative;
    }

    .ourservices > a::after{

        content:"";

        width:6px;
        height:6px;

        border-right:2px solid #D4AF37;
        border-bottom:2px solid #D4AF37;

        transform:rotate(45deg);

        transition:.3s ease;

        margin-left:auto;
    }

    .ourservices.active > a::after{
        transform:rotate(225deg);
    }

    .dropdown{
        position:static;

        width:100%;

        display:none;

        opacity:1;
        visibility:visible;
        transform:none;

        border-top:none;
        box-shadow:none;

        background:#fafafa;
    }

    .ourservices.active .dropdown{
        display:block;
    }

    .dropdown ul li{
        border-bottom:1px solid #ececec;
    }

    .dropdown ul li a{
        padding:15px 24px 15px 42px;
        font-size:14px;
        font-weight:500;
        background:#fafafa;
    }

    .dropdown ul li a:hover{
        background:#f3f4f6;
    }

    .consult-btn{
        margin:24px;
        width:calc(100% - 48px);

        text-align:center;

        padding:14px 20px;
        font-size:12px;
    }

}



.whatsapp{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 34px;
    box-shadow: 0 8px 20px rgba(37,211,102,0.35);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp:hover{
    transform: translateY(-5px) scale(1.08);
    background: #1EBE5D;
    color: #fff;
}

@keyframes whatsappPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
    }
    70%{
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@media (max-width:768px){
    .whatsapp{
        width: 55px;
        height: 55px;
        font-size: 30px;
        right: 18px;
        bottom: 18px;
    }
}


/* ABOUT HERO SECTION*/

.about-hero{
    margin-top: 40px;
    position:relative;
    width:100%;
    min-height:580px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:url("../images/about-us-image.jpg") center center/cover no-repeat;
}

/* Overlay */

.about-hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(255,255,255,.97) 0%,
        rgba(255,255,255,.94) 30%,
        rgba(255,255,255,.70) 52%,
        rgba(255,255,255,.25) 72%,
        rgba(255,255,255,0) 100%
    );
}

.about-hero .container{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1320px;
    margin:auto;
    padding:0 80px;
}

.hero-content{
    max-width:520px;
}

/* ABOUT TAG*/

.section-tag{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    color:#D4AF37;
    text-transform:uppercase;
    margin-bottom:15px;
    margin-top: 25px;
}

/* HEADING*/

.hero-content h1{
    font-size:40px;
    line-height:1.2;
    font-weight:700;
    color:#0B1F3A;
    margin-bottom:18px;
    letter-spacing: 0.8px;

}

.hero-content h1 span{
    color:#D4AF37;
}

/* PARAGRAPH*/

.hero-content p{
    max-width:480px;
    font-size:15px;
    line-height:1.85;
    color:#5E6674;
    margin-bottom:0;
}

/*  SCROLL INDICATOR*/

.scroll-indicator{
    margin-top:28px;
}

.scroll-indicator a{
    display:inline-flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

/* Mouse */

.mouse{
    width:28px;
    height:44px;
    border:2px solid #D4AF37;
    border-radius:20px;
    display:flex;
    justify-content:center;
    padding-top:6px;
    transition:.3s;
}

.wheel{
    width:4px;
    height:8px;
    background:#D4AF37;
    border-radius:50px;
    animation:wheel 1.6s infinite;
}

.scroll-text{
    font-size:14px;
    font-weight:500;
    color:#D4AF37;
    letter-spacing:.5px;
    transition:.3s;
}

.scroll-indicator:hover .mouse{
    transform:translateY(3px);
}

.scroll-indicator:hover .scroll-text{
    color:#56534c;
}

/* ANIMATIONS*/

@keyframes wheel{

    0%{
        opacity:1;
        transform:translateY(0);
    }

    100%{
        opacity:0;
        transform:translateY(12px);
    }

}

/* RESPONSIVE*/

@media (max-width:1200px){

    .about-hero{
        min-height:520px;
    }

    .about-hero .container{
        padding:0 60px;
    }

    .hero-content{
        max-width:470px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:14px;
    }

}

@media (max-width:992px){

    .about-hero{
        min-height:480px;
    }

    .about-hero .container{
        padding:0 40px;
    }

    .hero-content{
        max-width:420px;
    }

    .hero-content h1{
        font-size:30px;
    }

    .hero-content p{
        font-size:13px;
    }

    .mouse{
        width:26px;
        height:40px;
    }

    .scroll-text{
        font-size:13px;
    }

}

@media (max-width:768px){

    .about-hero{
        min-height:500px;
        text-align:center;
        background-position:center;
    }

    .about-hero .overlay{
        background:rgba(255,255,255,.92);
    }

    .about-hero .container{
        padding:0 25px;
    }

    .hero-content{
        max-width:100%;
        margin:auto;
    }

    .hero-content h1{
        font-size:26px;
    }

    .hero-content p{
        max-width:100%;
        font-size:13px;
        margin:auto;
    }

    .scroll-indicator{
        margin-top:25px;
    }

    .scroll-indicator a{
        justify-content:center;
    }

}

@media (max-width:576px){

    .about-hero{
        min-height:430px;
    }

    .about-hero .container{
        padding:0 20px;
    }

    .section-tag{
        font-size:11px;
    }

    .hero-content h1{
        font-size:22px;
    }

    .hero-content p{
        font-size:12px;
        line-height:1.75;
    }

    .mouse{
        width:24px;
        height:36px;
    }

    .wheel{
        height:7px;
    }

    .scroll-text{
        font-size:12px;
    }

}

@media (max-width:360px){

    .about-hero{
        min-height:400px;
    }

    .about-hero .container{
        padding:0 16px;
    }

    .hero-content h1{
        font-size:20px;
    }

    .hero-content p{
        font-size:11px;
    }

    .mouse{
        width:22px;
        height:34px;
    }

    .scroll-text{
        font-size:11px;
    }

}









/* About us scroll section*/

.page-background{
    position:fixed;
    inset:0;
    z-index:-100;
    overflow:hidden;
    pointer-events:none;
}

/* Large Circle */

.circle1{
    position:absolute;
    width:900px;
    height:900px;
    background:#fafafa;
    border-radius:50%;
    top:-520px;
    right:-220px;
}

/* Second Circle */

.circle2{
    position:absolute;
    width:550px;
    height:550px;
    background:#fcfcfc;
    border-radius:50%;
    left:-280px;
    bottom:-280px;
}

/* Gold Dot Pattern */

.dots{
    position:absolute;
    right:60px;
    bottom:80px;
    width:220px;
    height:220px;
    background-image:
        radial-gradient(#D4AF37 2px, transparent 2px);
    background-size:18px 18px;
    opacity:.35;
}

/* Blur Gold */

.blur1{
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:#D4AF37;
    filter:blur(90px);
    opacity:.08;
    right:-60px;
    top:35%;
}
/* Blur Navy */

.blur2{
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:#0B1F3A;
    filter:blur(100px);
    opacity:.04;
    left:-120px;
    bottom:10%;
}

/* ABOUT SECTION*/

.about-section{
    max-width:1100px;
    margin:80px auto;
    padding:40px;
}

.about-title{
    text-align:center;
    color:#0b213d;
    font-size:38px;
    font-weight:700;
    line-height:1.3;
}

.about-title::after{
    content:"";
    display:block;
    width:180px;
    height:4px;
    background:#D4AF37;
    margin:25px auto 45px;
    border-radius:50px;
}

.about-text{
    font-size:15px;
    color:#2c2b2b;
    font-weight: 450;
    line-height:1.9;
    margin-bottom:20px;
    opacity:0;
    transform:translateY(25px);
    animation:fadeUp .8s forwards;
    text-align: justify;
}

.about-text:nth-of-type(1){
animation-delay:.2s;
}

.about-text:nth-of-type(2){
animation-delay:.35s;
}

.about-text:nth-of-type(3){
animation-delay:.5s;
}

.learn-more{
display:inline-flex;
align-items:center;
gap:10px;
font-weight:700;
color:#D4AF37;
cursor:pointer;
transition:.35s;
}

.learn-more:hover{
color:#9c7905;
transform:translateX(5px);
}

/* Hidden Content */

.hidden-content{
max-height:0;
overflow:hidden;
opacity:0;
transition:.6s;
}

.hidden-content.active{
max-height:3000px;
opacity:1;
margin-top:30px;
}

.hidden-inner{
position:relative;
padding-top:20px;
}

.close-icon{
position:absolute;
right:0;
top:0;
font-size:18px;
cursor:pointer;
transition:.3s;
color:#0B1F3A;
}

.close-icon:hover{
color:#D4AF37;
transform:rotate(90deg);
}

.hidden-item{
position:relative;
padding-left:22px;
margin:15px 0;
line-height:1.8;
color:#282828;
text-align: justify;

}

.hidden-item::before{
content:"";
position:absolute;
left:0;
top:11px;
width:7px;
height:7px;
background:#D4AF37;
border-radius:50%;
}

.show-less{
margin-top:25px;
display:inline-flex;
align-items:center;
gap:8px;
font-weight:700;
color:#0B1F3A;
cursor:pointer;
transition:.3s;
}

.show-less:hover{

color:#D4AF37;

transform:translateX(-5px);

}

@keyframes fadeUp{

to{

opacity:1;

transform:translateY(0);

}

}

/* RESPONSIVE*/

@media(max-width:768px){

.about-section{
padding:25px;
margin:60px auto;
}

.about-title{
font-size:28px;
}

.circle1{
width:520px;
height:520px;
top:-260px;
right:-180px;
}

.circle2{
width:300px;
height:300px;
left:-150px;
bottom:-150px;
}

.dots{
width:130px;
height:130px;
right:20px;
bottom:20px;
background-size:14px 14px;
}

.blur1{
width:150px;
height:150px;
}

.blur2{
width:180px;
height:180px;
}

}




/* CONTACT SECTION */

.contact{
    position:relative;
    width:100%;
    padding:65px 50px;
    background:#fff;
    overflow:hidden;
}

/* Background Circle */

.contact::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    right:-170px;
    top:-50px;
    background:#F7F8FB;
    border-radius:50%;
    z-index:0;
}

/* Orange Dots */

.contact::after{
    content:"";
    position:absolute;
    top:22px;
    right:35px;
    width:42px;
    height:42px;
    background-image:radial-gradient(#F59E0B 2px,transparent 2px);
    background-size:8px 8px;
    z-index:2;
}

/* Container */

.contact-container{
    width:90%;
    max-width:980px;
    margin:auto;
    display:grid;
    grid-template-columns:40% 60%;
    align-items:center;
    gap:24px;
    position:relative;
    z-index:5;
}

/* Left Content */

.contact-content{
    max-width:360px;
    animation:leftFade .7s ease;
}

.contact-content h2{
    font-size:28px;
    color:#0B1E6D;
    font-weight:800;
    line-height:1.1;
    margin-bottom:8px;
}

.title-line{
    width:28px;
    height:3px;
    background:#F59E0B;
    border-radius:20px;
    margin-bottom:12px;
}

.contact-content p{
    font-size:12px;
    line-height:20px;
    color:#4B5563;
    margin-bottom:16px;
}

/* Form */

form{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.form-group{
    position:relative;
}

.form-group i{
    position:absolute;
    left:13px;
    top:50%;
    transform:translateY(-50%);
    color:#F59E0B;
    font-size:13px;
}

.textarea i{
    top:16px;
}

.form-group input{
    width:100%;
    height:36px;
    border:1px solid #D8DCE4;
    border-radius:6px;
    padding:0 14px 0 38px;
    font-size:12px;
    outline:none;
    transition:.3s;
    background:#fff;
}

.form-group textarea{
    width:100%;
    height:72px;
    border:1px solid #D8DCE4;
    border-radius:6px;
    padding:12px 14px 12px 38px;
    resize:none;
    font-size:12px;
    outline:none;
    transition:.3s;
    background:#fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#9CA3AF;
    font-size:12px;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#F59E0B;
    box-shadow:0 0 8px rgba(245,158,11,.12);
}

/* Button */

form button{
    width:135px;
    height:36px;
    border:none;
    border-radius:6px;
    background:#F59E0B;
    color:#fff;
    font-size:12px;
    font-weight:600;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    transition:.3s;
}

form button:hover{
    background:#E88900;
    transform:translateY(-2px);
    box-shadow:0 6px 14px rgba(245,158,11,.2);
}

form button i{
    transition:.3s;
}

form button:hover i{
    transform:translateX(3px);
}

/* Image */

.contact-image{
    position:relative;
    height:330px;
    overflow:hidden;
    border-top-left-radius:140px;
    border-bottom-left-radius:140px;
    animation:rightFade .7s ease;
}

.contact-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}

.contact-image:hover img{
    transform:scale(1.04);
}

/* Animations */

@keyframes leftFade{
    from{
        opacity:0;
        transform:translateX(-30px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes rightFade{
    from{
        opacity:0;
        transform:translateX(30px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* Tablet */

@media(max-width:991px){

.contact{
    padding:30px 0;
}

.contact::before{
    display:none;
}

.contact::after{
    right:25px;
    top:18px;
}

.contact-container{
    width:92%;
    grid-template-columns:1fr;
    gap:22px;
}

.contact-content{
    max-width:100%;
}

.contact-content h2{
    font-size:24px;
}

.contact-content p{
    font-size:12px;
    line-height:19px;
}

.form-group input{
    height:34px;
}

.form-group textarea{
    height:68px;
}

form button{
    width:130px;
    height:34px;
}

.contact-image{
    height:260px;
    border-radius:18px;
}

}
/* Mobile */

@media(max-width:576px){

.contact{
    padding:25px 15px;   /* Top & Bottom: 25px, Left & Right: 15px */
}

.contact-container{
    width:90%;
}

.contact::after{
    width:36px;
    height:36px;
    right:15px;
    top:15px;
    background-size:7px 7px;
}

.contact-content h2{
    font-size:22px;
}

.title-line{
    width:24px;
    margin-bottom:10px;
}

.contact-content p{
    font-size:11px;
    line-height:18px;
    margin-bottom:14px;
}

form{
    gap:7px;
}

.form-group i{
    left:12px;
    font-size:12px;
}

.textarea i{
    top:15px;
}

.form-group input{
    height:34px;
    padding-left:36px;
    font-size:11px;
}

.form-group textarea{
    height:65px;
    padding-left:36px;
    font-size:11px;
}

form button{
    width:100%;
    height:34px;
    font-size:12px;
}

.contact-image{
    height:200px;
    border-radius:14px;
}

}

/*FOOTER SECTION*/

.footer-section{
    background:#fff;
    padding:30px 0 0;
    position:relative;
    overflow:hidden;
}

/* Decorative Dots */

.footer-section::before{
    content:"";
    position:absolute;
    left:0;
    bottom:70px;
    width:110px;
    height:110px;
    background-image:radial-gradient(#d6a018 2px,transparent 2px);
    background-size:10px 10px;
    opacity:.25;
}

.footer-section::after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:110px;
    height:110px;
    background-image:radial-gradient(#d6a018 2px,transparent 2px);
    background-size:10px 10px;
    opacity:.25;
}

/*==========================================
                LOGO
==========================================*/

.footer-logo{
    width:220px;
    max-width:100%;
    margin-bottom:12px;
}

/*==========================================
              DESCRIPTION
==========================================*/

.footer-text{
    font-size:13px;
    line-height:1.7;
    color:#444;
    margin-bottom:18px;
    text-align: justify;
    padding: 5px;
}

/*==========================================
             COLUMN BORDER
==========================================*/

.footer-border{
    border-left:1px solid #e8d8b4;
    padding-left:18px;
}

/*==========================================
              HEADINGS
==========================================*/

.footer-section h4{
    color:#07224d;
    font-size:17px;
    font-weight:700;
    margin-bottom:15px;
    text-transform:uppercase;
    position:relative;
}

.footer-section h4::after{
    content:"";
    width:35px;
    height:2px;
    background:#d6a018;
    display:block;
    margin-top:6px;
}

/*==========================================
                 LIST
==========================================*/

.footer-section ul{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-section ul li{
    display:flex;
    align-items:flex-start;
    gap:8px;
    margin-bottom:10px;
    color:#333;
    font-size:13px;
    line-height:1.5;
    transition:.3s;
}

.footer-section ul li i{
    color:#d6a018;
    font-size:13px;
    min-width:14px;
    margin-top:4px;
}

.footer-section a{
    text-decoration:none;
    color:#333;
    transition:.3s;
}

.footer-section a:hover{
    color:#d6a018;
    padding-left:4px;
}

.footer-section ul li:hover{
    transform:translateX(4px);
}

/*==========================================
            SOCIAL ICONS
==========================================*/

.footer-social{
    display:flex;
    gap:10px;
}

.footer-social a{
    width:36px;
    height:36px;
    border:1.5px solid #d6a018;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#d6a018;
    font-size:14px;
    transition:.3s;
}

.footer-social a:hover{
    background:#d6a018;
    color:#fff;
    transform:translateY(-3px);
}

/*==========================================
               WAVE
==========================================*/

.footer-wave{
    margin-top:10px;
    line-height:0;
}

.footer-wave svg{
    width:100%;
    height:45px;
    display:block;
}

/*==========================================
            COPYRIGHT
==========================================*/

.footer-bottom{
    background:#031738;
    text-align:center;
    padding:10px 10px 12px;
}

.footer-bottom p{
    color:#fff;
    font-size:13px;
    margin-bottom:6px;
}

.footer-bottom span{
    display:inline-block;
    width:100px;
    height:2px;
    background:#d6a018;
}

/*==========================================
             RESPONSIVE
==========================================*/

@media(max-width:991px){

.footer-border{
    border:none;
    padding-left:0;
    margin-top:20px;
}

.footer-logo{
    width:200px;
}

.footer-wave svg{
    height:38px;
}

}

@media(max-width:767px){

.footer-section{
    padding-top:20px;
}

.footer-logo{
    width:180px;
}

.footer-text{
    font-size:12px;
}

.footer-section h4{
    font-size:16px;
}

.footer-section ul li{
    font-size:12px;
    margin-bottom:8px;
}

.footer-social a{
    width:34px;
    height:34px;
    font-size:13px;
}

.footer-wave svg{
    height:30px;
}

.footer-bottom{
    padding:8px 10px;
}

.footer-bottom p{
    font-size:12px;
    margin-bottom:4px;
}

.footer-bottom span{
    width:60px;
}

}