.phoneMenu{
    transition: 0.5s;
    height: 100vh;
    width: 270px;
    display: flex;
    flex-direction: column;
    position: fixed;
    background-color: #000000f1;
}
.phoneMenuContent{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2%;
    padding-left: 5%;

}
.phoneMenuContent a{
    transition: 0.5s;
    margin-bottom: 10px;
    text-decoration: none;
    color: #ffffff;
    font-family: Poppins;
    font-weight: 700;
    font-size: 1rem;
}
.phoneMenuContent a:hover{
    transition: 0.5s;
    color: #b60000;
}

header{
    background-color: #121212;
    height: 7vh;
    display: flex;
    flex-direction: row;
    border-bottom: 0.5px solid #1F1F1F;
    padding: 0 2% 0 2%;
    align-items: center;
}
header path,svg{
    height:40%;
    fill: #fff;
    display: none;
}
.headerLeft{
    height: 100%;
    width: 30%;
}
.headerLeft img{
    margin-left: 2%;
    height: 100%;
    scale: 1;
}
.headerRight{
    height: 100%;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.headerRight a{
    transition: 0.5s;
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-family: Poppins;
}
.headerRight a:hover{
    transition: 0.5s;
    color: #b60000;
}

@media screen and (max-width: 768px){
    header path,svg{
        display: block;
    }
    header{
        padding: 0 7%;
        justify-content: space-between;
        flex-direction: row-reverse;
    }
    .headerLeft{
        display: flex;
        justify-content: end;
        
    }
    .headerRight{
        display: none;
    }
}