/* Remove default body margin/padding */
body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "Barlow Semi Condensed", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 24px;
}

header {
    /* max-width: 1440px; */
    width: 100%;
    position: absolute;
}

header div {
    display: flex;
    justify-content: space-between;
    max-width: 1120px;
    gap: 24px;
    align-items: center;
    margin: 64px auto;
}

header div .logo {
    width: 256px;
    height: 74px;
}

@media only screen and (max-width: 900px) {
    header div {
        margin: 32px 16px;
    }

    /* header div .logo {
        width: 160px;
        height: 46px;
    } */
}

@media only screen and (max-width: 780px) {
    header div nav {
        display: none;
    }
}

header nav ul {
    display: flex;
    gap: 24px;
    padding: 0;
}

header nav ul a li {
    border: solid #188118 3px;
    border-radius: 6px;
    list-style: none;
    padding: 6px 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: black;
    white-space: nowrap;
}

header nav ul a {
    text-decoration: none;
}

.home {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.home h1 {
    font-size: 48px;
    max-width: 975px;
    text-align: center;
    margin: 24px 0;
}

.home span {
    text-align: center;
}

@media only screen and (max-width: 900px) {
    .home h1 {
        font-size: 44px;
    }

    .home span {
        font-size: 20px;
    }
}

.want-to-buy {
    width: 300px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    background-color: #188118;
    color: white;
    font-weight: 1000;
    font-size: 38px;
    font-style: italic;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
}

.home .arrow-down {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -30px);
    }
    60% {
        transform: translate(-50%, -15px);
    }
}

.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1120px;
    padding: 0 20px;
    margin: 80px auto;
}

.about .left {
    max-width: 600px;
    font-size: 32px;
}

.about .left h1 {
    font-weight: bold;
    font-size: 60px;
    font-style: italic;
    color: #188118;
}

.about .right img {
    height: 464px;
    width: 456px;
}

.green {
    color: #188118;
}

@media only screen and (max-width: 900px) {
    .about {
        flex-direction: column;
    }

    .about .left {
        max-width: 100%;
    }

    .about .right {
        display: none;
    }
}

.products .head {
    height: 40vh;
    background: linear-gradient(#ffffff, #cef2be);
    padding: 60px 0;
}

.products .head .main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    height: 100%;
    margin: 0 auto;
    padding: 0;
}

.products .head .main h1 {
    font-size: 80px;
    font-style: italic;
    font-weight: 1000;
    color: #188118;
}

.products .head .main p {
    font-size: 40px;
    width: 600px;
    text-align: right;
}

@media only screen and (max-width: 900px) {
    .products .head .main {
        justify-content: center;
    }

    .products .head .main h1 {
        text-align: center;
    }

    .products .head .main p {
        display: none;
    }
}

.products .head .main p bold {
    white-space: nowrap;
    font-weight: bold;
}

.products .tail {
    background-color: #cef2be;
}

.products .tail .main {
    max-width: 1140px;
    margin: 0 auto;
}

.products .tail .main h2 {
    margin: 0;
    color: #ffffff;
    font-size: 60px;
    font-style: italic;
    font-weight: 700;
    width: 100%;
    background-color: #188118;
    line-height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.products .tail .main .products-display {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.products .tail .main .products-display ul {
    padding: 0;
    margin: 0;
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    padding: 60px 0;
    flex-wrap: wrap;
    row-gap: 20px;
    gap: 20px;
}

@media only screen and (max-width: 1200px) {
    .products .tail .main .products-display ul {
        justify-content: space-around;
    }

    .products .tail .main .products-display li {
        width: 300px;
    }
}

.products .tail .main .products-display ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: #ebfae4;
    list-style: none;
    padding: 36px 16px;
    border-radius: 4px;
}

.products .tail .main .products-display ul li a {
    font-style: italic;
    font-weight: 1000;
    font-size: 32px;
    color: #ffffff;
    background-color: #188118;
    padding: 10px 0;
    width: 100%;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.products .tail .main .inverted-boxes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.products .tail .main .inverted-boxes .main {
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
}

.products .tail .main .inverted-boxes .main .left {
    width: 50%;
    font-size: 32px;
}

.products .tail .main .inverted-boxes .main .right {
    height: 520px;
    width: 520px;
    border: solid 20px #188118;
}

@media only screen and (max-width: 1140px) {
    .products .tail .main .inverted-boxes .main .left {
        width: 90%;
        margin: auto;
    }

    .products .tail .main .inverted-boxes .main .right {
        display: none;
    }
}

.products .tail .main .inverted-boxes .boxes-imgs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.products .tail .main .inverted-boxes .boxes-imgs img {
    width: 240px;
    height: 240px;
    margin: 20px;
}

.products .tail .main .inverted-boxes a {
    margin-bottom: 60px;
}

.products .tail .main .used-boxes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.products .tail .main .used-boxes .main {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    font-size: 32px;
}

.products .tail .main .used-boxes .main .left {
    width: 50%;
}

.products .tail .main .used-boxes .main .right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 520px;
}

.products .tail .main .used-boxes .main .right img {
    height: 100%;
    width: auto;
}

@media only screen and (max-width: 1140px) {
    .products .tail .main .used-boxes .main .left {
        width: 90%;
        margin: auto;
    }

    .products .tail .main .used-boxes .main .right {
        display: none;
    }
}

.products .tail .main .used-boxes a {
    margin-bottom: 60px;
}

.products .tail .main .phrase {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.products .tail .main .phrase h3 {
    font-size: 60px;
    line-height: 64px;
    font-style: italic;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background-color: #188118;
    width: 100%;
    margin: 0 0 40px 0;
    text-align: center;
}

@media only screen and (max-width: 1300px) {
    .products .tail .main h2 {
        padding: 0 0;
    }

    .products .tail .main .phrase h3 {
        padding: 0 0;
    }
}

/* Position the video container to fill the browser window */
.video-section {
    width: 100%;
    background-color: #cef2be;
}

/* Make the iframe fill the container and cover the background */
.video-section div iframe {
    width: 100%;
    height: 100%;
    pointer-events: none; /* So clicks go "through" the video to underlying elements */
    object-fit: cover; /* Ensure the video covers the container */
}

@media only screen and (max-width: 780px) {
    .video-section .desktop {
        display: none;
    }
}

@media only screen and (min-width: 780px) {
    .video-section .mobile {
        display: none;
    }
}

footer {
    position: relative;
    background: transparent;
    padding: 80px 0;
}

footer .gradient {
    z-index: -1;
    position: absolute;
    top: 0;
    height: 40vh;
    width: 100%;
    background: linear-gradient(#cef2be, #ffffff);
    transform: translateY(-20vh);
}

@media only screen and (max-width: 780px) {
    footer .gradient {
        height: 20vh;
        width: 100%;
        transform: translateY(0);
    }
}

footer .main {
    overflow: hidden;
    max-width: 1120px;
    padding: 0 20px;
    margin: auto;
}

/* @media only screen and (max-width: 900px) {
    footer {
        margin: 60px 20px 20px 20px;
    }
}

@media only screen and (max-width: 300px) {
    footer {
        margin: 60px 4px 20px 4px;
    }
} */

footer h2 {
    color: #188118;
    font-style: italic;
    font-size: 40px;
    line-height: 40px;
    margin: 26px 0;
}

footer p {
    margin: 0;
}

footer h4 {
    margin: 12px 0;
}

footer .phone {
    overflow: visible;
    flex-wrap: nowrap;
    display: flex;
    align-items: end;
    height: 30px;
    cursor: pointer;
}

footer .phone a {
    display: flex;
    white-space: nowrap;
    flex-wrap: nowrap;
    height: 30px;
    align-items: end;
}

@media only screen and (max-width: 370px) {
    footer .phone a img {
        display: none;
    }
}

footer .whatsapp-icon {
    height: 100px;
    margin-left: 4px;
    transform: translateY(10px);
}

footer .logo {
    width: 270px;
    display: block;
}

footer .maps {
    width: 100%;
    height: 300px;
    background-color: #f5f5f5;
    margin-top: 24px;
}

/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
footer iframe {
    height: 100%;
    width: 100%;
}
