@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&display=swap');

:root{
    /* -- palette -- */
    --ivory:#fbf9f4;
    --ivory-deep:#f2ede2;
    --forest:#2f4a3e;
    --forest-light:#4c6b57;
    --sage:#8fae96;
    --sage-soft:#c7dccb;
    --amber:#c69a6d;
    --amber-light:#e8d3b8;
    --ink:#2a2e28;
    --muted:#6d7568;
    --line:#e6e1d4;
    --white:#ffffff;

    /* -- type -- */
    --display:'Fraunces', serif;
    --body:'Poppins', sans-serif;

    --shadow-sm:0 6px 20px rgba(47,74,62,.06);
    --shadow:0 20px 50px rgba(47,74,62,.09);
    --shadow-lg:0 30px 80px rgba(47,74,62,.12);

    --radius:22px;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--body);
    background:var(--ivory);
    color:var(--ink);
    overflow-x:hidden;
    line-height:1.6;
    padding-top:95px;
}

::selection{
    background:var(--sage-soft);
    color:var(--forest);
}

a{
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

/* -------- focus / motion -------- */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible{
    outline:2px solid var(--amber);
    outline-offset:3px;
    border-radius:8px;
}

@media (prefers-reduced-motion: reduce){
    *{
        animation-duration:.001ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.001ms !important;
        scroll-behavior:auto !important;
    }
}

/* -------- signature: flowing thread -------- */

.thread{
    display:block;
    width:86px;
    height:4px;
    margin:18px auto 0;
    border-radius:99px;
    background:linear-gradient(90deg,var(--sage),var(--amber),var(--sage));
    background-size:220% 100%;
    animation:threadFlow 6s ease-in-out infinite;
}

.section-header .thread{
    margin-left:auto;
    margin-right:auto;
}

@keyframes threadFlow{
    0%{ background-position:0% 50%; }
    50%{ background-position:100% 50%; }
    100%{ background-position:0% 50%; }
}

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

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

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

    padding:24px 8%;

    background:rgba(251,249,244,.75);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border-bottom:1px solid transparent;
    transition:.4s;
}

nav.scrolled{
    padding:14px 8%;
    background:rgba(251,249,244,.92);
    border-bottom-color:var(--line);
    box-shadow:0 10px 30px rgba(47,74,62,.06);
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;

    font-family:var(--display);
    font-size:1.25rem;
    font-weight:500;
    letter-spacing:.2px;
    color:var(--forest);
}

nav-toggle{
    display:none;
}

.nav-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:44px;
    height:44px;
    border:0;
    background:transparent;
    cursor:pointer;
    padding:0;
}

.nav-toggle span{
    display:block;
    width:100%;
    height:2px;
    border-radius:999px;
    background:var(--forest);
    transition:transform .3s ease, opacity .3s ease;
}

nav ul,
nav .nav-links{
    list-style:none;
    display:flex;
    align-items:center;
    gap:34px;
}

.nav-back-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    text-decoration:none;
    color:var(--forest);
    font-weight:600;
    font-size:.95rem;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(93,143,98,.12);
    transition:.3s ease;
}

.nav-back-btn:hover{
    background:rgba(93,143,98,.2);
    transform:translateX(-2px);
}

nav ul li a:not(.nav-buy){
    position:relative;
    text-decoration:none;
    color:var(--forest-light);
    font-weight:500;
    font-size:.95rem;
    letter-spacing:.2px;
    transition:.3s;
}

nav ul li a:not(.nav-buy)::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--amber);
    transition:width .3s ease;
}

nav ul li a:not(.nav-buy):hover{
    color:var(--forest);
}

nav ul li a:not(.nav-buy):hover::after{
    width:100%;
}

/* ================= HERO ================= */

.hero{
    position:relative;
    min-height:100vh;

    display:flex;
    background:
    linear-gradient(
        180deg,
        rgba(20,32,26,.42) 0%,
        rgba(20,32,26,.55) 55%,
        rgba(251,249,244,1) 100%
    ),
    url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1600&q=80');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    color:var(--white);
    overflow:hidden;
}

#hero-particles{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    pointer-events:none;
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;

    min-height:100vh;

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

    text-align:center;

    max-width:900px;
    margin:auto;
    padding:20px;
}

.hero-badge{
    display:inline-block;

    padding:10px 22px;
    margin-bottom:28px;

    border-radius:999px;
    border:1px solid rgba(255,255,255,.35);

    background:rgba(255,255,255,.1);
    backdrop-filter:blur(10px);

    font-size:.82rem;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:500;
}

.hero h1{
    font-family:var(--display);
    font-weight:400;
    font-style:italic;
    font-size:clamp(2.8rem,7.5vw,5.4rem);
    line-height:1.12;
    margin-bottom:26px;
    letter-spacing:.2px;
    text-shadow:0 10px 40px rgba(0,0,0,.25);
}

.hero p{
    font-size:1.08rem;
    max-width:640px;
    line-height:1.85;
    margin-bottom:38px;
    color:rgba(255,255,255,.92);
    font-weight:300;
}

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    justify-content:center;
}

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

.btn{
    display:inline-block;

    padding:15px 32px;

    border-radius:50px;

    text-decoration:none;
    font-weight:600;
    font-size:.95rem;
    letter-spacing:.3px;

    transition:.35s cubic-bezier(.2,.8,.2,1);

    background:var(--forest);
    color:var(--white);
}

.btn:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 34px rgba(47,74,62,.3);
}

.btn-secondary{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.55);
    color:var(--white);
    backdrop-filter:blur(8px);
}

.btn-secondary:hover{
    background:rgba(255,255,255,.9);
    color:var(--forest);
}

.nav-buy{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:var(--forest);
    color:var(--white) !important;
    text-decoration:none;

    padding:11px 24px;
    border-radius:999px;
    font-size:.92rem;
    font-weight:600;

    transition:.35s;
}

.nav-buy:hover{
    background:var(--amber);
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(198,154,109,.4);
}

/* ================= AMBIENT BLOBS ================= */

.blob{
    position:fixed;
    border-radius:50%;
    filter:blur(140px);
    opacity:.5;
    z-index:-1;
}

.blob1{
    width:340px;
    height:340px;
    background:var(--sage-soft);
    left:-120px;
    top:120px;
    animation:float 16s ease-in-out infinite;
}

.blob2{
    width:420px;
    height:420px;
    background:var(--amber-light);
    right:-140px;
    bottom:80px;
    animation:float 19s ease-in-out infinite;
}

@keyframes float{
    0%,100%{ transform:translateY(0) translateX(0); }
    50%{ transform:translateY(-45px) translateX(20px); }
}

/* ================= SECTION HEADERS (shared) ================= */

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

.section-header h2{
    font-family:var(--display);
    font-weight:500;
    font-size:clamp(2.1rem,4vw,2.8rem);
    color:var(--forest);
    margin-bottom:8px;
    letter-spacing:.2px;
}

.section-header p{
    color:var(--muted);
    font-size:1.05rem;
    margin-top:18px;
}

/* ================= CATEGORIES ================= */

.categories{
    position:relative;
    padding:130px 8% 120px;
    background:var(--ivory);
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:26px;
    max-width:1300px;
    margin:0 auto;
}

.category{
    position:relative;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:42px 28px 34px;
    text-align:center;
    box-shadow:var(--shadow-sm);
    transition:transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .4s;
}

.category:hover{
    transform:translateY(-8px);
    border-color:var(--sage-soft);
    box-shadow:var(--shadow);
}

.category-icon{
    width:72px;
    height:72px;
    margin:0 auto 20px;

    border-radius:50%;
    background:#edf6e8;

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

.category-icon svg{
    width:34px;
    height:34px;
    color:#5d8f62;
    stroke-width:2;
}

.category:hover .category-icon{
    transform:scale(1.08);
}

.category h3{
    font-family:var(--display);
    font-weight:500;
    font-size:1.3rem;
    margin-bottom:12px;
    color:var(--forest);
}

.category p{
    color:var(--muted);
    line-height:1.7;
    font-size:.95rem;
}

/* ================= WHY DOTERRA ================= */

.why-doterra{
    padding:120px 8%;
    background:var(--ivory-deep);
}

.why-doterra h2{
    text-align:center;
    font-family:var(--display);
    font-weight:500;
    font-size:clamp(2.1rem,4vw,2.8rem);
    color:var(--forest);
    margin-bottom:18px;
}

.why-doterra > .container > p{
    text-align:center;
    max-width:720px;
    margin:0 auto 56px;
    color:var(--muted);
    font-size:1.05rem;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:24px;
    max-width:1300px;
    margin:0 auto;
}

.why-card{
    background:var(--white);
    padding:34px 30px;
    border-radius:20px;
    border:1px solid var(--line);
    box-shadow:var(--shadow-sm);
    transition:.4s cubic-bezier(.2,.8,.2,1);
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
    border-color:var(--sage-soft);
}

.why-card h3{
    font-size:1.1rem;
    color:var(--forest);
    margin-bottom:12px;
    font-weight:600;
}

.why-card p{
    color:var(--muted);
    line-height:1.7;
    font-size:.95rem;
}

.section-image{
    width:100%;
    max-width:1100px;

    display:block;
    margin:0 auto;

    border-radius:28px;
    box-shadow:var(--shadow-lg);
}

/* ================= CPTG ================= */

.cptg{
    padding:110px 8%;
    background:var(--ivory);
}

.cptg-box{
    max-width:900px;
    margin:0 auto;

    background:var(--white);
    border:1px solid var(--line);
    border-radius:32px;
    padding:64px 50px;
    text-align:center;
    box-shadow:var(--shadow);
}

.cptg h2{
    font-family:var(--display);
    font-weight:500;
    font-style:italic;
    font-size:2.6rem;
    color:var(--forest);
    letter-spacing:1px;
}

.cptg h3{
    color:var(--amber);
    font-weight:600;
    font-size:.95rem;
    letter-spacing:2px;
    text-transform:uppercase;
    margin:16px 0 22px;
}

.cptg-box > p{
    color:var(--muted);
    max-width:600px;
    margin:0 auto;
    line-height:1.8;
}

.cptg-points{
    display:flex;
    justify-content:center;
    gap:34px;
    flex-wrap:wrap;
    margin-top:36px;
}

.cptg-points div{
    color:var(--forest-light);
    font-weight:500;
    font-size:.95rem;
}

/* ================= PRODUCTS ================= */

.products{
    padding:120px 8%;
    text-align:center;
    background:var(--ivory-deep);
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:26px;
    max-width:1300px;
    margin:0 auto;
}

.card{
    background:var(--white);
    padding:30px;
    border-radius:var(--radius);
    border:1px solid var(--line);
    box-shadow:var(--shadow-sm);
    transition:box-shadow .4s ease;
    will-change:transform;
}

.card:hover{
    box-shadow:var(--shadow-lg);
}

.card img{
    width:100%;
    height:210px;
    object-fit:cover;
    border-radius:16px;
    margin-bottom:22px;
}

.card h3{
    font-family:var(--display);
    font-weight:500;
    font-size:1.2rem;
    margin-bottom:12px;
    color:var(--forest);
}

.card p{
    color:var(--muted);
    font-size:.95rem;
}

/* ================= STORY / WELLNESS ================= */

.story{
    position:relative;
    text-align:center;
    padding:150px 8%;
    background:var(--ivory);
}

.story h2{
    font-family:var(--display);
    font-weight:400;
    font-style:italic;
    font-size:clamp(2.4rem,5vw,3.4rem);
    color:var(--forest);
    margin-bottom:22px;
}

.story p{
    max-width:660px;
    margin:0 auto;
    line-height:1.9;
    color:var(--muted);
    font-size:1.08rem;
}

/* ================= STATS ================= */

.stats{
    display:flex;
    justify-content:center;
    gap:70px;
    flex-wrap:wrap;

    padding:100px 20px 130px;
    background:var(--ivory);
}

.stat{
    text-align:center;
}

.stat h3{
    font-family:var(--display);
    font-weight:500;
    font-size:3.6rem;
    color:var(--amber);
}

.stat p{
    margin-top:10px;
    color:var(--muted);
    font-weight:500;
    letter-spacing:.3px;
}

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

.contact-section{
    padding:130px 8%;
    background:linear-gradient(160deg,var(--ivory-deep),var(--sage-soft) 140%);
    position:relative;
    overflow:hidden;
}

.contact-header{
    text-align:center;
    margin-bottom:54px;
    position:relative;
    z-index:2;
}

.contact-header h2{
    font-family:var(--display);
    font-weight:400;
    font-style:italic;
    font-size:clamp(2.4rem,5vw,3.4rem);
    color:var(--forest);
    margin-bottom:18px;
}

.contact-header p{
    font-size:1.05rem;
    color:var(--forest-light);
    max-width:520px;
    margin:0 auto;
}

.contact-card{
    max-width:820px;
    margin:auto;

    background:var(--white);
    border-radius:32px;
    padding:52px;

    box-shadow:var(--shadow-lg);
    position:relative;
    z-index:2;
}

.contact-card form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-card input,
.contact-card textarea{
    width:100%;
    border:1px solid var(--line);
    background:var(--ivory);
    padding:18px 20px;
    border-radius:16px;
    font-size:1rem;
    font-family:var(--body);
    color:var(--ink);
    transition:.3s;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder{
    color:#a2a89a;
}

.contact-card input:focus,
.contact-card textarea:focus{
    outline:none;
    border-color:var(--sage);
    background:var(--white);
    box-shadow:0 0 0 4px rgba(143,174,150,.18);
}

.send-btn{
    border:none;
    padding:19px;
    border-radius:16px;
    cursor:pointer;
    font-size:1rem;
    font-weight:600;
    letter-spacing:.3px;
    color:var(--white);

    background:linear-gradient(135deg,var(--forest),var(--forest-light));
    transition:.35s;
}

.send-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 36px rgba(47,74,62,.28);
}

.facebook-box{
    text-align:center;
    margin-top:48px;
    position:relative;
    z-index:2;
}

.facebook-box p{
    margin-bottom:20px;
    font-size:1.1rem;
    color:var(--forest-light);
}

.facebook-box a{
    display:inline-block;
    padding:15px 28px;
    background:var(--white);
    border-radius:50px;
    text-decoration:none;
    color:#1877f2;
    font-weight:600;
    box-shadow:var(--shadow-sm);
    transition:.3s;
}

.facebook-box a:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow);
}

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

footer{
    text-align:center;
    padding:40px 20px;
    background:var(--ivory);
    border-top:1px solid var(--line);
    color:var(--muted);
    font-size:.9rem;
}

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

@media(max-width:768px){

    nav{
        flex-wrap:wrap;
        align-items:center;
        gap:10px;
        padding:12px 5%;
    }

    nav.scrolled{
        padding:10px 5%;
    }

    .logo{
        font-size:.95rem;
        text-align:left;
        justify-content:center;
        flex:1;
        line-height:1.3;
    }

    .nav-back-btn{
        padding:7px 10px;
        font-size:.85rem;
        white-space:nowrap;
    }

    .nav-toggle{
        display:flex;
    }

    nav ul,
    nav .nav-links{
        display:none;
        flex-direction:column;
        width:100%;
        gap:8px;
        padding-top:6px;
    }

    nav.open ul,
    nav.open .nav-links{
        display:flex;
    }

    nav.open .nav-toggle span:nth-child(1){
        transform:translateY(7px) rotate(45deg);
    }

    nav.open .nav-toggle span:nth-child(2){
        opacity:0;
    }

    nav.open .nav-toggle span:nth-child(3){
        transform:translateY(-7px) rotate(-45deg);
    }

    nav ul li{
        width:100%;
        text-align:center;
    }

    nav ul li a:not(.nav-buy){
        display:inline-block;
        width:100%;
        padding:6px 0;
    }

    .nav-buy{
        display:inline-flex;
        justify-content:center;
        width:100%;
    }

    .language-switch{
        margin-left:0;
        justify-content:center;
        flex-wrap:nowrap;
        gap:8px;
        width:auto;
    }

    .language-switch a,
    .language-switch span{
        display:inline-flex;
        align-items:center;
    }

    .hero h1{
        font-size:2.6rem;
    }

    .producthero,
    .buyhero{
        padding-top:90px;
    }

    .story h2,
    .contact-header h2,
    .section-header h2{
        font-size:2rem;
    }

    .contact-card{
        padding:32px 24px;
    }

    .cptg-box{
        padding:44px 26px;
    }

    .stats{
        gap:44px;
    }
}
.footer{

    margin-top:100px;

    background:linear-gradient(
        135deg,
        #5d8f62,
        #7bae7f
    );

    color:#fff;
}

.footer-container{

    max-width:1200px;
    margin:auto;

    padding:70px 8%;

    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer h3{

    font-size:2rem;
    margin-bottom:15px;
}

.footer h4{

    margin-bottom:20px;
    font-size:1.1rem;
}

.footer p{

    line-height:1.8;
    color:rgba(255,255,255,.9);
}

.footer a{

    display:block;
    margin-bottom:12px;

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

    text-decoration:none;

    transition:.3s;
}

.footer a:hover{

    color:#fff;
    transform:translateX(6px);
}

.footer-bottom{

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

    text-align:center;

    padding:25px;
}

.footer-bottom p{

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

@media(max-width:768px){

    .footer-container{

        grid-template-columns:1fr;
        text-align:center;
    }

    .footer a:hover{

        transform:none;
    }

}

.language-switch{
    display:flex;
    align-items:center;
    gap:10px;
    margin-left:20px;
}

.language-switch a{
    text-decoration:none;
    color:#666;
    font-weight:600;
    transition:.25s;
}

.language-switch a:hover{
    color:#111;
}

.language-switch a.active{
    color:#2E8B57;
    font-weight:700;
}

.language-switch span{
    color:#bbb;
}
.why-doterra{
    position:relative;
    padding:120px 0;
    overflow:hidden;

    background-image:url("../images/nature1.png");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}
.why-overlay{
    position:absolute;
    inset:0;

    background:rgba(255,255,255,.72);
    backdrop-filter:blur(2px);
}
.why-doterra .container{
    position:relative;
    z-index:2;
}
.why-doterra h2{
    text-align:center;
    font-size:3rem;
    color:#264653;
}
.why-doterra p{
    text-align:center;
    max-width:700px;
    margin:20px auto 50px;
}
/* ================= BOGO SECTION ================= */

.bogo-section{

    position:relative;
    overflow:hidden;

    padding:140px 8%;

    background:
    linear-gradient(
        135deg,
        rgba(47,74,62,.97),
        rgba(76,107,87,.92)
    ),
    url("../images/bogo-bg.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    color:#fff;
}

.bogo-section::before{

    content:"";

    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(255,255,255,.12),
    transparent 45%);

    pointer-events:none;
}

.bogo-section::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    right:-120px;
    top:-120px;

    border-radius:50%;

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

    filter:blur(80px);
}

.bogo-section{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:70px;

    align-items:center;
}

.bogo-left{

    position:relative;
    z-index:2;
}

.bogo-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

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

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

    backdrop-filter:blur(15px);

    border-radius:999px;

    font-size:.92rem;

    font-weight:600;

    margin-bottom:28px;
}

.bogo-left h2{

    font-family:var(--display);

    font-size:clamp(3rem,5vw,4.8rem);

    line-height:1.08;

    margin-bottom:25px;

    color:#fff;
}

.bogo-left h2 span{

    color:#F6D37A;
}

.bogo-left p{

    max-width:650px;

    font-size:1.08rem;

    line-height:1.9;

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

    margin-bottom:45px;
}

.bogo-features{

    display:grid;

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

    gap:18px;

    margin-bottom:45px;
}

.bogo-features div{

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

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

    backdrop-filter:blur(12px);

    border-radius:18px;

    padding:20px;

    font-size:.96rem;

    font-weight:500;

    transition:.35s;
}

.bogo-features div:hover{

    transform:translateY(-8px);

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

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

.bogo-left .btn{

    padding:16px 36px;

    font-size:1rem;

    border-radius:50px;
}

.bogo-right{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:2;
}

.bogo-right::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

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

    filter:blur(35px);

    z-index:-1;
}

.bogo-right img{

    width:100%;

    max-width:520px;

    filter:drop-shadow(0 35px 70px rgba(0,0,0,.35));

    animation:bogoFloat 5s ease-in-out infinite;
}

@keyframes bogoFloat{

    0%,100%{

        transform:translateY(0px) rotate(-2deg);
    }

    50%{

        transform:translateY(-18px) rotate(2deg);
    }
}

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

@media(max-width:1100px){

    .bogo-section{

        grid-template-columns:1fr;

        text-align:center;
    }

    .bogo-left p{

        margin-left:auto;
        margin-right:auto;
    }

    .bogo-features{

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

    .bogo-right{

        margin-top:50px;
    }

}

@media(max-width:768px){

    .bogo-section{

        padding:90px 6%;
    }

    .bogo-left h2{

        font-size:2.5rem;
    }

    .bogo-features{

        grid-template-columns:1fr;
    }

    .bogo-right img{

        max-width:320px;
    }

}