
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Titillium Web', sans-serif;
    text-decoration: none !important;
}
html{
    width: 100vw;
}

nav{
    background-color: rgb(0, 0, 0); 
    width: 100%;
    z-index: 999;
    position: fixed;
}

.navContainer{
    margin: auto;
    padding: 8px;
max-width: 1200px;
display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mainFrontpage {
    padding-top: 0px;
}


nav li:hover {
    color: #29B264;
   }
   nav a:hover {
    color: #29B264;
   }

nav img {
max-width: 180px;
}

nav a{
    text-decoration: none;
    color: white
}

li{
    list-style-type: none;
}

/* nav Menu Mobile */
.navMenu{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    font-size: 18.5px;
}

.navMenu a:hover{
    font-size: 20px;
}

nav ul {
    color: white;
    display: flex;
    gap: 15px;
    align-items: center;  
}

nav li { 
    align-items: center;
}

.heroPhotoText {
    overflow: hidden; height: 80vh;
    width: 100%; max-width: 100%; padding: 0px; position: relative;
    display: flex; justify-content: center; 
}

.heroPhotoText h1{
    position: absolute;
top: 200px; left: 120px; color: white; z-index: 99;
max-width: 700px;
}

.heroPhotoText img{
    width: 100%; height: 90%; position: absolute;
}

.hidden{
    display: none !important
}

@media only screen and (max-width: 768px) {

    #heroTexth1 {
        left: 46%;
        font-size: 35px;
        font-weight: bold;
        width: 80%;
    }
    .heroPhotoText{
        height: 91vh;
    }

    .aboutImgDesktop{
        display: none;
    }
    .aboutImgMobile {
        display: block
    }
    section{
        max-width: 90%;
        padding: 8% 0;
    }
   
    nav{
        padding: 0 20px;
    }
}
