* {
    box-sizing: border-box;
}

body {
    background: #FCFCFC;
    font-family: 'Unbounded', sans-serif;
}

.container {
    max-width: 1040px;
    margin: 0 auto;
}

.header {
    background: #B3DF5A;
    padding: 20px 0px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
}

.nav-links {
    display: flex;
    gap: 56px;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0px;
    text-align: center;
}

.btn-primary {
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
    color: #B3DF5A;
    background: #000000;
    border-radius: 30px;
    padding: 16px 24px;
}

section {
    padding: 80px 0px;
}

img {
    max-width: 100%;
}

.hero-section {
    background: #B3DF5A;
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: 72px;
    text-align: center;
}

.heading-primary {
    font-weight: 700;
    font-size: 40px;
    line-height: 110.00000000000001%;
    letter-spacing: 4%;
    margin-bottom: 12px;
}

.text, .main-section p {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
}

p a {
    color: #000;
}

.hero-section .btn-primary {
    margin-top: 32px;
}

.quote-title {
    font-weight: 600;
    font-size: 34px;
    line-height: 140%;
    letter-spacing: 0%;
}

.quote-title span {
    color: #0000004D;
}

.about-section {
    background: #F6FFE3;
}

.about-section .container {
    display: flex;
    gap: 40px;
}

.heading-secondary {
    font-weight: 400;
    font-size: 32px;
    line-height: 110.00000000000001%;
    letter-spacing: 4%;
    margin-bottom: 12px;
}

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

.work-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.heading-tertiary {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.outcome-banner {
    background: #F6FFE3;
    padding: 40px 0px;
    margin-top: 32px;
}

.outcome-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-section {
    background: #B3DF5A;
    margin-bottom: 80px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.contact-section .container {
    max-width: 700px;
}

.contact-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-input {
    background: #FFFFFF;
    border: none;
    box-shadow: 0px 1px 2px 0px #121A2B0D;
    border-radius: 30px;
    padding: 16px;
    font-family: 'Unbounded', sans-serif;
}

textarea {
    resize: none;
    height: 120px;
}

.btn-primary {
    border: none;
    cursor: pointer;
    font-family: 'Unbounded', sans-serif;
}

.contact-section .btn-primary {
    color: #fff;
}

.footer {
    text-align: center;
    background: #F6FFE3;
    padding: 32px 0px;
}

.footer-nav {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 60px;
}

html {
    scroll-behavior: smooth;
}

.burger {
    display: none;
}

.fullscreen-nav {
    display: none;
}

.thx-section {
    text-align: center;
    padding: 200px 0px;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #F7F7F7;
    border-radius: 24px;
    width: 100%;
    max-width: 587px;
    text-align: center;
    padding: 32px;
}

.popup-title {
    font-weight: 500;
    font-size: 36px;
    line-height: 110.00000000000001%;
    letter-spacing: -2%;
    text-align: center;
    margin-bottom: 16px;
}

.popup-btns {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    align-items: center;
    gap: 8px;
}

.btn-secondary {
    background: none;
    color: #000;
}

@media(max-width: 1200px) {
    .header .nav-links {
        display: none;
    }

    .header .btn-primary {
        display: none;
    }

    .popup-title {
        font-weight: 500;
        font-size: 28px;
        line-height: 110.00000000000001%;
        letter-spacing: -2%;
        text-align: center;
    }

    .popup {
        width: 100%;
        max-width: 90%;
        padding: 20px;

    }

    .container {
        padding: 0px 12px;
    }

    section {
        padding: 40px 0px;
    }

    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .about-section .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-section img {
        height: 100%;
        object-fit: cover;
        border-radius: 30px;
    }

    .work-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .outcome-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }

    .contact-row {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-nav {
        flex-wrap: wrap;
    }

    .burger {
        display: block;
        cursor: pointer;
        background: none;
        border: none;
    }

    .fullscreen-nav {
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: 100vh;
        width: 100%;
        position: fixed;
        background: #B3DF5A;
        padding: 147px 33px 75px 33px;
    }

    .fullscreen-nav.active {
        display: flex;
    }

    body.no-scroll {
        overflow: hidden;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .fullscreen-nav .btn-primary {
        width: 100%;
    }

    .header {
        position: relative;
        z-index: 999;
    }
}