.topHeader.flex{
    padding: 25px 0 31px;
    justify-content: space-between;
    align-items: end;
}
.heroSection{
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}
.heroSection img{
    width: 100%;
    display: block;
}
.navigation{
    background: linear-gradient(90.04deg, #F974A3 0%, #F14A7E 100%);
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav a:nth-child(odd){
    border-left: 1px solid #ffffff86;
    border-right: 1px solid #ffffff86;
}
nav a{
    flex: 1 1 0;
    display: block;
    font-weight: 500;
    padding: 16px;
    min-width: 0;
    color: #fff;
    text-align: center;
    transition: .5s ease-in-out all;
}
nav a:hover{
    background: rgba(256,256,256,0.3);
}
.hiddenElements{
    display: none;
    flex: 0;
    min-width: 50px;
    border-right: 1px solid #ffffff86;
}
.menuToggle{
    display: none;
}

.logotypeWrapper.flex{
    align-items: end;
    position: relative;
}
.logotypeWrapper::before{
    content: '';
    position: absolute;
    display: block;
    bottom: 0;
    left: 39%;
    width: 1px;
    height: 36px;
    background: #999999;
    border-radius: 4px;
}
.logoTextWrapper{
    font-size: 14px;
}
.logoTextWrapper p{
    color: #999999;
}
header .searcher{
    max-width: 300px;
    width: 100%;
}
header form{
    position: relative;
}
header input{
    width: 100%;
    outline: none;
    border: unset;
    background: #f0f0f0;
    border-radius: 4px;
    padding: 10px 32px 10px 8px;
    font-size: 14px;
}
header input::placeholder{
    opacity: 0.6;
    font-size: 14px;
}
header form i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8px;
    color: #F974A3;
}
header .phoneBlock .phoneWrapper i{
    color: #F974A3;
}
header .phoneBlock{
    flex-direction: column;
    gap: 4px;
    align-items: end;
    margin-bottom: -18px;
}
header .phoneBlock a.btn{
    padding: 0;
    background: unset;
    font-size: 12px;
    color: #F974A3;
}
header .phoneBlock a.btn:hover{
    color: #F14A7E;
    background: unset;
    box-shadow: unset;
}
.shopNavigation{
    display: flex;
    gap: 32px;
}
.shopNavigation i{
    color: #999999;
    transition: .5s all;
}
.shopNavigation a:hover i{
    color: #4C4A49;
}
.shopNavigation .shopItems{
    display: flex;
    align-items: start;
    gap: 8px;
}
.shopNavigation a{
    display: block;
}
.shopNavigation span{
    color: #999999;
    font-weight: bold;
    transition: .5s all;
}
.shopNavigation a:hover span{
    color: #4C4A49;
}
.logoSearchWrapper.flex{
    align-items: end;
}