@import"https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap";
@import"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap";

:root {
    --clr-yellow: #FFD31C;
    --clr-dark-gray: #1E1E1E;
    --clr-light-gray: #F7F7F7;
    --clr-white: #FFF;
    --ff-poppins: "Poppins", sans-serif;
    --ff-open-sans: "Open Sans", sans-serif
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--ff-open-sans)
}

input,
textarea {
    border: 0;
    box-shadow: 7px 7px 15px -12px #00000070
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

h1 {
    font-size: clamp(2.7rem, 5vw, 3.75rem);
    font-weight: 700;
    color: var(--clr-dark-gray);
    position: relative
}

p {
    font-size: clamp(1rem, 1.7vw, 1.125rem)
}

header {
    width: 100vw;
    height: calc(100vh - 5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 1rem;
    background: url(background.ef6c218b.png);
    background-size: cover;
    background-position: center;
    color: var(--clr-white);
    text-align: center
}

header h1 {
    color: var(--clr-white);
    font-size: clamp(5rem, 20vw, 15rem);
    font-weight: 700;
    opacity: .1
}

header h2 {
    margin-top: -8rem;
    font-size: 3.125rem;
    font-weight: 700
}

header p {
    text-align: center;
    max-width: 34rem;
    margin: 1.87rem 0
}

header .btn {
    background-color: var(--clr-yellow);
    padding: .5rem 2.9rem;
    border-radius: .625rem;
    text-decoration: none;
    font-weight: 700;
    color: var(--clr-dark-gray);
    transition: .2s all ease-in-out
}

header .btn:hover {
    background-color: var(--clr-white);
    color: var(--clr-dark-gray)
}

.contact-bar {
    background-color: var(--clr-dark-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5rem;
    width: 100%;
    gap: 3.12rem;
    margin-bottom: 12rem
}

.contact-bar-mobile {
    background-color: var(--clr-dark-gray);
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    gap: 1rem
}

.hero {
    max-width: 82rem;
    margin: 0 auto;
    padding: 0 1rem
}

.hero .about,
.hero .why-us {
    display: flex;
    align-items: center;
    padding: 3.31rem 1.56rem
}

.hero .about .content,
.hero .about .illustration,
.hero .why-us .content,
.hero .why-us .illustration {
    flex: 1
}

.hero .about .content,
.hero .why-us .content {
    display: flex;
    flex-direction: column;
    gap: 1.88rem
}

.hero .about .content p,
.hero .why-us .content p {
    max-width: 31rem
}

.hero .about {
    background: linear-gradient(90deg, #ECECEC 0%, rgba(236, 236, 236, 0) 100%);
    border-radius: 10px 0 0 10px;
    height: 28rem;
    margin-bottom: 14rem;
    padding-right: 2rem
}

.hero .about .illustration {
    transform: translateY(-3.4rem);
    position: relative
}

.hero .about .illustration:after {
    position: absolute;
    content: "";
    background-color: var(--clr-yellow);
    width: 80%;
    height: 82%;
    border-radius: 50%;
    left: -1.4rem;
    bottom: -.3rem;
    z-index: -1
}

.hero .why-us {
    background: linear-gradient(270deg, #ECECEC 0%, rgba(236, 236, 236, 0) 100%);
    border-radius: 0 10px 10px 0;
    height: 26.0625rem;
    margin-bottom: 11rem
}

.hero .why-us .illustration {
    height: 41rem;
    transform: translateY(-2rem)
}

.products {
    background-color: var(--clr-dark-gray);
    color: var(--clr-white);
    padding: 2.87rem 1rem 1rem 3.81rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 1.88rem 1rem 3.81rem
}

.products h1 {
    color: var(--clr-white);
    margin-bottom: 1.87rem
}

.products p {
    font-size: 1.125rem;
    max-width: 50rem;
    margin-bottom: 1rem;
    line-height: 160%
}

.products .eggs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100rem
}

.contact {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    padding: 0 1rem
}

.contact h1 {
    margin-top: 6.25rem;
    margin-bottom: 1.88rem
}

.contact p {
    max-width: 50rem;
    text-align: center;
    margin-bottom: 3.13rem;
    line-height: 160%
}

.contact form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 38rem;
    font-family: var(--ff-poppins);
    margin-bottom: 10.75rem
}

.contact form label {
    margin-bottom: .94rem;
    position: relative
}

.contact form label:nth-child(1):before {
    position: absolute;
    content: " ";
    background-image: url(egg1.d426a9cc.png);
    background-size: 7rem 7rem;
    height: 7rem;
    width: 7rem;
    left: -13rem;
    bottom: -7rem;
    transform: rotate(20deg)
}

.contact form label:nth-child(3):after {
    position: absolute;
    content: " ";
    background-image: url(egg.16d5b18e.png);
    background-size: 7rem 7rem;
    height: 7rem;
    width: 7rem;
    right: -12rem;
    bottom: -3rem;
    transform: rotate(-15deg)
}

.contact form label:nth-child(5):before {
    position: absolute;
    content: " ";
    background-image: url(egg.16d5b18e.png);
    background-size: 7rem 7rem;
    height: 7rem;
    width: 7rem;
    left: -9rem;
    bottom: -15rem;
    transform: rotate(-17deg)
}

.contact form label:nth-child(7):after {
    position: absolute;
    content: " ";
    background-image: url(egg1.d426a9cc.png);
    background-size: 7rem 7rem;
    height: 7rem;
    width: 7rem;
    right: -10rem;
    bottom: -12rem;
    transform: rotate(17deg)
}

.contact form input {
    height: 2.875rem;
    font-size: .875rem;
    padding-inline: .8rem;
    margin-bottom: 1.88rem;
    background-color: var(--clr-light-gray)
}

.contact form input[type=submit] {
    background-color: var(--clr-yellow);
    color: var(--clr-dark-gray);
    font-weight: 500;
    font-size: 1.25rem;
    transition: .2s all ease-in-out;
    margin-bottom: 0
}

.contact form input[type=submit]:hover {
    cursor: pointer;
    background-color: var(--clr-dark-gray);
    color: var(--clr-white)
}

.contact form textarea {
    font-size: .875rem;
    height: 10.31rem;
    padding: .8rem;
    margin-bottom: 1.88rem;
    background-color: var(--clr-light-gray)
}

footer {
    width: 100%;
    text-align: center;
    padding: 2rem;
    background-color: var(--clr-dark-gray);
    color: var(--clr-white)
}

footer p {
    font-size: .9rem;
    font-weight: 400;
    font-family: var(--ff-open-sans)
}

footer a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    font-weight: 500
}

@media (max-width: 1003px) {
    .hero .about .illustration {
        transform: translateY(-3rem);
        transform: rotate(90deg)
    }

    .hero .about .illustration:after {
        left: -1.2rem
    }
}

@media (max-width: 880px) {
    .contact form label:nth-child(1)::before {
        content: none;
    }

    .contact form label:nth-child(3)::after {
        content: none;
    }

    .contact form label:nth-child(5)::before {
        content: none;
    }

    .contact form label:nth-child(7)::after {
        content: none;
    }
}

@media (max-width: 768px) {
    header {
        height: 100vh
    }

    header h2 {
        margin-top: -6rem
    }

    .contact-bar {
        display: none
    }

    .contact-bar-mobile {
        display: flex
    }

    .hero {
        margin-top: 1rem
    }

    .hero .about,
    .hero .why-us {
        margin-bottom: 1rem;
        flex-direction: column;
        height: auto
    }

    .hero .about .illustration {
        transform: rotate(360deg);
        margin-top: 2rem;
        height: 20rem
    }

    .hero .about .illustration:after {
        left: -.9rem
    }

    .hero .why-us .content {
        order: 1;
        margin-bottom: 4rem
    }

    .hero .why-us .illustration {
        order: 2;
        height: 20rem
    }
}

@media (max-width: 575px) {
    .products .eggs {
        grid-template-columns: repeat(2, 1fr)
    }

    .contact form {
        margin-bottom: 5rem
    }
}

.egg-item:where(.astro-I5TNWFTT) {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.egg-item:where(.astro-I5TNWFTT) img:where(.astro-I5TNWFTT) {
    opacity: .8
}

.egg-item:where(.astro-I5TNWFTT) img:where(.astro-I5TNWFTT):hover {
    cursor: pointer;
    opacity: 1;
    transform: scale(1.1);
    transition: .5s all ease-in-out
}

h2:where(.astro-I5TNWFTT) {
    text-transform: uppercase
}

div:where(.astro-AMZQRPVL) {
    display: flex;
    align-items: center;
    gap: .62rem;
    color: var(--clr-white);
    font-weight: 700;
    font-size: clamp(1rem, 1.3vw, 1.125rem)
}

@media ((max-width: 768px)) {
    .item-content:where(.astro-AMZQRPVL) {
        font-weight: 600
    }
}