@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

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

:root {
    --bg_1: #A0F1BD;
    --bg_2: #F9F9F9;
    --bg_3: #2E4F21;
    --bg_4: #ffffff;
    --bg_5: #F4F7F5;
    --bg_6: #D2F8DC;

    --accent-1: #D2F8DC;
    --accent-2: #D7D7D7;

    --paragraph: #2E4F21;

    --on-accent-1: #ffffff;
    --on-accent-2: #506349;
    --on-accent-3: #7D9276;
    --on-accent-4: #D5E4D0;

    --divider-1: #2E4F21;
    --divider-2: #C7C7C7;
}

body {
    margin: 0;
    display: flex;
    justify-content: center;
}

.page {
    width: 100%;
    max-width: 1280px;
}

/* ===============================HEADER============================================== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;

    font-family: "Work Sans", sans-serif;
    padding: 32px 40px;

    background-color: var(--bg_1);
    color: var(--paragraph);
}

nav .left img {
    width: 100%;
}

nav .right{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

nav .right .one {
    font-size: 12px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.045em;

    color: var(--paragraph);
}

nav .right .two {
    font-size: 12px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.045em;

    padding: 12px;
    border-radius: 51.57px;

    background-color: var(--paragraph);
    color: var(--on-accent-1);

    transition: 0.4s;
}

nav .right .two:hover {
    background-color: var(--bg_2);
    color: var(--bg_3);
}

nav .right .two::after {
    content: "Book an appointment";
}


@media (max-width: 1279px) and (min-width: 800px) {
    nav {
        padding: 24px;
    }
}

@media (max-width: 799px) {
    nav {
        padding: 16px;
    }

    nav .right{
        gap: 16px;
    }

    nav .right .two::after {
        content: "Book";
    }
}
/* ==============================MAIN================================================= */
main {
    display: flex;
    flex-direction: column;
}
/* ===============================HERO============================================== */

.hero {
    display: flex;
    align-items: center;

    width: 100%;

    font-family: "Work Sans", sans-serif;
    padding: 100px 40px;

    background-color: var(--bg_1);
    color: var(--paragraph);

    border-radius: 0 0 16px 16px;
}

.hero-div {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
}

.hero .block {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 50px;
}

.hero .block-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero h1 {
    font-size: 80px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.08em;

    color: var(--paragraph);
}

.hero p {
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.045em;

    color: var(--paragraph);
}

.hero .block a {
    font-size: 12px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.045em;

    padding: 12px;
    border-radius: 51.57px;

    background-color: var(--paragraph);
    color: var(--on-accent-1);

    transition: 0.4s;
}

.hero .block a:hover {
    background-color: var(--bg_2);
    color: var(--bg_3);
}

.hero .img {
    display: flex;
    justify-content: flex-end;
}

.hero .img img{
    width: 429px;
    height: auto;
}

@media (max-width: 1279px) and (min-width: 800px) {
    .hero {
        padding: 100px 24px;
        position: sticky;
        top: 0;
        z-index: -100;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-div {
        gap: 32px;
    }

    .hero .img img{
        width: 273px;
    }
}

@media (max-width: 799px) {
   .hero {
        padding: 40px 16px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero .block-top {
        gap: 16px;
    }

    .hero-div {
        flex-direction: column;
        gap: 40px;
        justify-content: center;
    }

    .hero .block {
        gap: 40px;
    }

    .hero .img {
        justify-content: center;
        order: -1;
    }

    .hero .img img{
        width: 343px;
    }
}

@media (max-height: 700px) {
    nav {
        max-height: 9vh;
    }

    .hero {
        max-height: 89vh;
    }
}

/* ==================================SERVICES======================================== */
.intro {
    display: flex;
    align-items: center;

    width: 100%;

    font-family: "Work Sans", sans-serif;
    padding: 120px 40px 100px 40px;

    background-color: var(--bg_4);
    color: var(--paragraph);
}

.intro div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28.04px;
    width: 100%;
}

.intro div h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.02em;
}

.intro div .one {
    font-size: 60px;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: -0.07em;
}

.intro div .two {
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.045em;
}

.intro div a {
    font-size: 12px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.045em;

    padding: 12px;
    border-radius: 51.57px;
    background-color: var(--paragraph);
    color: var(--on-accent-1);

    transition: 0.4s;
}

.intro div a:hover {
    background-color: var(--bg_1);
    color: var(--bg_3);
}


@media (max-width: 1279px) and (min-width: 800px) {
    .intro div .one {
        font-size: 48px;
    }

    .intro {
        padding: 120px 24px 100px 24px;
    }
}

@media (max-width: 799px) {
    .intro div .one {
        font-size: 32px;
    }

    .intro {
        padding: 120px 16px 100px 16px;
    }
}
/* ==============================SECTION-ONE=========================================== */
.section-one {
    display: flex;
    justify-content: flex-start;

    width: 100%;

    font-family: "Work Sans", sans-serif;
    padding: 20px 0 20px 20px;

    background-color: var(--bg_4);
    color: var(--paragraph);
} 

.section-one .card {
    display: flex;
    gap: 70px;
    width: 1036px;

    padding: 80px 100px 80px 80px;
    border-radius: 20px;

    background-color: var(--accent-1);
} 

.section-one img {
    width: auto;
    height: 285.21px;
} 

.section-one .right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 70px;
} 

.section-one .top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
} 

.section-one h3 {
    font-size: 40px;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: -0.045em;
} 

.section-one .top p {
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.045em;
} 

.section-one .bottom {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
} 

.section-one .bottom p {
    font-size: 12px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.045em;

    padding: 12px;
    border-radius: 8px;
    background-color: var(--bg_4);
} 


@media (max-width: 1279px) and (min-width: 800px) {
    .section-one {
        padding: 20px 24px 20px 24px;
    } 

    .section-one .card {
        gap: 60px;
        padding: 54px 60px;
    } 

    .section-one .right {
        gap: 54px;
    } 

    .section-one .top {
        gap: 24px;
    } 

    .section-one h3{
        font-size: 34px;
    } 

    .section-one img {
        width: auto;
        height: 214.82px;
    } 
}

@media (max-width: 799px) {
    .section-one {
        padding: 0 16px 16px 16px;
    } 

    .section-one .card {
        flex-direction: column;
        align-items: center;
        gap: 70px;
        padding: 40px 16px;
    } 

    .section-one .top {
        gap: 24px;
    } 

   .section-one h3{
        font-size: 28px;
    } 

    .section-one img {
        width: auto;
        height: 225.7px;
    } 
}
/* ==============================SECTION-TWO=========================================== */
.section-two {
    display: flex;
    justify-content: flex-end;

    width: 100%;

    font-family: "Work Sans", sans-serif;
    padding: 20px 20px 20px 0;

    background-color: var(--bg_4);
    color: var(--paragraph);
} 

.section-two .card {
    display: flex;
    gap: 70px;
    width: 1036px;

    padding: 80px 100px 80px 80px;
    border-radius: 20px;

    background-color: var(--accent-1);
} 

.section-two img {
    width: auto;
    height: 267.48px;
    display: inline-block;
} 

.section-two .left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 70px;
} 

.section-two .top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
} 

.section-two h3 {
    font-size: 40px;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: -0.045em;
} 

.section-two .top p {
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.045em;
} 

.section-two .bottom {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
} 

.section-two .bottom p {
    font-size: 12px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.045em;

    padding: 12px;
    border-radius: 8px;
    background-color: var(--bg_4);
} 


@media (max-width: 1279px) and (min-width: 800px) {

    .section-two {
        padding: 20px 24px 20px 24px;
    } 

    .section-two .card {
        gap: 60px;
        padding: 54px 60px;
    } 

   .section-two .left {
        gap: 54px;
    } 

    .section-two .top {
        gap: 24px;
    } 

    .section-two h3{
        font-size: 34px;
    } 

    .section-two img {
        width: auto;
        height: 179px;
    } 
}

@media (max-width: 799px) {
    .section-two {
        padding: 0 16px 16px 16px;
    } 

    .section-two .card {
        flex-direction: column;
        align-items: center;
        gap: 70px;
        padding: 40px 16px;
    } 

    .section-two .top {
        gap: 24px;
    } 

   .section-two h3{
        font-size: 28px;
    } 

    .section-two img {
        width: auto;
        height: 179px;
        order: -1;
    } 
} 
/* ==============================SECTION-THREE=========================================== */
.section-three {
    display: flex;
    justify-content: flex-start;

    width: 100%;

    font-family: "Work Sans", sans-serif;
    padding: 20px 0 20px 20px;

    background-color: var(--bg_4);
    color: var(--paragraph);
} 

.section-three .card {
    display: flex;
    gap: 70px;
    width: 1036px;

    padding: 80px 100px 80px 80px;
    border-radius: 20px;

    background-color: var(--accent-1);
} 

.section-three img {
    width: auto;
    height: 285.21px;
} 

.section-three .right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 70px;
} 

.section-three .top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
} 

.section-three h3 {
    font-size: 40px;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: -0.045em;
} 

.section-three .top p {
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.045em;
} 

.section-three .bottom {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
} 

.section-three .bottom p {
    font-size: 12px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.045em;

    padding: 12px;
    border-radius: 8px;
    background-color: var(--bg_4);
} 


@media (max-width: 1279px) and (min-width: 800px) {
    .section-three {
        padding: 20px 24px 20px 24px;
    } 

    .section-three .card {
        gap: 60px;
        padding: 54px 60px;
    } 

    .section-three .right {
        gap: 54px;
    } 

    .section-three .top {
        gap: 24px;
    } 

    .section-three h3{
        font-size: 34px;
    } 

    .section-three img {
        width: auto;
        height: 214.82px;
    } 
}

@media (max-width: 799px) {
    .section-three {
        padding: 0 16px 16px 16px;
    } 

    .section-three .card {
        flex-direction: column;
        align-items: center;
        gap: 70px;
        padding: 40px 16px;
    } 

    .section-three .top {
        gap: 24px;
    } 

   .section-three h3{
        font-size: 28px;
    } 

    .section-three img {
        width: auto;
        height: 225.7px;
    } 
}
/* ==============================SECTION-TESTIMOTIAL=========================================== */
.testimonial {
    display: flex;
    width: 100%;

    font-family: "Work Sans", sans-serif;
    padding: 100px;

    background-color: var(--bg_4);
    color: var(--paragraph);
}

.testimonial-div {
    display: flex;
    flex-direction: column;
    gap: 120px;
    width: 100%;
}

.testimonial .top {
    width: 100%;
    text-align: center;
}

.testimonial .top h2 {
    font-size: 60px;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: -0.07em;
}

.testimonial .bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 100px;
}

.testimonial .left {
    display: flex;
    flex-direction: column;
}

.testimonial .left h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: -0.045em;
}

.testimonial .left p {
    font-size: 12px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.045em;
}

.testimonial section {
    width: 310px;
    height: 128px;

    display: flex;
    align-items: center;

    border-radius: 8px;
    padding: 20px 30px;
}

.testimonial .card-job {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    width: 100%;

    padding-block: 20px;
    border-top: 1px solid var(--paragraph);
} 

.testimonial .right {
    padding: 0 30px 0 40px;
    display: flex;
    gap: 50px;
} 

.feeback {
    font-size: 30px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.045em;
}

.testimonial .review.active {
    display: flex;
    gap: 50px;
} 

.testimonial .review.active .info {
    display: flex;
    align-items: center;
    gap: 28px;
} 

.testimonial .review.active img {
    width: 46.05px;
    height: 48.04px;
    border-radius: 16px;
} 

.testimonial .info p {
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.045em;
} 

.order-for-testimonial {
    display: flex;
    flex-direction: column;
}

.review {
    display: none;
}

.review.active {
    display: flex;
    flex-direction: column;
}

.job {
    cursor: pointer;
}

.job.active .card-job {
    border-top: 1px solid var(--bg_2);
}

.job.active {
    background-color: var(--bg_3);
}

.job.active h3 {
    color: var(--on-accent-1);
}

.job.active p {
    color: var(--on-accent-4);
}

@media (max-width: 1279px) and (min-width: 800px) {
    .testimonial {
        order: -1;
    }

    .testimonial .top h2 {
        font-size: 48px;
    }

    .testimonial .bottom {
        gap: 28px;
    }

    .feeback {
        font-size: 24px;
    }

}

@media (max-width: 799px) {
    .testimonial {
        padding: 36px;
        background-color: var(--bg_2);
        order: -1;
    }

    .testimonial-div {
        flex-direction: column;
        gap: 40px;
        padding: 24px 16px;
        background-color: var(--bg_4);
    }

    .testimonial .top h2 {
        font-size: 32px;
    }

    .testimonial .bottom {
        flex-direction: column;
        gap: 0;
    }

    .testimonial .left {
        display: flex;
        flex-direction: row;
        align-items: start;
    }

    .testimonial section {
        width: auto;
        height: auto;
        flex: 1;
        padding: 16px 12px;
    }

    .testimonial .left h3 {
        font-size: 12px;
    }

    .feeback {
        font-size: 18px;
    }

    .testimonial .right {
        padding: 0;
        padding-top: 40px;
    } 

    .testimonial .card-job {
        padding-top: 8px;
        padding-bottom: 0;
    } 
}
/* ==================================IMG-SECTION=========================================== */
.img-section {
    width: 100%;
    height: auto;
}

.img-section img {
    display: block;
    width: 100%;
    height: 600px;
}

@media (max-width: 1279px) and (min-width: 800px) {
    .img-section img {
        height: 533px;
    }
}

@media (max-width: 799px) {
    .img-section img {
        height: 250px;
    }
}
/* ==================================BENEFITS-SECTION=========================================== */
.benefits-section {
    display: flex;
    width: 100%;

    font-family: "Work Sans", sans-serif;
    padding: 80px 40px 120px 40px;

    background-color: var(--bg_4);
    color: var(--paragraph);
}

.benefits-div {
    display: flex;
    flex-direction: column;
    gap: 160px;
    width: 100%;
}

.benefits-section .top {
    display: flex;
    gap: 50px;

    width: 100%;
}

.benefits-section .top h2 {
    font-size: 60px;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: -0.07em;
}

.benefits-section .top p {
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.045em;
}

.benefits-section .bottom {
    display: flex;
    gap: 20px;

    height: 330px;
}

.benefits-section .card {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;

    padding: 20px 80px 20px 50px;
    height: 100%;

    text-align: start;

    border-left: 1px solid var(--divider-1);
}

.benefits-section .center {
    padding: 20px 0 20px 50px;

}

.benefits-section .bottom .card img {
    width: 30px;
    height: 30px;
}

.benefits-section .bottom .card h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: -0.045em;
}

.benefits-section .bottom .card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.045em;
}

@media (max-width: 1279px) and (min-width: 800px) {
    .benefits-div {
        gap: 100px;
    }

    .benefits-section .top h2 {
        font-size: 48px;
    }

    .benefits-section .bottom {
        display: flex;
        flex-direction: column;
        gap: 20px;

        height: 781px;
    }

    .benefits-section .card {
        padding: 20px 160px 20px 0;
        height: 259px;

        border-left: none;
        border-top: 1px solid var(--divider-1);
    }

    .benefits-section .center {
        padding: 20px 160px 20px 0;
        height: 259px;
    }

    .benefits-section .bottom .card h3 {
        font-size: 26px;
    }
}

@media (max-width: 799px) {
    .benefits-section {
        padding: 80px 16px;
    }

    .benefits-div {
        gap: 80px;
    }

    .benefits-section .top {
        flex-direction: column;
        gap: 32px;
    }

    .benefits-section .top h2 {
        font-size: 32px;
    }

    .benefits-section .bottom {
        display: flex;
        flex-direction: column;
        gap: 20px;

        height: 859px;
    }

    .benefits-section .card {
        padding: 20px 0 20px 0;
        height: 273px;

        border-left: none;
        border-top: 1px solid var(--divider-1);
    }

    .benefits-section .center {
        padding: 20px 0 20px 0;
        height: 273px;
    }

    .benefits-section .bottom .card h3 {
        font-size: 22px;
    }
}
/*====================================CTA-SECTION=========================================== */
.CTA {
    display: flex;
    flex: 1;
    gap: 20px;

    width: 100%;
    height: 472px;

    font-family: "Work Sans", sans-serif;
    padding: 50px 40px;

    background-color: var(--bg_4);
    color: var(--on-accent-1);
}

.CTA .content-div {
    height: 375px;
    padding: 60px;
    background-color: var(--bg_3);
    border-radius: 20px;
}

.CTA .content {
    display: flex;
    flex-direction: column;
    align-items: start;
    flex: 1;
    gap: 40px;
    height: 100%;
}

.CTA .content .one {
    font-size: 40px;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: -0.045em;
}

.CTA .content .two {
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.045em;
}

.CTA .content a {
    font-size: 12px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.045em;

    color: var(--bg_3);
    background-color: var(--bg_4);

    padding: 12px;
    border-radius: 51.57px;
    transition: 0.4s;
}

.CTA .content a:hover {
    color: var(--bg_3);
    background-color: var(--bg_1);
}

@media (max-width: 1279px) and (min-width: 800px) {
    .CTA {
        height: 517px;
    }

    .CTA .content-div {
        height: auto;
    }

    .CTA .content .one {
        font-size: 34px;
    }
}

@media (max-width: 799px) {
    .CTA {
        height: auto;
    }

    .CTA .content-div {
        height: auto;
    }

    .CTA .content .one {
        font-size: 28px;
    }
}
/* ====================================EXPERTS-SECTION=========================================== */
.experts {
    display: flex;
    gap: 20px;

    padding: 160px 120px;

    font-family: "Work Sans", sans-serif;

    background-color: var(--bg_2);
    color: var(--paragraph);
}

.experts div {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: space-between;
   gap: 60px;
   text-align: center;
}

.experts p {
    font-size: 60px;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: -0.07em;
}

.experts a {
    padding: 24px 30px;
    background-color: var(--bg_3);
    border-radius: 88px;

    font-size: 15px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: var(--on-accent-1);

    transition: 0.4s;
}

.experts a:hover {
    background-color: var(--bg_1);
    color: var(--paragraph);
}


@media (max-width: 1279px) and (min-width: 800px) {
    .experts {
        padding: 160px 80px;
    }

    .experts p {
        font-size: 48px;
    }
}

@media (max-width: 799px) {
    .experts {
        padding: 160px 24px;
    }

    .experts p {
        font-size: 32px;
    }
} 
/* ====================================FOOTER=========================================== */
footer {
    display: flex;
    width: 100%;
    height: 346px;

    padding: 32px 40px;

    font-family: "Work Sans", sans-serif;

    background-color: var(--bg_3);
    color: var(--accent-1);
}

footer .column-one {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 236px;
}

footer .column-one .bottom p {
    font-size: 12px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.045em;
    color: var(--on-accent-4);
}

footer .column-one .p-div {
    color: var(--on-accent-1);
    font-weight: 500;
}

footer .column-two {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 232px;
}

footer .column-two .top {
    display: flex;
    gap: 35px;
    justify-content: start;
    align-items: center;

    font-size: 12px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.045em;
    color: var(--on-accent-4);
}

footer .column-two a {
    color: var(--on-accent-4);
}

footer .column-two .two {
    padding: 12px;
    border-radius: 51.57px;
    background-color: var(--bg_4);
    color: var(--paragraph);

    transition: 0.4s;
}

footer .column-two .two:hover {
    background-color: var(--bg_1);
}

footer .column-two .bottom p {
    font-size: 12px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.045em;
    color: var(--on-accent-4);
}


@media (max-width: 1279px) and (min-width: 800px) {
    footer {
        gap: 80px;
        height: 354.97px;
        padding: 32px 32px; 
    }

    footer .column-one {
        gap: 232px;
    }

    footer .column-two .top {
        gap: auto;
        justify-content: space-between;
    }
}

@media (max-width: 799px) {
    footer {
        display: flex;
        flex-direction: column;
        gap: 80px;
        width: 100%;

        padding: 32px 24px;

        font-family: "Work Sans", sans-serif;

        background-color: var(--bg_3);
        color: var(--accent-1);
    }

    footer .column-one {
        gap: 176px;
    }

    footer .column-two {
        position: relative;
        bottom: 230px;

        gap: 145px;
    }
} 