body, html {
    background-color: black;
    margin: 0;
    font-family: "Google Sans", "Roboto", sans-serif;
    user-select: none;
    color: #ccc;
    overflow-x: hidden;
}

.nav {
    background-color: #222;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10vw;
    color: #ccc;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    font-weight: bold;
    font-size: 24px;
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
        min-height: 150px;
        height: 280px;
        gap: 15px;
    }

    .left-container {
        position: static;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .middle-container {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
    }

    .option-span {
        position: relative;
        top: 120px;
    }
}

.logo {
    height: 70%;
}

.left-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 2vw;
    height: 100%;
}

.middle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3vw;
}

.option-span {
    font-size: 24px;
    text-decoration: underline rgba(255,0,0,0);
    transition: 0.25s;
    cursor: pointer;
}

.option-span:hover {
    text-decoration: underline red;
    text-underline-offset: 4px;
    transform: translateY(-5px);
}

.first-container {
    width: 100%;
    min-height: 100vh;
    padding-top: 90px;
    box-sizing: border-box;

    background-image:
        linear-gradient(rgba(0,0,0,1), rgba(0,0,0,0.5)),
        url("../assets/stockvan.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .first-container {
        min-height: 100vh;
        padding-top: 70px;
        background-attachment: scroll;
    }
}

.bigh1 {
    font-size: 7vh;
    font-weight: bolder;
    width: 80%;
    text-align: center;
}

@media (max-width: 768px) {
    .bigh1 {
        width: 90%;
        font-size: 5vh;
    }
}

.second-container {
    background-color: #ccc;
    color: #222;
    padding-left: 10vw;
    padding-top: 5vh;
    height: auto;
    width: 100vw;
    overflow: hidden;
}

.carousel-box {
    width: auto;
    height: 300px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    font-size: 18px;
    transition: 0.25s;
    aspect-ratio: 1/1;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.carousel-box:hover {
    transition: 0.25s;
    size: 110%;
    transform: translateY(-10px);
    cursor: text;
}

.carousel-box img {
    height: 30%;
}

@media (max-width: 768px) {
    .carousel-box {
        width: 80vw;
        height: auto;
        font-size: 24px;
    }
}

.carrousel-container {
    padding: 15px;
    width: 75%;
    height: 75%;
    overflow-y: hidden;
    overflow-x: auto;
    display: flex;
    gap: 2.5vw;
}

.third-container {
    width: 100vw;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5vw;
}

.service-box {
    height: 350px;
    background-color: grey;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: 0.25s;
    font-size: 18px;
    color: #222;
    box-shadow: 0px 0px 10px rgba(59, 59, 59, 0.2);
}

.service-box:hover {
    transition: 0.25s;
    size: 110%;
    transform: translateY(-10px);
    cursor: pointer;
}

.service-box img {
    height: 15vh;
}

.services-container {
    padding: 5vh;
    width: 100vw;
    height: auto;
    display: flex;
    gap: 50px;
}

.see {
    width: 80%;
    height: 10vh;
    background: #00bf63;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 3vh;
    transition: 0.25s;
}

@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .service-box {
        width: 80vw;
        height: auto;
        font-size: 24px;
    }
}

.see:hover {
    background: #009f4e;
    cursor: pointer;
    transition: 0.25s;
}

.contact-container {
    width: 100vw;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #555;
    flex-direction: column;
    gap: 5vh;
}

.contact-container h1 {
    font-size: 7vh;
    color: white;
}

.whatsapp {
    background: #009f4e;
    color: white;
    width: auto;
    aspect-ratio: 2.37 / 1;
    height: 15vh;
    border: none;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5vh;
    transition: 0.25s;
}

.whatsapp:hover {
    background: #00bf63;
    cursor: pointer;
    transition: 0.25s;
    transform: translateY(-10px);
}

.w-img {
    height: 10vh;
    margin-left: 10px;
}

footer {
    width: 100vw;
    height: 20vh;
    background-color: #222;
    color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    flex-direction: column;
}

@media (max-width: 768px) {
    footer {
        font-size: 24px;
    }
}