* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.NavContainer{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    background-color: #ffffff;
    padding: 10px;
}

.BurgerMenu{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    height: 25px;
    position: absolute;
    cursor: pointer;
    left: 5%;
    display: none;
}

.BurgerMenu div{
    height: 3px;
    width: 40px;
    background-color: #000000;
}

.Branding img{
    width: 300px;
}

.NavList{
    transition: 0.3s ease-in;
    transition-property: transform;
}

.Nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 45vw;
    list-style: none;
}

.Nav li a{
    text-decoration: none;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 500;
    color: #000000;
}

.Nav li{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    cursor: pointer;
}

.Nav li:hover{
    border-bottom: 2px solid #33f68a;
}

.NavActive{
    border-bottom: 2px solid #33f68a;
}

.NavContacts ul{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 10vw;
    list-style: none;
}

.Contact a{
    font-size: 18px;
    color: #33f68a;
}

.ContactHighlight i{
    color: #e74a3b;
}

.MobileNavClose{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    height: 25px;
    position: absolute;
    cursor: pointer;
    left: 7%;
    top: 7%;
    display: none;
}

.MobileNavClose i{
    font-size: 30px;
    border: 2px solid #e74a3b;
    padding: 10px 15px 10px 15px;
}

@media screen and (max-width:1280px){
    .BurgerMenu{
        display: flex;
    }
    
    .NavList{
        position: absolute;
        left: 0%;
        height: 100vh;
        width: 30%;
        background-color: #ffffff;
        top: 0%;
        transform: translateX(-100%);
        z-index: 1;
    }

    .Nav{
        flex-direction: column;
        justify-content: space-around;
        width: 100%;
        height: 100%;
        align-items: flex-start;
        padding: 150px 40px 150px 40px;
    }

    .NavContacts ul{
        width: 20vw;
    }
}

@media screen and (max-width:750px){
    .Branding img{
        margin-left: 30px;
    }
}

@media screen and (max-width:700px){
    .NavContacts ul{
        width: 30vw;
    }

    .NavList{
        width: 50%;
    }
}

@media screen and (max-width:695px){
    .Branding img{
        margin-left: 60px;
    }
}

@media screen and (max-width:516px){
    .NavContacts ul{
        display: none;
    }

    .NavContainer{
        justify-content: center;
    }

    .NavList{
        width: 55%;
    }
}

@media screen and (max-width: 743px){

    h2{
        text-align: center;
        font-size: 40px;
    }

    span{
        font-size: 45px;
    }

}

.MobileNavActive{
    transform: translateX(0%);
}

.MobileNavCloseActive{
    display: flex;
}