/*=========================================================
TRUE YOG
Premium Yoga Website Design System
Author : Vansh Bainsla
Version : 1.0
=========================================================*/



/*=========================================================
GOOGLE FONTS
=========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');



/*=========================================================
CSS VARIABLES
=========================================================*/

:root{

    /* Brand Colors */

    --primary:#4E6F2D;

    --primary-light:#6C8D38;

    --primary-dark:#36501B;

    --secondary:#E8B04B;

    --secondary-light:#F5C96C;

    --white:#FFFFFF;

    --black:#121212;

    --dark:#1E1E1E;

    --gray:#666666;

    --light-gray:#EAEAEA;

    --section:#F8FBF7;

    --border:#E4E4E4;

    /* Typography */

    --heading-font:"Playfair Display",serif;

    --body-font:"Poppins",sans-serif;

    /* Shadows */

    --shadow-sm:0 5px 15px rgba(0,0,0,.08);

    --shadow-md:0 12px 30px rgba(0,0,0,.12);

    --shadow-lg:0 25px 60px rgba(0,0,0,.18);

    /* Radius */

    --radius-sm:8px;

    --radius-md:14px;

    --radius-lg:22px;

    --radius-xl:40px;

    /* Transition */

    --transition:.35s ease;

    /* Container */

    --container:1400px;

}

/*=========================================================
TEMP HOME PREVIEW
=========================================================*/

.hero-preview{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        #f8fbf7,
        #ffffff
    );

}

.preview-content{

    text-align:center;

    max-width:900px;

}

.preview-tag{

    display:inline-block;

    background:rgba(78,111,45,.12);

    color:var(--primary);

    padding:12px 24px;

    border-radius:40px;

    font-weight:600;

    margin-bottom:25px;

}

.preview-content h1{
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    margin-bottom:25px;
    line-height:1.2;
}
.preview-content p{

    max-width:700px;

    margin:auto;

    margin-bottom:40px;

    font-size:18px;

}


html,
body{

    width:100%;

    max-width:100%;

    overflow-x:hidden;

}

@media (max-width:768px){

html,
body{

overflow-x:hidden;

}

.container{

width:100%;

max-width:100%;

padding:0 20px;

}

.whatsapp-btn{

position:fixed;

right:16px;

bottom:90px;

width:56px;

height:56px;

font-size:24px;

z-index:9999;

}

.back-to-top{

position:fixed;

right:16px;

bottom:20px;

width:52px;

height:52px;

font-size:16px;

z-index:9999;

}



  .hero-preview {
    padding: 20px;
  }

  .preview-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .preview-content p {
    font-size: 15px;
  }

  .preview-tag {
    padding: 8px 16px;
    font-size: 14px;
  }
}
/*=========================================================
RESET
=========================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

*::before,

*::after{

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

    font-size:16px;

}

body{

    font-family:var(--body-font);

    color:var(--dark);

    background:var(--white);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

button{

    border:none;

    outline:none;

    cursor:pointer;

    background:none;

    font-family:inherit;

}

input{

    outline:none;

    border:none;

    font-family:inherit;

}

ul{

    list-style:none;

}



/*=========================================================
GLOBAL CONTAINER
=========================================================*/

.container{

    width:90%;

    max-width:var(--container);

    margin:auto;

}



/*=========================================================
TYPOGRAPHY
=========================================================*/

h1,h2,h3,h4,h5,h6{

    font-family:var(--heading-font);

    color:var(--black);

    line-height:1.2;

}

h1{

    font-size:4.3rem;

}

h2{

    font-size:3rem;

}

h3{

    font-size:2rem;

}

p{

    color:var(--gray);

    font-size:1rem;

    line-height:1.9;

}



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

section{

    padding:110px 0;

}



/*=========================================================
CUSTOM SCROLLBAR
=========================================================*/

::-webkit-scrollbar{

    width:12px;

}

::-webkit-scrollbar-track{

    background:#F4F4F4;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(

        to bottom,

        var(--primary),

        var(--secondary)

    );

    border-radius:100px;

}



/*=========================================================
TEXT SELECTION
=========================================================*/

::selection{

    background:var(--primary);

    color:#fff;

}



/*=========================================================
SCROLL PROGRESS
=========================================================*/

.scroll-progress{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:linear-gradient(

        90deg,

        var(--primary),

        var(--secondary)

    );

    z-index:999999;

}



/*=========================================================
ANNOUNCEMENT BAR
=========================================================*/

.announcement-bar{

    background:linear-gradient(

        90deg,

        var(--primary),

        var(--primary-dark)

    );

    color:#fff;

    font-size:.9rem;

    padding:12px 0;

}

.announcement-container{

    width:90%;

    max-width:1400px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

}

.announcement-left{

    display:flex;

    align-items:center;

    gap:12px;

}

.announcement-left i{

    color:var(--secondary);

}

.announcement-right{

    display:flex;

    align-items:center;

    gap:30px;

}

.announcement-right a{

    color:#fff;

    transition:var(--transition);

}

.announcement-right a:hover{

    color:var(--secondary);

}



/*=========================================================
HEADER
=========================================================*/

#header{

    position:sticky;

    top:0;

    width:100%;

    z-index:99999;

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

    backdrop-filter:blur(22px);

    -webkit-backdrop-filter:blur(22px);

    border-bottom:1px solid rgba(0,0,0,.06);

    transition:.4s ease;

}

#header.scrolled{

    box-shadow:var(--shadow-md);

}



/*=========================================================
NAVBAR
=========================================================*/

.navbar-container{

    width:90%;

    max-width:1400px;

    margin:auto;

    height:92px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    width:215px;

    transition:.35s;

}

.logo:hover img{

    transform:scale(1.03);

}



/*=========================================================
DESKTOP MENU
=========================================================*/

.desktop-menu ul{

    display:flex;

    align-items:center;

    gap:42px;

}

.desktop-menu ul li{

    position:relative;

}

.desktop-menu ul li a{

    font-size:16px;

    font-weight:500;

    color:var(--dark);

    transition:.35s;

    position:relative;

    padding:8px 0;

}

.desktop-menu ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

}

.desktop-menu ul li a:hover,

.desktop-menu ul li a.active{

    color:var(--primary);

}

.desktop-menu ul li a:hover::after,

.desktop-menu ul li a.active::after{

    width:100%;

}
/*=========================================================
NAVBAR RIGHT
=========================================================*/

.navbar-right{

    display:flex;

    align-items:center;

    gap:18px;

}

/*=========================================================
SEARCH BUTTON
=========================================================*/

.search-btn{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#fff;

    color:var(--dark);

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

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.search-btn:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-3px);

}

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

.social-icons{

    display:flex;

    align-items:center;

    gap:12px;

}

.social-icons a{

    width:42px;

    height:42px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#fff;

    color:var(--primary);

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

    transition:.35s;

}

.social-icons a:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-4px) rotate(360deg);

}

/*=========================================================
CTA BUTTON
=========================================================*/

.cta-btn{

    padding:15px 32px;

    border-radius:50px;

    color:#fff;

    font-weight:600;

    letter-spacing:.3px;

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

    box-shadow:
    0 15px 30px rgba(78,111,45,.25);

    transition:.4s;

}

.cta-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 22px 45px rgba(78,111,45,.35);

}

/*=========================================================
HAMBURGER
=========================================================*/

.hamburger{

    display:none;

    width:52px;

    height:52px;

    border-radius:50%;

    background:#fff;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    gap:6px;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.hamburger span{

    width:24px;

    height:2px;

    background:var(--dark);

    transition:.35s;

}

.hamburger:hover{

    background:var(--primary);

}

.hamburger:hover span{

    background:#fff;

}

/*=========================================================
DROPDOWN
=========================================================*/

.dropdown{

    position:relative;

}

.dropdown>a{

    display:flex;

    align-items:center;

    gap:8px;

}

.dropdown>a i{

    font-size:12px;

    transition:.35s;

}

.dropdown:hover>a i{

    transform:rotate(180deg);

}

.dropdown-menu{

    position:absolute;

    left:0;

    top:140%;

    min-width:260px;

    background:#fff;

    border-radius:18px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s;

    overflow:hidden;

}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown-menu li{

    width:100%;

}

.dropdown-menu li a{

    display:block;

    padding:18px 25px;

    border-bottom:1px solid rgba(0,0,0,.05);

    transition:.3s;

}

.dropdown-menu li:last-child a{

    border:none;

}

.dropdown-menu li a:hover{

    background:var(--section);

    color:var(--primary);

    padding-left:35px;

}

/*=========================================================
SEARCH OVERLAY
=========================================================*/

.search-overlay{

    position:fixed;

    inset:0;

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

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:999999;

}

.search-overlay.active{

    opacity:1;

    visibility:visible;

}

.search-box{

    width:min(700px,90%);

}

.search-box form{

    display:flex;

    align-items:center;

    background:#fff;

    border-radius:70px;

    overflow:hidden;

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

}

.search-box input{

    flex:1;

    padding:24px 30px;

    font-size:18px;

}

.search-box button{

    width:90px;

    height:76px;

    color:#fff;

    background:var(--primary);

    transition:.35s;

}

.search-box button:hover{

    background:var(--primary-dark);

}

.close-search{

    position:absolute;

    top:45px;

    right:45px;

    width:55px;

    height:55px;

    border-radius:50%;

    color:#fff;

    background:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    transition:.35s;

}

.close-search:hover{

    transform:rotate(180deg);

}
/*=========================================================
MOBILE MENU
=========================================================*/

.mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:380px;

    max-width:100%;

    height:100vh;

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

    backdrop-filter:blur(25px);

    -webkit-backdrop-filter:blur(25px);

    z-index:999999;

    overflow-y:auto;

    transition:.45s ease;

    padding:35px;

    box-shadow:-10px 0 50px rgba(0,0,0,.15);

}

.mobile-menu.active{

    right:0;

}

.mobile-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:45px;

}

.mobile-top img{

    width:170px;

}

.close-menu{

    width:50px;

    height:50px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    transition:.35s;

}

.close-menu:hover{

    transform:rotate(180deg);

}

.mobile-menu nav ul{

    display:flex;

    flex-direction:column;

    gap:10px;

}

.mobile-menu nav ul li a{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 20px;

    border-radius:14px;

    font-weight:600;

    color:var(--dark);

    transition:.35s;

}

.mobile-menu nav ul li a:hover{

    background:var(--section);

    color:var(--primary);

    transform:translateX(10px);

}

.mobile-divider{

    width:100%;

    height:1px;

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

    margin:40px 0;

}

.mobile-contact h4{

    margin-bottom:20px;

    font-size:22px;

}

.mobile-contact p{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

}

.mobile-contact i{

    color:var(--primary);

}

.mobile-social{

    display:flex;

    gap:15px;

    margin:40px 0;

}

.mobile-social a{

    width:46px;

    height:46px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:var(--section);

    color:var(--primary);

    transition:.35s;

}

.mobile-social a:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-5px);

}

.mobile-cta{

    display:block;

    text-align:center;

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

    color:#fff;

    padding:18px;

    border-radius:50px;

    font-weight:600;

    box-shadow:var(--shadow-md);

    transition:.35s;

}

.mobile-cta:hover{

    transform:translateY(-4px);

}



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

.mobile-overlay{

    position:fixed;

    inset:0;

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

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999998;

}

.mobile-overlay.active{

    opacity:1;

    visibility:visible;

}



/*=========================================================
WHATSAPP BUTTON
=========================================================*/

.whatsapp-btn{

    position:fixed;

    right:30px;

    bottom:110px;

    width:65px;

    height:65px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#25D366;

    color:#fff;

    font-size:28px;

    box-shadow:0 15px 35px rgba(37,211,102,.35);

    z-index:999;

    transition:.35s;

    animation:whatsappPulse 2s infinite;

}

.whatsapp-btn:hover{

    transform:translateY(-6px) scale(1.08);

}



/*=========================================================
BACK TO TOP
=========================================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

    box-shadow:var(--shadow-md);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

.back-to-top.active{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    transform:translateY(-6px);

    background:var(--primary-dark);

}



/*=========================================================
KEYFRAME ANIMATIONS
=========================================================*/

@keyframes whatsappPulse{

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,.45);

    }

    70%{

        box-shadow:0 0 0 18px rgba(37,211,102,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}



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

@media(max-width:1200px){

.desktop-menu{

display:none;

}

.social-icons{

display:none;

}

.hamburger{

display:flex;

}

.cta-btn{

display:none;

}

}

@media(max-width:768px){

.announcement-right{

display:none;

}

.announcement-container{

justify-content:center;

text-align:center;

}

.logo img{

width:165px;

}

.navbar-container{

height:80px;

}

.mobile-menu{

width:100%;

}

.whatsapp-btn{

right:20px;

bottom:95px;

width:58px;

height:58px;

}

.back-to-top{

right:20px;

bottom:20px;

width:55px;

height:55px;

}

}

@media(max-width:500px){

h1{

font-size:2.7rem;

}

h2{

font-size:2rem;

}

section{

padding:80px 0;

}

.search-box input{

font-size:16px;

padding:20px;

}

.search-box button{

width:70px;

}

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

.footer{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        135deg,
        #0f1612 0%,
        #18261c 40%,
        #233528 100%
    );

    color:#fff;

    padding-top:120px;

}



/*=========================================================
FOOTER BACKGROUND SHAPES
=========================================================*/

.footer-shape{

    position:absolute;

    border-radius:50%;

    filter:blur(100px);

    opacity:.12;

    pointer-events:none;

}

.footer-shape-1{

    width:420px;

    height:420px;

    background:#2FA66A;

    top:-180px;

    left:-150px;

}

.footer-shape-2{

    width:380px;

    height:380px;

    background:#E8B04B;

    right:-120px;

    bottom:-120px;

}



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

.footer-cta{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:50px;

    margin-bottom:90px;

    padding:55px;

    border-radius:30px;

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

    backdrop-filter:blur(20px);

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

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

}

.footer-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(47,166,106,.18);

    color:#8AE3AE;

    font-size:.95rem;

    font-weight:600;

    margin-bottom:22px;

}

.footer-cta h2{

    color:#fff;

    font-size:2.7rem;

    margin-bottom:18px;

}

.footer-cta p{

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

    max-width:650px;

}

.footer-cta-btn{

    flex-shrink:0;

}



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

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.4fr;

    gap:60px;

    padding-bottom:70px;

}



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

.footer-column h3{

    color:#fff;

    font-size:1.45rem;

    margin-bottom:28px;

    position:relative;

}

.footer-column h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:55px;

    height:3px;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        #2FA66A,
        #E8B04B
    );

}



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

.footer-logo{

    width:220px;

    margin-bottom:28px;

}

.footer-about p{

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

    margin-bottom:28px;

    line-height:1.9;

}

.footer-about blockquote{

    padding-left:22px;

    border-left:4px solid #2FA66A;

    color:#fff;

    font-style:italic;

    line-height:1.8;

}



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

.footer-column ul{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.footer-column ul li a{

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

    transition:.35s;

}

.footer-column ul li a:hover{

    color:#2FA66A;

    padding-left:10px;

}



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

.footer-social{

    display:flex;

    gap:16px;

    margin-top:35px;

}

.footer-social a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

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

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:#2FA66A;

    transform:translateY(-6px) rotate(360deg);

    box-shadow:0 18px 35px rgba(47,166,106,.35);

}
/*=========================================================
FOOTER CONTACT
=========================================================*/

.contact-list{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.contact-list li{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.contact-list i{

    width:50px;

    height:50px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(47,166,106,.12);

    color:#2FA66A;

    font-size:18px;

    transition:.35s;

}

.contact-list li:hover i{

    background:#2FA66A;

    color:#fff;

    transform:rotate(360deg);

}

.contact-list strong{

    display:block;

    color:#fff;

    margin-bottom:6px;

    font-weight:600;

}

.contact-list span,

.contact-list a{

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

    line-height:1.7;

    transition:.35s;

}

.contact-list a:hover{

    color:#2FA66A;

}



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

.footer-buttons{

    display:flex;

    gap:15px;

    margin-top:35px;

    flex-wrap:wrap;

}

.footer-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 28px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        #2FA66A,
        #1F7A4C
    );

    color:#fff;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 35px rgba(47,166,106,.25);

}

.footer-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 22px 45px rgba(47,166,106,.35);

}

.footer-btn.secondary{

    background:transparent;

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

}

.footer-btn.secondary:hover{

    background:#25D366;

    border-color:#25D366;

}



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

.newsletter{

    margin:70px 0;

    padding:60px;

    border-radius:30px;

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

    backdrop-filter:blur(18px);

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

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

}

.newsletter h2{

    color:#fff;

    margin-bottom:15px;

}

.newsletter p{

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

    max-width:600px;

}

.newsletter-form{

    display:flex;

    width:100%;

    max-width:560px;

    background:#fff;

    border-radius:60px;

    overflow:hidden;

}

.newsletter-form input{

    flex:1;

    padding:20px 25px;

    font-size:16px;

}

.newsletter-form button{

    padding:0 35px;

    background:#2FA66A;

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.newsletter-form button:hover{

    background:#1F7A4C;

}



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

.footer-bottom{

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

    padding:35px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;

}

.footer-bottom p{

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

}

.footer-bottom-center{

    display:flex;

    align-items:center;

    gap:16px;

    flex-wrap:wrap;

}

.footer-bottom-center a{

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

    transition:.35s;

}

.footer-bottom-center a:hover{

    color:#2FA66A;

}

.footer-bottom-right strong{

    color:#2FA66A;

}

.footer-bottom-right i{

    color:#ff4d6d;

    margin:0 6px;

}



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

@media(max-width:1200px){

.footer-grid{

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

}

.footer-cta{

flex-direction:column;

text-align:center;

}

.newsletter{

flex-direction:column;

text-align:center;

}

.newsletter-form{

max-width:100%;

}

}

@media(max-width:768px){

.footer{

padding-top:80px;

}

.footer-grid{

grid-template-columns:1fr;

gap:50px;

}

.footer-cta{

padding:35px 25px;

}

.footer-cta h2{

font-size:2rem;

}

.newsletter{

padding:35px 25px;

}

.newsletter-form{

flex-direction:column;

border-radius:18px;

background:transparent;

gap:15px;

}

.newsletter-form input{

border-radius:12px;

}

.newsletter-form button{

padding:18px;

border-radius:12px;

}

.footer-bottom{

justify-content:center;

text-align:center;

}

.footer-bottom-center{

justify-content:center;

}

}

@media(max-width:480px){

.footer-logo{

width:180px;

}

.footer-social{

justify-content:center;

flex-wrap:wrap;

}

.footer-buttons{

flex-direction:column;

}

.footer-btn{

width:100%;

}

}
