body{
	margin: 0px;
	margin: 0px;
    font-family: 'Avenir Next Cyr';
}
ul{
	padding: 0px;
	margin: 0px;
}
li{
	list-style: none;
}
a{
	text-decoration: none;
	color: unset;
	cursor: pointer;
}
h1, h2, h3, h4, h5, p{
	margin: 0px;
	cursor: default;
}
p, span{
    cursor: default;
}
input, button, textarea, select{
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
    font-family: 'Avenir Next Cyr';
}
.center{
    width: calc(100% - 28px);
    max-width: 1464px;
    height: auto;
    margin: 0 auto;
    position: relative;
}

/* HEADER */
header{
    width: 100%;
    height: auto;
    float: left;
    padding: 25px 0;
    background-color: #fff;
    position: relative;
    z-index: 100006;
}
.header__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.header__item{
    width: 33.3%;
    height: auto;
}
.header__item:nth-child(3){
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
}
.header__item-bar{
    width: fit-content;
    height: 45px;
    float: left;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #292127;
    padding: 13px 27px 15px 51px;
    border-radius: 22.5px;
    border: solid 1px #efeff0;
    background-color: #fefefe;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    transition: .4s;
}
.header__item-bar:hover{
    box-shadow: 0 3px 0 0 rgba(142, 117, 111, 0.16);
    transition: .4s;
}
.header__item-bar::before{
    content: "";
    position: absolute;
    left: 25.1px;
    top: 16.2px;
    width: 12.9px;
    height: 11.6px;
    background-image: url("../images/icon/bar.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.header__item-bar.active::before{
    content: "";
    position: absolute;
    left: 25.1px;
    top: 16.2px;
    width: 13.5px;
    height: 13.8px;
    background-image: url("../images/icon/close.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.header__item-logo{
    width: fit-content;
    height: auto;
    float: left;
}
.header__item-logo a{
    width: 100%;
    height: auto;
    float: left;
    font-size: 18px;
    font-family: 'Dunbar';
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.72px;
    text-align: center;
    color: #292127;
    text-transform: uppercase;
}
.header__item-logo h1{
    width: 100%;
    height: auto;
    float: left;
    font-size: 13px;
    font-family: 'Garamond Premier Pro';
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #292127;
    margin: 7px 0 0 0;
    text-transform: uppercase;
}
.header__item-contacts{
    width: fit-content;
    height: 45px;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #292127;
    padding: 12px 66px 12px 67px;
    border-radius: 22.5px;
    border: solid 1px #efeff0;
    background-color: #fefefe;
    box-sizing: border-box;
    margin: 0 0 0 12px;
    transition: .4s;
}
.header__item-contacts:hover{
    box-shadow: 0 3px 0 0 rgba(142, 117, 111, 0.16);
    transition: .4s;
}
.header__item-call{
    width: 78px;
    height: 45px;
    border-radius: 22.5px;
    border: solid 1px #efeff0;
    background-color: #fefefe;
    background-image: url("../images/icon/call.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18.9px 18.9px;
    box-sizing: border-box;
    transition: .4s;
}
.header__item-call:hover{
    box-shadow: 0 3px 0 0 rgba(142, 117, 111, 0.16);
    transition: .4s;
}
/* HEADER */

/* HEADER MENU */
.headerMenu{
    width: 100%;
    height: auto;
    float: left;
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 10005;
    background-color: #fff;
    padding: 47px 0 0 0;
    transition: .4s;
}
.headerMenu.active{
    top: 96px;
    transition: .4s;
}
.headerMenu__row{
    width: 100%;
    height: auto;
    float: left;
}
.headerMenu__item{
    width: 100%;
    height: auto;
    float: left;
}
.headerMenu__item > ul{
    width: 100%;
    height: auto;
    float: left;
}
.headerMenu__item > ul > li{
    width: 100%;
    height: auto;
    float: left;
    padding: 32px 0;
    border-top: 1px solid #efeff0;
}
.headerMenu__item > ul > li > a{
    width: fit-content;
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #292127;
    margin: 0 auto;
    display: block;
}
/* HEADER MENU */

/* MAIN */
.main{
    width: 100%;
    height: auto;
    float: left;
}
.main__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.main__item:nth-child(1){
    width: 30%;
    height: auto;
    background-color: #fbfbf9;
    padding: 0 42px 0 48px;
    box-sizing: border-box;
    background-image: url("../images/vectory/main-decor-elips-left.png");
    background-position: -29px 198px;
    background-repeat: no-repeat;
    background-size: auto;
}
.main__item:nth-child(1) .main__item-vectory, .main__item:nth-child(1) .main__item-vectory-paragraph{
    display: none;
}
.main__item:nth-child(2){
    width: calc(40% - 32px);
    height: auto;
    background-color: #fbfbf9;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: flex-end;
    align-items: flex-end;
}
.main__item:nth-child(3){
    width: 30%;
    height: auto;
    background-color: #fbfbf9;
    padding: 0 24px 0 45px;
    box-sizing: border-box;
    background-image: url("../images/vectory/main-decor-elips-right.png");
    background-position: 35px -80px;
    background-repeat: no-repeat;
    background-size: auto;
}
.main__item-clinic{
    width: 100%;
    height: auto;
    float: left;
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.47;
    letter-spacing: 0.6px;
    text-align: left;
    color: #7a5c60;
    margin: 32px 0 0 0;
}
.main__item-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 40px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: 1.6px;
    text-align: left;
    color: #7a5c60;
    margin: 68px 0 0 0;
}
.main__item-title br{
    display: block;
}
.main__item-title .br-mob{
    display: none;
}
.main__item-consultation{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: normal;
    text-align: left;
    color: #292127;
    margin: 94px 0 0 0;
    z-index: 10005;
}
.main__item-button{
    width: fit-content;
    height: auto;
    float: left;
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    padding: 21px 55px 23px;
    border-radius: 31px;
    background-color: #292127;
    border: solid 1px #292127;
    margin: 23px 0 0 0;
    transition: .4s;
    z-index: 10005;
}
.main__item-button:hover{
    box-shadow: 0 6px 0 0 rgba(142, 117, 111, 0.16);
    border: solid 1px #efeff0;
    background-color: #7a5c60;
    transition: .4s;
}
.main__item-vectory{
    width: 464px;
    height: 464px;
    margin: 32px auto 0;
    border: solid 6px #fff;
    box-sizing: border-box;
    border-radius: 100%;
    box-shadow: -10px 10px 6px 0 rgba(142, 117, 111, 0.16);
}
.main__item-vectory-paragraph{
    width: 263.7px;
    height: 47.2px;
    float: right;
    margin: 54.4px 40.7px 290.7px 0;
}
.main__item-license{
    width: 100%;
    height: auto;
    float: left;
    font-size: 15px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.47;
    letter-spacing: 0.6px;
    text-align: left;
    color: #7a5c60;
    margin: 32px 0 11px 0;
}
.main__item-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: 1.12px;
    text-align: left;
    color: #292127;
    margin: 22px 0 0 0;
}
.main__item-address{
    width: 100%;
    height: auto;
    float: left;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #292127;
    margin: 192px 0 0 0;
}
.main__item-more{
    width: fit-content;
    height: auto;
    float: right;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 45px;
    letter-spacing: normal;
    text-align: right;
    color: #292127;
    padding: 0 69px 0 0;
    margin: 28px 0 0 0;
    z-index: 2;
    position: relative;
}
.main__item-more::after{
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    right: 0;
    top: 0;
    background-image: url("../images/icon/next.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: invert(8%) sepia(6%) saturate(2348%) hue-rotate(263deg) brightness(40%) contrast(131%);
}
.main__item-specialist{
    width: 100%;
    height: auto;
    float: left;
    margin: 28px 0 0 0;
    position: relative;
}
.main__item-specialist .main__item-more{
    margin: 0;
}
.main__item-specialist .main__item-more::before{
    display: none;
}
.main__item-specialist::before{
    content: "";
    position: absolute;
    width: 75px;
    height: 76px;
    left: -20px;
    top: -5px;
    background-image: url("../images/vectory/users.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.main__item-more:last-child::before{
    content: "";
    position: absolute;
    width: 17px;
    height: 20px;
    left: -37px;
    top: 13px;
    background-image: url("../images/icon/location.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* MAIN */

/* CATEGORY */
.category{
    width: 100%;
    height: auto;
    float: left;
    margin: -215px 0 0 0;
}
.category__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 105px;
    box-sizing: border-box;
}
.category__row div{
    display: contents;
}
.category__item{
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
.category__item-vectory{
    width: 106px;
    height: 106px;
    border-radius: 100%;
    box-sizing: border-box;
    box-shadow: -10px 10px 6px 0 rgba(142, 117, 111, 0.16);
}
.category__item-title{
    width: fit-content;
    height: auto;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #7a5c60;
    margin: 23px 0 0 0;
    cursor:pointer;
}
/* CATEGORY */

/* ADVANTAGES */
.advantages{
    width: 100%;
    height: auto;
    float: left;
    padding: 8px 0 0 0;
}
.advantages__row{
    width: 100%;
    height: auto;
    float: left;
    padding: 33px 23px 0;
    box-sizing: border-box;
    background-color: #fbfbf9;
}
.advantages__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 25px;
    border-radius: 32px;
    background-image: url("../images/posters/advantages.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
}
.advantages__box{
    width: 60%;
    height: auto;
    padding: 35px 41px 33px 35px;
    box-sizing: border-box;
    border-radius: 27px;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background-color: rgb(160 105 123 / 40%);
}
.advantages__box-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 40px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: 1.6px;
    text-align: left;
    color: #fff;
}
.advantages__box-title br{
    display: block;
}
.advantages__box-title .br-mob{
    display: none;
}
.advantages__box-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.21;
    letter-spacing: 1.12px;
    text-align: left;
    color: #fff;
    margin: 29px 0 0 0;
}
.advantages__block{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 99px 0 0 0;
}
.advantages__section{
    width: fit-content;
    height: auto;
}
.advantages__section-title{
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
}
.advantages__section-rating{
    width: fit-content;
    height: auto;
    float: left;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: right;
    color: #fff;
    margin: 20.7px 0 0 0;
    padding: 0 0 0 157px;
    position: relative;
}
.advantages__section-rating::before{
    content: "";
    position: absolute;
    width: 136.8px;
    height: 20.3px;
    left: 0;
    top: 0;
    background-image: url("../images/icon/rating.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.advantages__section-count{
    width: fit-content;
    height: auto;
    float: left;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: right;
    color: #fff;
    margin: 20.7px 0 0 48px;
}
.advantages__section-more{
    width: fit-content;
    height: auto;
    float: right;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 45px;
    letter-spacing: normal;
    text-align: right;
    color: #fff;
    padding: 0 69px 0 0;
    margin: 30px 0 0 0;
    position: relative;
}
.advantages__section-more::after{
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    right: 0;
    top: 0;
    background-image: url("../images/icon/next.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* ADVANTAGES */

/* SERVICE */
.service{
    width: 100%;
    height: auto;
    float: left;
}
.service__row{
    width: 100%;
    height: auto;
    float: left;
    padding: 110px 23px 73px;
    box-sizing: border-box;
    background-color: #fbfbf9;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.service__item:nth-child(1){
    width: calc(60% - 18px);
    height: auto;
}
.service__item:nth-child(2){
    width: 40%;
    height: auto;
    position: relative;
    padding: 14px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
}
.service__item-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 40px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: 1.6px;
    text-align: left;
    color: #292127;
    padding: 0 0 0 25px;
    box-sizing: border-box;
}
.service__item-title br{
    display: block;
}
.service__item-title .br-mob{
    display: none;
}
.service__item-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: 1.12px;
    text-align: left;
    color: #292127;
    margin: 28px 0 0 0;
    padding: 0 0 0 25px;
    box-sizing: border-box;
}
.service__item-button{
    width: fit-content;
    height: auto;
    float: left;
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    padding: 21px 71px 23px;
    border-radius: 31px;
    background-color: #292127;
    border: solid 1px #292127;;
    margin: 43px 0 0 25px;
    box-sizing: border-box;
    transition: .4s;
}
.service__item-button:hover{
    box-shadow: 0 6px 0 0 rgba(142, 117, 111, 0.16);
    border: solid 1px #efeff0;
    background-color: #7a5c60;
    transition: .4s;
}
.service__item__list{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 70px 0 0 0;
}
.service__item__list__box:nth-child(1){
    width: calc(50% - 9px);
    height: 230px;
    margin: 18px 0 0 0;
    padding: 24px 25px 25px;
    box-sizing: border-box;
    border-radius: 32px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}
.service__item__list__box:nth-child(2){
    width: calc(50% - 9px);
    height: 230px;
    margin: 18px 0 0 0;
    padding: 24px 25px 25px;
    box-sizing: border-box;
    border-radius: 32px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}
.service__item__list__box:nth-child(3){
    width: 100%;
    height: 230px;
    margin: 18px 0 0 0;
    padding: 31px 25px 21px;
    box-sizing: border-box;
    border-radius: 32px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}
.service__item__list__box:nth-child(4) {
    width: 100%;
    height: 230px;
    margin: 18px 0 0 0;
    padding: 31px 25px 21px;
    box-sizing: border-box;
    border-radius: 32px;
    position: relative;
    display: none;
    flex-wrap: wrap;
    align-content: space-between;
}
.service__item__list__box-poster{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 32px;
    z-index: 1;
}
.service__item__list__box-poster.mobile{
    display: none;
}
.service__item__list__box-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 24px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.29;
    letter-spacing: 1.92px;
    text-align: left;
    color: #fff;
    z-index: 2;
    position: relative;
}
.service__item__list__box-title .br-mob{
    display: none;
}
.service__item__list__box-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.21;
    letter-spacing: 1.12px;
    text-align: left;
    color: #fff;
    margin: 0 0 34px;
    z-index: 2;
    position: relative;
}
.service__item__list__box-price{
    width: fit-content;
    height: auto;
    float: left;
    font-size: 24px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    z-index: 2;
    position: relative;
    display: flex;
    align-content: center;
    align-items: center;
}
.service__item__list__box-more{
    width: fit-content;
    height: auto;
    float: right;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 45px;
    letter-spacing: normal;
    text-align: right;
    color: #fff;
    padding: 0 69px 0 0;
    margin: 0 0 0 126px;
    z-index: 2;
    position: relative;
}
.service__item__list__box-more::after{
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    right: 0;
    top: 0;
    background-image: url("../images/icon/next.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.service__item-poster{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 32px;
}
.service__box{
    width: 100%;
    height: auto;
    float: left;
    padding: 33px 34px 32px;
    border-radius: 27px;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background-color: rgb(160 105 123 / 40%);
    box-sizing: border-box;
}
.service__box-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 24px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.29;
    letter-spacing: 1.92px;
    text-align: left;
    color: #fff;
}
.service__box-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.21;
    letter-spacing: 1.12px;
    text-align: left;
    color: #fff;
    margin: 23px 0 0 0;
}
.service__block{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 55px 0 0 0;
    align-content: center;
    align-items: center;
}
.service__box-price{
    width: fit-content;
    height: auto;
    float: left;
    font-size: 24px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
}
.service__box-more{
    width: fit-content;
    height: auto;
    float: right;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 45px;
    letter-spacing: normal;
    text-align: right;
    color: #fff;
    padding: 0 69px 0 0;
    margin: 0 0 0 126px;
    z-index: 2;
    position: relative;
}
.service__box-more::after{
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    right: 0;
    top: 0;
    background-image: url("../images/icon/next.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* SERVICE */

/* COMMANDS */
.commands{
    width: 100%;
    height: auto;
    float: left;
    margin: 8px 0 0 0;
}
.commands__row{
    width: 100%;
    height: auto;
    float: left;
    padding: 109px 23px 147px;
    box-sizing: border-box;
    background-color: #fbfbf9;
}
.commands__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.commands__box{
    width: calc(50% - 31px);
    height: auto;
}
.commands__box-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 40px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: 1.6px;
    text-align: left;
    color: #292127;
}
.commands__box-title br{
    display: block;
}
.commands__box-title .br-mob{
    display: none;
}
.commands__box-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: 1.12px;
    text-align: left;
    color: #292127;
    margin: 28px 0 0 0;
}
.commands__box-button, .commands__item-button{
    width: fit-content;
    height: auto;
    float: left;
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    padding: 21px 71px 23px;
    border-radius: 31px;
    background-color: #292127;
    border: solid 1px #292127;
    margin: 50px 0 0 0;
    transition: .4s;
}
.commands__item-button{
    display: none;
}
.commands__box-button:hover, .commands__item-button:hover{
    box-shadow: 0 6px 0 0 rgba(142, 117, 111, 0.16);
    border: solid 1px #efeff0;
    background-color: #7a5c60;
    transition: .4s;
}
.commands__box-poster{
    width: 100%;
    height: auto;
    float: left;
    border-radius: 32px;
}
.commands__block{
    width: calc(25% - 45.7px);
    height: auto;
    margin: 85px 0 0 0;
}
.commands__block-poster{
    width: 100%;
    height: auto;
    float: left;
    border-radius: 32px;
}
.commands__block-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.35;
    letter-spacing: normal;
    text-align: center;
    color: #292127;
    margin: 28px 0 0 0;
}
.commands__block-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: 1.12px;
    text-align: center;
    color: #292127;
    margin: 21px 0 0 0;
}
/* COMMANDS */

/* BOOKING */
.booking{
    width: 100%;
    height: auto;
    float: left;
    padding: 58px 0 76px;
    background-color: #fff;
}
.booking__row{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
}
.booking__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.booking__item__logo{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.booking__item__logo-logo{
    width: fit-content;
    height: auto;
}
.booking__item__logo-logo img{
    width: 40.9px;
    height: 41px;
    float: left;
    object-fit: contain;
    object-position: center;
}
.booking__item__logo-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 18px;
    font-family: 'Dunbar';
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.72px;
    text-align: center;
    color: #292127;
    margin: 59px 0 0 0;
    text-transform: uppercase;
}
.booking__item__logo-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 13px;
    font-family: 'Garamond Premier Pro';
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #292127;
    margin: 8px 0 0 0;
    text-transform: uppercase;
}
.booking__item-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: 1.12px;
    text-align: center;
    color: #292127;
    margin: 59px 0 0 0;
}
.booking__item-button{
    width: fit-content;
    height: auto;
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    padding: 21px 55px 23px;
    border-radius: 31px;
    background-color: #292127;
    border: solid 1px #292127;
    margin: 59px auto 0;
    transition: .4s;
}
.booking__item-button:hover{
    box-shadow: 0 6px 0 0 rgba(142, 117, 111, 0.16);
    border: solid 1px #efeff0;
    background-color: #7a5c60;
    transition: .4s;
}
.booking__item__contacts{
    width: 285px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: absolute;
    right: 0;
    top: -4px;
}
.booking__item__contacts-contacts{
    width: fit-content;
    height: 45px;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #292127;
    padding: 12px 66px 12px 67px;
    border-radius: 22.5px;
    border: solid 1px #efeff0;
    background-color: #fefefe;
    box-sizing: border-box;
    transition: .4s;
}
.booking__item__contacts-contacts:hover{
    box-shadow: 0 3px 0 0 rgba(142, 117, 111, 0.16);
    transition: .4s;
}
.booking__item__contacts-call{
    width: 78px;
    height: 45px;
    border-radius: 22.5px;
    border: solid 1px #efeff0;
    background-color: #fefefe;
    background-image: url("../images/icon/call.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18.9px 18.9px;
    box-sizing: border-box;
    transition: .4s;
}
.booking__item__contacts-call:hover{
    box-shadow: 0 3px 0 0 rgba(142, 117, 111, 0.16);
    transition: .4s;
}
/* BOOKING */

/* FOOTER */
footer{
    width: 100%;
    height: auto;
    float: left;
}
.footer__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #fbfbf9;
    padding: 28px 28px 32px;
    box-sizing: border-box;
}
.footer__item{
    width: 33.3%;
    height: auto;
}
.footer__item-copyright, .footer__item-license, .footer__item-design{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.57;
    letter-spacing: 1.12px;
    text-align: left;
    color: #6c666a;
}
.footer__item-license{
    text-align: center;
}
.footer__item-design{
    text-align: right;
}
.footer__item-design a{
    transition: .4s;
}
.footer__item-design a:hover{
    color: #292127;
    transition: .4s;
}
/* FOOTER */

/* MODAL */
.modal{
    width: 100%;
    height: auto;
    float: left;
    padding: 32px 0 64px;
    background-color: #fff;
    box-shadow: 0 -3px 0 0 rgba(142, 117, 111, 0.16);
    position: fixed;
    bottom: -100%;
    left: 0;
    z-index: 100005;
    transition: .4s;
}
.modal.active{
    bottom: 0;
    transition: .4s;
}
.modal__row{
    width: 100%;
    height: auto;
    float: left;
}
.modal__item{
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.modal__item-close{
    width: fit-content;
    height: auto;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: right;
    color: #292127;
    position: absolute;
    right: 24px;
    top: 0;
    cursor: pointer;
}
.modal__item-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: center;
    color: #292127;
}
.modal__item-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: normal;
    text-align: center;
    color: #292127;
    margin: 8px 0 0 0;
}
.modal__item form{
    width: 90%;
    max-width: 372px;
    height: auto;
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.modal__item form > label{
    width: 100%;
    height: auto;
    float: left;
    margin: 0 0 16px;
}
.modal__item form > label > input{
    width: 100%;
    height: auto;
    float: left;
    padding: 18px 0 18px;
    border-radius: 23px;
    border: solid 1px #efeff0;
    background-color: #fefefe;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #292127;
}
.modal__item form > label > input::placeholder{
    color: #292127;
}
.modal__item form > button{
    width: fit-content;
    height: auto;
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    margin: 32px auto 0;
    padding: 23px 96px 23px;
    border-radius: 31px;
    background-color: #292127;
    border: solid 1px #292127;
    cursor: pointer;
    transition: .4s;
    box-sizing: border-box;
}
.modal__item form > button:hover{
    box-shadow: 0 6px 0 0 rgba(142, 117, 111, 0.16);
    border: solid 1px #efeff0;
    background-color: #7a5c60;
    transition: .4s;
}
/* MODAL */

/* TEAM */
.team{
    width: 100%;
    height: auto;
    float: left;
}
.team-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 32px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: 1.28px;
    text-align: left;
    color: #292127;
}
.team-title br{
    display: block;
}
.team-title .br-mob{
    display: none;
}
.team-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: 1.12px;
    text-align: left;
    color: #292127;
    margin: 25px 0 44px 0;
}
.team__row{
    width: 100%;
    height: auto;
    float: left;
    padding: 25px 24px 28px;
    box-sizing: border-box;
    background-color: #fbfbf9;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.team__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
}
.team__item-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 40px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: 1.6px;
    text-align: left;
    color: #292127;
}
.team__item-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: 1.12px;
    text-align: left;
    color: #292127;
    margin: 28px 0 0 0;
}
.team__item{
    width: calc(25% - 45.7px);
    height: auto;
    margin: 0 0 92px 0;
}
.team__item.normalize{
    height: 0;
    margin: 0;
}
.team__item-poster{
    width: 100%;
    height: auto;
    float: left;
    border-radius: 32px;
}
.team__item-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.35;
    letter-spacing: normal;
    text-align: center;
    color: #292127;
    margin: 28px 0 0 0;
}
.team__item-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: 1.12px;
    text-align: center;
    color: #292127;
    margin: 21px 0 0 0;
}
.team__item-experience{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: 0.56px;
    text-align: center;
    color: #292127;
    margin: 28px 0 0 0;
}
/* TEAM */

/* PRICE */
.price{
    width: 100%;
    height: auto;
    float: left;
}
.price-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 32px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: 1.28px;
    text-align: left;
    color: #292127;
}
.price__row{
    width: 100%;
    height: auto;
    float: left;
    padding: 25px 104px 107px 16px;
    box-sizing: border-box;
    background-color: #fbfbf9;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.price__item{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 48px 0 0 0;
}
.price__item-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #292127;
}
.price__box{
    width: calc(50% - 20px);
    height: auto;
    padding: 18px 23px 19px 18px;
    object-fit: contain;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 32px;
    margin: 25px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.price__block:nth-child(1){
    width: 81px;
    height: auto;
}
.price__block:nth-child(2){
    width: calc(100% - 105px);
    height: auto;
}
.price__block-image{
    width: 81px;
    height: 81px;
    box-shadow: -10px 10px 6px 0 rgba(142, 117, 111, 0.16);
    border-radius: 100%;
}
.price__block-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #292127;
}
.price__block-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: normal;
    text-align: left;
    color: #292127;
    margin: 10px 0 0 0;
}
.price__section{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 5px 0 0 0;
    align-content: center;
    align-items: center;
}
.price__section-price{
    width: fit-content;
    height: auto;
    float: left;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #292127;
}
.price__section-more{
    width: fit-content;
    height: auto;
    float: right;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 45px;
    letter-spacing: normal;
    text-align: right;
    color: #292127;
    padding: 0 69px 0 0;
    z-index: 2;
    position: relative;
}
.price__section-more::after{
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    right: 0;
    top: 0;
    background-image: url("../images/icon/next.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: invert(8%) sepia(6%) saturate(2348%) hue-rotate(263deg) brightness(40%) contrast(131%);
}
/* PRICE */

/* OFFER */
.offer{
    width: 100%;
    height: auto;
    float: left;
}
.offer__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.offer__row::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 53px;
    background-color: #fbfbf9;
    bottom: 0;
    left: 0;
}
.offer__item{
    width: calc(50% - 8px);
    height: auto;
    background-color: #fbfbf9;
    box-sizing: border-box;
}
.offer__item:nth-child(1){
    padding: 28px 45px 133px 28px;
}
.offer__item:nth-child(2){
    padding: 28px 28px 133px;
}
.offer__item__about{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.offer__item__about__box:nth-child(1){
    width: 226px;
    height: auto;
}
.offer__item__about__box:nth-child(2){
    width: calc(100% - 254px);
    height: auto;
}
.offer__item__about__box-poster{
    width: 100%;
    height: auto;
    float: left;
    border-radius: 22px;
}
.offer__item__about__box-poster.mobile{
    display: none;
}
.offer__item__about__box-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #292127;
    margin: 15px 0 0 0;
}
.offer__item__about__box-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: normal;
    text-align: left;
    color: #292127;
    margin: 14px 0 0 0;
}
.offer__item__parametrs{
    width: 100%;
    height: auto;
    float: left;
    margin: 77px 0 0 0;
}
.offer__item__parametrs-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #292127;
}
.offer__item__parametrs ul{
    width: 100%;
    height: auto;
    float: left;
}
.offer__item__parametrs ul > li{
    width: 100%;
    height: auto;
    float: left;
    margin: 24px 0 0 0;
    position: relative;
}
.offer__item__parametrs ul > li::before{
    content: "";
    position: absolute;
    opacity: 0.1;
    width: 100%;
    height: 0px;
    border-bottom: 1px dashed #292127;
    top: 11px;
    left: 0;
}
.offer__item__parametrs ul > li::after{
    content: "";
    position: absolute;
    width: 32.5px;
    height: 10.2px;
    top: 5px;
    right: 0;
    background-color: #fbfbf9;
    z-index: 10005;
    background-image: url("../images/icon/check.svg");
    background-position: right;
    background-repeat: no-repeat;
    background-size: auto;
}
.offer__item__parametrs ul > li > p{
    width: fit-content;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: normal;
    text-align: left;
    color: #292127;
    padding: 0 19.5px 0 0;
    background-color: #fbfbf9;
    position: relative;
}
.offer__item__price{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 76.9px 0 0 0;
}
.offer__item__price-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #292127;
}
.offer__item__price-price{
    width: 100%;
    height: auto;
    float: right;
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: right;
    color: #292127;
    margin: -25px 0 0 0;
}
.offer__item__price-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 12px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: 0.48px;
    text-align: left;
    color: #292127;
    margin: 9px 0 0 0;
}
.offer__item__price-button{
    width: fit-content;
    height: auto;
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    padding: 21px 38px 23px;
    border-radius: 31px;
    border: solid 1px #292127;
    background-color: #292127;
    margin: 64px auto 0;
    transition: .4s;
}
.offer__item__price-button:hover{
    box-shadow: 0 6px 0 0 rgba(142, 117, 111, 0.16);
    border: solid 1px #efeff0;
    background-color: #7a5c60;
    transition: .4s;
}
.offer__item__gallery{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.offer__item__gallery__box{
    width: calc(50% - 7px);
    height: auto;
}
.offer__item__gallery__box img{
    width: 100%;
    height: auto;
    float: left;
    margin: 0 0 13px 0;
}
.offer__item__case{
    width: 100%;
    height: auto;
    float: left;
    margin: 26px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.offer__item__case-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #292127;
}
.offer__item__case-description{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: normal;
    text-align: left;
    color: #292127;
    margin: 15px 0 0 0;
}
.offer__item__case-phargraph{
    width: 100%;
    height: auto;
    float: right;
    margin: 44px 0 0 0;
}
.offer__item__case-phargraph img{
    width: fit-content;
    height: auto;
    float: right;
}
.offer__item__case-specialists{
    width: fit-content;
    height: auto;
    float: right;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 45px;
    letter-spacing: normal;
    text-align: right;
    color: #292127;
    padding: 0 69px 0 106px;
    z-index: 2;
    position: relative;
    margin: 130px auto 0;
}
.offer__item__case-specialists::before{
    content: "";
    position: absolute;
    width: 75px;
    height: 76px;
    left: 00px;
    top: -5px;
    background-image: url("../images/vectory/users.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.offer__item__case-specialists::after{
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    right: 0;
    top: 0;
    background-image: url("../images/icon/next.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: invert(8%) sepia(6%) saturate(2348%) hue-rotate(263deg) brightness(40%) contrast(131%);
}
/* OFFER */

/* CONTACTS */
.contacts{
    width: 100%;
    height: auto;
    float: left;
}
.contacts__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contacts__item{
    width: calc(50% - 8px);
    height: auto;
}
.contacts__box{
    width: 100%;
    height: auto;
    float: left;
    padding: 25px 33px;
    box-sizing: border-box;
    background-color: #fbfbf9;
    margin: 0 0 8px;
}
.contacts__box-pharagraph{
    width: 100%;
    height: auto;
    float: left;
    font-size: 32px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: 1.28px;
    text-align: left;
    color: #292127;
    margin: 0 0 48px;
}
.contacts__box-title{
    width: 100%;
    height: auto;
    float: left;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #292127;
}
.contacts__box__contacts{
    width: 100%;
    height: auto;
    float: left;
}
.contacts__box__contacts span, .contacts__box__contacts a{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: 1.12px;
    text-align: left;
    color: #292127;
    margin: 20px 0 0 0;
}
.contacts__box__requisites{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0 0 0;
}
.contacts__box__requisites__block:nth-child(1){
    width: 60%;
}
.contacts__box__requisites__block:nth-child(2){
    width: 40%;
}
.contacts__box__requisites__block span{
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: 1.12px;
    text-align: left;
    color: #292127;
}
.contacts__box__requisites__block-download{
    width: fit-content;
    height: auto;
    float: right;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 45px;
    letter-spacing: normal;
    text-align: right;
    color: #292127;
    padding: 0 69px 0 0;
    z-index: 2;
    position: relative;
    margin: -39px 0 0 0;
}
.contacts__box__requisites__block-download::after{
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    right: 0;
    top: 0;
    background-image: url("../images/icon/download.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.contacts__box__documents{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0 0 0;
}
.contacts__box__documents__block{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 44px 0;
    align-content: center;
    align-items: center;
}
.contacts__box__documents__block:last-child{
    margin: 0;
}
.contacts__box__documents__block span{
    width: 50%;
    height: auto;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: 1.12px;
    text-align: left;
    color: #292127;
}
.contacts__box__documents__block a{
    width: fit-content;
    height: auto;
    float: right;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 45px;
    letter-spacing: normal;
    text-align: right;
    color: #292127;
    padding: 0 69px 0 0;
    z-index: 2;
    position: relative;
}
.contacts__box__documents__block a::after{
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    right: 0;
    top: 0;
    background-image: url("../images/icon/next.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: invert(8%) sepia(6%) saturate(2348%) hue-rotate(263deg) brightness(40%) contrast(131%);
}
.contacts__box__certificate{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0 84px 0;
}
.contacts__box__certificate div{
    width: calc(33.3% - 11.3px);
    height: auto;
    margin: 0 0 20px;
}
.contacts__box__certificate div > img{
    width: 100%;
    height: auto;
    float: left;
}
.contacts__box:last-child{
    margin: 0;
}
.contacts__item:nth-child(2){
    padding: 12px;
    box-sizing: border-box;
    background-color: #fbfbf9;
}
.contacts__item iframe{
    width: 100%;
    height: 730px;
    float: left;
}
.contacts__item__gallery{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 16px 0 0 0;
}
.contacts__item__gallery__box{
    width: calc(50% - 7.5px);
    height: auto;
}
.contacts__item__gallery__box img{
    width: 100%;
    height: auto;
    float: left;
    margin: 0 0 14px;
}
/* CONTACTS */

@media screen and (max-width: 1300px){
    .main__item-vectory {
        width: 85%;
        height: auto;
        max-width: 464px;
    }
}
@media screen and (max-width: 1230px){
    .commands__box{
        width: 100%;
    }
    .commands__box:nth-child(2){
        display: none;
    }
    .commands__block {
        width: calc(33.3% - 45.7px);
    }
    .team__item {
        width: calc(33.3% - 45.7px);
    }
    footer .center{
        width: 100%;
    }
    .footer__row{
        padding: 0;
        background-color: unset;
    }
    .footer__item{
        width: 100%;
        margin: 0 0 24px;
    }
    .footer__item:nth-child(1){
        order: 2;
    }
    .footer__item:nth-child(2){
        order: 1;
    }
    .footer__item:nth-child(3){
        order: 3;
    }
    .footer__item:last-child{
        margin: 0;
    }
    .footer__item-copyright, .footer__item-license, .footer__item-design{
        width: 100%;
        height: auto;
        text-align: center;
        padding: 0 3%;
        box-sizing: border-box;
    }
    .footer__item-design{
        padding: 16px 0;
        font-size: 10px;
        font-weight: 300;
        font-stretch: normal;
        font-style: normal;
        line-height: 2.2;
        letter-spacing: 0.8px;
        text-align: center;
        color: #6c666a;
        background-color: #fbfbf9;
    }
    .main{
        position: relative;
    }
    .main .center{
        width: 100%;
    }
    .main::after{
        content: "";
        position: absolute;
        width: 100%;
        height: 640px;
        background-image: url("../images/vectory/main-decor-elips-left.png");
        background-position: top left;
        background-repeat: no-repeat;
        background-size: auto;
        left: 0;
        bottom: 20px;
    }
    .main__item:nth-child(1){
        width: 100%;
        padding: 0 3% 572px;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        flex-direction: column;
        background-image: url("../images/vectory/main-decor-elips-right.png");
        background-position: top;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .main__item:nth-child(2), .main__item:nth-child(3){
        display: none;
    }
    .main__item:nth-child(1) .main__item-vectory, .main__item:nth-child(1) .main__item-vectory-paragraph{
        display: block;
    }
    .main__item:nth-child(1) .main__item-vectory-paragraph{
        width: 100%;
        object-fit: contain;
        object-position: right;
        margin: 48px 0 52px 0;
    }
    .main__item-title{
        margin: 16px 0;
    }
    .main__item-consultation {
        text-align: center;
        margin: 24px 0 0 0;
        order: 6;
    }
    .main__item-button{
        margin: 0 auto;
    }
    .category {
        margin: -546px 0 0 0;
    }
    .category .center{
        width: 100%;
    }
    .category__row{
        justify-content: space-between;
        padding: 0 3%;
    }
    .category__row div{
        width: 100%;
        height: auto;
        float: left;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 10px 0;
    }
    .category__row div:nth-child(2){
        justify-content: center;
    }
}
@media screen and (max-width: 1050px){
    .contacts .center{
        width: 100%;
    }
    .contacts__row{
        background-color: #fbfbf9;
    }
    .contacts__item{
        width: 100%;
        display: contents;
    }
    .contacts__box{
        padding: 0;
        margin: 0;
    }
    .contacts__box-pharagraph {
        font-size: 24px;
        margin: 0 0 32px;
        padding: 0 16px;
        box-sizing: border-box;
    }
    .contacts__box-title{
        padding: 0 0;
        box-sizing: border-box;
    }
    .contacts__box__contacts span, .contacts__box__contacts a {
        margin: 20px 0 0 0;
        padding: 0 16px;
        box-sizing: border-box;
    }
    .contacts__box:nth-child(1){
        order: 1;
    }
    .contacts__box:nth-child(1) .contacts__box-title{
        padding: 0 16px;
        box-sizing: border-box;
    }
    .contacts__item iframe{
        order: 2;
        height: 448px;
        margin: 32px 0 0 0;
    }
    .contacts__item__gallery{
        order: 3;
        margin: 32px 0 0 0;
        padding: 0 16px;
        box-sizing: border-box;
    }
    .contacts__item__gallery__box {
        width: calc(50% - 4.5px);
        height: auto;
    }
    .contacts__item__gallery__box img{
        margin: 0 0 9px;
    }
    .contacts__box:nth-child(4){
        order: 6;
        margin: 31px 0 0 0;
        padding: 24px 0 0 16px;
        box-sizing: border-box;
    }
    .contacts__box__certificate{
        margin: 24px 0 20px;
    }
    .contacts__box:nth-child(2){
        order: 5;
        padding: 24px 16px 32px;
        box-sizing: border-box;
        border-top: 8px solid #fff;
    }
    .contacts__box{
        order: 7;
        padding: 24px 0 0;
        box-sizing: border-box;
        border-top: 8px solid #fff;
    }
    .contacts__box__requisites__block:nth-child(1){
        width: 100%;
    }
    .contacts__box__requisites__block:nth-child(2){
        width: 100%;
    }
    .contacts__box__requisites__block span{
        width: 100%;
    }
    .contacts__box__documents__block a{
        margin: 24px 16px 0 0;
        float: right;
    }
    .contacts__box__requisites__block-download{
        margin: 32px 0 0 0;
    }
    .contacts__box__documents__block{
        justify-content: right;
        margin: 0 0 24px 0;
    }
    .contacts__box__documents__block span{
        width: 100%;
        padding: 24px 16px 0;
        box-sizing: border-box;
        border-top: 4px solid #fff;
    }
    .contacts__box__documents__block:last-child{
        padding: 0 0 41px;
    }
    .contacts__box__documents__block:nth-child(1) span{
        border: unset;
        padding: 0 16px 0;
    }
    .contacts__box:nth-child(3) .contacts__box-title{
        padding: 0 16px;
        box-sizing: border-box;
    }
}
@media screen and (max-width: 1000px){
    .header__item{
        width: fit-content;
    }
    .header__item-contacts{
        display: none;
    }
    .header__item-logo{
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
    }
    .header__item-logo a{
        font-size: 14px;
        width: fit-content;
    }
    .header__item-logo h1{
        font-size: 10px;
        width: fit-content;
    }
    .header__item-call {
        width: 19.3px;
        height: 18.9px;
        border-radius: unset;
        border: unset;
        background-color: unset;
        box-sizing: border-box;
        transition: .4s;
    }
    .header__item-bar {
        width: 13.5px;
        height: 13.8px;
        float: left;
        left: 0;
        top: 0;
        font-size: 14px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: left;
        color: #ffffff;
        padding: unset;
        border-radius: unset;
        border: unset;
        background-color: unset;
        box-sizing: border-box;
        position: relative;
        cursor: pointer;
        transition: .4s;
        overflow: hidden;
    }
    .header__item-bar::before{
        left: 0;
        top: 0;
    }
    .header__item-bar:hover {
        box-shadow: unset;
    }
    .header__item-bar.active::before {
        left: 0;
        top: 0;
    }
    .headerMenu{
        padding: 31.5px 0 0 0;
    }
    .headerMenu.active {
        top: 87px;
    }
    .headerMenu__item > ul > li {
        padding: 24px 0;
    }
    .headerMenu__item > ul > li > a {
        font-size: 14px;
    }
    .price .center{
        width: 100%;
    }
    .price__row{
        padding: 25px 3% 107px 3%;
    }
    .price__box {
        width: 100%;
        margin: 16px 0 0 0;
        padding: 18px 8px 16px 18px;
    }
    .offer .center{
        width: 100%;
    }
    .offer__item:nth-child(1), .offer__item:nth-child(2){
        width: 100%;
    }
    .offer__item:nth-child(1){
        padding: 28px 3% 133px 3%;
    }
    .offer__item:nth-child(2){
        margin: 8px 0 0 0;
        padding: 51px 3% 49px;
        display: flex;
        flex-wrap: wrap;
    }
    .offer__item:nth-child(2)::after{
        content: "";
        position: absolute;
        width: 100%;
        height: 8px;
        background-color: #ffffff;
        bottom: 145px;
        left: 0;
    }
    .offer__item__case{
        display: contents;
    }
    .offer__item__case-title{
        order: 1;
        padding: 0 8px;
        box-sizing: border-box;
    }
    .offer__item__case-description{
        order: 2;
        padding: 0 8px;
        box-sizing: border-box;
    }
    .offer__item__gallery{
        order: 3;
        margin: 24px 0 0 0;
    }
    .offer__item__case-phargraph{
        order: 4;
        margin: 40px 8px 0 0;
    }
    .offer__item__case-specialists{
        order: 5;
        margin: 105px auto 0;
    }
    .offer__item__price-button{
        white-space: nowrap;
    }
    .offer__item__case-specialists{
        white-space: nowrap;
    }
    .service .center{
        width: 100%;
    }
    .service__row{
        padding: 48px 3%;
        box-sizing: border-box;
    }
    .service__item:nth-child(1) {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
    }
    .service__item:nth-child(2) {
        display: none;
    }
    .service__item__list__box:nth-child(4){
        display: flex;
    }
    .service__item-title{
        order: 1;
    }
    .service__item-description{
        order: 2;
    }
    .service__item__list{
        order: 3;
    }
    .service__item-button{
        order: 4;
        margin: 32px auto 0;
    }
    .service__item__list{
        margin: 8px 0 0 0;
    }
    .service__item__list__box{
        margin: 16px 0 0 0;
    }
    .advantages .center{
        width: 100%;
    }
    .advantages{
        padding: 0;
    }
    .advantages__row {
        padding: 205px 0 0 0;
        position: relative;
    }
    .advantages__item {
        padding: 0;
        border-radius: 0;
        background-image: unset;
    }
    .advantages__item::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 205px;
        background-image: url("../images/posters/advantages-mobile.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        left: 0;
        top: 0;
    }
    .advantages__box {
        width: 100%;
        height: auto;
        padding: 21px 3% 47px;
        box-sizing: border-box;
        border-radius: 0;
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
        background-color: rgb(160, 105, 123, 0.5);
        position: relative;
    }
    .advantages__box-title {
        font-size: 24px;
        position: absolute;
        top: -145px;
        left: 0;
        padding: 0 3%;
        box-sizing: border-box;
    }
    .advantages__box-title br{
        display: none;
    }
    .advantages__box-title .br-mob{
        display: block;
    }
    .advantages__block{
        margin: 43px 0 0 0;
    }
    .advantages__box-description {
        width: 100%;
        height: auto;
        float: left;
        font-size: 14px;
        font-weight: 300;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.71;
        letter-spacing: 1.12px;
        text-align: left;
        color: #fff;
        margin: 0;
    }
    .advantages__box-description br{
        display: none;
    }
    .advantages__section {
        width: fit-content;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-content: flex-start;
        align-items: flex-start;
    }
    .advantages__section-count{
        margin: 10px 0 0 0;
    }
    .advantages__section-rating{
        margin: 10px 0 0 0;
    }
    .advantages__section-more{
        margin: 18px 0 0 0;
    }
}
@media screen and (max-width: 900px){
    .center{
        width: 90%;
    }
    .commands .center{
        width: 100%;
    }
    .commands__row{
        padding: 48px 3% 52px;
    }
    .commands__item:nth-child(1){
        display: contents;
    }
    .commands__box{
        display: contents;
    }
    .commands__block {
        width: calc(50% - 45.7px);
        margin: 0 0 40px;
    }
    .commands__box-button{
        display: none;
    }
    .commands__item-button{
        display: block;
        margin: 0 auto;
    }
    .commands__item:nth-child(2){
        margin: 32px 0 0 0;
    }
    .team .center{
        width: 100%;
    }
    .team__row{
        padding: 24px 3% 40px;
    }
    .team__item {
        width: calc(50% - 45.7px);
        margin: 0 0 40px;
    }
    .booking{
        padding: 48px 0 80px;
    }
    .booking__item__contacts{
        display: none;
    }
    .booking__item__logo-title{
        margin: 32px 0 0 0;
        font-size: 14px;
    }
    .booking__item__logo-description {
        font-size: 10px;
        margin: 8px 0 0 0;
    }
    .booking__item-description{
        margin: 32px 0 0 0;
    }
    .booking__item-button{
        margin: 48px 0 0 0;
    }
}
@media screen and (max-width: 700px){
    .price .center{
        width: 100%;
    }
    .price__row{
        padding: 24px 3% 56px;
    }
    .price__box {
        width: 100%;
        margin: 16px 0 0 0;
        border-radius: 24px;
    }
    .price-title{
        font-size: 24px;
        padding: 0 8px;
        box-sizing: border-box;
    }
    .price__item{
        margin: 32px 0 0 0;
    }
    .price__item-title{
        padding: 0 8px;
        box-sizing: border-box;
    }
    .price__section-price{
        margin: 37px 0 0 0;
    }
    .price__section-more{
        margin: 37px 0 0 0;
        float: right;
    }

    .commands .center{
        width: 100%;
    }
    .commands__block {
        width: calc(50% - 5px);
    }
    .commands__box-title{
        font-size: 24px;
        padding: 0 8px;
        box-sizing: border-box;
    }
    .commands__box-title br{
        display: none;
    }
    .commands__box-title .br-mob{
        display: block;
    }
    .commands__box-description{
        margin: 16px 0 0 0;
        padding: 0 8px;
        box-sizing: border-box;
    }
    .commands__box-description br{
        display: none;
    }
    .commands__block-poster{
        border-radius: 24px;
        height: auto;
    }
    .commands__block-title {
        font-size: 14px;
        margin: 16px 0 0 0;
    }
    .commands__block-description {
        font-size: 11px;
        margin: 16px 0 0 0;
    }

    .team .center{
        width: 100%;
    }
    .team__row{
        padding: 24px 3% 40px;
    }
    .team__item {
        width: calc(50% - 5px);
    }
    .team-title{
        font-size: 24px;
        padding: 0 8px;
        box-sizing: border-box;
    }
    .team-title br{
        display: none;
    }
    .team-title .br-mob{
        display: block;
    }
    .team-description{
        margin: 16px 0 32px 0;
        padding: 0 8px;
        box-sizing: border-box;
    }
    .team-description br{
        display: none;
    }
    .team__item-poster{
        border-radius: 24px;
        height: auto;
    }
    .team__item-title {
        font-size: 14px;
        margin: 16px 0 0 0;
    }
    .team__item-description {
        font-size: 11px;
        margin: 16px 0 0 0;
    }
    .team__item-experience {
        font-size: 12px;
        margin: 24px 0 0 0;
    }
    .offer .center{
        width: 100%;
    }
    .offer__item:nth-child(1) {
        padding: 24px 3% 40px;
    }
    .offer__item__about__box:nth-child(1){
        width: 100%;
    }
    .offer__item__about__box:nth-child(2){
        width: 100%;
    }
    .offer__item__about__box-poster{
        height: 186px;
        object-fit: cover;
        object-position: right;
        display: none;
    }
    .offer__item__about__box-poster.mobile{
        display: block;
    }
    .offer__item__about__box-title {
        margin: 24px 0 0 0;
        padding: 0 8px;
        box-sizing: border-box;
    }
    .offer__item__about__box-description{
        padding: 0 8px;
        box-sizing: border-box;
    }
    .offer__item__parametrs{
        margin: 40px 0 0 0;
        padding: 0 8px;
        box-sizing: border-box;
    }
    .offer__item__price{
        margin: 53px 0 0 0;
        padding: 0 8px;
        box-sizing: border-box;
    }
    .offer__item__price-price{
        font-size: 22px;
        margin: -23px 0 0 0;
    }
    .offer__item__price-description{
        width: 60%;
    }
    .offer__item__price-description br{
        display: none;
    }
    .offer__item__price-button{
        margin: 40px auto 0;
    }
    .modal{
        padding: 64px 0;
    }
    .modal__item-close{
        right: 0;
        top: -46px;
    }
    .service__item__list__box{
        width: 100% !important;
        height: 186px !important;
        padding: 26px 29px;
        box-sizing: border-box;
        border-radius: 24px;
    }
    .service__item__list__box-poster {
        border-radius: 24px;
        object-fit: cover;
        object-position: right;
    }
    .service__item__list__box-poster.mobile{
        display: block;
    }
    .service__item__list__box-title{
        font-size: 20px;
    }
    .service__item__list__box-title .br-mob{
        display: block;
    }
    .service__item__list__box-more{
        display: none;
    }
    .service__item__list__box-description{
        display: none;
    }
    .service__item-title{
        padding: 0 8px;
        box-sizing: border-box;
        font-size: 24px;
    }
    .service__item-title br{
        display: none;
    }
    .service__item-title .br-mob{
        display: block;
    }
    .service__item__list__box-price{
        font-size: 20px;
    }
    .service__item-description{
        padding: 0 8px;
        box-sizing: border-box;
        font-size: 14px;
        margin: 16px 0 0 0;
    }
    .service__item-description br{
        display: none;
    }
    .main__item-clinic {
        font-size: 14px;
        margin: 24px 0 0 0;
    }
    .main__item-clinic br{
        display: none;
    }
    .main__item-title {
        margin: 16px 0;
        font-size: 24px;
        line-height: 1.33;
    }
    .main__item-title br{
        display: none;
    }
    .main__item-title .br-mob{
        display: block;
    }
    .main__item:nth-child(1) .main__item-vectory{
        display: block;
        width: 100%;
        height: auto;
        max-width: 398px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 400px){
    .price__block-image {
        width: 70px;
        height: 70px;
    }
    .price__block:nth-child(2) {
        width: calc(100% - 90px);
        height: auto;
    }
    .price__section-price {
        margin: 20px 0 0 0;
        font-size: 14px;
    }
    .price__section-more {
        font-size: 14px;
        line-height: 35px;
        padding: 0 50px 0 0;
        margin: 22px 0 0 0;
    }
    .price__section-more::after {
        width: 35px;
        height: 35px;
    }
    .contacts__box__certificate div {
        width: calc(50% - 7.5px);
        height: auto;
        margin: 0 0 19px;
    }
}