* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

html, body {
  font-family: 'Inter', sans-serif;
  font-weight: normal;
  font-size: 16px;
  min-width: 320px;
  scroll-behavior: smooth;
  background-color: #f4f4f4;
  height: 100vh;
}

a {
  outline: none;
  text-decoration: none;
}

img {
  outline: none;
  max-width: 100%;
  border: none;
}

ul {
  list-style: none;
}

a:hover {
  text-decoration: none !important;
}

input[type="text"]::-webkit-input-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input[type="text"]::-moz-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input[type="text"]:-moz-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input[type="text"]:-ms-input-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input[type="text"]:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input[type="text"]:focus::-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input[type="text"]:focus:-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input[type="text"]:focus:-ms-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input[type="text"]::-moz-placeholder {
  color: #BABABD;
  font-size: 16px;
}

input[type="text"]::-webkit-input-placeholder {
  color: #BABABD;
  font-size: 16px;
}

input[type="text"]:-ms-input-placeholder {
  color: #BABABD;
  font-size: 16px;
}

.flash-success{
	background-color: green;
    margin: 35px;
    padding: 15px;
	color: #fff;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.width {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

/*##########
Start header
############*/
.header {
  background-color: #fff;
  padding: 32px 0 0;
  position: relative;
  z-index: 100;
}

.headerIn {
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(78, 78, 78, 0.15);
  padding-bottom: 20px;
}

.nav {
  max-width: 100%;
  width: 100%;
}

.navMenu {
  justify-content: space-between;
  width: 100%;
}

.navMenu li a {
  font: normal normal 16px 'Ubuntu', sans-serif;
  color: #2B2B37;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.navMenu > li > a {
  padding: 0 0 30px 0;
  display: block;
}

.navMenu li:hover .navMenuIn {
  display: block;
}

.navMenu li a:hover {
  color: #52BCE5;
}

.navMenu > li {
  height: 50px;
}

/*#########
Start bread
###########*/
.bread {
  padding-top: 40px;
  padding-bottom: 25px;
}

.bread li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.bread li:before {
  content: "";
  width: 15px;
  height: 1px;
  display: block;
  background-color: #4B4B4B;
  margin: 0 15px;
}

.bread li:first-of-type:before {
  display: none;
}

.bread li a {
  font-weight: 700;
  color: #4B4B4B;
  font-size: 14px;
}

.bread li span {
  font-weight: 700;
  color: #4B4B4B;
  font-size: 14px;
}

/*
Start content
#############*/
.content {
  background-color: #f4f4f4;
}

.titleH1 {
  font-weight: 700;
  color: #2B2B37;
  font-size: 48px;
  position: relative;
}

.titleH1:before {
  content: "";
  display: block;
  position: absolute;
  background: #52BCE5;
  border-radius: 48px;
  width: 170px;
  height: 8px;
  bottom: -20px;
}

.aside {
  /*max-width: 370px;*/
  max-width: 24%;
  width: 100%;
}

.contentRight {
  max-width: 1195px;
  width: 100%;
}

.contentBlock {
  padding-top: 80px;
  justify-content: space-between;
  align-items: stretch;
}

.question {
  background: #FFFFFF;
  border-radius: 5px;
  max-width: 100%;
  width: 100%;
  padding: 40px;
}

.questionMenu li:first-of-type {
  padding: 0;
}

.questionMenu li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(78, 78, 78, 0.1);
}

.questionMenu li a {
  color: #2B2B37;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.questionMenu li a:hover {
  color: #52BCE5;
  font-weight: 700;
}

.questionMenu li:last-of-type {
  padding: 20px 0 0 0;
  border-bottom: none;
}

.questionMenu li:first-of-type {
  padding: 0 0 20px 0;
}

.feedback {
  background: #F6FBFD;
  border-radius: 5px;
  margin: 10px 0;
  padding: 40px;
}

.feedback .feedback__icon {
  width: 80px;
  height: 80px;
  border-radius: 100px;
}

.feedback__name {
  color: #2B2B37;
  font-size: 18px;
  font-weight: 600;
  padding-top: 20px;
}

.feedback p {
  color: #2B2B37;
  padding-top: 10px;
  line-height: 27px;
}

.feedback__star {
  color: #2B2B37;
  font-weight: 600;
  font-size: 18px;
  padding-top: 30px;
  margin-bottom: 30px;
}

.starBlock {
  justify-content: space-between;
  margin-top: 20px;
}

.starBlock span {
  color: #2B2B37;
  font-size: 14px;
  background: rgba(82, 188, 229, .1);
  padding: 10px;
  border-radius: 5px;
}

.feedbackSocial {
  justify-content: space-between;
  align-items: center;
}

.feedbackBtn {
  background: #52BCE5;
  border-radius: 5px;
  padding: 15px 0;
  justify-content: center;
  height: 60px;
  margin-top: 30px;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.feedbackBtn:hover {
  background: #17769a;
}

.feedbackBtn span {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
  padding-top: 5px;
}

.feedbackImgRight {
  margin-left: 20px;
}

.feedbackImgRight__copyright {
  color: rgba(82, 188, 229, 1);
  padding-top: 10px;
}

.infoBlock {
  align-items: center;
  justify-content: space-between;
}

.infoBlock li {
  border-right: 1px solid rgba(78, 78, 78, 0.1);;
}

.infoBlock li > span {
  padding-right: 25px;
  color: #2B2B37;
  font-weight: normal;
  align-items: center;
}

.contentIn {
  padding: 25px 40px;
  background-color: #fff;
  border-radius: 5px;
}

.infoBlock__name span {
  font-weight: 600;
  color: #2B2B37;
  padding-left: 10px;
}

.infoBlock__rating:before,
.infoBlock__eye:before,
.infoBlock__comments:before,
.infoBlock__time:before,
.infoBlock__date:before,
.infoBlock__name:before {
  content: "";
  background: url('../images/icon8.svg') no-repeat;
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.infoBlock__date {
  color: #2B2B37;
  font-weight: normal;
  align-items: center;
}

.infoBlock__date:before {
  background: url('../images/icon9.svg') no-repeat;
}

.infoBlock__time:before {
  background: url('../images/icon10.svg') no-repeat;
}

.infoBlock__eye:before {
  background: url('../images/icon11.svg') no-repeat;
}

.infoBlock__comments:before {
  background: url('../images/icon12.svg') no-repeat;
}

.infoBlock__rating:before {
  background: url('../images/icon13.svg') no-repeat;
}

.infoBlock li:last-of-type {
  border: none;
}

.bgWhite {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 40px;
}

.transfer {
  margin: 10px 0;
}

.transfer p {
  color: rgba(43, 43, 55, 1);
  line-height: 27px;
}

.attention {
  background: rgba(255, 76, 48, 0.1);
  border-radius: 5px;
  padding: 40px;
}

.attention p {
  color: #FF4C30;
  font-weight: 600;
  line-height: 27px;
}

.transferWork {
  margin: 10px 0;
}

.transferWork__title {
  color: rgba(43, 43, 55, 1);
  font-weight: 700;
  font-size: 28px;
  padding-bottom: 30px;
}

.transferWork p {
  line-height: 170%;
  color: #2B2B37;
  padding-bottom: 20px;
}

.transferWorkList {
  list-style-position: inside;
}

.transferWorkList li {
  color: #2B2B37;
  line-height: 170%;
  margin-bottom: 20px;
}

.transferWorkList li:last-of-type {
  margin-bottom: 0;
}

.transferWork__color {
  font-weight: 600;
  color: #52BCE5;
  border-bottom: 1px solid;
}

.transferWorkIn {
  background: rgba(82, 188, 229, 0.05);
  border-radius: 5px;
  padding: 30px;
  margin-bottom: 30px;
}

.titleH3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 30px;
}

.transferWorkList2 {
  list-style-position: inside;
  list-style-type: disc;
}

.transferWorkList2 li {
  margin-bottom: 20px;
  line-height: 170%;
  color: #2B2B37;
}

.transferWork p:last-of-type {
  padding-bottom: 0;
}

.attention2 {
  background: rgba(255, 76, 48, 0.05);
  margin: 30px 0;
}

.attention2 p {
  color: #FF4C30;
}

.attention2 p span {
  color: #2B2B37;
}

.transferWorkBg {
  background: rgba(138, 196, 75, 0.05);
}

.transferWorkImg {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 30px;
}

.mapsBlock {
  background: rgba(82, 188, 229, 0.1);
  border-radius: 5px;
  padding: 30px;
  margin-top: 30px;
}

.transferWorkInDown {
  margin-top: 30px;
  margin-bottom: 0;
}

.online {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 30px;
  margin-bottom: 30px;
}

.onlineImg {
  margin: 30px 0 0;
  border-radius: 5px;
}

.transferWorkListUp {
  margin-top: 30px;
}

.onlineLast {
  margin-bottom: 0;
}

.articleBlock {
  background: #F6FBFD;
  max-width: 360px;
  width: 100%;
  margin-right: 17px;
  height: 490px;
}

.articleBlock:nth-child(3n+3) {
  margin-right: 0;
}

.articleBlock__href {
  width: 100%;
  height: 250px;
  display: block;
}

.articleBlock__href img {
  display: block;
  object-fit: cover;
  max-width: 100%;
  width: 100%;
  height: 250px;
}

.articleBlock__title {
  color: rgba(43, 43, 55, 1);
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  max-height: 83px;
  overflow: hidden;
  display: block;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.articleBlock__title:hover {
  color: #52BCE5;
}

.articleBlockIn {
  max-width: 90%;
  width: 100%;
  margin: 20px auto 0;
}

.articleBlockIn p {
  color: rgba(43, 43, 55, 1);
  font-size: 16px;
  line-height: 170%;
  display: block;
  max-height: 95px;
  overflow: hidden;
  padding-top: 15px;
}

.articleBlockBottom {
  justify-content: space-between;
  margin-top: 45px;
  padding-bottom: 20px;
}

.articleBlockBottom__date {
  color: rgba(75, 75, 75, 1);
}

.articleBlockBottom__name {
  color: rgba(75, 75, 75, 1);
}

.articleBlockBottom__name span {
  font-weight: 600;
  color: rgba(43, 43, 55, 1);
}

.answerTitle {
  padding-top: 20px;
  padding-bottom: 20px;
}

.answerContent {
  background: rgba(82, 188, 229, 0.05);
  border-radius: 5px;
  padding: 30px;
  margin-bottom: 30px;
}

.answerBlockTop {
  align-items: center;
}

.answerBlockTop__name {
  color: rgba(43, 43, 55, 1);
  font-weight: 700;
  font-size: 20px;
  padding-left: 20px;
}

.answerBlock__paragraf {
  color: rgba(43, 43, 55, 1);
  line-height: 27px;
  margin-top: 30px;
}

.answerBlockBtn {
  margin-top: 30px;
}

.answerBlockBtn a {
  font-weight: 500;
  font-size: 16px;
  color: #2B2B37;
}

.answerBlockBtn__answers:before,
.answerBlockBtn__answer:before {
  content: "";
  display: block;
  background: url('../images/icon14.svg') no-repeat;
  width: 24px;
  height: 24px;
  margin-right: 15px;
}

.answerBlockBtn__answers:before {
  background: url('../images/icon15.svg') no-repeat;
}

.answerBlockBtn__answers {
  margin-left: 30px;
}

.answerBlock {
  margin-bottom: 30px;
}

.answerContent:last-of-type,
.answerBlock:last-of-type {
  margin-bottom: 0;
}

.commentsText span {
  color: rgba(255, 76, 48, 1);
}

.formCommentsInput {
  justify-content: space-between;
  margin-top: 30px;
}

.formCommentsInput input {
  max-width: 545px;
  width: 100%;
  height: 70px;
  background: #F7F7F7;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  padding-left: 30px;
  color: #BABABD;
}

.textarea {
  background: #F7F7F7;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  max-width: 100%;
  width: 100%;
  height: 150px;
  margin-top: 30px;
  resize: none;
  padding: 26px;
  font: normal normal 16px 'Inter', sans-serif;
  color: rgba(43, 43, 55, .3);
}


.textarea::-moz-placeholder {
  color: rgba(43, 43, 55, .3);
  font-size: 16px;
}

.textarea::-webkit-input-placeholder {
  color: rgba(43, 43, 55, .3);
  font-size: 16px;
}

.textarea:-ms-input-placeholder {
  color: rgba(43, 43, 55, .3);
  font-size: 16px;
}

.formCommentsSubmit {
  justify-content: center;
  align-items: center;
  background: #52BCE5;
  border-radius: 5px;
  max-width: 385px;
  width: 100%;
  height: 60px;
  border: none;
  margin-top: 30px;
  cursor: pointer;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.formCommentsSubmit:hover {
  background: #17769a;
}

.formCommentsSubmit span {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
}

.confidencial {
  margin-top: 30px;
}

.blockCheckbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  margin-top: 30px;
}

.blockCheckbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #52BCE5;
  border-radius: 4px;
}

.blockCheckbox:hover input ~ .checkmark {
  background: #52BCE5;
}

.blockCheckbox input:checked ~ .checkmark {
  background: #52BCE5;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.blockCheckbox input:checked ~ .checkmark:after {
  display: block;
}

.blockCheckbox .checkmark:after {
  left: 7px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mobilBtn {
  display: none;
}

.mobilMenu3,
.mobilMenu2,
.mobilMenu {
  position: fixed;
  background-color: #fff;
  max-width: 70%;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  top: 0;
  left: 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, .2);
  padding: 40px;
  transform: translate(-105%);
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.mobilMenu3.active,
.mobilMenu2.active,
.mobilMenu.active {
  transform: translate(0);
}

.mobilBtn.active span:first-of-type {
  opacity: 0;
}

.mobilBtn.active span:last-of-type {
  transform: rotate(45deg);
  position: relative;
  top: -9px;
}

.mobilBtn.active span:nth-child(2) {
  transform: rotate(134deg);
  position: relative;
  top: 0;
}

body.active {
  overflow: hidden;
}

/*
Start afisha
#############*/
.afisha {
  max-width: 1820px;
  width: 100%;
  margin: 50px auto 0;
  position: relative;
  height: 800px;
}

.afisha a img {
  position: absolute;
  top: 0;
  border-radius: 5px;
}

.afisha__text {
  text-transform: uppercase;
  color: #FFFFFF;
  font: normal 500 24px 'Ubuntu', sans-serif;
}

.afishaContent {
  position: relative;
  z-index: 100;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: block;
  padding-top: 260px;
}

.afisha__title {
  font: normal bold 64px 'Inter', sans-serif;
  color: #FFFFFF;
  display: block;
  max-width: 690px;
  width: 100%;
}

.afisha__paragraf {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 600;
  max-width: 765px;
  width: 100%;
  display: block;
  padding-top: 20px;
}

.places {
  margin-top: 100px;
}

.titleH2 {
  color: #2B2B37;
  font-weight: 700;
  font-size: 40px;
  position: relative;
}

.titleH2:before {
  content: "";
  display: block;
  position: absolute;
  background: #52BCE5;
  border-radius: 48px;
  width: 170px;
  height: 8px;
  bottom: -20px;
}

.sliderPlace {
  margin-top: 60px;
  justify-content: flex-end;
}

.sliderPlace .mySwiper {
  max-width: 1750px;
  width: 100%;
  margin: 0 !important;
}

.placesItem {
  height: 437px;
  display: block;
}

.placesItem > img {
  position: absolute;
  top: 0;
  border-radius: 5px;
}

.placesItemContnet {
  position: absolute;
  bottom: 20px;
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.placesItemContnet__name {
  font: normal bold 18px 'Inter', sans-serif;
  color: #FFFFFF;
  display: block;
  margin-top: 5px;
}

.placesItemContnet__paragraf {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 14px;
  display: block;
  padding: 15px 0;
}

.sliderPlaceNav {
  position: relative;
  max-width: 205px;
  width: 100%;
  align-items: center;
}

.placesTitle {
  justify-content: space-between;
  position: relative;
  align-items: center;
}

.swiper-button-next17, .swiper-rtl .swiper-button-prev17,
.swiper-button-next16, .swiper-rtl .swiper-button-prev16,
.swiper-button-next15, .swiper-rtl .swiper-button-prev15,
.swiper-button-next14, .swiper-rtl .swiper-button-prev14,
.swiper-button-next13, .swiper-rtl .swiper-button-prev13,
.swiper-button-next12, .swiper-rtl .swiper-button-prev12,
.swiper-button-next11, .swiper-rtl .swiper-button-prev11,
.swiper-button-next10, .swiper-rtl .swiper-button-prev10,
.swiper-button-next9, .swiper-rtl .swiper-button-prev9,
.swiper-button-next8, .swiper-rtl .swiper-button-prev8,
.swiper-button-next7, .swiper-rtl .swiper-button-prev7,
.swiper-button-next6, .swiper-rtl .swiper-button-prev6,
.swiper-button-next5, .swiper-rtl .swiper-button-prev5,
.swiper-button-next4, .swiper-rtl .swiper-button-prev4,
.swiper-button-next3, .swiper-rtl .swiper-button-prev3,
.swiper-button-next2, .swiper-rtl .swiper-button-prev2,
.swiper-button-next, .swiper-rtl .swiper-button-prev {
  top: 0 !important;
}

.swiper-pagination-fraction5,
.swiper-pagination-fraction4,
.swiper-pagination-fraction3,
.swiper-pagination-fraction2,
.swiper-pagination-fraction {
  bottom: -13px !important;
}

.swiper-pagination5,
.swiper-pagination4,
.swiper-pagination3,
.swiper-pagination2,
.swiper-pagination {
  color: #2B2B37;
  font-size: 24px;
}

.swiper-pagination-current {
  font: normal 700 24px 'Inter', sans-serif;
  color: #2B2B37;
}

.swiper-pagination-total {
  font: normal 700 16px 'Inter', sans-serif;
}

.swiper-button-prev18:after,
.swiper-rtl .swiper-button-next18:after,
.swiper-button-prev17:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-prev16:after,
.swiper-rtl .swiper-button-next16:after,
.swiper-button-prev15:after,
.swiper-rtl .swiper-button-next15:after,
.swiper-button-prev14:after,
.swiper-rtl .swiper-button-next14:after,
.swiper-button-prev13:after,
.swiper-rtl .swiper-button-next13:after,
.swiper-button-prev12:after,
.swiper-rtl .swiper-button-next12:after,
.swiper-button-prev11:after,
.swiper-rtl .swiper-button-next11:after,
.swiper-button-prev10:after,
.swiper-rtl .swiper-button-next10:after,
.swiper-button-prev9:after,
.swiper-rtl .swiper-button-next9:after,
.swiper-button-prev8:after,
.swiper-rtl .swiper-button-next8:after,
.swiper-button-prev7:after,
.swiper-rtl .swiper-button-next7:after,
.swiper-button-prev6:after,
.swiper-rtl .swiper-button-next6:after,
.swiper-button-prev5:after,
.swiper-rtl .swiper-button-next5:after,
.swiper-button-prev4:after,
.swiper-rtl .swiper-button-next4:after,
.swiper-button-prev3:after,
.swiper-rtl .swiper-button-next3:after,
.swiper-button-prev2:after,
.swiper-rtl .swiper-button-next2:after,
.swiper-button-next2:after,
.swiper-rtl .swiper-button-prev2:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "" !important;
}


.swiper-button-prev17,
.swiper-button-next17,
.swiper-button-prev16,
.swiper-button-next16,
.swiper-button-prev15,
.swiper-button-next15,
.swiper-button-prev14,
.swiper-button-next14,
.swiper-button-prev13,
.swiper-button-next13,
.swiper-button-prev12,
.swiper-button-next12,
.swiper-button-prev11,
.swiper-button-next11,
.swiper-button-prev10,
.swiper-button-next10,
.swiper-button-prev9,
.swiper-button-next9,
.swiper-button-prev8,
.swiper-button-next8,
.swiper-button-prev7,
.swiper-button-next7,
.swiper-button-prev6,
.swiper-button-next6,
.swiper-button-prev5,
.swiper-button-next5,
.swiper-button-prev4,
.swiper-button-next4,
.swiper-button-prev3,
.swiper-button-next3,
.swiper-button-prev2,
.swiper-button-next2,
.swiper-button-prev,
.swiper-button-next {
  width: 44px !important;
  height: 44px !important;
  border: 1.5px solid rgba(43, 43, 55, 1);
  border-radius: 5px;
  background: url('../images/icon17.svg') no-repeat center;
  cursor: pointer;
}
.swiper-button-prev17,
.swiper-button-prev16,
.swiper-button-prev15,
.swiper-button-prev14,
.swiper-button-prev13,
.swiper-button-prev12,
.swiper-button-prev11,
.swiper-button-prev10,
.swiper-button-prev9,
.swiper-button-prev8,
.swiper-button-prev7,
.swiper-button-prev6,
.swiper-button-prev5,
.swiper-button-prev4,
.swiper-button-prev3,
.swiper-button-prev2,
.swiper-button-prev {
  transform: rotate(180deg);
}

.swiper-pagination5,
.swiper-pagination3,
.swiper-pagination3,
.swiper-pagination2 {
  width: 100px !important;
  text-align: center;
}

.swiper-button-disabled {
  opacity: .3;
}
.galleryNav {
  margin-right: 100px;
  align-items: center;
}

.gallery .galleryNav {
  margin-right: 0;
}

/*##############
Start actionWeek
################*/
.actionWeek {
  margin-top: 120px;
}

.itemContent {
  margin-top: 100px;
}

.itemAction {
  max-width: 305px;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  height: 580px;
  margin: 0 18px 20px 0;
}

.itemAction__img {
  height: 200px;
  display: block;
  position: relative;
}

.itemAction__img img {
  width: 100%;
  height: 100%;
  display: block;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  object-fit: cover;
}

.itemAction__time {
  color: #FFFFFF;
  background-color: #52BCE5;
  padding: 5px 14px;
  border-radius: 5px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.itemActionBottom {
  max-width: 90%;
  width: 100%;
  margin: 30px auto 0;
  position: relative;
  height: 350px;
}

.itemActionBottom__tag {
  text-transform: uppercase;
  color: #8AC44B;
  font-size: 12px;
  font-weight: 700;
}

.itemAction__h2 {
  color: #2B2B37;
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  margin-top: 10px;
  display: block;
  max-height: 52px;
  overflow: hidden;
}

.actionWeekBread {
  margin-top: 10px;
}

.actionWeekBread li a {
  color: rgba(43, 43, 55, 0.8);
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  margin-bottom: 3px;
}

.actionWeekBread li a:after {
  content: "";
  display: block;
  background: url('../images/icon18.svg') no-repeat;
  width: 7px;
  height: 7px;
  margin: 0 10px;
}

.actionWeekTime {
  margin-top: 20px;
}

.actionWeekTime span {
  background: rgba(138, 196, 75, .1);
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 170%;
  color: #2B2B37;
  float: left;
}

.actionWeekTime span:before {
  content: "";
  background: url('../images/icon19.svg') no-repeat;
  display: block;
  width: 24px;
  height: 25px;
  float: left;
  margin-right: 10px;
}

.actionWeekHotel {
  margin-top: 72px;
}

.actionWeekHotel span:before {
  background: url('../images/icon20.svg') no-repeat;
}

.itemActionBtn {
  max-width: 100%;
  width: 100%;
  background: #52BCE5;
  border-radius: 5px;
  height: 44px;
  justify-content: center;
  align-items: center;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
  position: absolute;
  bottom: 20px;
}

.itemActionBtn span {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
}

.itemActionBtn:hover {
  background: #17769a;
}

.greenLight {
  color: #48B8AC;
}

.bgGreenLight span {
  background: rgba(72, 184, 172, 0.1);
}

.blueLight {
  color: #15499F;
}

.bgBlueLight span {
  background: rgba(21, 73, 159, 0.1);
}

.actionWeekTime2 span:before {
  background: url('../images/icon21.svg') no-repeat;
}

.actionWeekHotel4,
.actionWeekHotel3,
.actionWeekHotel2 {
  margin-top: 72px;
}

.actionWeekHotel2 span:before {
  background: url('../images/icon22.svg') no-repeat;
}

.actionWeekTime3 span:before {
  background: url('../images/icon23.svg') no-repeat;
}

.actionWeekHotel3 span:before {
  background: url('../images/icon24.svg') no-repeat;
}

.actionWeekTime4 span:before {
  background: url('../images/icon25.svg') no-repeat;
}

.actionWeekHotel4 span:before {
  background: url('../images/icon26.svg') no-repeat;
}

.itemAction:nth-child(5n+5) {
  margin: 0;
}

.carrot {
  color: #F58020;
}

.bgCarrot span {
  background: rgba(245, 128, 32, 0.1);
}

.selectsBlock {
  max-width: 330px;
  width: 100%;
  justify-content: space-between;
}

/*
Start selects
$$$$$$$$$$$$$*/
.selectsDate {
  width: 120px !important;
}

.ms-parent .ms-choice {
  height: 54px !important;
  border: 1px solid rgba(43, 43, 55, 0.2);
  border-radius: 5px;
  background: transparent;
}

.ms-parent .ms-choice span {
  height: 54px !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  color: #2B2B37;
  left: 20px;
  font-weight: 600;
  font-size: 16px;
}

.ms-choice > div.icon-caret.open {
  transform: rotate(180deg);
}

.actionWeekTitle {
  justify-content: space-between;
  align-items: center;
}

.ms-choice > div.icon-caret {
  border: none !important;
  background: url('../images/icon27.svg') no-repeat 0 0;
  width: 15px !important;
  height: 8px !important;
  right: 18px !important;
  top: 47% !important;
}

.selectsType {
  width: 185px !important;
}

.top {
  margin-top: 120px;
}

.mySwiper2 {
  width: 100%;
  margin: 90px auto 0;
}

.mySwiper2 .topItem img {
  border-radius: 5px;
}

.topSliderContent {
  position: relative;
}

.topSliderContent img {
  width: 100%;
  display: block;
}

.topSliderBottom {
  position: absolute;
  bottom: 40px;
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  justify-content: space-between;
  align-items: flex-end;
}

.topSliderBottomLeft__href {
  color: #52BCE5;
  font-size: 12px;
  text-transform: uppercase;
}

.topSliderBottomLeft__title {
  font: normal bold 18px 'Inter', sans-serif;
  color: #FFFFFF;
  display: block;
  margin: 10px 0;
}

.topSliderBottomLeft__paragraf {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
}

.topSliderBottomRight {
  justify-content: space-between;
}

.topSliderBottomRight__more {
  justify-content: center;
  align-items: center;
  background: #52BCE5;
  border-radius: 5px;
  width: 140px;
  height: 44px;
}

.topSliderBottomRight__more span {
  color: #FFFFFF;
  font: normal bold 14px 'Inter', sans-serif;
}

.topSliderBottomRight__connects {
  max-width: 180px;
  width: 100%;
  height: 44px;
  border: 2px solid #FFFFFF;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
}

.topSliderBottomRight {
  max-width: 340px;
  width: 100%;
  justify-content: space-between;
}

.topSliderBottomRight__connects span {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
}

.objects {
  max-width: 1820px;
  width: 100%;
  margin: 50px auto 0;
}

.objectsIn {
  position: relative;
}

.objectsBottom {
  position: absolute;
  bottom: 120px;
  z-index: 10;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.titleH12 {
  color: #FFFFFF;
  font: normal bold 64px 'Inter', sans-serif;
}

.objectsBottomList {
  margin: 20px 0;
}

.objectsBottomList li a {
  color: #FFFFFF;
  font: normal bold 14px 'Inter', sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.objectsBottomList li span {
  color: #FFFFFF;
  font: normal bold 14px 'Inter', sans-serif;
}

.objectsBottomList li a:after {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background-color: #fff;
  margin: 0 10px;
}

.nav2 {
  background-color: #fff;
  padding: 35px 60px;
  border-radius: 5px;
  justify-content: space-between;
  margin: -55px auto 0;
  z-index: 1000;
  position: relative;
}

.nav2 li a {
  color: #2B2B37;
  font-size: 20px;
  line-height: 150%;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.nav2 li a:hover {
  color: #52BCE5;
}

.description {
  margin-top: 120px;
  justify-content: space-between;
}

.descriptionLeft {
  max-width: 710px;
  width: 100%;
}

.description__bold {
  font-weight: 600;
  color: #2B2B37;
  font-size: 24px;
  line-height: 150%;
  margin-top: 60px;
}

.description__paragraf {
  color: #2B2B37;
  font-size: 18px;
  line-height: 170%;
  padding-top: 20px;
}

.descriptionRight {
  max-width: 760px;
  width: 100%;
}

.descriptionList {
  justify-content: space-between;
}

.descriptionList li {
  max-width: 230px;
  width: 100%;
}

.descriptionList li .descriptionList__num {
  font: normal 700 48px 'Inter', sans-serif;
  color: #52BCE5;
  display: block;
}

.descriptionList__text {
  color: #2B2B37;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  padding-top: 15px;
  display: block;
}

.youtube {
  margin-top: 120px;
}

.youtube iframe {
  height: 700px;
  border-radius: 5px;
  max-width: 100%;
  width: 100%;
}

.gallery {
  margin-top: 120px;
}

.mySwiper3,
.descBlockImage {
  margin-top: 80px;
}

.mySwiper3 a img,
.descBlockImage a img {
  border-radius: 5px;
  height: 295px;
  object-fit: cover;
}

.galleryTitle {
  justify-content: space-between;
  align-items: center;
  padding-left: 16px;
}

.reviews {
  background-color: #fff;
  border-radius: 5px;
  padding: 100px 0 100px 100px;
  max-width: 1820px;
  width: 100%;
  margin: 150px auto 0;
  overflow: hidden;
}

.reviewsContent {
  background: #F6F6F6;
  border-radius: 5px;
  padding: 20px;
  height: 270px;
}

.mySwiper4 {
  margin-top: 60px;
  position: relative;
  left: 15px;
}

.reviewsContentTop__name {
  color: #2B2B37;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  margin-left: 30px;
}

.reviewsContentTop {
  align-items: center;
}

.reviewsContentTop > img {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  display: block;
}

.reviews__paragraf {
  color: #2B2B37;
  font-size: 14px;
  line-height: 23px;
  margin-top: 20px;
  max-height: 115px;
  overflow: hidden;
}

.reviews__href {
  color: #52BCE5;
  font-weight: 500;
  font-size: 14px;
  display: block;
  margin-top: 30px;
  position: absolute;
  bottom: 30px;
}

.reviews__href span {
  border-bottom: 1px solid;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.reviews__href:hover span {
  border-bottom: 1px solid transparent;
}

.reviewsBtn__btn {
  max-width: 175px;
  width: 100%;
  height: 45px;
  background: #52BCE5;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.reviewsBtn__btn:hover {
  background-color: #17769a;
}

.reviewsBtn__btn span {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
}

.reviewsBtn {
  margin-top: 40px;
  margin-left: 13px;
}

.reviewsBtn__btn2 {
  max-width: 160px;
  width: 100%;
  height: 45px;
  border: 2px solid #52BCE5;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.reviewsBtn__btn2:hover {
  background: #52BCE5;
  border: 2px solid transparent;
}

.reviewsBtn__btn2 span {
  color: #52BCE5;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
}

.reviewsBtn__btn2:hover span {
  color: #FFFFFF;
}

.articleObjects {
  margin-top: 120px;
}

.articleBig {
  padding: 10px;
  background: #FFFFFF;
  border-radius: 5px;
  margin-top: 100px;
}

.articleBig__img {
  max-width: 770px;
  width: 100%;
  height: 480px;
  display: block;
}

.articleBig__img img {
  border-radius: 5px;
  display: block;
  height: 100%;
  object-fit: cover;
}

.articleBigRight {
  position: relative;
  max-width: 615px;
  width: 100%;
  margin-left: 80px;
  margin-top: 120px;
}

.articleBigRight__title {
  color: #2B2B37;
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.articleBigRight__title:hover {
  color: #52BCE5;
}


.articleBigRight__paragraf {
  color: #2B2B37;
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
  height: 81px;
  overflow: hidden;
  margin-top: 15px;
}

.articleBigRight .reviews__href {
  position: relative;
  bottom: 0;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.articleBigRight .reviews__href:hover span {
  border-bottom: 1px solid transparent;
}

.articleBigRightBottom {
  margin-top: 70px;
}

.articleBigRightBottom__date {
  color: #4B4B4B;
  font-size: 16px;
  line-height: 150%;
}

.articleBigRightBottom__autor {
  margin-left: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #2B2B37;
}

.articleBigRightBottom__autor span {
  font-weight: 400;
  font-size: 16px;
  color: #4B4B4B;
}

.articleItem {
  margin-top: 20px;
}

.articleItemBlock {
  background: #FFFFFF;
  height: 530px;
  border-radius: 5px;
  max-width: 385px;
  width: 100%;
}

.articleItemBlock__href {
  height: 250px;
}

.articleItemBlock__href img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.articleItemContent {
  max-width: 90%;
  width: 100%;
  margin: 30px auto 0;
}

.articleItemContent a {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  color: #2B2B37;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.articleItemContent a:hover {
  color: #52BCE5;
}

.articleItemContent p {
  color: #2B2B37;
  font-size: 16px;
  line-height: 170%;
  padding-top: 15px;
}

.articleItemContent .articleBigRightBottom {
  position: relative;
  margin-top: 30px;
  justify-content: space-between;
}

.articleItemBlock .articleBigRightBottom__autor {
  margin-left: 0;
}

.articleItemBlock {
  margin-right: 20px;
}

.articleItemBlock:nth-child(4n+4) {
  margin-right: 0;
}

.articleBlockTop {
  padding: 15px;
  justify-content: space-between;
  align-items: center;
}

.articleBlockTop__name {
  color: #2F2F2F;
  font-size: 14px;
  font-weight: 500;
  align-items: center;
}

.articleBlockTop__name:before {
  content: "";
  background: url('../images/icon28.svg') no-repeat;
  width: 24px;
  height: 24px;
  display: block;
  margin-right: 10px;
}

.articleBlockTop__date {
  color: #2F2F2F;
  font-size: 14px;
  font-weight: 500;
}

.map {
  position: relative;
  height: 645px;
  max-width: 1820px;
  width: 100%;
  margin: 90px auto 0;
}

.map iframe {
  border-radius: 5px;
  height: 700px;
}

.mapIn {
  max-width: 85%;
  width: 100%;
  margin: -600px auto;
}

.mapBlock {
  background-color: #fff;
  max-width: 420px;
  width: 100%;
  height: 470px;
  padding: 40px 30px;
  border-radius: 5px;
  position: relative;
}

.mapAddress {
  margin-bottom: 30px;
}

.mapAddress:before {
  content: "";
  display: block;
  background: url('../images/icon29.svg') no-repeat;
  width: 30px;
  height: 30px;
}

.mapAddressIn b {
  color: #2B2B37;
  font-weight: bold;
  font-size: 18px;
}

.mapAddressIn .mapBlock__grey {
  color: #4E4E4E;
  font-size: 16px;
  padding-top: 10px;
  display: block;
}

.mapSite {
  position: relative;
  margin-top: 20px;
}

.mapSite:before {
  background: url('../images/icon31.svg') no-repeat;
}

.mapAddressIn {
  max-width: 87%;
  width: 100%;
  margin-left: 10px;
}

.mapWork:before {
  background: url('../images/icon32.svg') no-repeat;
}

.mapUser:before {
  background: url('../images/icon35.svg') no-repeat;
}

.mapPhone:before {
  background: url('../images/icon36.svg') no-repeat;
}

.mapUser__href {
  color: #2B2B37;
  font-size: 14px;
  margin-left: 20px;
}

.mapUserBottom {
  margin-top: 10px;
}

.mapUser__href span:last-of-type {
  border-bottom: 1px solid;
}

.mapPhone__phone {
  color: #2B2B37;
  font: normal bold 24px 'Inter', sans-serif;
}

.mapPhone__call {
  display: block;
  margin-top: 5px;
}

.mapPhone__call span {
  border-bottom: 1px solid;
  color: #52BCE5;
  font-size: 16px;
  font-weight: 500;
}

.articleObjectsContent {
  margin-top: 80px;
}

.articleObjectsContent .articleBlock {
  max-width: 305px;
  background-color: #fff;
  height: 480px;
}

.articleObjectsContent .articleBlock .articleBlock__title {
  max-height: 50px;
  overflow: hidden;
}

.articleObjectsContent .articleBlock .articleBlockIn p {
  font-size: 14px;
}

.articleObjectsContent .articleBlockBig {
  max-width: 628px;
  width: 100%;
}

.articleObjectsContent .articleBlock:nth-child(3n+3) {
  margin-right: 17px;
}

.articleObjectsContent .articleBlock:nth-child(4n+4) {
  margin-right: 0;
}

.articleObjectsContent .articleBlockBig .articleBlockIn {
  max-width: 95%;
}

.articleObjectsContent2 {
  margin-top: 20px;
}

/*###########
Start places2
#############*/
.places2 {
  margin-top: 100px;
}

.places2Bottom {
  margin-top: 20px;
}

.places2BottomItem {
  position: relative;
  height: 304px;
}

.places2BottomItem a img {
  border-radius: 5px;
  height: 304px;
  max-width: 628px;
  width: 100%;
  object-fit: cover;
}

.places2BottomItemBottom {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
}

.places2BottomItemBottom a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #FFFFFF;
  margin: 10px 0;
}

.places2BottomItemBottom p {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 14px;
}

.places2Bottom {
  justify-content: space-between;
}

.places2BottomItem2 {
  max-width: 304px;
  width: 100%;
}

.places2top {
  margin-top: 100px;
  justify-content: space-between;
}

.places2topHeight {
  height: 628px;
  position: relative;
}

.places2topHeight__href img {
  height: 628px;
  object-fit: cover;
  border-radius: 5px;
}

.places2topCenterTop {
  justify-content: space-between;
}

.places2topCenter {
  max-width: 952px;
  width: 100%;
}

.places2topCenterBottom {
  max-width: 100%;
  width: 100%;
  justify-content: space-between;
  margin-top: 20px;
}

.footer {
  background: #000;
  padding: 40px 0;
  margin-top: 120px;
}

.footerBottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: 20px 0;
  justify-content: space-between;
}

.footerBottom__copyright {
  color: #FFFFFF;
  font-size: 14px;
}

.footerMenu {
  justify-content: space-between;
}

.footerBottomMenu {
  max-width: 870px;
  width: 100%;
  justify-content: space-between;
}

.footerBottomMenu li a,
.footerMenu li a {
  font-size: 14px;
  color: #FFFFFF;
}

.footerMenu__title {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
}

.footerMenuList {
  margin-top: 20px;
  margin-bottom: 40px;
}

.footerMenuList li {
  padding-bottom: 10px;
}

.footerMenuList li a {
  color: #FFFFFF;
  font: normal normal 14px 'Ubuntu', sans-serif;
}

.footerTop {
  justify-content: space-between;
}

.places3 {
  background: url('../images/bg.png') no-repeat top center;
  height: 900px;
  max-width: 1820px;
  width: 100%;
  margin: 120px auto 0;
  overflow: hidden;
  position: relative;
}

.places3Bottom {
  margin: 0 auto;
  height: 100%;
  align-items: flex-end;
}

.places3BottomLeft__tag {
  text-transform: uppercase;
  color: #FFFFFF;
  font: normal bold 14px 'Inter', sans-serif;
  display: block;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.places3BottomLeft {
  max-width: 650px;
  width: 100%;
  margin-bottom: 60px;
}

.places3BottomLeft__title {
  color: #FFFFFF;
}

.places3BottomLeft .titleH2:before {
  display: none;
}

.places3BottomLeft__href {
  justify-content: center;
  align-items: center;
  max-width: 140px;
  width: 100%;
  border-radius: 5px;
  background: #52BCE5;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  height: 44px;
  margin-top: 40px;
}

.places3BottomRight {
  max-width: 900px;
  width: 100%;
  margin-bottom: 152px;
  position: relative;
  right: -170px;
}

.places3BottomRightSlider {
  position: relative;
  height: 390px;
  max-width: 300px;
  width: 100%;
}

.places3BottomRightSlider a {
  height: 390px;
  max-width: 300px;
  width: 100%;
  border: 2px solid #FFFFFF;
  border-radius: 5px;
  display: block;
  padding: 0;
  margin: 0;
}

.places3BottomRightSlider a img {
  height: 100%;
  width: 100%;
  border-radius: 5px;
}

.places3BottomRightSlider__title {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 18px;
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 80%;
  right: 0;
  margin: 0 auto;
}

.places3BottomRightNav {
  position: absolute;
  bottom: -90px;
  align-items: center;
}

.swiper-button-next5 {
  border: 1px solid #FFFFFF;
  background: url('../images/icon38.svg') no-repeat center;
}

.swiper-button-prev5 {
  border: 1px solid #FFFFFF;
  background: url('../images/icon38.svg') no-repeat center;
}

.swiper-pagination5 .swiper-pagination-current,
.swiper-pagination5 {
  color: #FFFFFF;
}

.contacts {
  margin: 30px auto 0;
  height: 860px;
}

.contacts h1 {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto 100px;
}

.telegram {
  background: url('../images/bg2.jpg') no-repeat top center;
  height: 700px;
  margin: 120px auto 0;
}

.telegramContent {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding-top: 190px;
}

.telegram__title {
  color: #FFFFFF;
  font: normal bold 48px 'Inter', sans-serif;
  width: 700px;
  display: block;
}

.telegram__paragraf {
  color: #FFFFFF;
  font: normal 600 20px 'Inter', sans-serif;
  max-width: 680px;
  width: 100%;
  display: block;
  line-height: 150%;
  margin-top: 20px;
}

.telegramMenu {
  margin-top: 100px;
}

.telegramMenu li {
  margin-right: 20px;
}

.telegramMenu__btn {
  background-color: #20A0E1;
  padding: 18px 25px;
  border-radius: 5px;
}

.telegramMenu__btn span {
  color: #FFFFFF;
  font: normal bold 14px 'Inter', sans-serif;
}

.telegramMenu__btn:before {
  content: "";
  display: block;
  background: url('../images/icon39.svg') no-repeat;
  width: 20px;
  height: 20px;
  margin-right: 20px;
}

.contacts .mapIn {
  max-width: 88%;
}

.swiper-pagination4 {
  width: 100px !important;
  text-align: center;
}

.mt0 {
  margin-top: 0 !important;
}

.team {
  margin-top: 120px;
}

.teamContent {
  margin-top: 100px;
}

.teamBlock {
  max-width: 305px;
  width: 100%;
  height: 407px;
  background-color: #fff;
  border-radius: 5px;
  margin-right: 18px;
  margin-bottom: 20px;
}

.teamBlock:nth-child(5n+5) {
  margin-right: 0;
}

.teamBlock a img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.teamBlockContent {
  max-width: 90%;
  width: 100%;
  margin: 15px auto 0;
}

.teamBlock__name {
  font: normal 600 18px 'Inter', sans-serif;
  color: #2B2B37;
  max-height: 45px;
  overflow: hidden;
  display: block;
}

.teamBlock__paragraf {
  color: #4B4B4B;
  font-weight: 500;
  font-size: 14px;
  padding-top: 10px;
  max-height: 45px;
  overflow: hidden;
}

.teamBlockBtn__btn {
  background: #25D366;
  border-radius: 5px;
  padding: 8px 16px;
}

.teamBlockBtn__btn span {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
}

.teamBlockBtn {
  margin-top: 20px;
  justify-content: space-between;
}

.teamBlockBtn__btn:before {
  content: "";
  display: block;
  background: url('../images/icon40.svg') no-repeat;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.teamBlockBtn__btn2 {
  background: #20A0E1;
  border-radius: 5px;
  padding: 8px 16px;
}

.teamBlockBtn__btn2:before {
  content: "";
  display: block;
  background: url('../images/icon41.svg') no-repeat;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.teamBlockBtn__btn2 span {
  color: #FFFFFF;
  font-size: 14px;
}

.teamList {
  margin-top: 27px;
}

.teamList li {
  margin-right: 5px;
}

.teamList li a {
  color: #4E4E4E;
  font-size: 14px;
}

.teamList:before {
  content: "";
  display: block;
  background: url('../images/icon42.svg') no-repeat;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  margin-right: 4px;
}

.objectsListBtn {
  background: #2B2B37;
  border-radius: 5px;
  padding: 17px 20px 17px 30px;
  justify-content: center;
}

.objectsListBtn span {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
}

.objectsListBtn:after {
  content: "";
  display: block;
  background: url('../images/icon43.svg') no-repeat;
  width: 20px;
  height: 20px;
  margin-left: 15px;
}

.objects2Title {
  justify-content: space-between;
}

.objects2TitleRight {
  max-width: 550px;
  width: 100%;
  justify-content: space-between;
}

.objectsSelects {
  max-width: 250px;
  width: 100% !important;
}

.objects2Content {
  margin-top: 100px;
  justify-content: space-between;
}

.objects2Right {
  max-width: 1276px;
  width: 100%;
}

.objects2Right iframe {
  width: 100%;
  height: 910px;
}

.objects2Left {
  max-width: 305px;
  width: 100%;
}

.objectsItem__href {
  position: relative;
  height: 250px;
  display: block;
}

.objectsItem__href img {
  height: 250px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  object-fit: cover;
}

.objectsItem__href span {
  color: #FFFFFF;
  background: #52BCE5;
  border-radius: 5px;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 9px 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.objectsItem {
  border-radius: 5px;
  background-color: #fff;
  max-width: 304px;
  width: 100%;
  height: 445px;
  margin-bottom: 20px;
}

.objectsItem__href span:before {
  content: "";
  background: url('../images/icon44.svg') no-repeat;
  width: 16px;
  height: 16px;
  display: block;
  padding-right: 10px;
}

.objectsItemTitle {
  font: normal 600 18px 'Inter', sans-serif;
  color: #2B2B37;
  padding: 20px;
  display: block;
  overflow: hidden;
  height: 65px;
}

.objectsItemDesc {
  max-width: 90%;
  width: 100%;
  margin: 30px auto 10px;
  justify-content: space-between;
}

.objectsItemDesc__area {
  margin-left: 10px;
}

.objectsItemDesc__area span {
  text-transform: uppercase;
  color: #2B2B37;
  font-size: 10px;
  font-weight: 600;
  display: block;
}

.objectsItemDesc__area b {
  color: #2B2B37;
  font-weight: 600;
}

.objectsItemDescRight {
  margin-left: 20px;
}

.objectsHr {
  border: none;
  border-bottom: 1px solid rgba(78, 78, 78, .15);
  margin: 20px 0 10px;
}

.objects2Bottom {
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
}

.objects2Bottom__eu, .objects2Bottom__eu span {
  font-weight: 600;
  color: #2B2B37;
  font-size: 18px;
}

.objects2Bottom__rub {
  font-size: 14px;
  font-weight: 500;
}

.objectsItem__href .objectsItem__home {
  background: #FF4C30;
  border-radius: 5px;
  color: #FFFFFF;
  position: absolute;
  top: 210px;
  bottom: 0;
  font-size: 14px;
  font-weight: 500;
  display: block;
  height: 30px;
  padding: 6px 16px;
}

.objectsItem__href .objectsItem__home:before {
  display: none;
}

.objectsItem__home.parking {
  background: #F8981D;
}

.objectsItemBig {
  max-width: 628px;
  width: 100%;
}

.objectsItemBig .objectsItem__href img {
  width: 100%;
}

.objectsItemBig__both {
  justify-content: space-between;
  align-items: center;
}

.objectsItemBig__width {
  max-width: 50%;
  width: 100%;
}

.objectsItemBig__href {
  position: relative;
  right: 20px;
}

.objectsItemBig .objectsItemDesc {
  margin: 20px auto 10px;
}

.contentRight .articleObjectsContent {
  margin-top: 0;
}

.aside2 {
  max-width: 304px;
  width: 100%;
}

.contentRight2 {
  max-width: 1280px;
}

.contentRight2 .articleObjectsContent .articleBlock:nth-child(3n+3) {
  margin-right: 0;
}

.aside2 .question {
  padding: 20px;
}

.contentRight2 .articleObjectsContent {
  margin-bottom: 20px;
}

.places4 {
  background: url('../images/bg3.png') no-repeat;
}

.objects2ContentIn .objectsItem {
  margin-right: 20px;
}

.objects2ContentIn .objectsItem:last-of-type {
  margin-right: 0;
}

.objects2ContentIn2 .objectsItem {
  margin-right: 1.25%;
}

.objects2ContentIn2 .objectsItem:nth-child(5n+5) {
  margin-right: 0;
}

.pageNum {
  border: 1px solid #2B2B37;
  border-radius: 5px;
  padding: 16px 25px;
  color: #2B2B37;
  font-size: 16px;
  font-weight: 600;
  margin-left: 20px;
}

.pageNum:after {
  content: "";
  background: url('../images/icon47.svg') no-repeat;
  width: 8px;
  height: 14px;
  margin: 3px 0 0 10px;
}

.objects2TitleRight__modif {
  justify-content: flex-end;
}

.objectsLavel {
  margin-top: 300px;
}

.videoYoutube {
  justify-content: space-between;
  margin-top: 120px;
}

.videoYoutube iframe {
  max-width: 49%;
  width: 100%;
  height: 500px;
  border-radius: 5px;
}

.company {
  max-width: 1820px;
  width: 100%;
  margin: 120px auto 0;
}

.youtube2 {
  max-width: 100%;
  width: 100%;
  margin-top: 120px;
  padding-bottom: 80px;
}

.youtube2 iframe {
  max-width: 100%;
  width: 100%;
  height: 450px;
  border-radius: 5px;
}

.priceBlock {
  background: url('../images/bg4.png') no-repeat top center;
  height: 480px;
  margin-top: 50px;
}

.priceBlock .bread {
  justify-content: center;
}

.priceBlock .bread li span,
.priceBlock .bread li a {
  color: #ffffff;
}

.priceBlock .bread li:before {
  background-color: #fff;
}

.priceBlockContent .titleH1 {
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.priceBlockContent .titleH1:before {
  display: none;
}

.priceBlockContent {
  padding-top: 90px;
}

.priceBlockForm {
  background-color: #fff;
  border-radius: 5px;
  padding: 40px;
  margin-top: 150px;
}

.priceBlockFormInput input {
  height: 64px;
  border: 1px solid #D5D5D7;
  max-width: 980px;
  width: 100%;
  padding-left: 40px;
  padding-right: 50px;
  border-radius: 5px;
  border-right: none;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.priceBlockFormInput {
  max-width: 980px;
  width: 100%;
}

.selectsInput {
  max-width: 350px;
  width: 100%;
  height: 64px;
}

.selectsInput.ms-parent .ms-choice {
  height: 64px !important;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.selectsInput.ms-parent .ms-choice span {
  height: 64px !important;
}

.btnSubmit {
  justify-content: center;
  align-content: center;
  background: #52BCE5;
  width: 170px;
  height: 64px;
  border-radius: 5px;
  border: none;
  margin-left: 20px;
  cursor: pointer;
}

.btnSubmit span {
  font: normal bold 16px 'Inter', sans-serif;
  color: #ffffff;
}

.priceBlockFormBottom {
  margin-top: 30px;
  padding: 0 30px;
}

.priceBlockFormBottomType {
  border-right: 1px solid rgba(78, 78, 78, 0.15);
  max-width: 160px;
  width: 100%;
}

.priceBlockFormBottomType__name {
  color: #52BCE5;
  font-size: 14px;
  font-weight: 500;
}

.priceBlockFormBottomType__name:before {
  content: "";
  display: block;
  background: url('../images/icon48.svg') no-repeat;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: -2px;
}

.selectsTypeNone.ms-parent .ms-choice,
.selectsTypeNone.ms-parent .ms-choice span {
  height: 40px !important;
  border: none !important;
}

.selectsTypeNone.ms-parent .ms-choice span {
  left: -7px;
  font-weight: 500;
}

.priceBlockFormBottomAnything {
  margin-left: 40px;
  border-right: 1px solid rgba(78, 78, 78, 0.15);
  max-width: 220px;
  width: 100%;
}

.priceBlockFormBottomAnything .priceBlockFormBottomType__name:before {
  background: url('../images/icon49.svg') no-repeat;
}

.priceBlockFormBottomId {
  max-width: 140px;
  width: 100%;
  height: 58px;
  text-align: center;
  border-right: 1px solid rgba(78, 78, 78, 0.15);
}

.priceBlockFormBottomId .priceBlockFormBottomType__name:before {
  background: url('../images/icon50.svg') no-repeat;
}

.priceBlockFormBottomId .priceBlockFormBottomType__name {
  justify-content: center;
}

.priceBlockFormBottomId input {
  border: none;
  width: 50px;
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
}

#min_sel1,
#price_min1{
  position: absolute;
  left: -130%;
  color: #2B2B37;
  font-size: 16px;
  top: -8px;
  font-weight: 500;
}

#price_min1{
  left: -130%;
}

#max_sel1,
#price_max1 {
  position: absolute;
  right: -140%;
  color: #2B2B37;
  font-size: 16px;
  top: -7px;
  font-weight: 500;
}

#price_max1 {
  right: -140%;
}

#lower-value2,
#lower-value {
  position: absolute;
  left: -80px;
  color: #2B2B37;
  font-size: 16px;
  top: -8px;
  font-weight: 500;
}

#upper-value2,
#upper-value {
  position: absolute;
  right: -80px;
  color: #2B2B37;
  font-size: 16px;
  top: -7px;
  font-weight: 500;
}

.rangeSliderPrice {
  font-weight: bold;
  color: #FFFFFF;
  font-size: 13px;
  position: relative;
  top: -7px;
}

.rangeSliderPrice span {
  color: #20c063;
  padding: 0 3px;
}

.filterRange {
  position: relative;
  top: 0;
  left: 0;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  flex-basis: 100px;
  max-width: 100px;
  width: 100%;
  margin: 5% auto 0;
}

.priceBlockFormBottomDiapozon {
  max-width: 450px;
  height: 58px;
  width: 100%;
  margin-left: 0;
  border-right: 1px solid rgba(78, 78, 78, 0.15);
}


.rangeSlider .noUi-handle {
  border: none !important;
  background: #52BCE5 !important;
  width: 11px !important;
  height: 11px !important;
  box-shadow: 0 0 0 !important;
}

.rangeSlider .noUi-handle:after {
  background-color: #52BCE5 !important;
}

html:not([dir="rtl"]) .rangeSlider .noUi-horizontal .noUi-handle {
  top: -2px !important;
}

.rangeSlider .noUi-connect {
  background: #33A3CE !important;
}

.rangeSlider .noUi-base,
.rangeSlider .noUi-connects {
  background: #EEEEEE !important;
  border-radius: 32px;
}

.priceBlockFormBottomDiapozon .priceBlockFormBottomType__name:before {
  background: url('../images/icon51.svg') no-repeat;
}

.example-val:after {
  content: "\20AC";
  margin-left: 3px;
}

.priceBlockFormBottomDiapozon .priceBlockFormBottomType__name {
  padding-left: 40px;
}

.priceBlockFormBottomDiapozon__modif .priceBlockFormBottomType__name:before {
  background: url('../images/icon52.svg') no-repeat;
}

.priceBlockFormBottomDiapozon__modif {
  border-right: none;
}

#upper-value2:after,
#lower-value2:after {
  content: url("../images/icon53.svg");
}

#min_sel1:after,
#max_sel1:after {
  content: url("../images/icon53.svg");
}

.descObjects {
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 120px;
  align-items: stretch;
}

.descObjectsLeft {
  max-width: 1195px;
  width: 100%;
}

.descObjectsRight {
  max-width: 385px;
  width: 100%;
  align-items: stretch;
}

.descObjectsLeft__img {
  border-radius: 5px;
}

.descObjects__paragraf {
  color: #2B2B37;
  line-height: 170%;
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
}

.descObjectsContent {

}

.descObjectsStar a {
  margin-left: 10px;
  color: #2B2B37;
  font-size: 14px;
}

.descObjectsStar a span {
  border-bottom: 1px solid;
}

.descObjectsTop {
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 20px;
}

.descObjectsTopRight,
.descObjectsTopLeft {
  max-width: 50%;
  width: 100%;
}

.descObjectsTop__title {
  font: normal 700 36px 'Inter', sans-serif;
  color: #2B2B37;
  line-height: 130%;
}

.descObjectsTopRight__price {
  font: normal 700 36px 'Inter', sans-serif;
  color: #52BCE5;
  line-height: 130%;
  text-align: right;
}

.descObjectsTopRight__rub {
  color: #4B4B4B;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  text-align: right;
  margin-top: 10px;
}

.descObjectsTop__map {
  color: #2B2B37;
  font-weight: 500;
  font-size: 16px;
  line-height: 170%;
  margin-top: 10px;
}

.descObjectsTop__map:before {
  content: "";
  display: block;
  background: url('../images/icon54.svg') no-repeat;
  width: 25px;
  height: 30px;
  margin-right: 15px;
}

.descObjectsMiddle {
  justify-content: space-between;
}

.descObjectsMiddleArea {
  background: #F4F4F4;
  border-radius: 5px;
  padding: 10px 30px 12px 30px;
  max-width: 190px;
  width: 100%;
  align-items: flex-end;
}

.descObjectsMiddleArea:before {
  content: "";
  display: block;
  background: url('../images/icon55.svg') no-repeat;
  width: 36px;
  height: 36px;
}

.descObjectsMiddleArea__right {
  width: 60px;
  margin-left: 20px;
}

.descObjectsMiddleArea__title {
  color: #4B4B4B;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
}

.descObjectsMiddleArea__meter {
  color: #2B2B37;
  font-weight: 600;
  font-size: 20px;
}

.descObjectsMiddleArea__map {
  color: #52BCE5;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.descObjectsMiddleArea__kub {
  color: #2B2B37;
  font-weight: 500;
  font-size: 20px;
}

.descObjectsMiddleArea__map:before {
  background: url('../images/icon56.svg') no-repeat;
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  margin-right: 10px;
}

.descObjectsMiddle li {
  max-width: 25%;
  width: 100%;
  margin-bottom: 20px;
}

.descObjectsLeftMap {
  padding: 20px;
  background: #FFFFFF;
  border-radius: 5px;
  margin-top: 40px;
  height: 700px;
}

.descObjectsLeftMap iframe {
  height: 100%;
}

.youtubeDesc {
  margin-top: 40px;
}

.descObjectsSlider {
  margin-top: 40px;
}

.descObjectsSlider .mySwiper3 img,
.descObjectsSlider .mySwiper2 img {
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
  height: 520px;
  display: block;
}

.descObjectsSlider .mySwiper4,
.descObjectsSlider .mySwiper {
  margin-top: 10px;
  left: 0;
}

.descObjectsSlider .mySwiper4 img,
.descObjectsSlider .mySwiper img {

  height: 156px;
  cursor: pointer;
}

.descObjectsRightList li {
  margin-bottom: 15px;
}

.descObjectsRightList li a {
  height: 220px;
}

.descObjectsRightList li a img {
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
  width: 100%;
}

.teamBlockModif {
  max-width: 385px;
  width: 100%;
  margin-top: 42px;
  height: 520px;
  position: sticky;
  top: 0;
}

.descObjectsRight .teamBlockModif {
  margin-top: 0;
}

.teamBlockModif.active {
  position: fixed;
  top: 0;
}

.teamBlockModif > a img {
  height: 250px;
}

.teamBlockModif .teamBlock__paragraf {
  max-height: 108px;
  line-height: 170%;
  padding-top: 20px;
  margin-bottom: 40px;
}

.teamBlockModif .teamBlock__name {
  padding-top: 20px;
}

.teamBlockModif .teamBlockBtn__btn2,
.teamBlockModif .teamBlockBtn__btn {
  padding: 8px 35px;
}

.teamBlockModif__name {
  background: #52BCE5;
  border-radius: 5px;
  padding: 7px 16px;
  position: absolute;
  top: 10px;
  left: 10px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
}

.teamBlockModif__name:before {
  content: "";
  background: url('../images/icon57.svg') no-repeat;
  display: block;
  width: 17px;
  height: 17px;
  margin-right: 10px;
}

.telegramModif {
  background: url('../images/bg5.png') no-repeat top center;
  margin-bottom: 120px;
  max-width: 1820px;
  width: 100%;
}

.telegramModif .teamBlockBtn {
  max-width: 47%;
  width: 100%;
  margin-top: 50px;
}

.telegramModif .teamBlockBtn a {
  max-width: 48%;
  width: 100%;
  padding: 12px 20px;
  justify-content: center;
}

.telegramModif .telegramContent {
  max-width: 1420px;
}

.popupBlock {
  max-width: 800px !important;
  width: 100% !important;
  border-radius: 5px;
}

.popupBlock img {
  display: block;
  margin: 0 auto 30px;
  width: 80px;
  height: 80px;
  border-radius: 100px;
  object-fit: cover;
}

.popupBlock h3 {
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  color: #2B2B37;
  padding-bottom: 20px;
}

.popupBlock p {
  text-align: center;
  color: #2B2B37;
  font-size: 16px;
  line-height: 170%;
  padding-bottom: 20px;
}

.popupBlock p:last-child {
  padding-bottom: 0;
}

.popupBlockReview {
  max-width: 690px !important;
  width: 100% !important;
  border-radius: 5px;
}

.popupBlockReview h3 {
  color: #2B2B37;
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  text-align: center;
}

.popupBlockReviewForm {
  max-width: 570px;
  width: 100%;
  margin: 40px auto 0;
}

.popupBlockReviewForm input {
  height: 70px;
  max-width: 570px;
  width: 100%;
  background: #F7F7F7;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 20px;
}

.popupBlockReviewForm textarea {
  resize: none;
  height: 150px;
  max-width: 100%;
  width: 100%;
  background: #F7F7F7;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  padding: 25px;
}

.popupBlockReviewForm textarea::-moz-placeholder {
  color: #2B2B37;
  font: normal 400 18px 'Inter', sans-serif;
  opacity: .3;
}

.popupBlockReviewForm textarea::-webkit-input-placeholder {
  color: #2B2B37;
  font: normal 400 18px 'Inter', sans-serif;
  opacity: .3;
}

.popupBlockReviewForm textarea:-ms-input-placeholder {
  color: #2B2B37;
  font: normal 400 18px 'Inter', sans-serif;
  opacity: .3;
}

.popupBlockReview h4 {
  font: normal 600 24px 'Inter', sans-serif;
  color: #2B2B37;
  text-align: center;
  padding-top: 40px;
}

.popupBlockReviewForm__btn, 
#review .popupBlockReviewForm input[type="submit"] {
  cursor: pointer;
  max-width: 100%;
  width: 100%;
  height: 70px;
  background: #52BCE5;
  border-radius: 5px;
  border: none;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font: normal 700 18px 'Inter', sans-serif;
  margin-top: 30px;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.popupBlockReviewForm__btn:hover, 
#review .popupBlockReviewForm input[type="submit"]:hover {
  background: #17769a;
}

.rate {
  margin: 20px auto 0;
  height: 50px !important;
  font-size: 42px;
  text-align: center;
}

.rate span {
  color: #52BCE5;
}

.headerBottom {
  margin-top: 20px;
}

.header__tl {
  color: #4B4B4B;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
}

.header__tl:before {
  content: "";
  display: block;
  background: url('../images/icon58.svg') no-repeat;
  width: 24px;
  height: 24px;
  margin-right: 15px;
}

.mobilBtn3,
.mobilBtnTop {
  justify-content: flex-start;
  border: none;
  background: none;
}

.mobilBtn3 span,
.mobilBtnTop span {
  width: 24px;
  height: 3px;
  display: block;
  background: #000;
  margin-bottom: 5px;
  cursor: pointer;

}

.mobilBtn3 span:nth-child(2),
.mobilBtnTop span:nth-child(2) {
  width: 20px;
  position: relative;
  left: 4px;
  cursor: pointer;
}

.mobilBtn3.active span:nth-child(2),
.mobilBtnTop.active span:nth-child(2) {
  opacity: 0;
}

.mobilBtn3.active span:first-child,
.mobilBtnTop.active span:first-child {
  position: relative;
  transform: rotate(45deg);
  top: 9px;
}

.mobilBtn3.active span:last-child,
.mobilBtnTop.active span:last-child {
  position: relative;
  transform: rotate(-45deg);
  top: -8px;
}

.feedback {
  position: sticky;
  top: 0;
}

.popupHave {
  max-width: 600px !important;
  width: 100% !important;
  padding: 0 !important;
}

.popupHaveTop {
  position: relative;
  height: 300px;
  max-width: 100%;
  width: 100%;
}

.popupHaveTop img {
  position: absolute;
  top: 0;
}

.popupHave .fancybox-button {
  display: none;
}

.popupHaveMap {
  background: #2B2B37;
  border-radius: 5px;
  padding: 12px 20px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.popupHaveMap span {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 14px;
}

.popupHaveMap:after {
  content: "";
  display: block;
  background: url('../images/icon59.svg') no-repeat;
  width: 24px;
  height: 24px;
  margin-left: 20px;
}

.popupHaveContent {
  max-width: 90%;
  width: 100%;
  margin: 30px auto 0;
}

.popupHave__tag {
  text-transform: uppercase;
  color: #15499F;
  font: normal 700 12px 'Inter', sans-serif;
  line-height: 130%;
}

.popupHaveTitle {
  font: normal 600 18px 'Inter', sans-serif;
  color: #2B2B37;
  line-height: 130%;
  margin-top: 10px;
}

.popupHaveList {
  margin-top: 15px;
}

.popupHaveList li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.popupHaveList li:after {
  content: "";
  display: block;
  background: url('../images/icon60.svg') no-repeat;
  width: 6px;
  height: 6px;
  margin: 0 7px;
  position: relative;
  top: 1px;
}

.popupHaveList li:last-child:after {
  display: none;
}

.popupHave__paragraf {
  font-size: 14px;
  color: #2B2B37;
  line-height: 23px;
  padding-top: 20px;
}

.popupHaveBlock {
  margin-top: 40px;
  margin-bottom: 20px;
}

.popupHaveBlock span {
  font-size: 14px;
  color: #2B2B37;
  line-height: 23px;
  display: block;
}

.popupHaveList li a {
  color: rgba(43, 43, 55, 0.8);
  font-weight: 500;
  font-size: 14px;
}

.popupHaveItem {
  background: rgba(21, 73, 159, 0.1);
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 10px;
}

.popupHaveItem__left {
  max-width: 50%;
  width: 100%;
}

.popupHaveItem__name {
  color: #4B4B4B;
  font-size: 14px;
}

.popupHaveItem__name:before {
  content: "";
  display: block;
  background: url('../images/icon61.svg') no-repeat;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.popupHaveItemCalendar:before {
  background: url('../images/icon62.svg') no-repeat;
}

.popupHaveItem__name span {
  font: normal 600 14px 'Inter', sans-serif;
  color: #2B2B37;
  padding-left: 10px;
}

.popupHaveItem {
  justify-content: space-between;
}

.popupHaveItem__right {
  max-width: 50%;
  width: 100%;
  text-align: right;
}

.popupHaveItem__right a {
  color: #15499F;
  font-size: 14px;
}

.popupHaveItemStreet:before {
  background: url('../images/icon63.svg') no-repeat;
}

.popupHaveContent .itemActionBtn {
  max-width: 265px;
  width: 100%;
  height: 44px;
  position: relative;
  top: 0;
  left: 0;
  margin: 30px auto;
}

.telegramModif .teamBlockBtn a {
  align-items: center;
  height: 44px;
  padding: 0;
}

.telegramModif .teamBlockBtn__btn:before {
  background: url('../images/icon64.svg') no-repeat;
  width: 24px;
  height: 24px;
  position: relative;
  left: -20px;
}

.teamBlockBtn__btn span {
  position: relative;
  left: -10px;
}

.telegramModif .teamBlockBtn .ateamBlockBtn__btn2 {

}

.telegramModif .teamBlockBtn__btn2:before {
  background: url('../images/icon65.svg') no-repeat;
  width: 20px;
  height: 20px;
  position: relative;
  left: -20px;
}

.telegramModif .teamBlockBtn__btn2 span {
  position: relative;
  left: -10px;
}

.topSliderBoth {
  position: relative;
  justify-content: space-between;
  margin-top: 50px;
}

.topSliderBoth .mySwiper6 {
  max-width: 1193px;
  width: 100%;
  padding: 0;
  margin: 0;
}

.topSliderBoth .mySwiper5 {
  max-width: 385px;
  width: 100%;
  overflow: hidden;
  margin: 0;
  height: 700px;
}

.topSliderBoth .mySwiper5 img {
  border-radius: 5px;
  cursor: pointer;
  object-fit: cover;
  width: 100%;
  height: 220px;
}

.topSliderBoth .mySwiper5 .swiper-slide {
  height: 220px !important;
}

.topSliderBoth .mySwiper6 img {
  border-radius: 5px;
  width: 100%;
  object-fit: cover;
  height: 700px;
}

.topSliderBoth .swiper-button-next {
  right: 10.2%;
  transform: rotate(270deg);
  border: none;
  top: -16px !important;
}

.topSliderBoth .swiper-button-prev {
  left: 87%;
  top: 102%;
  border: none;
  transform: rotate(90deg);
}

.teamBlockModifMobil,
.feedbackBlock {
  display: none;
}

.headerRight li {
  margin: 0 30px 0 0;
}

.headerRight li:last-child {
  margin: 0;
}

.headerRight li a {
  color: #000;
  font-weight: 500;
  font-size: 16px;
}

.header__WhatsApp:before {
  content: "";
  display: block;
  background: url('../images/icon66.svg') no-repeat;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  margin-top: -3px;
}

.mobilBtnTop {
  display: none;
}

.navMenuIn {
  position: absolute;
  top: 162px;
  background: #FFFFFF;
  padding: 0;
  margin: 0 0 0 -21px;
  max-width: 220px;
  width: 100%;
  display: none;
  border-top: 1px solid rgba(78, 78, 78, 0.15);
}

.navMenuIn > li {
  border-bottom: 1px solid rgba(78, 78, 78, 0.15);
}

.navMenuIn > li > a {
  font-size: 14px;
  color: #4B4B4B;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.navMenuIn > li > a:after {
  transform: rotate(45deg);
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border: 2px solid #4B4B4B;
  border-bottom: none;
  border-left: none;
}

.navMenuIn > li > a:hover:after {
  border: 2px solid #52BCE5;
  border-bottom: none;
  border-left: none;
}

.navMenuIn3 {
  position: absolute;
  top: 0;
  background: #FFFFFF;
  padding: 20px;
  left: 220px;
  max-width: 220px;
  width: 100%;
  display: none;
}

.navMenuIn3 li {
  border-bottom: 1px solid rgba(78, 78, 78, 0.15);
  padding: 11px 0;
}

.navMenuIn3 li a {
  font-size: 14px;
}

.navMenuIn3 li:first-child {
  padding-top: 0;
}

.navMenuIn3 {
  border-left: 1px solid rgba(78, 78, 78, 0.15);
}

.navMenuIn li:hover .navMenuIn3 {
  display: block;
}

/*##############
Start responsive
################*/
@media (max-width: 1890px) {
  .places3,
  .afisha {
    max-width: 95%;
  }

  .afisha a img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 1630px) {
  .afisha,
  .width {
    max-width: 95%;
  }

  .descObjectsLeft,
  .contentRight {
    max-width: 74%;
  }

  .infoBlock li > span {
    padding-right: 15px;
  }

  .formCommentsInput input {
    max-width: 49%;
  }

  .articleBlock {
    max-width: 32%;
  }

  .placesItem > img {
    height: 100%;
  }

  .placesItem {
    height: 408px;
  }

  .itemAction {
    max-width: 19.2%;
    margin: 0 1% 20px 0;
  }

  .articleBlock__href,
  .articleBlock__href img {
    height: 200px;
  }

  .articleBlockTop__name,
  .articleBlockTop__date {
    font-size: 12px;
  }

  .articleBlock__title {
    font-size: 16px;
  }

  .actionWeekTime span {
    padding: 8px 10px;
    font-size: 13px;
  }

  .articleObjectsContent .articleBlock {
    max-width: 19.8%;
  }

  .articleObjectsContent .articleBlockBig {
    max-width: 37%;
  }

  .articleObjectsContent .articleBlock:nth-child(3n+3),
  .articleBlock {
    margin-right: 1.2%;
  }

  .places2topCenter {
    max-width: 57%;
  }

  .places2BottomItem2 {
    max-width: 35%;
  }

  .places2BottomItem3 {
    max-width: 63%;
    width: 100%;
  }

  .places2Bottom .places2BottomItem {
    max-width: 38%;
    width: 100%;
  }

  .places2Bottom .places2BottomItem2 {
    max-width: 22%;
  }

  .places3BottomRight {
    right: 0;
  }

  .places3BottomLeft {
    max-width: 37%;
  }

  .contacts .titleH1 {
    max-width: 95%;
  }

  .teamBlock {
    max-width: 19%;
    margin-right: 1.2%;
  }

  .teamList li a {
    font-size: 12px;
  }

  .teamBlockBtn__btn:before {
    margin-right: 4px;
  }

  .teamBlockBtn2 .teamBlockBtn__btn:before {
    margin-right: 0;
    position: relative;
    left: -15px;
  }

  .objects2Right {
    max-width: 78%;
  }

  .objectsItemBig {
    max-width: 36%;
  }

  .objectsItemBig__href {
    max-width: 45%;
    width: 100%;
  }

  .objects2ContentIn .objectsItem {
    max-width: 20%;/*18%;*/
    margin-right: 1.3%;
  }

  .objects2ContentIn .objectsItemBig {
    max-width: 36%;
  }

  .objects2ContentIn2 .objectsItem {
    max-width: 18.9%;
    margin-right: 1.3%;
  }

  .contentRight2 .articleObjectsContent .articleBlock {
    max-width: 29.8%;
  }

  .contentRight2 .articleObjectsContent .articleBlockBig {
    max-width: 38%;
  }

  .contentRight2 {
    max-width: 78%;
  }

  .priceBlockFormInput {
    max-width: 60%;
  }

  .btnSubmit {
    width: 12%;
    margin-left: 1.8%;
  }

  .selectsInput {
    max-width: 25%;
  }

  .priceBlockFormBottomType {
    max-width: 11%;
  }

  .priceBlockFormBottomAnything {
    max-width: 14%;
    margin-left: 2%;
  }

  .priceBlockFormBottomId {
    max-width: 8%;
  }

  .priceBlockFormBottomDiapozon {
    max-width: 32.5%;
  }

  .priceBlockFormBottomDiapozon .priceBlockFormBottomType__name {
    padding-left: 6%;
  }

  .teamBlockModif {
    max-width: 100%;
  }

  .descObjectsRight {
    max-width: 24%;
  }

  .youtubeDesc {
    max-width: 100%;
  }

  .topSliderBoth .mySwiper6 {
    max-width: 72%;
  }
}

@media (max-width: 1580px) {
  .places3BottomRight {
    max-width: 100%;
  }

  .places3BottomRightSlider a,
  .places3BottomRightSlider {
    height: 335px;
  }

  .places3BottomLeft {
    max-width: 50%;
  }

  .teamBlockBtn__btn span {
    font-size: 12px;
    position: relative;
    top: 2px;
  }

  .teamBlockBtn__btn2:before {
    margin-right: 5px;
  }

  .teamBlockBtn__btn2 {
    padding: 8px 10px;
  }

  .team {
    margin-top: 50px;
  }

  .teamList {
    margin-top: 20px;
  }

  .teamBlockBtn__btn2 span {
    font-size: 12px;
    position: relative;
    top: 2px;
  }

  .teamList li a {
    font-size: 11px;
  }
}

@media (max-width: 1540px) {
  .contentRight {
    max-width: 72%;
  }

  .infoBlock li > span {
    font-size: 14px;
  }

  .itemAction__h2 {
    margin-top: 10px;
  }

  .actionWeek {
    margin-top: 100px;
  }

  .actionWeekBread {
    margin-top: 10px;
  }

  .actionWeekHotel4, .actionWeekHotel3, .actionWeekHotel2 {
    margin-top: 70px;
  }

  .actionWeekBread li a {
    font-size: 12px;
  }

  .descriptionRight,
  .descriptionLeft {
    max-width: 48%;
  }

  .description {
    margin-top: 80px;
  }

  .descriptionList li {
    max-width: 33%;
  }

  .places2topHeight {
    max-width: 20.5%;
    width: 100%;
  }

  .objects2Right {
    max-width: 76%;
  }

  .contentRight2 {
    max-width: 76%;
  }

  .priceBlockFormBottom {
    padding: 0;
  }

  .priceBlockFormBottomAnything {
    max-width: 15%;
    margin-left: 1%;
  }

  .teamBlockModif .teamBlockBtn__btn2,
  .teamBlockModif .teamBlockBtn__btn {
    padding: 8px 10%;
  }

  .telegramModif .telegramContent {
    max-width: 90%;
  }

  .descObjectsMiddleArea__map span {
    width: 80%;
  }

  .teamBlockModif {
    margin-top: 34px;
  }

  .topSliderBoth .mySwiper6 {
    max-width: 74%;
  }

  .topSliderBoth .mySwiper5 {
    max-width: 24%;
  }

  .topSliderBoth .swiper-button-next {
    right: 10.2%;
  }

  .topSliderBoth .swiper-button-prev {
    left: 86.1%;
  }

  .topSliderBoth .mySwiper5 img {
    height: 100%;
  }
}

/*#############
Start popupForm
###############*/
.popupForm {
  max-width: 500px !important;
  width: 100% !important;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 30px !important;
}

.popupForm__img {
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.popupForm__img span {
  color: #2B2B37;
  font-size: 24px;
  font-weight: 500;
  display: block;
  margin-top: 20px;
}

.popupForm__img p {
  color: #2B2B37;
  font-size: 16px;
  text-align: center;
  padding-top: 10px;
}

.popupFormBlockName {
  margin-top: 30px;
  position: relative;
}

.popupFormBlockName label {
  color: #0e0e0e;
  font-size: 14px;
  display: block;
}

.popupFormBlockName > label span {
  color: #F05642;
  font-size: 14px;
}

.popupFormBlockName input {
  max-width: 440px;
  width: 100%;
  height: 60px;
  border: 1px solid #DCDCDC;
  border-radius: 5px;
  padding-left: 25px;
  padding-right: 25px;
  margin-top: 15px;
}

.popupForm__reg,
.popupForm__pass {
  padding-top: 10px;
  display: block;
}

.popupForm__reg span,
.popupForm__pass span {
  color: #52BCE5;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid;
}

.popupForm__submit {
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-weight: bold;
  max-width: 100%;
  width: 100%;
  height: 55px;
  border-radius: 5px;
  border: none;
  background: #52BCE5;
  cursor: pointer;
  margin-top: 30px;
}

.popupForm__reg {
  margin: 0 auto;
  text-align: center;
}

.popupForm__paragraf {
  color: #2B2B37;
  font-size: 16px;
  text-align: center;
  padding-top: 10px;
}

.popupForm__eye {
  position: absolute;
  top: 50px;
  right: 20px;
  cursor: pointer;
  background: url('../images/icon68.svg') no-repeat;
  width: 22px;
  height: 22px;
  border: none;
}

.capcha {
  margin-top: 20px;
}

.register__href span {
  color: rgba(82, 188, 229, 1);
  border-bottom: 1px solid;
}

.selectsTypeBlock {
  max-width: 100% !important;
  width: 100% !important;
  margin-top: 10px;
}

.popupFormBlockName .textarea {
  max-width: 100%;
  width: 100%;
  height: 150px;
  border: 1px solid #DCDCDC;
  resize: none;
  background: #FFFFFF;
  color: #000;
  margin-top: 20px;
}

.formBlock__title{
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  margin-top: 20px;
}

.descObjectsSlider .swiper-button-next {
  top: 50% !important;
}

.descObjectsSlider img {
  width: 100%;
}
.descObjectsSlider .mySwiper38,
.descObjectsSlider .mySwiper36,
.descObjectsSlider .mySwiper34,
.descObjectsSlider .mySwiper32,
.descObjectsSlider .mySwiper30,
.descObjectsSlider .mySwiper28,
.descObjectsSlider .mySwiper26,
.descObjectsSlider .mySwiper24,
.descObjectsSlider .mySwiper22,
.descObjectsSlider .mySwiper20,
.descObjectsSlider .mySwiper18,
.descObjectsSlider .mySwiper16,
.descObjectsSlider .mySwiper14,
.descObjectsSlider .mySwiper12,
.descObjectsSlider .mySwiper10,
.descObjectsSlider .mySwiper8 {
  margin-bottom: 10px;
  position: relative;
  margin-top: 80px;
}
.descObjectsSlider .mySwiper38 .swiper-button-prev17,
.descObjectsSlider .mySwiper36 .swiper-button-prev16,
.descObjectsSlider .mySwiper34 .swiper-button-prev15,
.descObjectsSlider .mySwiper32 .swiper-button-prev14,
.descObjectsSlider .mySwiper30 .swiper-button-prev13,
.descObjectsSlider .mySwiper28 .swiper-button-prev12,
.descObjectsSlider .mySwiper26 .swiper-button-prev11,
.descObjectsSlider .mySwiper24 .swiper-button-prev10,
.descObjectsSlider .mySwiper22 .swiper-button-prev9,
.descObjectsSlider .mySwiper20 .swiper-button-prev8,
.descObjectsSlider .mySwiper18 .swiper-button-prev7,
.descObjectsSlider .mySwiper16 .swiper-button-prev6,
.descObjectsSlider .mySwiper14 .swiper-button-prev5,
.descObjectsSlider .mySwiper12 .swiper-button-prev4,
.descObjectsSlider .mySwiper10 .swiper-button-prev3,
.descObjectsSlider .mySwiper8 .swiper-button-prev2 {
  position: absolute;
  left: 10px;
  top: 50%;
  z-index: 100;
}
.descObjectsSlider .mySwiper38 .swiper-button-next17,
.descObjectsSlider .mySwiper36 .swiper-button-next16,
.descObjectsSlider .mySwiper34 .swiper-button-next15,
.descObjectsSlider .mySwiper32 .swiper-button-next14,
.descObjectsSlider .mySwiper30 .swiper-button-next13,
.descObjectsSlider .mySwiper28 .swiper-button-next12,
.descObjectsSlider .mySwiper26 .swiper-button-next11,
.descObjectsSlider .mySwiper24 .swiper-button-next10,
.descObjectsSlider .mySwiper22 .swiper-button-next9,
.descObjectsSlider .mySwiper20 .swiper-button-next8,
.descObjectsSlider .mySwiper18 .swiper-button-next7,
.descObjectsSlider .mySwiper16 .swiper-button-next6,
.descObjectsSlider .mySwiper14 .swiper-button-next5,
.descObjectsSlider .mySwiper12 .swiper-button-next4,
.descObjectsSlider .mySwiper10 .swiper-button-next3,
.descObjectsSlider .mySwiper8 .swiper-button-next2 {
  position: absolute;
  top: 50% !important;
  right: 10px;
  z-index: 100;
}

.descObjectsSlider .mySwiper14 .swiper-button-prev5 {
  border: 1.5px solid rgba(43, 43, 55, 1);
  background: url('../images/icon17.svg') no-repeat center;
}

.descObjectsSlider .mySwiper14 .swiper-button-next5 {
  background: url('../images/icon17.svg') no-repeat center;
  border: 1.5px solid rgba(43, 43, 55, 1);
}

.descObjectsSlider .mySwiper17 .swiper-button-prev6 {
  width: 44px !important;
  height: 44px !important;
  cursor: pointer;
  border: 1.5px solid rgba(43, 43, 55, 1);
  background: url(../images/icon17.svg) no-repeat center;
  position: absolute;
  left: 10px;
  top: 50%;
  z-index: 100;
  transform: rotate(180deg);
  border-radius: 5px;
}

.descObjectsSlider .mySwiper17 .swiper-button-next6 {
  width: 44px !important;
  height: 44px !important;
  cursor: pointer;
  border: 1.5px solid rgba(43, 43, 55, 1);
  background: url(../images/icon17.svg) no-repeat center;
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 100;
  border-radius: 5px;
}

.topNav {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.topNav li {
  margin-bottom: 20px;
  max-width: 305px;
  width: 100%;
  height: 140px;
  position: relative;
  margin-right: 18px;
}

.topNav li:nth-child(5n+5) {
  margin-right: 0;
}

.topNav li a {
  align-items: center;
  justify-content: center;
}

.topNav li a img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 5px;
}

.topNav li a:before {
  content: "";
  background: rgba(0, 0, 0, .6);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
}

.topNav li span {
  color: #FFFFFF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  font-size: 28px;
  font-weight: bold;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navMenuBlock {
  background: #FFFFFF;
  padding: 30px;
  justify-content: space-between;
  margin-bottom: 26px;
  border-radius: 0 0 4px 4px;
}

.navMenuBlock li a {
  color: #2B2B37;
  font-size: 16px;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.navMenuBlock li a:hover {
  color: #52BCE5;
}

.navMenuBlock {
  display: none;
}

.navMenuBlock.fix {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  position: fixed;
  max-width: 1195px;
  width: 100%;
  top: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, .6);
  z-index: 999999;
}

.mobilMenuWhite {
  display: none;
}

@media (max-width: 1890px) {
  .places3,
  .afisha {
    max-width: 95%;
  }

  .afisha a img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 1630px) {
  .topNav,
  .afisha,
  .width {
    max-width: 95%;
  }
  
  .topNav li {
    max-width: 19%;
  }

  .topNav li span {
    font-size: 22px;
  }

  .navMenuBlock.fix {
    max-width: 70.3%;
    padding: 15px;
  }

  .navMenuBlock li a {
    font-size: 13px;
  }

  .descObjectsLeft,
  .contentRight {
    max-width: 74%;
  }

  .infoBlock li > span {
    padding-right: 15px;
  }

  .formCommentsInput input {
    max-width: 49%;
  }

  .articleBlock {
    max-width: 32%;
  }

  .placesItem > img {
    height: 100%;
  }

  .placesItem {
    height: 408px;
  }

  .itemAction {
    max-width: 19.2%;
    margin: 0 1% 20px 0;
  }

  .articleBlock__href,
  .articleBlock__href img {
    height: 200px;
  }

  .articleBlockTop__name,
  .articleBlockTop__date {
    font-size: 12px;
  }

  .articleBlock__title {
    font-size: 16px;
  }

  .actionWeekTime span {
    padding: 8px 10px;
    font-size: 13px;
  }

  .articleObjectsContent .articleBlock {
    max-width: 19.8%;
  }

  .articleObjectsContent .articleBlockBig {
    max-width: 37%;
  }

  .articleObjectsContent .articleBlock:nth-child(3n+3),
  .articleBlock {
    margin-right: 1.2%;
  }

  .places2topCenter {
    max-width: 57%;
  }

  .places2BottomItem2 {
    max-width: 35%;
  }

  .places2BottomItem3 {
    max-width: 63%;
    width: 100%;
  }

  .places2Bottom .places2BottomItem {
    max-width: 38%;
    width: 100%;
  }

  .places2Bottom .places2BottomItem2 {
    max-width: 22%;
  }

  .places3BottomRight {
    right: 0;
  }

  .places3BottomLeft {
    max-width: 37%;
  }

  .contacts .titleH1 {
    max-width: 95%;
  }

  .teamBlock {
    max-width: 19%;
    margin-right: 1.2%;
  }

  .teamList li a {
    font-size: 12px;
  }

  .teamBlockBtn__btn:before {
    margin-right: 4px;
  }

  .teamBlockBtn2 .teamBlockBtn__btn:before {
    margin-right: 0;
    position: relative;
    left: -15px;
  }

  .objects2Right {
    max-width: 78%;
  }

  .objectsItemBig {
    max-width: 36%;
  }

  .objectsItemBig__href {
    max-width: 45%;
    width: 100%;
  }

  .objects2ContentIn .objectsItem {
    max-width: 20%;
    margin-right: 1.3%;
  }

  .objects2ContentIn .objectsItemBig {
    max-width: 36%;
  }

  .objects2ContentIn2 .objectsItem {
    max-width: 18.9%;
    margin-right: 1.3%;
  }

  .contentRight2 .articleObjectsContent .articleBlock {
    max-width: 29.8%;
  }

  .contentRight2 .articleObjectsContent .articleBlockBig {
    max-width: 38%;
  }

  .contentRight2 {
    max-width: 78%;
  }

  .priceBlockFormInput {
    max-width: 60%;
  }

  .btnSubmit {
    width: 12%;
    margin-left: 1.8%;
  }

  .selectsInput {
    max-width: 25%;
  }

  .priceBlockFormBottomType {
    max-width: 11%;
  }

  .priceBlockFormBottomAnything {
    max-width: 14%;
    margin-left: 2%;
  }

  .priceBlockFormBottomId {
    max-width: 8%;
  }

  .priceBlockFormBottomDiapozon {
    max-width: 32.5%;
  }

  .priceBlockFormBottomDiapozon .priceBlockFormBottomType__name {
    padding-left: 6%;
  }

  .teamBlockModif {
    max-width: 100%;
  }

  .descObjectsRight {
    max-width: 24%;
  }

  .youtubeDesc {
    max-width: 100%;
  }

  .topSliderBoth .mySwiper6 {
    max-width: 72%;
  }

  .formBlockLine__input {
    max-width: 32%;
  }

  .formBlockLine__input input {
    max-width: 100%;
  }

  .formBlockLine__input_calendar2 .formBlockLine__input_calendarBlock {
    max-width: 66%;
  }

  .formBlockLine__input_calendar2 .formBlockLine__input_calendarBlock2 {
    max-width: 33%;
  }

  .formBlockLineRight {
    max-width: 30%;
  }

  .formBlockLineRight label {
    font-size: 12px;
  }

  .formBlockLineLeft {
    max-width: 65%;
  }

  .formBlockLine .blockCheckbox {
    font-size: 14px;
  }

  .formBlockLineLeft2 {
    max-width: 81%;
  }

  .formBlockLineLeft__modif {
    max-width: 100%;
  }

  .formBlockLine2 .formBlockLine__input {
    max-width: 32%;
  }

  .formBlockLine .blockCheckbox {
    padding-left: 27px;
  }

  .formBlockLine3 .formBlockLine__input {
    max-width: 37%;
  }
}

@media (max-width: 1580px) {
  .places3BottomRight {
    max-width: 100%;
  }

  .places3BottomRightSlider a,
  .places3BottomRightSlider {
    height: 335px;
  }

  .places3BottomLeft {
    max-width: 50%;
  }

  .teamBlockBtn__btn span {
    font-size: 12px;
    position: relative;
    top: 2px;
  }

  .teamBlockBtn__btn2:before {
    margin-right: 5px;
  }

  .teamBlockBtn__btn2 {
    padding: 8px 10px;
  }

  .team {
    margin-top: 50px;
  }

  .teamList {
    margin-top: 20px;
  }

  .teamBlockBtn__btn2 span {
    font-size: 12px;
    position: relative;
    top: 2px;
  }

  .teamList li a {
    font-size: 11px;
  }
}

@media (max-width: 1540px) {
  .contentRight {
    max-width: 72%;
  }
  .topNav li {
    margin-right: 1.2%;
  }

  .infoBlock li > span {
    font-size: 14px;
  }

  .itemAction__h2 {
    margin-top: 10px;
  }

  .actionWeek {
    margin-top: 100px;
  }

  .actionWeekBread {
    margin-top: 10px;
  }

  .actionWeekHotel4, .actionWeekHotel3, .actionWeekHotel2 {
    margin-top: 70px;
  }

  .actionWeekBread li a {
    font-size: 12px;
  }

  .descriptionRight,
  .descriptionLeft {
    max-width: 48%;
  }

  .description {
    margin-top: 80px;
  }

  .descriptionList li {
    max-width: 33%;
  }

  .places2topHeight {
    max-width: 20.5%;
    width: 100%;
  }

  .objects2Right {
    max-width: 76%;
  }

  .contentRight2 {
    max-width: 76%;
  }

  .priceBlockFormBottom {
    padding: 0;
  }

  .priceBlockFormBottomAnything {
    max-width: 15%;
    margin-left: 1%;
  }

  .teamBlockModif .teamBlockBtn__btn2,
  .teamBlockModif .teamBlockBtn__btn {
    padding: 8px 10%;
  }

  .telegramModif .telegramContent {
    max-width: 90%;
  }

  .descObjectsMiddleArea__map span {
    width: 80%;
  }

  .teamBlockModif {
    margin-top: 34px;
  }

  .topSliderBoth .mySwiper6 {
    max-width: 74%;
  }

  .topSliderBoth .mySwiper5 {
    max-width: 24%;
  }

  .topSliderBoth .swiper-button-next {
    right: 10.2%;
  }

  .topSliderBoth .swiper-button-prev {
    left: 86.1%;
  }

  .topSliderBoth .mySwiper5 img {
    height: 100%;
  }
}

@media (max-width: 1450px) {
  .infoBlock li > span {
    font-size: 12px;
  }

  .contentRight {
    max-width: 74%;
  }

  .afishaContent {
    padding-top: 150px;
  }

  .afishaContent {
    max-width: 90%;
  }

  .afisha {
    height: 610px;
  }

  .actionWeekTime span {
    font-size: 12px;
  }

  .articleBlock {
    max-width: 49%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .contentArticle {
    justify-content: space-between;
  }

  .articleBlock__href, .articleBlock__href img {
    height: 250px;
  }

  .articleBlockTop__name, .articleBlockTop__date {
    font-size: 14px;
  }

  .placesItem {
    height: 360px;
  }

  .gallery {
    margin-top: 80px;
  }

  .articleObjectsContent .articleBlock:nth-child(3n+3), .articleBlock {
    margin-right: 1.2%;
  }

  .articleObjectsContent2 {
    margin-top: 0;
  }

  .contentRight2 {
    max-width: 76%;
  }

  .articleBlockIn p {
    max-height: 85px;
  }
}

@media (max-width: 1360px) {
  .infoBlock li > span {
    font-size: 16px;
  }

  .infoBlock li {
    margin-bottom: 10px;
  }

  .contentIn {
    padding: 15px 40px;
  }

  .contentRight {
    max-width: 67%;
  }

  .infoBlock li > span {
    font-size: 13px;
  }

  .transferWork__title {
    font-size: 24px;
  }

  .placesItem {
    height: 337px;
  }

  .placesItemContnet__paragraf {
    font-size: 12px;
  }

  .topSliderBottomLeft {
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }

  .itemAction {
    max-width: 24.2%;
  }

  .itemAction:nth-child(4n+4) {
    margin: 0;
  }

  .itemAction:nth-child(5n+5) {
    margin: 0 1% 20px 0;
  }

  .articleObjectsContent .articleBlock .articleBlockIn p {
    font-size: 12px;
  }

  .articleObjectsContent .articleBlock .articleBlock__title {
    font-size: 14px;
  }

  .articleBlock__href,
  .articleBlock__href img {
    height: 200px;
  }

  .articleObjectsContent .articleBlock {
    height: 440px;
  }

  .telegramContent {
    max-width: 90%;
  }

  .teamBlockBtn__btn {
    padding: 8px 10px;
  }

  .teamBlock a img {
    height: 190px;
  }

  .objects2Right {
    max-width: 74%;
  }


  .objectsItem__href,
  .objectsItem__href img {
    height: 200px;
    width: 100%;
  }

  .objectsItem__href .objectsItem__home {
    top: 160px;
  }

  .objectsItemDescRight {
    margin-left: 17px;
  }

  .objectsItemTitle {
    font-size: 14px;
  }

  .objects2ContentIn2 .objectsItem,
  .objects2ContentIn .objectsItem {
    height: 400px;
  }

  .objectsItemBig__href {
    max-width: 30%;
  }

  .objectsItemBig__width {
    max-width: 59%;
  }

  .contentRight2 {
    max-width: 73%;
  }

  .articleBlockIn p {
    max-height: 80px;
  }

  .priceBlockFormBottomId,
  .priceBlockFormBottomAnything,
  .priceBlockFormBottomType {
    max-width: 32%;
  }

  .priceBlockFormBottomAnything {
    margin-left: 3%;
  }

  .priceBlockFormBottomDiapozon {
    max-width: 49%;
    margin-top: 10px;
  }

  .priceBlockFormBottomDiapozon .priceBlockFormBottomType__name {
    justify-content: center;
    padding-left: 0;
  }

  .descObjectsSlider .mySwiper4 img,
  .descObjectsSlider .mySwiper img {
    height: 110px;
  }

  .teamBlockModif {
    height: 450px;
  }

  .teamBlockModif .teamBlockBtn__btn2, .teamBlockModif .teamBlockBtn__btn {
    padding: 8px 8%;
  }
  
   .topNav li span {
    font-size: 18px;
  }
}

@media (max-width: 1240px) {
  .navMenu li a {
    font-size: 14px;
  }

  .titleH1 {
    font-size: 40px;
  }

  .contentRight {
    max-width: 65%;
  }

  .infoBlock li {
    border: none;
  }

  .titleH3 {
    font-size: 18px;
  }

  .articleBlockTop {
    padding: 10px 5px;
  }

  .articleBlockBottom__name,
  .articleBlockBottom__date {
    font-size: 14px;
  }

  .articleBlockIn p {
    font-size: 14px;
    line-height: 140%;
  }

  .blockCheckbox,
  .confidencial {
    font-size: 14px;
  }

  .afishaContent {
    padding-top: 100px;
  }

  .afisha__title {
    font-size: 50px;
  }

  .afisha__paragraf {
    font-size: 22px;
  }

  .afisha {
    height: 510px;
  }

  .itemAction__img {
    height: 180px;
  }

  .itemAction__h2 {
    font-size: 16px;
  }

  .actionWeekBread li a {
    font-size: 12px;
  }

  .itemAction {
    height: 580px;
  }

  .titleH2 {
    font-size: 40px
  }

  .places {
    margin-top: 100px;
  }

  .placesItem {
    height: 300px;
  }

  .articleBlockTop__name:before {
    margin-right: 5px;
  }

  .articleObjectsContent .articleBlockTop__name,
  .articleObjectsContent .articleBlockTop__date {
    font-size: 12px;
  }

  .teamBlockBtn__btn2,
  .teamBlockBtn__btn {
    max-width: 100%;
    width: 100%;
    margin-bottom: 5px;
  }

  .teamBlock a img {
    height: 150px;
  }

  .objects2Right {
    max-width: 72%;
  }

  .objects2ContentIn .objectsItem {
    max-width: 24%;
  }

  .objectsItemBig__width,
  .objects2ContentIn .objectsItem__href,
  .objects2ContentIn .objectsItem__href img {
    max-width: 100%;
    width: 100%;
  }

  .objectsItemBig__href {
    display: none;
  }

  .objectsItem__href span {
    font-size: 14px;
  }

  .objectsItemTitle {
    font-size: 12px;
  }

  .objectsItemDescRight {
    margin-left: 0;
  }

  .objects2Bottom__eu,
  .objects2Bottom__rub {
    font-size: 12px;
  }

  .objects2ContentIn2 .objectsItem {
    max-width: 24%;
  }

  .objects2ContentIn2 .objectsItem:nth-child(4n+4) {
    margin-right: 0;
  }

  .contentRight2 {
    max-width: 72%;
  }

  .descObjectsMiddle li {
    max-width: 22%;
  }

  .descObjectsMiddleArea {
    padding: 10px 20px 12px 20px;
  }

  .descObjectsMiddleArea__kub {
    font-size: 16px;
  }

  .descObjectsMiddleArea__map span {
    font-size: 14px;
  }

  .descObjects__paragraf {
    font-size: 14px;
  }

  .telegramModif .teamBlockBtn__btn2:before {
    left: 0;
  }

  .telegramModif .teamBlockBtn__btn2 span {
    left: 0;
  }

  .telegramModif .teamBlockBtn__btn:before {
    left: 0;
  }

  .telegramModif .teamBlockBtn__btn span {
    left: 0;
  }

  .teamBlockBtn2 .teamBlockBtn__btn:before {
    left: 0;
    margin-right: 4px;
  }

  .teamBlockBtn2 .teamBlockBtn__btn span {
    left: 0;
  }
}

@media (max-width: 1160px) {
  .youtube {
    margin-top: 50px;
  }

  .youtube iframe {
    height: 600px;
  }

  .contentBlock {
    flex-direction: column-reverse;
  }

  .aside {
    max-width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }


  .question {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .articleBlock {
    max-width: 48%;
  }

  .feedback,
  .question {
    padding: 20px 25px;
    max-width: 45%;
  }

  .contentRight {
    max-width: 100%;
  }

  .infoBlock li {
    margin-bottom: 0;
  }

  .placesItem {
    height: 281px;
  }

  .itemAction {
    max-width: 32.3%;
    height: 640px;
  }

  .itemAction__img {
    height: 240px;
  }

  .itemAction:nth-child(3n+3) {
    margin: 0;
  }

  .actionWeekTime span {
    font-size: 14px;
  }

  .itemAction:nth-child(4n+4) {
    margin: 0 1.3% 20px 0;
  }

  .itemAction:last-of-type {
    margin: 0;
  }

  .selectsBlock {
    max-width: 100%;
    margin-top: 50px;
    justify-content: flex-end;
  }

  .itemContent {
    margin-top: 50px;
  }

  .selectsDate {
    margin-right: 20px;
  }

  .selectsType {
    margin-right: 0;
  }

  .articleBlock__href,
  .articleBlock__href img {
    height: 300px;
  }

  .itemAction {
    margin: 0 1.5% 20px 0;
  }

  .descriptionLeft .titleH2 {
    font-size: 30px;
  }

  .nav2 li a {
    font-size: 18px;
  }

  .descriptionList__text {
    font-size: 18px;
  }

  .description__bold {
    font-size: 20px;
  }

  .description__paragraf {
    font-size: 16px;
  }

  .articleObjectsContent .articleBlock__href,
  .articleObjectsContent .articleBlock__href img {
    height: 200px;
  }

  .places2BottomItem a img {
    height: 220px;
  }

  .places2BottomItem {
    height: 220px;
  }

  .places2topHeight,
  .places2topHeight__href img {
    height: 460px;
  }

  .places2 {
    margin-top: 50px;
  }

  .places2BottomItemBottom a {
    font-size: 16px;
  }

  .places2BottomItemBottom p {
    font-size: 12px;
  }

  .articleObjects {
    margin-top: 100px;
  }

  .places2top {
    margin-top: 80px;
  }

  .objects2Right {
    max-width: 70%;
  }

  .objects2 .contentBlock {
    flex-direction: column-reverse;
  }

  .aside2 {
    margin-bottom: 20px;
  }

  .aside2 .question {
    max-width: 100%;
  }

  .teamBlockModif .teamBlock__paragraf {
    font-size: 12px;
  }
  .topNav li span {
    font-size: 16px;
  }

  .topNav li a img,
  .topNav li {
    height: 120px;
  }
}

@media (max-width: 1100px) {
  .galleryNav {
    margin-right: 0;
  }

  .starBlock span {
    font-size: 12px;
  }

  .feedback .feedback__icon {
    width: 50px;
    height: 50px;
  }

  .feedback__star {
    font-size: 16px;
  }

  .feedback__name {
    padding-top: 0;
  }

  .reviews .galleryNav {
    margin-right: 20px;
  }

  .footerBottomMenu {
    max-width: 75%;
  }

  .footerBottomMenu li a, .footerMenu li a {
    font-size: 12px;
  }

  .footerMenu__title {
    font-size: 18px;
  }

  .footer {
    margin-top: 50px;
  }


  .telegram__title {
    max-width: 500px;
    width: 100%;
    font-size: 40px;
  }

  .telegram__paragraf {
    font-size: 18px;
    max-width: 75%;
  }

  .objects2Right {
    max-width: 65%;
  }

  .objects2TitleRight {
    max-width: 268px;
  }

  .pageNum {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    justify-content: center;
    margin-top: 10px;
  }

  .priceBlockFormInput {
    max-width: 55%;
  }

  .selectsInput {
    max-width: 29%;
  }

  .btnSubmit {
    width: 14%;
  }

  .objectsSelects {
    max-width: 100%;
    margin-top: 20px;
  }

  .objects2Content {
    margin-top: 50px;
  }

  .descObjectsMiddleArea {
    padding: 10px 10px 12px 10px;
  }

  .descObjectsTop__title {
    font-size: 30px;
  }

  .descObjectsRight .teamBlockBtn {
    margin-top: 10px;
  }

  .teamBlockModif .teamBlock__name {
    margin-top: 0;
  }

  .teamBlockModif .teamBlock__paragraf {
    margin-bottom: 10px;
  }

  .teamBlockModif {
    height: 421px;
  }

  .descObjectsLeftMap {
    height: 500px;
  }

  .youtubeDesc iframe {
    height: 400px;
  }

  .descObjectsSlider .mySwiper3 img,
  .descObjectsSlider .mySwiper2 img {
    height: auto;
  }

  .descObjectsSlider .mySwiper4 img,
  .descObjectsSlider .mySwiper img {
    height: auto;
  }

  .articleBlock {
    max-width: 48%;
  }

  .telegramModif .teamBlockBtn a {
    max-width: 60%;
  }

  .telegramModif .teamBlockBtn__btn:before,
  .telegramModif .teamBlockBtn__btn2:before {
    left: -10px;
  }

  .topSliderBoth .mySwiper6 img,
  .topSliderBoth .mySwiper5 {
    height: 500px;
  }

  .topSliderBoth .mySwiper5 .swiper-slide {
    height: 153px !important;
  }

  .navMenuBlock li a {
    font-size: 13px;
  }

  .navMenuBlock {
    padding: 20px;
  }
}

@media (max-width: 1030px) {
  .reviews {
    margin: 50px auto;
  }


  .youtube iframe {
    height: 500px;
  }

  .nav2 li a {
    font-size: 16px;
  }

  .nav2 {
    padding: 25px 40px;
  }

  .titleH12 {
    font-size: 55px;
  }

  .nav {
    display: none;
  }

  .mobilBtn {
    max-width: 30px;
    width: 100%;
    border: none;
    background: none;
    display: block;
    float: right;
  }

  .headerBottom {
    padding-bottom: 20px;
  }

  .mobilBtn span {
    display: block;
    background-color: #2B2B37;
    height: 2px;
    width: 100%;
    margin-bottom: 6px;
  }

  .navMenu {
    flex-direction: column;
  }

  .navMenu li {
    margin-bottom: 25px;
  }

  .navMenu li a {
    font-size: 16px;
  }

  .titleH1 {
    font-size: 30px;
  }

  .starBlock span {
    max-width: 100%;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .starBlock {
    flex-direction: column;
  }

  .questionMenu li a,
  .feedback__star,
  .feedbackImgRight__copyright,
  .feedback__name {
    font-size: 14px;
  }


  .feedback p {
    font-size: 14px;
    line-height: 22px;
  }

  .feedback__star {
    padding-top: 10px;
  }

  .afishaContent {
    padding-top: 70px;
  }

  .afisha__title {
    font-size: 40px;
    max-width: 530px;
  }

  .afisha__paragraf {
    max-width: 600px;
  }

  .afisha__text {
    font-size: 20px;
  }

  .afisha {
    height: 433px;
  }

  .places {
    margin-top: 50px;
  }

  .titleH2 {
    font-size: 30px;
  }

  .placesItem {
    height: 340px;
  }

  .actionWeekTime span {
    font-size: 12px;
  }

  .titleH2:before {
    width: 30%;
  }

  .mySwiper2 {
    margin: 50px auto 0;
  }

  .sliderPlaceNav {
    justify-content: space-between;
  }

  .topSliderBottomRight {
    max-width: 221px;
  }

  .topSliderBottomRight__more {
    width: 100%;
    margin-bottom: 20px;
  }

  .top,
  .actionWeek {
    margin-top: 50px;
  }

  .itemAction {
    height: 560px;
  }

  .itemActionBottom {
    height: 327px;
  }

  .itemAction:nth-child(5n+5) {
    margin: 0 1.5% 20px 0;
  }

  .itemAction__img {
    height: 200px;
  }

  .descriptionList__text {
    font-size: 14px;
  }

  .descriptionList li .descriptionList__num {
    font-size: 40px;
  }

  .description__bold {
    font-size: 18px;
  }

  .descriptionLeft .titleH2 {
    font-size: 25px;
  }

  .reviews {
    padding: 60px 0 60px 60px;
  }

  .articleObjectsContent .articleBlockTop__name, .articleObjectsContent .articleBlockTop__date {
    font-size: 10px;
  }

  .articleObjectsContent .articleBlock__href, .articleObjectsContent .articleBlock__href img {
    height: 160px;
  }

  .articleObjectsContent .articleBlock {
    height: 390px;
  }

  .articleObjectsContent .articleBlock .articleBlockIn p {
    font-size: 11px;
  }

  .articleObjectsContent .articleBlock .articleBlock__title {
    font-size: 12px;
  }

  .places3 {
    height: 820px;
  }

  .teamBlock {
    max-width: 24%;
  }

  .teamBlock:nth-child(4n+4) {
    margin-right: 0;
  }

  .teamBlock:nth-child(5n+5) {
    margin-right: 1.2%;
  }

  .objects2Right {
    max-width: 60%;
  }

  .objects2ContentIn2 .objectsItem,
  .objects2ContentIn .objectsItem {
    max-width: 48%;
    margin-right: 0;
  }

  .objects2ContentIn2,
  .objects2ContentIn {
    justify-content: space-between;
  }

  .objectsItemTitle {
    font-size: 14px;
  }

  .objectsItemDescRight {
    margin-left: 20px;
  }

  .objects2ContentIn2 .objectsItem__href,
  .objects2ContentIn2 .objectsItem__href img,
  .objects2ContentIn .objectsItem__href,
  .objects2ContentIn .objectsItem__href img {
    height: 250px;
    object-fit: cover;
  }

  .objects2ContentIn2 .objectsItem,
  .objects2ContentIn .objectsItem {
    height: 440px;
  }

  .priceBlockFormBottomDiapozon {
    max-width: 100%;
    border: none;
  }

  .filterRange {
    margin: 2% auto 0;
  }

  .teamBlockModif {
    max-width: 100%;
    margin-top: 40px;
  }

  .descObjectsRightList li {
    margin-bottom: 7px;
  }

  .youtubeDesc iframe {
    height: 350px;
  }

  .descObjectsMiddleArea {
    padding: 10px 5px 12px 5px;
  }

  .topSliderBoth .swiper-button-prev {
    left: 85.1%;
  }

  .header {
    padding: 32px 0 20px;
  }

  .navMenuIn {
    position: relative;
    top: 0;
    max-width: 100%;
    margin: 0;
  }

  .navMenuIn3 {
    max-width: 100%;
    padding: 10px 5px;
    left: 177px;
  }

  .navMenuIn > li > a:after {
    position: relative;
    left: 10px;
  }

  .navMenu li a {
    padding: 15px 5px;
  }

  .navMenu li {
    margin-bottom: 10px;
  }

  .navMenuIn3 li a {
    font-size: 14px;
  }
  
  .topNav li {
    max-width: 32%;
  }

  .topNav li a img, .topNav li {
    height: 144px;
  }

  .topNav li span {
    font-size: 25px;
  }
}

@media (max-width: 950px) {
  .descObjectsMiddleArea__map span {
    width: 78%;
    font-size: 13px;
  }

  .descObjectsMiddleArea__kub {
    font-size: 14px;
  }

  .descObjectsTop__map {
    font-size: 12px;
  }

  .descObjects {
    flex-direction: column;
  }

  .descObjectsRight,
  .descObjectsLeft {
    max-width: 100%;
  }

  .descObjectsRightList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }

  .descObjectsRightList li {
    max-width: 32%;
    width: 100%;
  }

  .teamBlockModif {
    max-width: 270px;
    margin: 30px auto 0;
  }

  .telegramModif {
    margin-top: 0;
    height: 500px;
    background-size: cover;
    margin-bottom: 50px;
  }

  .telegramModif .telegramContent {
    padding-top: 100px;
  }

  .descObjects {
    margin-bottom: 50px;
  }

  .descObjectsRight {
    margin-top: 40px;
  }

  .telegramModif .teamBlockBtn a {
    max-width: 80%;
  }

  .feedback {
    display: none;
  }

  .feedbackBlock {
    display: block;
    position: relative;
  }

  .feedback, .question {
    max-width: 100%;
  }

  .descObjectsRight .teamBlockModif {
    display: none;
  }

  .teamBlock.teamBlockModifMobil {
    display: block !important;
    max-width: 100% !important;
    width: 100%;
    position: fixed;
    bottom: 0;
    height: 100px;
    z-index: 1000;
    margin-bottom: 0;
    border-radius: 0;
  }

  .teamBlockModifMobil .teamBlockBtn__btn2,
  .teamBlockModifMobil .teamBlockBtn__btn {
    max-width: 48%;
  }

  .navMenuBlock.fix {
    max-width: 95.1%;
  }
}

@media (max-width: 870px) {
  .mySwiper3 {
    max-width: 95%;
    width: 100%;
    margin: 50px auto 0;
  }

  .descObjectsSlider .mySwiper3 {
    max-width: 100%;
  }

  .teamBlock__paragraf {
    font-size: 12px;
  }

  .feedbackImgRight {
    margin-left: 0;
    max-width: 100%;
    width: 100%;
    margin-top: 10px;
  }

  .feedback, .question {
    padding: 20px 10px;
  }

  .feedbackBtn span {
    font-size: 14px;
    padding-top: 0;
  }

  .feedbackBtn {
    height: 50px;
  }

  .attention {
    padding: 20px;
  }

  .header {
    padding: 20px 0;
  }

  .placesItem {
    height: 360px;
  }

  .itemAction {
    max-width: 49%;
    margin: 0 0 20px !important;
    height: auto;
    padding-bottom: 20px;
  }

  .itemContent {
    justify-content: space-between;
  }

  .itemAction__img {
    height: 261px;
  }

  .actionWeekTime span {
    font-size: 14px;
  }
  
  .mySwiper2 {
    margin-top: 120px;
  } 

  .articleBlock__href, .articleBlock__href img {
    height: 256px;
  }

  .articleBlockIn p {
    font-size: 16px;
  }

  .nav2 li a {
    font-size: 14px;
  }

  .nav2 {
    padding: 15px 20px;
    margin: -30px auto 0;
  }

  .objectsBottom {
    bottom: 50px;
  }

  .titleH12 {
    font-size: 45px;
  }

  .articleObjectsContent .articleBlock,
  .articleObjectsContent .articleBlockBig {
    max-width: 24%;
  }

  .places2BottomItem,
  .places2BottomItem a img {
    height: 160px;
  }

  .places2topHeight, .places2topHeight__href img {
    height: 329px;
  }

  .places2BottomItemBottom a {
    font-size: 13px;
  }

  .places2BottomItemBottom p {
    font-size: 10px;
  }

  .places2Bottom,
  .places2topCenterBottom {
    margin-top: 10px;
  }

  .footerMenu {
    max-width: 33%;
    width: 100%;
  }

  .footerBottomMenu {
    max-width: 85%;
  }

  .objects2Right {
    max-width: 55%;
  }

  .priceBlockFormInput {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .selectsInput {
    max-width: 49%;
  }

  .btnSubmit {
    width: 48.8%;
  }

  .objectsLavel {
    margin-top: 400px;
  }

  .priceBlockFormInput input {
    border: 1px solid #D5D5D7;
    border-radius: 5px;
  }

  .mobilBtnTop {
    display: block;
  }

  .headerRight {
    display: none;
  }

  .navMenuBlock li a {
    border-bottom: 1px solid #000000;
    margin: 10px;
    display: block;
  }
}

@media (max-width: 780px) {
  .mySwiper3 {
    max-width: 95%;
    width: 100%;
    margin: 50px auto 0;
  }

  .galleryTitle {
    padding-left: 0;
  }

  .youtube iframe {
    height: 400px;
  }

  .placesItem {
    height: 320px;
  }

  .top .sliderPlaceNav {
    position: absolute;
    top: 100px;
    right: 0;
    max-width: 213px;
  }

  .mySwiper2 {
    margin-top: 120px;
  }

  .articleBlock__href, .articleBlock__href img {
    height: 224px;
  }

  .articleBlock__title,
  .articleBlockIn p {
    font-size: 14px;
  }

  .articleBlockTop__name,
  .articleBlockTop__date {
    font-size: 12px;
  }

  .articleBlock {
    height: 440px;
  }

  .articleObjectsContent .articleBlock,
  .articleObjectsContent .articleBlockBig {
    max-width: 48%;
  }

  .articleObjectsContent {
    justify-content: space-between;
  }

  .articleObjectsContent .articleBlock:nth-child(3n+3), .articleBlock {
    margin-right: 0;
  }

  .telegram {
    height: 500px;
    background-size: cover;
  }

  .telegramContent {
    padding-top: 30px;
  }

  .telegramMenu {
    margin-top: 30px;
    flex-direction: column;
  }

  .telegramMenu li {
    margin-bottom: 10px;
  }

  .telegram__title {
    font-size: 35px;
  }

  .teamBlock {
    max-width: 32.5%;
  }

  .teamBlock:nth-child(3n+3) {
    margin-right: 0;
  }

  .teamBlock:nth-child(4n+4) {
    margin-right: 1.2%;
  }

  .objects2Right {
    max-width: 55%;
  }
}

@media (max-width: 740px) {
  .objects2Right {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .objects2Left {
    max-width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }

  .objects2Content {
    flex-direction: column-reverse;
  }

.topSliderBoth .mySwiper6 img,
  .topSliderBoth .mySwiper5 {
    height: 310px;
  }

  .topSliderBoth .mySwiper5 .swiper-slide {
    height: 145px !important;
  }

  .topSliderBoth .swiper-button-next {
    right: 8.2%;
  }
  
  .topNav li span {
    font-size: 18px;
  }

  .topNav li a img, .topNav li {
    height: 100px;
  }
}

@media (max-width: 700px) {
  .titleH1 {
    font-size: 25px;
  }

  .titleH1:before {
    width: 20%;
  }

  .bgWhite {
    padding: 20px;
  }

  .mapsBlock,
  .transferWorkIn {
    padding: 20px;
  }

  .transferWork__title {
    font-size: 20px;
  }

  .feedback, .question {
    max-width: 100%;
    padding: 30px;
  }

  .feedbackImgRight {
    max-width: 50%;
    margin-left: 20px;
  }

  .articleBlockBottom__name, .articleBlockBottom__date {
    font-size: 12px;
  }

  .formCommentsInput input {
    height: 50px;
  }

  .afishaContent {
    padding-top: 30px;
  }

  .afisha__title {
    font-size: 30px;
  }

  .afisha__text {
    font-size: 18px;
  }

  .afisha__paragraf {
    font-size: 18px;
  }

  .afisha {
    height: 287px;
  }

  .titleH2 {
    font-size: 30px;
  }

  .titleH2:before {
    width: 40%;
  }

  .placesItemContnet__name {
    font-size: 18px;
  }

  .placesItemContnet__paragraf {
    font-size: 11px;
  }

  .swiper-button-prev, .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
  }

  .sliderPlaceNav {
    max-width: 185px;
  }

  .swiper-pagination-fraction {
    bottom: -16px !important;
  }

  .placesItem {
    height: 292px;
  }

  .itemAction__img {
    height: 206px;
  }

  .topSliderBottomRight {
    max-width: 170px;
  }

  .topSliderBottomRight__connects span {
    font-size: 14px;
  }

  .topSliderBottomLeft__title {
    font-size: 20px;
  }

  .topSliderBottomLeft__paragraf {
    font-size: 14px;
  }

  .bgWhite {
    padding: 20px;
  }

  .articleBlock__href, .articleBlock__href img {
    height: 190px;
  }

  .articleBlockTop__name {
    max-width: 160px;
    width: 100%;
  }

  .nav2 li {
    padding: 0 20px;
  }

  .objectsIn,
  .objects {
    height: 330px;
  }

  .objectsIn > img {
    height: 100%;
  }

  .nav2 {
    padding: 15px 0;
  }

  .descriptionRight, .descriptionLeft {
    max-width: 100%;
  }

  .descriptionLeft .titleH2 {
    font-size: 30px;
  }

  .description__bold {
    font-size: 20px;
  }

  .descriptionList li .descriptionList__num {
    font-size: 48px;
  }

  .descriptionList__text {
    font-size: 20px;
  }

  .objectsItem {
    max-width: 48%;
  }

  .objectsItemTitle {
    font-size: 16px;
  }

  .contentRight2 .articleObjectsContent .articleBlock {
    max-width: 48.8%;
  }

  .contentRight2 .articleObjectsContent .articleBlockBig {
    max-width: 100%;
  }

  .priceBlockFormBottomId,
  .priceBlockFormBottomAnything,
  .priceBlockFormBottomType {
    max-width: 100%;
    border: none;
    text-align: center;
    margin-bottom: 10px;
  }

  .priceBlockFormBottomType__name {
    text-align: center;
    justify-content: center;
  }

  .objectsLavel {
    margin-top: 500px;
  }

  .objects2TitleRight {
    max-width: 228px;
  }

  .objectsListBtn {
    padding: 17px 15px 17px 15px;
    width: 100%;
  }

  .objectsListBtn span {
    font-size: 13px;
  }

  .popupHave {
    max-width: 90% !important;
  }

  .popupHaveTop img {
    height: 300px;
    object-fit: cover;
  }

  .popupHaveItem__right {
    max-width: 40%;
  }

  .popupHaveItem__left {
    max-width: 56%;
  }

  .telegramModif .teamBlockBtn a {
    width: 300px !important;
  }

  .telegramModif .teamBlockBtn {
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .youtube iframe {
    height: 300px;
  }

  .placesItem {
    height: 280px;
  }

  .placesItemContnet__name {
    font-size: 16px;
  }

  .actionWeekTime span {
    font-size: 12px;
  }

  .articleBlockTop__name,
  .articleBlockTop__date {
    max-width: 100%;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .articleBlockTop {
    padding: 10px 0 10px;
  }

  .places2topHeight {
    position: absolute;
    max-width: 50%;
    height: 400px;
  }

  .places2topCenter {
    max-width: 100%;
    margin-top: 410px;
  }

  .places2topHeight__href img {
    height: 400px;
    margin-bottom: 20px;
    width: 93%;
  }

  .places2topHeight:last-of-type {
    right: 0;
  }

  .places2Bottom .places2BottomItem {
    max-width: 32%;
  }

  .places2BottomItemBottom img {
    width: 60%;
  }

  .places3BottomLeft {
    max-width: 60%;
  }

  .objectsItem__href .objectsItem__home {
    top: 189px;
  }

  .objects2ContentIn2 .objectsItem__href,
  .objects2ContentIn2 .objectsItem__href img,
  .objects2ContentIn .objectsItem__href,
  .objects2ContentIn .objectsItem__href img {
    height: 210px;
  }

  .objects2TitleRight__modif {
    max-width: 100%;
    width: 100%;
    margin-top: 50px;
  }

  .descObjectsRight .teamBlock {
    max-width: 43.5%;
  }

  .descObjectsLeftMap {
    height: 400px;
    padding: 10px;
  }

  .descObjectsMiddle li {
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .titleH1 {
    font-size: 20px;
  }

  .bread li a,
  .bread li span {
    font-size: 12px;
  }

  .formCommentsInput input {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .feedbackImgRight {
    max-width: 70%;
  }

  .contentIn {
    padding: 10px;
  }

  .transferWorkList2 li,
  .transferWorkList li,
  .transferWork p,
  .attention p,
  .transfer p {
    font-size: 14px;
    line-height: 24px;
  }

  .transferWork__title {
    font-size: 18px;
  }

  .answerContent,
  .online {
    padding: 20px;
  }

  .afisha__title {
    font-size: 20px;
    padding-top: 10px;
  }

  .afisha__text {
    font-size: 14px;
  }

  .afisha__paragraf {
    font-size: 14px;
  }

  .itemContent {
    max-width: 400px;
    margin: 100px auto 0;
  }

  .itemAction {
    max-width: 100%;
  }

  .itemAction__img {
    height: 260px;
  }

  .actionWeekTime span {
    font-size: 14px;
  }

  .topSliderContent {
    height: 400px;
  }

  .topSliderContent img {
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
  }

  .topSliderBottomLeft {
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }

  .topSliderBottomLeft__title {
    font-size: 30px;
  }

  .topSliderBottomLeft__paragraf {
    font-size: 17px;
  }

  .topSliderBottomRight__connects,
  .topSliderBottomRight {
    max-width: 100%;
  }

  .articleBlock__href, .articleBlock__href img {
    height: 175px;
  }

  .articleBlockIn {
    max-width: 95%;
  }

  .placesItem {
    height: 250px;
  }

  .placesItemContnet__name {
    font-size: 12px;
  }

  .teamBlock {
    max-width: 48.5%;
    margin-right: 0 !important;
  }

  .teamContent {
    justify-content: space-between;
  }

  .objectsItem__href .objectsItem__home {
    top: 170px;
  }

  .objects2ContentIn2 .objectsItem,
  .objects2ContentIn .objectsItem {
    height: 400px;
  }

  .objectsItemTitle {
    font-size: 13px;
  }

  .descObjectsTopRight, .descObjectsTopLeft {
    max-width: 100%;
  }

  .descObjectsTopRight__rub,
  .descObjectsTopRight__price {
    text-align: left;
  }

  .descObjectsRight .teamBlock {
    margin: 30px auto 0 !important;
  }

  .telegramModif .teamBlockBtn a {
    max-width: 75%;
  }

  .telegramModif {
    height: 380px;
  }

  .telegramModif .telegram__title {
    font-size: 30px;
  }

  .telegramModif .telegramContent {
    padding-top: 35px;
  }

  .telegram__paragraf {
    font-size: 14px;
  }

  .telegramModif .teamBlockBtn a {
    max-width: 80%;
  }

  .header__tl {
    font-size: 12px;
    align-items: center;
  }

  .topSliderBoth .swiper-button-prev {
    left: 84.5%;
  }
}

@media (max-width: 550px) {
  .sliderPlaceNav {
    position: absolute;
    top: -17px;
    right: 0;
  }

  .articleBlock {
    max-width: 100%;
  }

  .articleBlock__href,
  .articleBlock__href img {
    height: 230px;
  }

  .articleBlockTop__name,
  .articleBlockTop__date {
    max-width: 60%;
    justify-content: flex-start;
  }

  .articleBlockTop {
    padding: 5px 10px;
  }

  .articleBlockTop__date {
    justify-content: flex-end;
    text-align: right;
    max-width: 35%;
  }

  .placesItem {
    height: 327px;
  }

  .descriptionLeft .titleH2 {
    font-size: 25px;
  }

  .description__bold {
    font-size: 18px;
  }

  .description__paragraf,
  .descriptionList__text {
    font-size: 14px;
  }

  .descriptionList li .descriptionList__num {
    font-size: 40px;
  }

  .description {
    margin-top: 50px;
  }

  .footerBottomMenu {
    max-width: 100%;
  }

  .footerBottom__copyright {
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .footerBottomMenu li {
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .footerBottomMenu li:last-of-type {
    margin-bottom: 0;
  }

  .footerMenu {
    max-width: 49%;
  }

  .telegram__title {
    font-size: 30px;
    max-width: 400px;
  }

  .telegram__paragraf {
    font-size: 14px;
  }

  .telegram {
    height: 430px;
  }

  .telegramMenu__btn {
    padding: 14px 15px;
  }

  .objectsItem__href,
  .objectsItem__href img {
    height: 200px;
  }

  .objectsItemTitle {
    padding: 20px 10px;
  }

  .objects2TitleRight {
    max-width: 100%;
    margin-top: 50px;
  }

  .objectsItem {
    height: 400px;
  }

  .objects2Right iframe {
    height: 500px;
  }

  .objectsItemDescRight {
    margin-left: 6px;
  }

  .objectsItem__href span {
    font-size: 12px;
  }

  .selectsInput {
    max-width: 100%;
  }

  .btnSubmit {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }

  .objectsLavel {
    margin-top: 600px;
  }

  .priceBlockForm {
    padding: 30px 20px;
  }

  #lower-value2, #lower-value,
  #upper-value2, #upper-value {
    font-size: 12px;
  }

  #lower-value2, #lower-value {
    left: -59px;
  }

  #upper-value2, #upper-value {
    right: -60px;
  }

  .popupBlockReview {
    padding: 20px !important;
  }

  .popupBlock p {
    font-size: 14px;
    line-height: 150%;
  }

  .popupBlock {
    padding: 20px !important;
  }

  .popupHaveTop,
  .popupHaveTop img {
    height: 250px;
  }

  .popupHaveTitle {
    font-size: 16px;
  }

  .popupHaveItem__right,
  .popupHaveItem__left {
    max-width: 100%;
    text-align: left;
  }

  .popupHaveItem__right {
    margin-top: 5px;
  }

.topSliderBoth .mySwiper6 img,
  .topSliderBoth .mySwiper5 {
    height: 225px;
  }

  .topSliderBoth .mySwiper5 .swiper-slide {
    height: 77px !important;
  }

  .mobilMenu3,
  .mobilMenu2, .mobilMenu {
    max-width: 90%;
  }

  .topNav li span {
    font-size: 16px;
  }

  .topNav li {
    max-width: 48%;
  }

  .topNav li a img, .topNav li {
    height: 140px;
  }

  .topNav {
    display: none;
  }
  .navMenuBlock {
    display: flex;
  }

  .navMenuBlock.fix {
    display: none;
  }
}

@media (max-width: 480px) {
  .teamContent {
    margin-top: 50px;
  }

  .youtube iframe {
    height: 200px;
  }

  .afisha {
    height: 300px;
  }

  .afisha a {
    height: 100%;
    display: block;
  }

  .afisha a img {
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
  }

  .afisha__title {
    font-size: 24px;
  }

  .afisha__paragraf {
    font-size: 16px;
  }

  .afisha__text {
    font-size: 16px;
  }

  .placesItem {
    height: 305px;
  }

  .titleH2 {
    font-size: 25px;
  }

  .selectsDate {
    max-width: 100% !important;
    width: 100% !important;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .itemContent {
    margin: 50px auto 0;
  }
  
  .mobilMenuWhite.fix {
    display: block;
    background: #FFFFFF;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 999999;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    padding-bottom: 10px;
  }

  .mobilMenuWhite .headerBottom {
    padding-bottom: 0;
    justify-content: flex-end;
    padding-right: 10px;
  }

  .objectsIn,
  .objects {
    height: 250px;
  }

  .titleH12 {
    font-size: 35px;
  }

  .objectsBottom img {
    width: 60%;
  }

  .reviews {
    padding: 60px 0 60px 10px;
  }

  .mySwiper4 {
    left: 0;
  }

  .places2Bottom .places2BottomItem {
    max-width: 49%;
    margin-bottom: 10px;
  }

  .places3BottomLeft {
    max-width: 100%;
  }

  .mapBlock {
    padding: 30px 10px;
  }

  .mapAddressIn {
    max-width: 84%;
  }

  .telegram {
    margin: 50px auto 0;
  }

  .telegram__paragraf {
    max-width: 97%;
  }

  .telegramMenu {
    margin-top: 10px;
  }

  .telegram__title {
    font-size: 25px;
  }

  .teamBlock {
    max-width: 100%;
    height: 100%;
    padding-bottom: 20px;
  }

  .teamBlock a img {
    height: 200px;
  }

  .objectsItem {
    max-width: 100%;
    height: auto;
    padding-bottom: 20px;
  }

  .objectsItem__href, .objectsItem__href img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }


  .objects2ContentIn2 .objectsItem,
  .objects2ContentIn .objectsItem {
    max-width: 100%;
    height: 100%;
  }

  .objects2ContentIn2 .objectsItem__href,
  .objects2ContentIn2 .objectsItem__href img,
  .objects2ContentIn .objectsItem__href,
  .objects2ContentIn .objectsItem__href img {
    height: 300px;
  }

  .objects2ContentIn2 .objectsItemTitle,
  .objects2ContentIn .objectsItemTitle {
    font-size: 15px;
  }

  .objectsItem__href .objectsItem__home {
    top: 241px;
  }

  .contentRight2 .articleObjectsContent .articleBlock {
    max-width: 100%;
    height: 100%;
    padding-bottom: 20px;
  }

  .contentRight2 .articleObjectsContent .articleBlock__href,
  .contentRight2 .articleObjectsContent .articleBlock__href img {
    height: 100%;
  }

  .descObjectsMiddle li {
    max-width: 48%;
  }

  .descObjectsSlider .mySwiper3 img,
  .descObjectsSlider .mySwiper2 img {
    height: 200px;
  }

  .descObjectsSlider .mySwiper4 img, .descObjectsSlider .mySwiper img {
    height: 50px;
  }

  .descObjectsSlider .mySwiper2 {
    margin-top: 50px;
  }

  .descObjectsRight .teamBlock {
    max-width: 68.5%;
  }

  .telegramModif {
    margin-bottom: 50px;
    height: 360px;
  }

  .telegramModif .teamBlockBtn a {
    max-width: 90%;
  }

  .telegramModif .telegram__title {
    font-size: 25px;
  }

  .header__tl span {
    display: none;
  }

  .popupHave__paragraf {
    font-size: 13px;
    line-height: 20px;
  }

  .popupHaveTop, .popupHaveTop img {
    height: 195px;
  }

  .popupHaveBlock span,
  .popupHaveList li a {
    font-size: 12px;
  }

  .popupHaveBlock {
    margin-top: 20px;
  }

  .popupHaveMap span {
    font-size: 12px;
  }

  .popupHaveMap {
    padding: 9px 17px;
  }

  .navMenuBlock li {
    padding-bottom: 10px;
  }

  .navMenuBlock li a {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .placesItem {
    height: 260px;
  }

  .placesItemContnet__name {
    font-size: 16px;
  }

  .placesItemContnet__paragraf {
    font-size: 10px;
  }

  .itemAction__img {
    height: 223px;
  }

  .reviewsBtn__btn {
    max-width: 95%;
  }

  .swiper-pagination5, .swiper-pagination3, .swiper-pagination2,
  .swiper-pagination4 {
    width: 63px !important;
  }

  .reviewsBtn__btn2,
  .reviewsBtn {
    margin-left: 0;
  }

  .swiper-button-prev17, .swiper-button-next17, .swiper-button-prev16, .swiper-button-next16, .swiper-button-prev15, .swiper-button-next15, .swiper-button-prev14, .swiper-button-next14, .swiper-button-prev13, .swiper-button-next13, .swiper-button-prev12, .swiper-button-next12, .swiper-button-prev11, .swiper-button-next11, .swiper-button-prev10, .swiper-button-next10, .swiper-button-prev9, .swiper-button-next9, .swiper-button-prev8, .swiper-button-next8, .swiper-button-prev7, .swiper-button-next7, .swiper-button-prev6, .swiper-button-next6, .swiper-button-prev5, .swiper-button-next5, .swiper-button-prev4, .swiper-button-next4, .swiper-button-prev3, .swiper-button-next3, .swiper-button-prev2, .swiper-button-next2, .swiper-button-prev, .swiper-button-next {
    width: 34px !important;
    height: 34px !important;
  }

  .swiper-pagination-current {
    font-size: 22px;
  }

  .swiper-pagination-total {
    font-size: 14px;
  }

  .reviewsBtn__btn2 {
    margin-top: 20px;
    max-width: 95%;
  }

  .articleObjectsContent .articleBlock {
    max-width: 100%;
    height: 100%;
    padding-bottom: 20px;
  }

  .articleObjectsContent .articleBlock__href, .articleObjectsContent .articleBlock__href img {
    height: 200px;
  }

  .objects2Right iframe {
    height: 300px;
  }

  .descObjects__paragraf {
    font-size: 12px;
  }

  .descObjectsLeftMap {
    height: 300px;
  }

  .descObjectsRightList li {
    max-width: 90%;
    margin: 0 auto 10px;
  }

  .descObjectsRight .teamBlock {
    max-width: 91.5%;
  }

  .telegramModif .telegram__title {
    font-size: 20px;
  }

  .telegramModif .teamBlockBtn a {
    max-width: 100%;
  }

  .descObjectsMiddleArea__map span {
    font-size: 12px;
  }

  .descObjectsMiddleArea__meter {
    font-size: 18px;
  }

  .topNav li a img, .topNav li {
    height: 90px;
  }

  .topNav li span {
    font-size: 14px;
  }
}

@media (max-width: 350px) {
  .articleBlock__href,
  .articleBlock__href img {
    height: 195px;
  }

  .articleBlockTop__name, .articleBlockTop__date {
    font-size: 11px;
  }

  .articleBlock {
    height: 400px;
  }

  .articleBlockTop__name:before {
    margin-right: 3px;
  }

  .bgWhite {
    padding: 20px 10px;
  }

  .answerContent, .online {
    padding: 20px 10px;
  }

  .descriptionLeft .titleH2 {
    font-size: 20px;
  }

  .descriptionList li {
    max-width: 50%;
    margin-bottom: 20px;
  }

  .descriptionList li:last-of-type {
    margin-bottom: 0;
  }

  .descriptionList__text {
    font-size: 16px;
  }

  .telegram__title {
    font-size: 20px;
  }


  .objects2ContentIn2 .objectsItem__href,
  .objects2ContentIn2 .objectsItem__href img,
  .objects2ContentIn .objectsItem__href,
  .objects2ContentIn .objectsItem__href img {
    height: 210px;
  }

  .objectsItem__href .objectsItem__home {
    top: 160px;
  }
}
