@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@500;700;800&display=swap');

body {
    background-color: #ECEBE4;
    font-family: 'Nunito', sans-serif;
    color: #000000;
}

    /* NAVIGATION */

.nav {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    background-color: #ECEBE4;
    border-bottom: solid 2px #225045;
    height: 10vh;
    z-index: 9;
}

.nav .container {
    display: flex;
}

.logo-div {
    height: 9vh;
    padding-top: 5px;
}

.logo {
    height: 100%;
    opacity: 1;
}

.nav ul {
    display: flex;
    list-style-type: none;
    align-items: center;
    justify-content: center;
}

.nav a {
    text-decoration: none;
    padding: 8px 18px;
    cursor: pointer;
    color: #000000;
    font-size: 20px;
    font-weight: bold;
}

.nav a.site-btn.active, .nav a.site-btn:hover {
    color: #FFFFFC;
    background-color: #225045;
    transition: 0.4s ease;
}

.nav .main-menu {
    position: absolute;
    left: 5%;
    top: 20%;
}

.nav .contact-menu {
    position: absolute;
    right: 5%;
    top: -10%;
}

.nav p {
    padding: 8px 16px;
    color: #000000;
    font-size: 17px;
    font-weight: bold;
}

/* SECTION MAIN STYLING */

.sct {
    max-width: 100%;
    margin: 0 auto;
    text-align: justify;
    transform: scale(0.6);
}

.sct.show {
    transform: scale(1);
    transition: transform .75s ease-out;
}

#start {
    padding-top: 7%;
}

/* TABLLET VIEW */

@media (max-width: 1100px) {
    .nav .contact-menu {
        display: none;
        width: 0%;
    }
}

/* PHONE VIEW */

@media (max-width: 560px) {
    .sct {
        margin-left: 5px;
        margin-right: 7px;
    }
    .nav {
        left: -4%;
        top: -2%;
        width: 100%;
        height: 9vh;
    }
    .logo-div {
        display: none;
        width: 0%;
        padding: 0;
    }

    .nav a {
        font-size: 12px;
        padding: 10px 6px;
    }

    .nav .main-menu {
        left: 0%;
    }

    #start {
        padding-top: 20%;
    }
}