body {
    font-family: Mulish;
    margin: 0;
    height: 100%;
    letter-spacing: 0.11em;
    color: #2f4f4f;
    font-weight: 600;
}

a {
    color: black;
}

a:hover {
    text-decoration: none;
}

#header {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f6f1eb;
}

.navbar {
    position: fixed;
    top: 0;
    flex-wrap: nowrap;
    display: flex;
    z-index: 1;
    font-weight: 500;
}

.navb-subc {
    display: flex;
    text-align: center;
    background-color: #80808080;
    border-radius: 0 0 20px 20px;
    border-top: 0px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navb {
    padding: 20px;
    text-decoration: none;
    color: #f6f1eb;
}

.navb:hover {
    color: #b8860b;
}

.h1-i {
    font-size: 7.7vw;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.3em;
    font-family: Montserrat;
    color: #f7803b;
}

.height {
    height: 7em;
}

.h1 {
    font-size: 4.7vw;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5em;
    font-family: Montserrat;
    color: #f7803b;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 0;
}

.scroll-indicator::after {
    content: "|";
    font-size: 2em;
    margin-top: 5px;
}

@media (max-width: 460px) {

    .navbar {
        position: absolute;
    }

    .navb-subc {
        flex-direction: column;
        font-size: 0.9em;
    }

    .height-i {
        height: 12em;
    }

    .height {
        height: 17em;
    }

    .h1 {
        font-size: 5.7vw;
    }

}

@media (min-width: 461px) and (max-width: 910px) {

    .height {
        height: 7em;
    }

}

@media (max-width: 1080px) {

    .navb-subc {
        font-size: 0.8em;
    }

}

#box-I {
    background-color: #f5eae1;
    width: 100%;
    height: 100vh;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.container {
    margin: 0 auto;
    max-width: 40em;
}

.image {
    width: 40em;
    border-radius: 7em;
}

.-cont {
    margin: auto 20px;
    max-width: 30em;
}

.h2 {
    font-size: 1.7em;
    font-weight: 500;
}

.p {
    font-size: 1.3em;
}

.p-add {
    margin-top: 0;
    font-size: 1.2em;
}

.p-button {
    background-color: #f7803b;
    color: #f6f1eb;
    text-decoration: none;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.p-button:hover {
    background-color: #f7803bc5;
}

.cont-image-p {
    margin: 10px;
    height: 300px;
    width: 400px;
    overflow: hidden; 
    position: relative; 
}

.image-p {
    width: 20em;
    transition: transform 0.5s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 3em;
}

.image-p:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.a-p {
    color: #2f4f4f;
    text-decoration: underline;
}

.a-p:hover {
    color: #f7803b;
    text-decoration: underline;
}

.height-p {
    height: 20vh;
}

@media (max-width: 460px) {

    #box-I {
        flex-direction: column;
    }

    .container {
        display: table;
    }

    .-cont {
        width: auto;
    }

    .p {
        padding: 0 15px;
    }

    .height-p {
        height: 30vh;
    }

}

@media (max-width: 1080px) {

    .container {
        max-width: 17em;
    }

    .image {
        width: 17em;
        border-radius: 3em;
    }

    .h2 {
        font-size: 1em;
    }

    .p {
        font-size: 0.8em;
    }

    .p-button{
        font-size: 0.7em;
    }

    .cont-image-p {
        height: 250px;
        width: 300px;
    }

    .image-p {
        width: 17em;
    }

}

#box-II {
    background-color: #e7e7e7;
    width: 100%;
    height: 100vh;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

@media (max-width: 460px) {

    #box-II {
        flex-direction: column-reverse;
    }
    
}

#box-III {
    background-color: #f4e9e0;
    width: 100%;
    height: 78vh;
    background-image: url(assets/logo.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 65vw;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.h2-iii {
    font-size: 2.7em;
}

.h3-iii {
    font-size: 1.5em;
}

.p-iii {
    font-size: 1.2em;
    padding: 0 80px;
}

@media (max-width: 1080px) {
    
    #box-III {
        height: 90vh;
        background-size: 100vw;
    }

    .h2-iii {
        font-size: 1.3em;
        padding: 0 3em;
    }

    .h3-iii {
        font-size: 1.1em;
        padding: 0 3em;
    }

    .p-iii {
        font-size: 0.9em;
    }

}

#footer {
    width: 100%;
    text-align: center;
    bottom: 0;
}

footer p {
    padding: 0 20px;
}

.height-f {
    height: 20vh;
}

.a-f{
    color: #2f4f4f;
    font-weight: 500;
}

.a-f:hover{
    color: #f7803b;
    text-decoration: underline;
}

@media (max-width: 1080px) {

    #footer {
        padding-top: 50px;
    }

    .height-f {
        height: 35vh;
    }
    
}
