

/* header */
.header-logo{
    color: white;
    text-transform: uppercase;
    font-size: 25px;
    position: relative;
    outline: none;
}

.header{
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    line-height: 35px;
    font-size: 22px;
    position: fixed;
    z-index: 1;
    background-color: #cea877;
}
.header-menu > a{
    padding: 10px 10px 0;
    color: white;
    text-decoration: none;
    
}
.underline{
    position: relative;
}
.header-menu > .underline::before{
    content: '';
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color:  #333232;
    width: rgb(245, 242, 242);
    transition: 0.5s;
    transform: scaleX(0);
}
.header-menu > .underline:hover::before{
    width: 100%;
    transform: scaleX(1);
}
.header-menu > a:hover{
    text-decoration: none;
    color: #333232;
}

/* mobile menu */
.mobile-menu {
    display: none;
}
.menu_box {
    position: fixed;
    width: 50vw;
    height: 100vh;
    right: -50vw;
    top: 0;
    background-color: #b99c71e8;
    transition: 1s;
    padding-top: 0px;
    z-index: 2;
}
#mobile-menu {
    background-color: rgba(128, 128, 128, 0);
    transition: 1s;
}
#mobile-menu:target {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(128, 128, 128, 0.507);
}
#mobile-menu:target > .menu_box {
    right: 0;   
}
.menu_box-item{
    color: white;
    font-size: 25px;
    padding: 20px;
}
.menu_box-item:hover{
    text-decoration: none;
    color: #3d3a36;
}
.basket{
    width: 25px;
    height: 25px;
}
.basket-img{
    color: white;
}
.basket-img:hover{
    color: #3d3a36;
}
.close{
    padding: 10px 20px;
}
.jump{
    color: white;
    font-size: 40px;
    padding-left: 20px;
   text-decoration: none;
}
.jump:hover{
    text-decoration: none;
    color: #3d3a36; 
    
}
.mobile-menu-item{
    display: flex;
}

/* main */
.heading{
    font-size: 40px;
}
.heading > div:last-child{
    font-family: SouthernAirePersonalUseOnly;
    text-transform: uppercase;
    color: #cea877;
}

/* footer */
footer{
    flex: 0 0 auto;
}
.footer{
    background-color: #3d3a36;
    display: flex;
    flex-wrap: wrap;
    padding-top: 40px;
}
.footer-item{
    text-transform: uppercase;
    color: white;
    font-size: 25px;
    padding: 0 20px 10px 70px;
}
.footer-item1{
    color: white;
    font-size: 20px;
    padding: 5px 20px 0 70px;
}
.footer-block{
    padding-left: 50px;
}
.contact{
    text-transform: uppercase;
    color: white;
    font-size: 20px;
    padding: 0 0 20px ;
}
.footer-icon-img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: all 0.3s;
    cursor: pointer;
}
.twitter:hover{
    border-color: #5197d8;
    box-shadow: 0px 0px 20px #5197d8;
    color: #5197d8;
}
.facebook:hover{
    border-color: #4657b9;
    box-shadow: 0px 0px 20px #4657b9;
    color: #4657b9;
 }
 .instagram:hover{
    border-color: #f1458d;
    box-shadow: 0px 0px 20px #f1458d;
    color: #f1458d;
}
.vk:hover{
    border-color: #3b56f3;
    box-shadow: 0px 0px 20px #3b56f3;
    color: #3b56f3;
}
.phone:hover{
    border-color: #76767a;
    box-shadow: 0px 0px 20px  #76767a;
    color:  #76767a;
}
.marker:hover{
    border-color: #606079;
    box-shadow: 0px 0px 20px  #606079;
    color:  #606079;
}
.footer-icon{
    display: flex;
    flex-wrap: wrap;
    color: white;
    align-items: center;


}
.icon-botton{
    padding-bottom: 40px;
}
.footer-icon > div:last-child{
    padding: 10px;
    
   
}
.footer-icon-img{
    display: flex;
    align-items: center;
    margin: 5px;
}
.bottom{
    background-color: #2c2a27;
    border-top: 1px solid #969490;
    color: white;
    padding: 20px 50px;
}
/* стрелка */
#scrollTop{
    width: 45px;
    height: 45px;
    font-size: 50px;
    color: black;
    position: fixed;
    bottom: 7px;
    right: 10px;
    opacity: 0.5;
    transition: all 0.5s ease-in;
    cursor: pointer;
    z-index: 1;
    
}

@media (max-width: 900px){
    .header-menu {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
    .designation1{
        text-align: center;
    }

}
@media (max-width: 550px){
    .footer-item{
        padding: 0 0 10px 50px;
    }
    .footer-item1{
        padding: 0 0 10px 50px;
    }
}