/* FONTS */
@font-face {
    font-family: 'OpenSans';
    src: url('../fonts/opensans.woff');
    src: url('../fonts/opensans.woff2');
}
/* END FONTS */
html{
    scroll-behavior: smooth;
}
*,*::before, *:after{
    box-sizing: border-box;
}
a:focus {
    outline: none;
}
button:focus {
    outline: none;
}
h1,h2,h3,p{
    margin: 0;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
ul{
    padding: 0;
    margin: 0;
}
button{
    border: none;
}
:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}
body{
    font-family: "OpenSans";
    margin: 0;
    padding: 0;
}

.swal2-icon.swal2-info {
    border-color: #f4b835!important;
    color: #f4b835!important;
}

/* Title page */
.page-title__wrapper{
    width: 100%;
    margin: 0px 0 54px;
}
.page-title__wrapper--top{
    margin-top: 130px;
}
.page-title__wrapper-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
     
}
.page-title{
    font-size: 38px;
    font-family: "OpenSans";
    color: rgb(36, 36, 36);
    font-weight: bold;
    line-height: 1.105;
    margin: 0 40px;
    transition: 0.3s;
    text-align: center;
}
.page-title:hover{
    color:#f2b532;
}
.page-title--wihte{
    color:#fff;
}
.triangle{
    position: relative;
    left: 49.5%;
}
/* Preloader*/
.loading{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #111;
    z-index: 9999999999999;
}
  
  .load-circle {
    margin: 20vh auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 10px solid #111;
    border-top: 10px solid #f4b835;
    -webkit-animation: rotate 1.2s infinite linear;
    animation: rotate 1.2s infinite linear;
  }
  
  @-webkit-keyframes rotate {
    0%{
      transform: rotate(0deg);
    }
    100%{
      transform: rotate(360deg);
    }
  }
  
  @keyframes rotate {
    0%{
      transform: rotate(0deg);
    }
    100%{
      transform: rotate(360deg);
    }
}
.preloader__title{
    margin-top: 200px
}
.preloader__title-text{
    text-align: center;
    color: #fff;
    font-size: 28px;
    margin-top: 24px;
    font-family: 'OpenSans';
}
.preloader__title-text__metropole{
    text-align: center;
    color: #fff;
    font-size: 50px;
    font-family: 'OpenSans';
}
.shop-cart-image{
	width: 47%;
    background-size: cover!important;
}
/* PAGE SHOPS */
.brands__box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden;
}
.brands__box {
    justify-content: center;
    margin: 40px 0;
}
.brands__img{
    width: 280px;
    height: 120px;
    background: #ffffff;
    border-radius: 10px;
    justify-content: center;
    display: flex;
    align-items: center;
    transition: 0.3s;
    opacity: 0.4;
}
.brands__logo{
    width: 235px;
    height: 100px;
    
}
.brands__logo--grey{
    filter: grayscale(100%); 
}
.brands__img:hover{
    opacity: 1;
}
.brands__img:hover .brands__logo--grey {
    filter: none; 
}
.brands__link{
    margin: 10px;

}
.brands__img:hover{
    border: 3px solid #fabf3f;
}
.description{
	display:none;
	color: black;
    position: absolute;
    width: 200px;
    z-index: 100;
    background: white;
    margin-top: -70px;
    padding: 15px;
    text-align: center;
    border: 3px solid #fabf3f;
    border-radius: 10px;
}

.desc1{
    width: 250px;
	margin-top: -110px;
}

.description b{
	text-decoration:underline;
}
.brands__img:hover .description {
    display:block;
}

@media (min-width: 320px) and (max-width: 540px) {
    .preloader__title-text{
        text-align: center;
        color: #fff;
        font-size: 24px;
        margin-top: 14px;
    }
    .preloader__title-text__metropole{
        text-align: center;
        color: #fff;
        font-size: 34px;
    }
}
/* BEGIN HEADER */
.header{
    width: 100%;
    background-color: #242424;
}
/* navigation */
.header-navigation{
    width: 100%;
    background: #000000;
    border-bottom: 1px solid #ffffff64;
} 
.header-navigation__container{
    margin: 0 auto;
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu__wrapper{
    width: 100%;
    display: flex;
    align-items: center;  
}
/* hamburger */
.menu{
    display: flex;
    align-items: center;  
}
.menu__icon {
    display: none;
    width: 45px;
    height: 35px;
    position: relative;
    cursor: pointer;
}
.menu__icon span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #ffffff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
.menu__icon span:nth-child(1) {
    top: 0px;
}

.menu__icon span:nth-child(2), .menu__icon span:nth-child(3) {
    top: 11px;
}

.menu__icon span:nth-child(4) {
    top: 22px;
}
.menu.menu_state_open .menu__icon span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.menu.menu_state_open .menu__icon span:nth-child(2) {
    transform: rotate(45deg);
}

.menu.menu_state_open .menu__icon span:nth-child(3) {
    transform: rotate(-45deg);
}

.menu.menu_state_open .menu__icon span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.menu.menu_state_open .header-navigation__menu-nav,
.menu.menu_state_open .header-navigation__social-networks,
.menu.menu_state_open .header-navigation__lang {
    display: flex;  
}
/* end hamburger */
.header-navigation__menu-nav{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.header-navigation__item{
    margin: 0 24px;
    font-size: 18px;
    font-family: "OpenSans";
    line-height: 1.556;
    padding: 20px 0;
    
}

.header-navigation__link{
    color: #ffffff;
    padding: 19px 0;
    transition: 0.1s;
}
/* .header-navigation__link--hover{
    border-bottom: 3px solid #ffffff
} */
.header-navigation__link:hover{
    border-bottom: 3px solid #ffffff;
}
.header-navigation__social-networks{
    display: flex;
    margin:0 40px 0 67px; 
}
.social-networks__item{
    margin:0 5px;
   
}
.social-networks__link{
    padding: 6px 8px;
    background: #ffffff50;
    border-radius: 50%;
}
.social-networks__link i{
    width: 19px;
    height: 11px;
    color: #ffffff;
    text-align: center;
    transition: 0.3s;
} 
.social-networks__item:hover .social-networks__link{
    background: #f6ba3a;
}
.social-networks__item:hover .social-networks__link i{
    color: #000000;
}
.header-navigation__lang{
    display: flex;
}
.lang__item{
    margin: 0 7px;
}
.lang__link {
    padding: 20px 0;
    transition: 0.1s;
}
.lang__link-span{
    font-size: 18px;
    font-family: "OpenSans";
    color: rgb(255, 255, 255);
    line-height: 1.556;
}
.lang__link:hover{
    border-bottom: 3px solid #ffffff;
}
/* END HEADER */
/* BEGIN CONTENT */
.content{
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}
.brands__box--grey{
    background: #f8f8f8;
}
.content__wrapper{
    display: flex;
    flex-direction: column;
    width: 1200px;
    margin: 0 auto;
}
.content__cookies{
    display: flex;
    margin: 50px 0 42px 0;
    align-items: center;
}
.main-page__cookies{
    font-size: 18px;
    font-family: "OpenSans";
    color: rgb(36, 36, 36);
    line-height: 1.556;
} 
.main-page__cookies--grey{
    color: #9f9f9f;
}
.span-cookies {
    margin: 0 12px;
    display: flex;
}
.content__block{
    width: 100%;
    display: flex;
    margin-bottom: 50px;

}
.content__image{
    width: 47%;
    /*max-height: 450px;*/
    overflow: hidden;
}
.content__box-shop{
    width: 53%;
    display: flex;
    background: #f8f8f8;
    flex-wrap: wrap;
}
.content__titll{
    font-size: 38px;
    font-family: "OpenSans";
    color: rgb(36, 36, 36);
    font-weight: bold;
    line-height: 1.105;
    margin: 44px 0 48px 42px;
}
.content__list{
    width: 93%;
    margin: 80px 0px 40px 42px;
    display: flex;
    flex-wrap: wrap;  
}
.content__item-contact{
    width: 49%;
    margin: 0 0px 54px 0;
}
.item-contact__link{
    display: flex;
}
.content__wrapper-link{
    margin-left: 20px;
}
.content__title{
    font-size: 18px;
    font-family: "OpenSans";
    color: rgb(36, 36, 36);
    font-weight: bold;
    line-height: 2.333;
}
.content__text{
    font-size: 18px;
    font-family: "OpenSans";
    color: rgb(36, 36, 36);
    line-height: 1.556;
}
.content__text-shop{
    font-size: 18px;
    font-family: "OpenSans";
    color: rgb(36, 36, 36);
    line-height: 1.556;
    margin-bottom: 34px;
}
.shop-navigation{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #f8f8f8;
    margin-bottom: 100px;
}
.store-block__photo {
    margin: 30px 0 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.store-block__photo a{
    margin: 5px;
    width: 18.3333%;
}
.photo{
    width: 100%;
    filter: grayscale(1);
    transition: 0.3s;
    /*height: 160px;*/
}
.photo:hover{
    filter: grayscale(0);
}
.shop-navigation img{
    width: 100%;
}
.shop-navigation__title{
    font-size: 38px;
    font-family: "OpenSans";
    color: rgba(36, 36, 36, 0.549);
    font-weight: bold;
    line-height: 1.105;
    padding: 150px 0;
    align-items: center;
}
/* shops navigation */
.shop-navigation{
    position: relative;
}
.svg-floof{
    position: absolute;
    top: 0px;
    left: 0;
    height: 100%;
    width: 100%;
}
.trading-place{
    opacity: 0.1;
    transition: 0.3s;
    fill: #9f9f9f;
}
.trading-place:hover{
   opacity: .65;
   fill: white;
}
.trading-place--rent{
    fill: #9f9f9f;
    opacity: .1;
}
.trading-place--rent:hover{
    opacity: .5;
   fill: #f9be3e;
}

.trading-place__rent{
    opacity: 0.75;
    transition: 0.3s;
    fill: white; 
}
.content-floof__title{
    font-size: 38px;
    font-family: "OpenSans";
    color: rgb(36, 36, 36);
    font-weight: bold;
    line-height: 1.105;
    margin-bottom: 40px;
}
.active{
    fill: white;
    opacity: .6;
}
/* END CONTENT */
/* BEGIN FOOTER */
.footer{
    background: #000000;
    width: 100%;
}
.footer-navigation{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0 30px 0;
    background: #2a2a2a;
}
.footer__nav{
    display: flex;
}
.footer-nav__item{
    margin: 0 0 0 26px;
}
.footer--margin-botton{
    margin-bottom: 36px;
}
.footer-bottom__text{
    font-size: 18px;
    font-family: "OpenSans";
    color: rgb(255, 255, 255);
    line-height: 1.111;
    text-align: center;
    padding: 25px;
}
.footer-nav__link{
    font-size: 18px;
    font-family: "OpenSans";
    color: rgb(255, 255, 255);
    line-height: 1.556;
}
.footer-nav__link:hover{
    color: rgb(236, 227, 227);
}
.footer-bottom__link{
    font-size: 16px;
    font-family: "OpenSans";
    color: rgb(255, 255, 255);
    line-height: 1.111;
}
.footer-bottom__text--right{
    text-align: right;
    padding: 5px 15px 5px 0;
    font-size: 16px
}
/* END FOOTER */
/* RENT */
.content__list--rent{
    width: 54%;
    margin: 0px 0px 0px 42px;
    display: flex;
    flex-direction: column;
}
.content__item-contact--rent{
    width: initial;
}
.form__contacts--rent{
    display: flex;
    flex-direction: column;
    width: 34%;
    align-items: flex-end;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="message"] {
    width: 100%;
    height: 50px;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid #050505;
    padding: 5px;
    margin: 10px 0;
}
input[type="message"] {
    word-break: break-word;
}
input[type="submit"]{
    width: 151px;
    height: 47px;
    background: #f4b835;
    cursor: pointer;
    transition: 0.3s;
    margin: 20px 0;
    border: #f4b835 1px solid;
    border-radius: 10px;
}
input[type="submit"]:hover{
    background: #ffffff50;
    border: 2px solid #f2b532;
}
input[value="Отправить"] {
    font-size: 16px;
    font-family: "OpenSans";
    color: rgb(36, 36, 36);
    font-weight: bold;
    line-height: 2.333;
    transition: 0.3s;
}
input[type="text"]::-webkit-input-placeholder { 
    color: #050505; 
}
input[type="email"]::-webkit-input-placeholder { 
    color: #050505; 
}
input[type="tel"]::-webkit-input-placeholder { 
    color: #050505; 
}
input[type="message"]::-webkit-input-placeholder { 
    color: #050505; 
}
/* swipebox */
#swipebox-overlay{
    background: rgba(0,0,0,0.8);
}
#swipebox-slider .slide img{
    max-height: 80%;
    max-width: 80%;
}

/* @MEDIA */

@media (max-width: 1124px) {
    .lang__link-span {
        font-size: 15px;
    }
    .header-navigation__item {
        font-size: 15px;
    }
    .header-navigation__social-networks {
        margin: 0px 25px 0 19px;
    }
    .header-navigation__social-networks {
    display: flex;
    margin: 0px 25px 0 19px;
    }
    .header-slider__text {
        font-size: 22px;
    }
}
@media (max-width: 1200px) {
    .header-navigation__container {
        width: 90%;
    }
    .container{
        width:90%;
    }
    .footer__nav{
        display: flex;
        width: 100%;
        flex-wrap: wrap;
    }
    .content__wrapper{
        width: 90%;
    }
    .content__list--rent {
        width: 100%;
    }
    .form__contacts--rent {
        display: flex;
        flex-direction: inherit;
        align-items: flex-end;
        flex-wrap: wrap;
        width: 100%;
    }
}
@media screen and (max-width: 960px){
    .header-navigation__item {
        margin: 0 16px;
    }
    .content__titll {
        margin: 34px 0 38px 26px;
    }
    .content__list {
        width: 100%;
        margin: 80px 0px 0px 26px;
    }
    .content__text {
        font-size: 15px;
    }
    .footer__nav {
        justify-content: center;
    }
    .content__title {
        font-size: 16px;
    }
}
@media screen and (max-width: 780px) {
    .header-navigation__logo-image{
        margin: 10px 0;
    }
	.shop-cart-image{
		width: 100%;
		height: 60vw;
		background-size: cover!important;
	}
        .menu{
            align-items: center;
        }
        .menu__icon{
          display: inline-block;
        }
        .menu__wrapper{
            display: block;
            position: absolute;
            background-color: rgba(0, 0, 0, 0.7);
            margin-top: 73px;;
            z-index: 1000;
            width: 100%;
            right: 0;
            top: 0;
        }
        .menu .header-navigation__menu-nav,
        .menu .header-navigation__social-networks,
        .menu .header-navigation__lang {
            position: relative;
            display: none;
            background-color: rgba(0, 0, 0, 0.3);
            z-index: 1000;
        }
        .header-navigation__item {
            font-size: 20px;
            font-weight: bold;
        }
        .lang__link-span {
            font-size: 20px;
            font-weight: bold;
        }

        .header-navigation__item{
            justify-content: center;
            display: flex;
            margin: 0;
            padding: 0;
            border-bottom: 1px solid #ffffff64;
            width: 100%;
        }
        
        .header-navigation__social-networks{
            width: 100%;
            margin: 0;
            justify-content: center;
            padding: 10px 0;
            border-bottom: 1px solid #ffffff64;
        }
        .social-networks__item{
            margin: 5px 20px;
            display: flex;
            justify-content: center;
        }
        .social-networks__link i {
            color: #ffffff;
        }
        .menu .header-navigation__lang{
            margin: 0;
            justify-content: center;
        }
        .lang__item{
            padding: 10px;
        }
        .lang__link {
            padding: 10px;
        }
        .header-navigation__menu-nav .header-navigation__item{
            margin-left: 0;
        } 
        .nav .item {
            display: block;
            padding: 10px 0;
            text-align: center;
            color: #ffffff;
        }

    .content__block {
        flex-direction: column;
    }
    .content__image {
        width: 100%;
        height: 56%;
    }
    
    .content__box-shop {
        width: 100%;
    }
    .footer__nav {
        align-items: center;
        justify-content: center;
    }
    .footer-nav__item {
        margin: 0 0 10px 26px;
    }
     .page-title-image {
        width: 60px;
        height: 30px;
    }
    .page-title{
        margin: 0 20px;
        font-size: 32px;
        text-align: center;
    }
    .triangle {
        left: 47.5%;
    }
    .page-title__wrapper {
        margin: 50px 0 50px 0;
    }
}
@media (min-width: 320px) and (max-width: 540px) {
    .main-page__cookies {
        font-size: 15px;
    }
    .page-title{
        font-size: 20px;
    }
    .page-title__wrapper-wrapper {
        margin-bottom: 10px;
    }
    .page-title__wrapper {
        margin: 0px 0 25px 0;
    }
    .triangle{
        width: 16px;
        height: 8px;
    }
    .content__image {
        height: 250px;
    }
    .content__titll {
        font-size: 32px;
        width: 90%;
    }
    .content__title {
        font-size: 15px;
    }
    .content__item-contact {
        width: 100%;
        margin: 0 0px 25px 0;
    }
    .content__text {
        font-size: 15px;
    }
    .content__text-shop {
        font-size: 15px;
        margin-bottom: 25px;
        text-align: justify;
    }
    .content__list {
        margin: 25px 0px 20px 25px;
        justify-content: center;
        width: 92%;
    }
    .content__list--rent {
        margin: 0px 0px 20px 25px;
        justify-content: center;
        width: 92%;
    }
    .content__cookies {
        align-items: inherit; 
    }
    .photo {
        width: 100%;
        /*height: 100px;*/
    }
    .store-block__photo a {
        margin: 5px 5px;
        width: 46%;
    }
    .footer-nav__item {
        margin: 0px 13px 10px 13px;
    }
    .footer-bottom__text {
        font-size: 13px;
        padding: 12px;
    }
    .page-title__wrapper--top{
        margin-top: 130px;
    }
}
