header.headerPage .top{
    max-width: 1920px;
    max-height: 32px;
    height : 32px;
    background-color: #3A3A3A;
    padding: 0 0 0 300px; 
    color : #EFEFEF;
    font-family: 'Roboto', sans-serif;
    font-size:0.938rem ;
    font-weight: bold;
    display: flex;
}
header.headerPage .info{
    display:flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 40px;
}
header.headerPage address{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
header.headerPage svg{
    width: 16px;
    height: 23px;
    fill:#EFEFEF;
    display: block;
    margin-right: 15px;
}
header.headerPage .border{
    background-color: #EFEFEF;
    width: 2px;
    height: 25px;
    margin: 0 50px;
}
header.headerPage ul{
    display: flex;
    align-items: center;
    flex-direction: row;
}
header.headerPage ul svg{
    width: 23px;
    height: 23px;
    transition: 0.5s;
}
header.headerPage ul svg:hover{
    fill: #E6007D;
    cursor: pointer;
}
header.headerPage .nav ul li a.selected{
    background: linear-gradient(-154deg, #E6007D, #5C2582);
}
header.headerPage .socialNetworks li{
    margin-left: 11px;
    width: auto;
    height: 100%;
}
header.headerPage .nav{
    background-color: #202020;
    min-height: 70px;
    height: 70px;
    padding-left: 300px;
    
}
header.headerPage .nav li{
    width: 100%;
    height: 100%;
    max-width: 250px;
    transition: all 0.4s;
}
header.headerPage .nav li a p::after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    opacity: 1;
    transform: scale(0);
    transform-origin: center;
    transition: opacity 0.3s, transform 0.4s;
}
header.headerPage .nav li a:hover p::after{
    transform: scale(1);
}
header.headerPage .nav li a{
    color : #EFEFEF;
    display: flex;
    max-width: 250px;
    min-width: 250px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    font-size: 1.125rem;
    font-family: 'Oswald', 'Roboto', sans-serif;
    text-transform: uppercase;  
    transition: 0.7s;  
}
header.headerPage .nav li:hover{
    background-color: #E6007D;
    cursor: pointer;
}
header.headerPage .selected{
    background:linear-gradient(-154deg, #E6007D, #5C2582);
}
header.headerPage .nav ul{
    height: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header.headerPage .logo img{
    position: absolute;
    border-radius: 0;
    left: -1px;
}
header.headerPage{
    box-shadow: rgba(20, 20, 20, 0.3) 0px 8px 12px;
    position: fixed;
    top:0;
    left: 0;
    width:100%;
    z-index: 100;
}
header.headerPage .responsive{
    display: none;
}
.menuResponsive{
    display: none;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    height:100dvh;
    width: 100vw;
    padding-top: 110px;
    background-color: #202020;
    z-index: 99;

}
.menuResponsive ul.social li svg{
    height: 32px;
    width: 32px;
    fill: #EFEFEF;
}
.menuResponsive ul.social{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 65px;
    flex-direction: row;
}
.menuResponsive ul.navigation{
    width: 100%;
    padding: 0 0 20px 0 ;
}
.menuResponsive ul.navigation li a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #EFEFEF;
    font-family: 'Oswald', sans-serif;
    font-size: 1.375rem;
    padding: 20px 0;
    text-transform: uppercase;
    height: auto;
}
.menuResponsive ul.navigation li a p{
    padding-top: 0;
    font-size: 1.5rem;
}
.menuResponsive ul.navigation li{
    width: 100%;
    padding: 0 10px;
}
 
.menuResponsive .navigation li a.selected{
    background: linear-gradient(-154deg, #E6007D, #5C2582);
}

.displayFlex{
    display: flex;
}
.displayNone{
    display: none;
}
@media screen and (max-width:1175px){
    header.headerPage .top{
        padding-left: 250px;
    }
    header.headerPage .top .info{
        padding: 0;
    }
    header.headerPage .nav li{
        width: auto;
    }
    header.headerPage .nav li a{
        padding: 0 20px;
        min-width: unset;
    }
    header.headerPage .top .info .border{
        margin: 0 30px;
    }
}
@media screen and (max-width:1000px) {
    header.headerPage{
        height: 102px;
        background-color: white;
        display: flex;
        justify-content: space-between;
    }
    header.headerPage .logo{
        height: 100%;
    }
    header.headerPage .nav{
        display: none;
    }
    header.headerPage .top{
        display: none;
    }
    header.headerPage .responsive{
        display: flex;
        height: 100%;
        align-items: center;
    }
    header.headerPage .responsive .burger svg{
        fill:black;
        height: 30px;
        width: 30px;
        margin-right: 30px;
    }
    header.headerPage .responsive .cross svg{
        fill:black;
        height: 30px;
        width: 30px;
        margin-right: 30px;
    }
}