@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Montserrat");
/*______________________________Main Style________________________________*/
a {
  text-decoration: none;
  color: black;
  text-align: center;
  cursor: pointer;
}

html {
  font-size: 14px;
  color: #C4C4C4;
  overflow-x: hidden;
}

html *::-webkit-scrollbar {
  width: 0.3em;
  height: 0.3em;
}

html *::-webkit-scrollbar-thumb {
  background: white !important;
  border-radius: 0.3em;
}

html *::-webkit-scrollbar-track {
  background: #9A9A9A !important;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  min-height: 100vh;
  box-sizing: border-box;
  background: white;
}

body * {
  position: relative;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

body *:hover, body *:focus {
  outline: none;
	
}

.page__heading {
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  font-size: 30px;
  letter-spacing: 0.04em;
  color: #00222E;
}

.breadcrumb-wrapper {
  width: 100%;
  font-size: 12px;
  font-weight: 300;
  color: #a2a2a2;
  margin-bottom: 20px;
}

.breadcrumb-wrapper a {
  font-size: 12px;
  font-weight: 300;
  color: #a2a2a2;
  text-transform: capitalize;
}

.logo-block {
  font-family: "FuturaDemiC", sans-serif;
  line-height: 70px;
  font-size: 50px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.heading-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 120px;
  width: 100%;
}

.heading-block .breadcrumb-wrapper {
  margin-bottom: 0;
}

.heading-block .heading-block__title {
  font-family: "FuturaDemiC", "Roboto", sans-serif;
  font-style: italic;
  font-size: 48px;
  color: #211e1e;
}

.heading-block .heading-block__slogan {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 19px;
  font-size: 18px;
  color: #A5A5A5;
}

.media-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
}

.media-header .media-header__heading {
  display: flex;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 300;
  line-height: 19px;
  font-size: 18px;
  color: #A5A5A5;
}

.media-header .media-header__heading b {
  font-family: "FuturaDemiC", sans-serif;
  font-style: italic;
  font-weight: 600;
  line-height: 51px;
  font-size: 48px;
  color: #545353;
  margin-bottom: 10px;
}

.button {
  display: flex;
  justify-content: center;
  min-width: 80px;
  min-height: 20px;
  width: fit-content;
  height: fit-content;
  background: #58AFDA;
  border: 1px solid #58AFDA !important;
  font-family: "Roboto", sans-serif;
  line-height: 28px;
  font-size: 20px;
  color: #FFFFFF;
  padding: 10px 45px;
  cursor: pointer;
  transition: 0.3s;
}

.button:hover {
  background: transparent;
  border: 1px solid #58AFDA !important;
  color: #58AFDA;
  transition: 0.3s;
}

.pagination-wrapper {
  width: 100%;
  margin-top: 90px;
}

.pagination-wrapper .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  background: #EEEEEE;
}

.pagination-wrapper .pagination .prev {
  position: absolute;
  left: 0;
}

.pagination-wrapper .pagination .next {
  position: absolute;
  right: 0;
}

.pagination-wrapper .pagination a, .pagination-wrapper .pagination span {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 32px;
  font-size: 18px;
  color: #909090;
  transition: 0.3s;
  padding: 14px 15px;
}

.pagination-wrapper .pagination a:hover, .pagination-wrapper .pagination a.current, .pagination-wrapper .pagination span:hover, .pagination-wrapper .pagination span.current {
  color: #58AFDA;
  transition: 0.3s;
}

.blog-min {
  width: 100%;
  max-width: 1400px;
  margin: 135px auto 0;
}

.blog-min .blog-min__header {
  margin-bottom: 35px;
}

.blog-min .blog-min__slider {
  display: flex;
  justify-content: space-between;
  width: 100%;
  overflow: hidden;
}

.blog-min .slick-list {
  width: calc(100% + 40px);
  margin: 0 -20px;
}

.blog-min .post {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 60px;
}

.blog-min .post .post__img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.blog-min .post .post__img img {
  width: 100%;
  transform: scale(1);
  transition: 0.3s;
}

.blog-min .post .post__img:hover img {
  transform: scale(1.2);
  transition: 0.3s;
}

.blog-min .post .post__heading {
  height: 40px;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 42px;
  font-size: 24px;
  color: #545353;
  margin-top: 10px;
}

.blog-min .post .post__description {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  font-size: 20px;
  color: #A8A8A8;
  margin-top: 10px;
}

.blog-min .post .post__link {
  display: block;
  width: fit-content;
  font-family: "Roboto", sans-serif;
  text-align: left;
  line-height: 31px;
  font-size: 22px;
  color: #58AFDA;
  margin-top: 30px;
}

.blog-min .post .post__link:after {
  display: block;
  content: "";
  background: #58AFDA;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  max-width: 0;
  transition: 0.3s;
}

.blog-min .post .post__link:hover:after {
  max-width: 100px;
  transition: 0.3s;
}

body .slick-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55px;
  width: 55px;
  border: 2px solid #58AFDA;
  background: transparent;
  z-index: 2;
}

body .slick-arrow:before {
  content: "" !important;
  display: flex;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border: 2px solid #58AFDA;
}

body .slick-arrow:hover {
  background: #58AFDA;
}

body .slick-arrow:hover:before {
  border: 2px solid white;
}

body .slick-arrow.slick-prev {
  left: -80px;
}

body .slick-arrow.slick-prev:before {
  border-top: none;
  border-right: none;
  margin-left: 5px;
}

body .slick-arrow.slick-next {
  right: -80px;
}

body .slick-arrow.slick-next:before {
  border-bottom: none;
  border-left: none;
  margin-right: 5px;
}

.ajax-load-more-wrap.blue .alm-load-more-btn {
  background: #58AFDA !important;
}

.form-check {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: flex-start;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #7C7B7B;
}

.form-check .wpcf7-list-item {
  display: flex;
  align-items: flex-start;
}

.form-check input {
  display: block;
  margin-right: 10px;
}

.form-check a {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #7C7B7B;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 5px;
  margin-top: 1px;
}

.popmake-content .wpcf7 {
  width: 100%;
  max-width: 500px;
  background: white;
  padding: 20px;
}

.popmake-content .wpcf7 p {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.popmake-content .wpcf7 p input {
  outline: none;
  border: none;
}

.popmake-content .wpcf7 p .review__main-content {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.popmake-content .wpcf7 p .review__main-content .review__form-title {
  display: block;
  width: 100%;
  max-width: 310px;
  margin-bottom: 30px;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 34px;
  font-size: 35px;
  letter-spacing: 0.02em;
  color: #7C7B7B;
}

.popmake-content .wpcf7 p .review__main-content input {
  width: 100%;
  max-width: 310px;
  height: 50px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: #7C7B7B;
  margin-bottom: 20px;
  border-bottom: 2px solid #B6B6B6;
}

.popmake-content .wpcf7 p .review__main-content input:focus {
  border-bottom: 2px solid #58AFDA;
}

.popmake-content .wpcf7 p .review__add-content {
  width: 100%;
  max-width: 890px;
  margin-left: 140px;
  height: 220px;
  align-self: flex-end;
  margin-bottom: 10px;
}

.popmake-content .wpcf7 p .review__add-content textarea {
  height: 100%;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 25px;
  letter-spacing: 0.02em;
  padding: 20px;
  color: #919191;
  border: 2px solid #D0D0D0;
  resize: none;
}

.popmake-content .wpcf7 p .button {
  margin-left: auto;
  margin-top: 30px;
}

.sidebarButton {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  right: 20px;
  top: calc(50vh - 100px);
  height: 150px;
  width: 50px;
  border-radius: 10px;
  z-index: 3;
  opacity: 0.5;
  transition: 0.3s;
  box-shadow: 0px 0px 15px 1px #58AFDA;
  overflow: hidden;
	-webkit-animation: pulsing 2s infinite;
  animation: pulsing 2s infinite;
}

@-webkit-keyframes pulsing {
  0% {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5)
  }
  50% {
    -webkit-transform: scale(1.0, 1.0);
    transform: scale(1.0, 1.0);
  }
  100% {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
  }
}

@keyframes pulsing {
  0% {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5)
  }
  50% {
    -webkit-transform: scale(1.0, 1.0);
    transform: scale(1.0, 1.0);
  }
  100% {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
  }
}

.sidebarButton span {
  display: block;
  width: 100%;
  height: 100%;
	background: #009246;
}

.sidebarButton span:nth-child(1) {
  background: #009246;
}

.sidebarButton span:nth-child(2) {
  background: #ffffff;
}

.sidebarButton span:nth-child(3) {
  background: #ce2b37;
}

/*_______________________________Header__________________________________*/
.header {
  width: 100%;
  background: #030A23;
  padding-bottom: 25px;
  z-index: 3;
}

.header .header__top {
  height: 100px;
}

.header .header__top .header__logo {
  font-style: italic;
}

.header .header__top .toolbar {
  display: flex;
  align-items: center;
}

.header .header__top .toolbar .button {
  margin-right: 20px;
  background: linear-gradient(#000029, #000029);
  border: 1px solid #000029;
  font-size: 18px;
  padding: 5px 35px;
  transition: 0.3s;
  color: #58AFDA;
}

.header .header__top .toolbar .button:hover {
  color: #ffffff;
  border: 1px solid #58AFDA !important;
  background: linear-gradient(rgba(90, 175, 220, 0.3), rgba(90, 175, 220, 0.3));
  transition: 0.3s;
}

.header .header__top .toolbar .wpml-ls-legacy-list-horizontal {
  padding: 0;
}

.header .header__top .toolbar .wpml-ls-legacy-list-horizontal ul {
  display: flex;
  justify-content: space-between;
}

.header .header__top .toolbar .wpml-ls-legacy-list-horizontal li {
  display: flex;
  align-items: center;
}

.header .header__top .toolbar .wpml-ls-legacy-list-horizontal li a {
  padding: 0;
}

.header .header__top .toolbar .wpml-ls-legacy-list-horizontal li a span {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.header .header__top .toolbar .wpml-ls-legacy-list-horizontal li a .wpml-ls-display {
  display: none;
}

.header .header__top .toolbar .wpml-ls-legacy-list-horizontal li.wpml-ls-current-language a span {
  font-weight: 500;
}

.header .header__top .toolbar .wpml-ls-legacy-list-horizontal li:first-child:after {
  content: " / ";
  font-size: 21px;
  margin: 0px 10px;
  color: white;
}

.header .header__top .toolbar .sidebar__search {
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.header .header__top .toolbar .sidebar__search input {
  display: none;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  height: 30px;
  padding: 10px;
  color: white;
}

.header .header__top .toolbar .sidebar__search input::placeholder {
  color: white;
}

.header .header__top .toolbar .sidebar__search input.active {
  display: flex;
}

.header .header__top .toolbar .sidebar__search button {
  display: none;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 20px;
  background: url("../img/icons/search.svg");
  background-size: cover;
  cursor: pointer;
  border: none;
  margin-left: -25px;
  margin-right: 15px;
}

.header .header__top .toolbar .sidebar__search button.active {
  display: flex;
}

.header .header__top .toolbar .sidebar__search .search__toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25px;
  width: 25px;
  background: url("../img/icons/search.svg");
  opacity: 0.7;
  transition: 0.1s;
  cursor: pointer;
}

.header .header__top .toolbar .sidebar__search .search__toggle.active {
  background: url("../img/icons/close.svg");
}

.header .header__top .toolbar .sidebar__search .search__toggle:hover {
  opacity: 1;
  transition: 0.1s;
}

.header .header__bottom {
  width: 100%;
  height: 65px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.header .header__bottom .menu-hnav-container, .header .header__bottom .menu-hnav-eng-container {
  width: 100%;
  height: 100%;
}

.header .header__bottom .menu-hnav-container .menu, .header .header__bottom .menu-hnav-eng-container .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.header .header__bottom .menu-hnav-container .menu li, .header .header__bottom .menu-hnav-eng-container .menu li {
  position: static;
  list-style: none;
  height: 100%;
  padding: 0 25px;
}

.header .header__bottom .menu-hnav-container .menu li a, .header .header__bottom .menu-hnav-eng-container .menu li a {
  height: 100%;
  width: 100%;
  position: relative;
}

.header .header__bottom .menu-hnav-container .menu li > a:before, .header .header__bottom .menu-hnav-eng-container .menu li > a:before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 5px;
  background: white;
  top: 0;
  transition: 0.3s;
}

.header .header__bottom .menu-hnav-container .menu li > a:hover:before, .header .header__bottom .menu-hnav-eng-container .menu li > a:hover:before {
  width: 100%;
  transition: 0.3s;
}

.header .header__bottom .menu-hnav-container .menu li .sub-menu, .header .header__bottom .menu-hnav-eng-container .menu li .sub-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  width: 0;
  opacity: 0;
  height: 360px;
  padding: 0;
  transition: 0.3s;
  background: url("../img/header-bg.png") no-repeat calc(100% - 30px) center, #EEEEEE;
  overflow: hidden;
}

.header .header__bottom .menu-hnav-container .menu li .sub-menu li, .header .header__bottom .menu-hnav-eng-container .menu li .sub-menu li {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  height: 35px;
  padding: 0 20px;
  width: 100%;
}

.header .header__bottom .menu-hnav-container .menu li .sub-menu li a, .header .header__bottom .menu-hnav-eng-container .menu li .sub-menu li a {
  width: 100%;
  color: black;
  text-align: center;
}

.header .header__bottom .menu-hnav-container .menu li .sub-menu li:hover, .header .header__bottom .menu-hnav-eng-container .menu li .sub-menu li:hover {
  background: #58AFDA;
}

.header .header__bottom .menu-hnav-container .menu li .sub-menu li:hover a, .header .header__bottom .menu-hnav-eng-container .menu li .sub-menu li:hover a {
  color: white;
  text-decoration: underline;
}

.header .header__bottom .menu-hnav-container .menu .menu-item-has-children:hover, .header .header__bottom .menu-hnav-eng-container .menu .menu-item-has-children:hover {
  background: #EEEEEE;
}

.header .header__bottom .menu-hnav-container .menu .menu-item-has-children:hover > a, .header .header__bottom .menu-hnav-eng-container .menu .menu-item-has-children:hover > a {
  color: #58AFDA;
}

.header .header__bottom .menu-hnav-container .menu .menu-item-has-children:hover > a:before, .header .header__bottom .menu-hnav-eng-container .menu .menu-item-has-children:hover > a:before {
  display: none;
}

.header .header__bottom .menu-hnav-container .menu .menu-item-has-children:hover .sub-menu, .header .header__bottom .menu-hnav-eng-container .menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  width: 100%;
  padding: 30px;
  transition: 0.5s;
}

.header .header__bottom .menu-hnav-container .menu .menu-item-has-children:hover .sub-menu li, .header .header__bottom .menu-hnav-eng-container .menu .menu-item-has-children:hover .sub-menu li {
  width: fit-content;
}

.header .header__bottom .menu-hnav-container .menu .menu-item-has-children:hover .sub-menu a:before, .header .header__bottom .menu-hnav-eng-container .menu .menu-item-has-children:hover .sub-menu a:before {
  display: none;
}

a .header .header__bottom .menu-hnav-container .menu .current-menu-item:before, a .header .header__bottom .menu-hnav-eng-container .menu .current-menu-item:before {
  content: "";
  position: absolute;
  top: -24px;
  width: 100%;
  height: 3px;
  background: #ffffff;
}

.header .header__bottom .menu-hnav-container .menu a, .header .header__bottom .menu-hnav-eng-container .menu a {
  display: flex;
  align-items: center;
  height: 50px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #FFFFFF;
  white-space: nowrap;
}

.header .header__bottom .sidebar__search {
  margin-left: 40px;
}

.header .header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
}

/*________________________________Main___________________________________*/
.home #header {
  background: transparent;
  margin-bottom: -190px;
  z-index: 2;
}

.home .header .header__top .toolbar .button {
  background: linear-gradient(rgba(90, 175, 220, 0), rgba(90, 175, 220, 0));
  border: 1px solid #58AFDA;
  color: #ffffff;
}

.home .header .header__top .toolbar .button:hover {
  background: linear-gradient(rgba(90, 175, 220, 0.7), rgba(90, 175, 220, 0.7));
  border: 1px solid #58AFDA !important;
  color: #ffffff;
}

/*--_________________________Slider-welcome___________________________--*/
.slider-welcome {
  overflow: hidden;
}

.slider-welcome .slide {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.slider-welcome .slide:before {
  content: "";
  z-index: 2;
  background: linear-gradient(90deg, rgba(21, 68, 98, 0.62) 0%, rgba(55, 88, 109, 0.23) 51.45%);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
}

.slider-welcome .slide img {
  width: 100%;
  z-index: 1;
}

.slider-welcome .slide .slide__content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1420px;
  position: absolute;
  height: fit-content;
  border-left: 10px solid #58AFDA;
  z-index: 3;
}

.slider-welcome .slide .slide__content-wrapper .slide__content {
  padding: 15px 35px;
}

.slider-welcome .slide .slide__content-wrapper .slide__content .slide__preheading {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #FFFFFF;
}

.slider-welcome .slide .slide__content-wrapper .slide__content .slide__heading {
  font-family: "FuturaDemiC", sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 97px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.slider-welcome .slide .slide__content-wrapper .slide__content .slide__postheading {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  color: #FFFFFF;
}

.slider-welcome .slide .slide__content-wrapper .slide__video-run {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  background: white;
  margin: 0 auto;
  border-radius: 30px;
  transform: rotate(0);
  transition: 0.3s;
  cursor: pointer;
}

.slider-welcome .slide .slide__content-wrapper .slide__video-run:after {
  position: absolute;
  display: block;
  content: url("../img/icons/play.png");
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  color: #58AFDA;
  opacity: 1;
  margin-left: 5px;
}

.slider-welcome .slide .slide__content-wrapper .slide__video-run .frame {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0px;
  border: 3px solid transparent;
  border-top-color: #00A385;
  border-radius: 50%;
  z-index: 1500;
  animation: spinning 5s ease-in-out infinite;
}

.slider-welcome .slide .slide__content-wrapper .slide__video-run .frame .clr {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-bottom-color: #e74c3c;
  z-index: 1500;
  border-radius: 50%;
  animation: spinning 5s linear infinite;
}

.slider-welcome .slide .slide__content-wrapper .slide__video-run .frame .clr:before {
  display: none;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  content: "";
  position: absolute;
  border: 3px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spinning 7s ease-in-out infinite;
}

.slider-welcome .slide .slide__content-wrapper .slide__video-run .frame .clr:after {
  display: none;
  width: 85%;
  height: 85%;
  content: "";
  position: absolute;
  border: 2px solid transparent;
  border-top-color: #f9c922;
  border-radius: 50%;
  animation: spinning 5s linear infinite;
}

@keyframes spinning {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  50% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(720deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(720deg);
    /* IE 9 */
    transform: rotate(720deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}

@-webkit-keyframes spinning {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  50% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(720deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(720deg);
    /* IE 9 */
    transform: rotate(720deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}

@keyframes spinningChange {
  0% {
    -webkit-transform: rotate(720deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(720deg);
    /* IE 9 */
    transform: rotate(720deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  50% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}

@-webkit-keyframes spinningChange {
  0% {
    -webkit-transform: rotate(720deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(720deg);
    /* IE 9 */
    transform: rotate(720deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  50% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}

.slider-welcome .slick-dots {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 360px;
  bottom: 25px;
}

.slider-welcome .slick-dots li {
  height: 5px;
  width: 100%;
  margin: 0;
}

.slider-welcome .slick-dots li button {
  width: 100%;
  height: 5px;
  background: white;
  padding: 0;
}

.slider-welcome .slick-dots li button:before {
  display: none;
}

.slider-welcome .slick-dots li.slick-active button {
  background: #58AFDA;
}

/*--_________________________Navigation-main__________________________--*/
.navigation {
  display: flex;
  justify-content: space-between;
  height: 210px;
  width: 100%;
  margin: -105px 0 0 auto;
  max-width: 1260px;
  z-index: 1;
}

.navigation .link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  padding: 35px;
  width: calc(100% / 3);
  transition: 0.3s;
  opacity: 0.9;
  color: #000029;
}

.navigation .link:hover {
  opacity: 1;
  transition: 0.3s;
}

.navigation .link:nth-child(1) {
  background: #009246;
}

.navigation .link:nth-child(1) .link__title, .navigation .link:nth-child(1) .link__button {
  color: white;
}

.navigation .link:nth-child(2) {
  background: #ffffff;
}

.navigation .link:nth-child(3) {
  background: #ce2b37;
}

.navigation .link:nth-child(3) .link__title, .navigation .link:nth-child(3) .link__button {
  color: white;
}

.navigation .link .link__title {
  height: 85px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #000029;
}

.navigation .link .link__button {
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 25px;
  font-size: 18px;
  color: #000029;
  cursor: pointer;
}

/*--________________________Slider-category___________________________--*/
.media--category {
  background: url("https://turism-italia.com/wp-content/themes/italy/img/media--category-bg.png") center bottom no-repeat;
  background-size: contain;
  margin-top: 110px;
}

.media--category .media-slider--category {
  width: 100%;
  max-width: 1420px;
  margin: 35px auto 0;
}

.media--category .media-slider--category .slide {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-height: 530px;
}

.media--category .media-slider--category .slide img {
  width: 100%;
  min-height: 100%;
  transform: scale(1);
  transition: 0.3s;
}

.media--category .media-slider--category .slide:before {
  content: "";
  z-index: 2;
  background: linear-gradient(90deg, rgba(21, 68, 98, 0.2) 0%, rgba(55, 88, 109, 0.23) 51.45%);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 1;
  transition: 0.3s;
}

.media--category .media-slider--category .slide:hover:before {
  opacity: 0;
  transition: 0.3s;
}

.media--category .media-slider--category .slide:hover img {
  transform: scale(1.1);
  transition: 0.3s;
}

.media--category .media-slider--category .slide:hover .slide__title {
  font-size: 34px;
  transition: 0.3s;
}

.media--category .media-slider--category .slide .slide__title {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 40px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  font-size: 30px;
  color: #FFFFFF;
  padding: 0 30px;
  transition: 0.3s;
}

/*--__________________________Grid-cities_____________________________--*/
.media--city {
  margin-top: 110px;
}

.media--city .grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  grid-template-rows: repeat(6, 170px);
  grid-gap: 20px;
  width: 100%;
  max-width: 1420px;
  margin: 35px auto 0;
}

.media--city .grid__item:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.media--city .grid__item:nth-child(2) {
  grid-column: 1;
  grid-row: 4 / span 3;
}

.media--city .grid__item:nth-child(3) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.media--city .grid__item:nth-child(4) {
  grid-column: 2;
  grid-row: 3 / span 2;
}

.media--city .grid__item:nth-child(5) {
  grid-column: 2;
  grid-row: 5 / span 2;
}

.media--city .grid__item:nth-child(6) {
  grid-column: 3;
  grid-row: 1 / span 3;
}

.media--city .grid__item:nth-child(7) {
  grid-column: 3;
  grid-row: 4 / span 3;
}

.media--city .grid__item {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.media--city .grid__item img {
  transform: scale(1);
  transition: 0.3s;
}

.media--city .grid__item:before {
  content: "";
  z-index: 2;
  background: linear-gradient(90deg, rgba(21, 68, 98, 0.1) 0%, rgba(55, 88, 109, 0.1) 51.45%);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 1;
  transition: 0.3s;
}

.media--city .grid__item:hover img {
  transform: scale(1.1);
  transition: 0.3s;
}

.media--city .grid__item .grid__title {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 20px;
  padding: 0 30px;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  font-size: 30px;
  color: #FFFFFF;
}

/*--__________________________Inform Block____________________________--*/
.inform {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1420px;
  margin: 110px auto;
}

.inform .inform__content {
  margin-left: 70px;
}

.inform .inform__content .inform__title {
  font-family: "FuturaDemiC", sans-serif;
  font-style: italic;
  font-weight: 600;
  line-height: 62px;
  font-size: 48px;
  color: #545353;
}

.inform .inform__content .inform__description {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 300;
  line-height: 27px;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: #545353;
  margin: 40px 0 35px;
}

/*--________________________Wallpaper Block___________________________--*/
.wallpaper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000830;
}

.wallpaper img {
  width: 100%;
  opacity: 0.7;
}

.wallpaper .wallpaper__content {
  width: 100%;
  max-width: 1420px;
  position: absolute;
}

.wallpaper .wallpaper__content .wallpaper__title {
  width: 100%;
  max-width: 480px;
  font-family: "FuturaDemiC", sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 48px;
  color: #FFFFFF;
}

.wallpaper .wallpaper__content .wallpaper__description {
  width: 100%;
  max-width: 610px;
  font-family: "Roboto", sans-serif;
  line-height: 27px;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  margin: 40px 0 50px;
}

/*--___________________________Reviews________________________________--*/
.reviews--main {
  display: flex;
  flex-direction: column;
  align-content: center;
  width: 100%;
  max-width: 1400px;
  margin: 130px auto 0;
}

.reviews--main .review {
  display: flex;
  flex-direction: column;
  align-content: center;
}

.reviews--main .review .review__img {
  width: 100%;
  max-width: 240px;
  margin: 0 auto 30px;
}

.reviews--main .review .review__img img {
  width: 100%;
}

.reviews--main .review .review__subtitle {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 28px;
  font-size: 22px;
  text-align: center;
  color: #A0A0A0;
  margin-bottom: 35px;
}

.reviews--main .review .review__subtitle .review__author {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 28px;
  font-size: 22px;
  text-align: center;
  color: #545353;
}

.reviews--main .review .review__description {
  width: 100%;
  max-width: 940px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 37px;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.03em;
  color: #545353;
  margin: 0 auto;
}

.reviews--main .slick-dots {
  bottom: -50px;
}

.reviews--main .slick-dots .slick-dots li button:before {
  font-size: 11px;
}

/*--__________________________Block Blog______________________________--*/
.media--blog {
  margin-top: 80px;
  margin-bottom: 25px;
}

/*______________________________Catalog_________________________________*/
.catalog {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1420px;
  margin: 0 auto 75px;
}

.catalog .catalog__heading-block {
  margin: 50px auto 30px;
}

.catalog .catalog__heading-block .catalog__heading {
  font-style: italic;
}

.catalog .catalog__content {
  width: 100%;
  max-width: calc(100% - 505px);
}

.catalog .catalog__content .services .service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.catalog .catalog__content .services .service .service__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 460px;
  background: #000029;
  overflow: hidden;
}

.catalog .catalog__content .services .service .service__icon img {
  transform: scale(1);
  opacity: 1;
  width: 100%;
  transition: 0.2s;
}

.catalog .catalog__content .services .service .service__icon:hover img {
  transform: scale(1.1);
  opacity: 0.8;
  transition: 0.2s;
}

.catalog .catalog__content .services .service .service__content {
  width: 100%;
  max-width: calc(100% - 500px);
}

.catalog .catalog__content .services .service .service__content .service__pre-header {
  margin-bottom: 16px;
}

.catalog .catalog__content .services .service .service__content .service__pre-header .service__hash {
  font-family: "Roboto", sans-serif;
  line-height: 28px;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #58AFDA;
}

.catalog .catalog__content .services .service .service__content .service__pre-header .service__data {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 23px;
  font-size: 16px;
  color: #A8A8A8;
}

.catalog .catalog__content .services .service .service__content .service__title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 42px;
  font-size: 24px;
  color: #545353;
  margin-bottom: 10px;
}

.catalog .catalog__content .services .service .service__content .service__excerpt {
  margin-bottom: 45px;
}

.catalog .catalog__content .services .service .service__content .service__excerpt p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 28px;
  font-size: 20px;
  color: #A8A8A8;
}

.catalog .catalog__content .popular__heading--global {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  font-family: "FuturaDemiC", sans-serif;
  font-weight: 600;
  line-height: 51px;
  font-size: 48px;
  color: #545353;
  background: white;
  margin: 70px 0 50px;
}

.catalog .catalog__content .popular__heading--global span {
  background: white;
  z-index: 2;
}

.catalog .catalog__content .popular__heading--global:before {
  display: block;
  content: "";
  background: #E5E5E5;
  height: 1px;
  width: 100%;
  position: absolute;
}

.catalog .catalog__content .popular-small {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.catalog .catalog__content .popular-small .service {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 35px) / 3);
}

.catalog .catalog__content .popular-small .service .service__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000029;
  overflow: hidden;
}

.catalog .catalog__content .popular-small .service .service__icon img {
  transform: scale(1);
  opacity: 1;
  width: 100%;
  transition: 0.2s;
}

.catalog .catalog__content .popular-small .service .service__icon:hover img {
  transform: scale(1.1);
  opacity: 0.8;
  transition: 0.2s;
}

.catalog .catalog__content .popular-small .service .service__title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 55px;
  position: absolute;
  background: white;
  font-family: "Roboto", sans-serif;
  line-height: 28px;
  font-size: 20px;
  color: #58AFDA;
}

.catalog .catalog__content .popular-big {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.catalog .catalog__content .popular-big .service {
  width: 100%;
  max-width: calc(50% - 10px);
  margin-bottom: 20px;
}

.catalog .catalog__content .popular-big .service .service__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #000029;
  overflow: hidden;
}

.catalog .catalog__content .popular-big .service .service__icon img {
  transform: scale(1);
  opacity: 1;
  width: 100%;
  transition: 0.2s;
}

.catalog .catalog__content .popular-big .service .service__icon:hover img {
  transform: scale(1.1);
  opacity: 0.8;
  transition: 0.2s;
}

.catalog .catalog__content .popular-big .service .service__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 25px 20px 35px;
  border: 1px solid #ECECEC;
}

.catalog .catalog__content .popular-big .service .service__content .service__hash {
  font-family: "Roboto", sans-serif;
  line-height: 28px;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #58AFDA;
  margin-bottom: 10px;
}

.catalog .catalog__content .popular-big .service .service__content .service__title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 42px;
  font-size: 24px;
  text-align: center;
  color: #545353;
  margin-bottom: 25px;
}

.catalog .catalog__content .popular-big .service .service__content .service__data {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 23px;
  font-size: 16px;
  text-align: center;
  color: #A8A8A8;
  margin-bottom: 15px;
}

.catalog .catalog__content .popular-big .service .service__content .service__excerpt {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 28px;
  font-size: 20px;
  text-align: center;
  color: #A8A8A8;
  margin-bottom: 35px;
}

.catalog .catalog__content .popular-big .service .service__content .service__button {
  padding: 10px 25px;
  display: none;
}

.catalog .sidebar {
  width: 100%;
  max-width: 460px;
  height: fit-content;
}

.catalog .sidebar .category {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.catalog .sidebar .category .category__heading {
  width: 100%;
  font-family: "FuturaDemiC", sans-serif;
  font-weight: 600;
  line-height: 32px;
  font-size: 30px;
  color: #545353;
  margin-bottom: 40px;
}

.catalog .sidebar .category .category__item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  width: 100%;
  max-width: calc((100% - 20px) / 2);
  margin-bottom: 25px;
  background: #000029;
  overflow: hidden;
}

.catalog .sidebar .category .category__item img {
  transform: scale(1);
  opacity: 1;
  width: 100%;
  min-height: 100%;
  transition: 0.2s;
}

.catalog .sidebar .category .category__item:hover img {
  transform: scale(1.1);
  opacity: 0.8;
  transition: 0.2s;
}

.catalog .sidebar .category .category__item .category__title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
  width: 80%;
  background: white;
  position: absolute;
  font-family: "Roboto:", sans-serif;
  line-height: 25px;
  font-size: 18px;
  color: #58AFDA;
}

.catalog .sidebar .social {
  width: calc(100% - 20px);
  height: 180px;
  margin: 15px auto 0;
  padding: 30px 0;
  border: 1px solid #E1E1E1;
}

.catalog .sidebar .social .social__heading {
  width: 100%;
  font-family: "Roboto", sans-serif;
  line-height: 28px;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  color: #545353;
}

.catalog .sidebar .social .social__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 345px;
  margin: 50px auto 0;
}

.catalog .sidebar .social .social__links .social__link {
  font-family: "Roboto", sans-serif;
  line-height: 25px;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #A8A8A8;
}

.catalog .sidebar .social .social__links .social__dots {
  display: block;
  height: 5px;
  width: 5px;
  background: #58AFDA;
}

.catalog .sidebar .instagram {
  width: calc(100% - 20px);
  margin: 35px auto 0;
  padding: 30px 20px;
  border: 1px solid #E1E1E1;
}

.catalog .sidebar .instagram .instagram__heading {
  text-align: center;
  font-family: "Roboto", sans-serif;
  line-height: 28px;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #545353;
  margin-bottom: 35px;
}

.catalog .sidebar .instagram .instagallery-actions {
  display: none;
}

.catalog .sidebar .popular {
  width: calc(100% - 10px);
  margin: 35px auto 0;
  padding: 30px 20px;
  border: 1px solid #E1E1E1;
}

.catalog .sidebar .popular .popular__heading {
  font-family: "Roboto", sans-serif;
  line-height: 28px;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #545353;
  margin-bottom: 35px;
  text-align: center;
}

.catalog .sidebar .popular .popular-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0 20px;
  border-top: 1px solid #EEEEEE;
}

.catalog .sidebar .popular .popular-item .popular-item__icon {
  width: 100%;
  max-width: calc(100% - 190px);
}

.catalog .sidebar .popular .popular-item .popular-item__icon img {
  width: 100%;
}

.catalog .sidebar .popular .popular-item .popular-item__content {
  width: 100%;
  max-width: 175px;
}

.catalog .sidebar .popular .popular-item .popular-item__content .popular-item__title {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-size: 18px;
  color: #545353;
}

.catalog .sidebar .popular .popular-item .popular-item__content .popular-item__data {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 300;
  line-height: 23px;
  font-size: 16px;
  color: #A8A8A8;
}

.catalog .sidebar .filter {
  width: calc(100% - 20px);
  margin: 35px auto 0;
  padding: 30px 20px;
  border: 1px solid #E1E1E1;
}

.catalog .sidebar .filter .filter__heading {
  font-family: "Roboto", sans-serif;
  line-height: 28px;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #545353;
  margin-bottom: 35px;
  text-align: center;
}

/*__________________________Single excursion____________________________*/
#single {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

#single .single__heading-block {
  margin: 40px auto 45px;
}

#single .single__heading-block .breadcrumb-wrapper {
  margin-bottom: 0;
}

#single .single__heading-block .single__title {
  font-family: "FuturaDemiC", "Roboto", sans-serif;
  font-size: 48px;
  color: #211e1e;
}

#single .single__heading-block .single__slogan {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 19px;
  font-size: 18px;
  color: #A5A5A5;
}

#single .single__main {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: calc(100% - 460px);
}

#single .single__sidebar {
  width: 100%;
  max-width: 430px;
  margin-left: 25px;
}

#single .single__sidebar * {
  font-family: "Roboto", sans-serif;
}

#single .single__sidebar .single__sidebar-element {
  width: 100%;
  border: 1px solid #e1e1e1;
  padding: 25px;
}

#single .single__sidebar .main-inform {
  margin-bottom: 20px;
  padding-bottom: 40px;
}

#single .single__sidebar .main-inform .main-inform__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 320px;
  height: 50px;
  margin: 0 auto 15px;
}

#single .single__sidebar .main-inform .main-inform__price .main-inform__price-heading {
  font-weight: 300;
  font-size: 18px;
  color: #545353;
}

#single .single__sidebar .main-inform .main-inform__price .main-inform__price-description {
  display: flex;
  align-items: center;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
  color: #58AFDA;
}

#single .single__sidebar .main-inform .main-inform__price .main-inform__price-description b {
  font-size: 36px;
  margin-right: 10px;
}

#single .single__sidebar .main-inform .main-inform__feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 255px;
  height: 35px;
  margin: 25px auto 0;
  padding-left: 30px;
}

#single .single__sidebar .main-inform .main-inform__feature .main-inform__feature-heading {
  line-height: 1;
  font-weight: 300;
  font-size: 18px;
  color: #545353;
}

#single .single__sidebar .main-inform .main-inform__feature .main-inform__feature-description {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: fit-content;
}

#single .single__sidebar .main-inform .main-inform__feature .main-inform__feature-description .rectangle-block {
  width: 100%;
  max-width: 195px;
  height: 5px;
  border-radius: 5px;
  background: #58AFDA;
}

#single .single__sidebar .main-inform .main-inform__feature .main-inform__feature-description p {
  font-weight: 300;
  line-height: 1;
  font-size: 16px;
  color: #545353;
}

#single .single__sidebar .booking-form {
  padding: 35px 25px;
}

#single .single__sidebar .booking-form .booking-form__heading {
  text-align: center;
  line-height: 34px;
  font-size: 24px;
  color: #545353;
  margin-bottom: 30px;
}

#single .single__sidebar .booking-form .wpcf7 {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

#single .single__sidebar .booking-form input, #single .single__sidebar .booking-form textarea {
  width: 100%;
  height: 60px;
  font-size: 18px;
  font-weight: 300;
  border: 1px solid #E0E0E0;
  padding: 20px;
  padding-left: 25px;
  margin-bottom: 15px;
}

#single .single__sidebar .booking-form textarea {
  height: 120px;
  resize: none;
}

#single .single__sidebar .booking-form .booking-submit {
  font-weight: 500;
  line-height: 31px;
  font-size: 22px;
  color: white;
  text-align: center;
  padding-left: 0;
  background: #58AFDA;
  margin-top: 20px;
  padding: 0;
}
#single .single__sidebar .map iframe {
  height: 300px;
  width: 100%;
}

#single .single__slider-wrapper {
  display: block;
  width: 100%;
  height: auto;
}

#single .single__slider-wrapper .slider__main .slick-slide img {
  width: 100%;
  height: auto;
}

#single .single__slider-wrapper .slider__nav {
  width: calc(100% + 32px);
  margin: 25px -16px 0;
}

#single .single__slider-wrapper .slider__nav .slick-current {
  opacity: 1;
}

#single .single__slider-wrapper .slider__nav .mini-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 130px;
  max-width: 130px;
}

#single .single__slider-wrapper .slider__nav .mini-image img {
  height: 100%;
  width: auto;
}

#single .single__slider-wrapper .mini-image {
  display: flex !important;
  justify-content: center;
  align-content: center;
  margin: 0 16px;
  overflow: hidden;
  opacity: 0.3;
}

#single .single__slider-wrapper .mini-image img {
  height: 80px;
}

#single .single__slider-wrapper .slick-slide {
  overflow: hidden;
}

#single .single__description {
  width: 100%;
  margin-top: 60px;
}

#single .single__description h3 {
  font-family: "FuturaDemiC", sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  font-size: 20px;
  color: #1a1919;
  margin-bottom: 20px;
}

#single .single__description p {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  color: #545353;
  margin: 15px 0 0;
}

#single .single__description li {
  list-style: none;
  margin: 0;
}

#single .single__description li:before {
  content: "–";
  margin-right: 5px;
}

#single .single__description-add {
  width: calc((100% - 30px) / 3);
  min-width: 220px;
  height: auto;
  margin: 50px auto 0;
}

#single .single__description-add h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #1a1919;
  margin-bottom: 20px;
}

#single .single__description-add p, #single .single__description-add li {
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  color: #545353;
  margin: 15px 0 35px;
}

#single .single__description-add li {
  list-style: none;
  margin: 0;
}

#single .single__description-add li:before {
  content: "–";
  margin-right: 5px;
}

/*_______________________________Blog___________________________________*/
#news {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1460px;
  margin: 55px auto 115px;
}

#news .news__heading-block {
  margin: 0 20px 60px;
}

#news .post {
  display: flex;
  flex-direction: column;
  max-width: calc((100% - 90px) / 3);
  margin: 0px 15px 60px;
}

#news .post .post__img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

#news .post .post__img img {
  width: 100%;
}

#news .post .post__heading {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 42px;
  font-size: 24px;
  color: #545353;
  margin-top: 10px;
}

#news .post .post__description {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  font-size: 20px;
  color: #A8A8A8;
  margin-top: 10px;
}

#news .post .post__link {
  font-family: "Roboto", sans-serif;
  text-align: left;
  line-height: 31px;
  font-size: 22px;
  color: #58AFDA;
  margin-top: 15px;
}

/*__________________________Single post page____________________________*/
#single-post {
  width: 100%;
  max-width: 1420px;
  padding: 70px 20px 120px;
  margin: 0 auto;
}

#single-post .post__heading-block {
  margin: 0 auto 55px;
}

#single-post img {
  width: 100%;
}

#single-post .post__description {
  width: 100%;
  max-width: 1170px;
  margin: 40px auto 0;
}

#single-post .post__description h3 {
  font-family: "FuturaDemiC", sans-serif;
  font-weight: 600;
  line-height: 29px;
  font-size: 30px;
  letter-spacing: 0.02em;
  color: #545353;
  margin-top: 45px;
  margin-bottom: 35px;
}

#single-post .post__description p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 24px;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #545353;
  margin-bottom: 10px;
}

#single-post .post__description p a {
  color: #58AFDA;
}

#single-post .post__form {
  display: flex;
  width: 100%;
  max-width: 1170px;
  background: white;
  margin: 70px auto 0;
  box-shadow: 0px 0px 100px rgba(148, 148, 148, 0.2);
  padding: 40px;
}

#single-post .post__form p {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#single-post .post__form p input {
  outline: none;
  border: none;
}

#single-post .post__form p .review__main-content {
  width: 100%;
}

#single-post .post__form p .review__main-content .review__form-title {
  display: block;
  width: 100%;
  margin-bottom: 60px;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 34px;
  font-size: 35px;
  letter-spacing: 0.02em;
  color: #7C7B7B;
}

#single-post .post__form p .review__main-content input {
  width: 100%;
  height: 50px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 25px;
  letter-spacing: 0.02em;
  color: #7C7B7B;
  margin-bottom: 30px;
  border-bottom: 2px solid #B6B6B6;
}

#single-post .post__form p .review__main-content input:focus {
  border-bottom: 2px solid #58AFDA;
}

#single-post .post__form p .review__add-content {
  width: 100%;
  max-width: 890px;
  margin-left: 140px;
  height: 220px;
  align-self: flex-end;
  margin-bottom: 10px;
}

#single-post .post__form p .review__add-content textarea {
  height: 100%;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 25px;
  letter-spacing: 0.02em;
  padding: 20px;
  color: #919191;
  border: 2px solid #D0D0D0;
  resize: none;
}

#single-post .post__form p .button {
  margin-left: auto;
  margin-top: 30px;
}

/*_____________________________Contact__________________________________*/
.contact .contact__heading-block {
  width: 100%;
  max-width: 1420px;
  margin: 75px auto 0;
}

.contact .contact__content-wrapper {
  display: flex;
  width: 100%;
  max-width: 1420px;
  margin: 65px auto 30px;
}

.contact .contact__content-wrapper .contact__content .contact__info-block {
  height: 80px;
}

.contact .contact__content-wrapper .contact__content .contact__info-block .contact__title {
  font-family: "Roboto";
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #545353;
  margin-bottom: 10px;
}

.contact .contact__content-wrapper .contact__content .contact__info-block .contact__info {
  font-family: "Roboto";
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #545353;
}

.contact .contact__content-wrapper .contact__form {
  width: 100%;
  max-width: 500px;
  background: white;
  box-shadow: 0px 0px 100px rgba(148, 148, 148, 0.2);
  padding: 40px;
  margin: -150px auto 0 145px;
}

.contact .contact__content-wrapper .contact__form p {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact .contact__content-wrapper .contact__form p input {
  outline: none;
  border: none;
}

.contact .contact__content-wrapper .contact__form p .review__main-content {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.contact .contact__content-wrapper .contact__form p .review__main-content .review__form-title {
  display: block;
  width: 100%;
  max-width: 310px;
  margin-bottom: 60px;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 34px;
  font-size: 35px;
  letter-spacing: 0.02em;
  color: #7C7B7B;
}

.contact .contact__content-wrapper .contact__form p .review__main-content input {
  width: 100%;
  max-width: 310px;
  height: 50px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 25px;
  letter-spacing: 0.02em;
  color: #7C7B7B;
  margin-bottom: 30px;
  border-bottom: 2px solid #B6B6B6;
}

.contact .contact__content-wrapper .contact__form p .review__main-content input:focus {
  border-bottom: 2px solid #58AFDA;
}

.contact .contact__content-wrapper .contact__form p .review__add-content {
  width: 100%;
  max-width: 890px;
  margin-left: 140px;
  height: 220px;
  align-self: flex-end;
  margin-bottom: 10px;
}

.contact .contact__content-wrapper .contact__form p .review__add-content textarea {
  height: 100%;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 25px;
  letter-spacing: 0.02em;
  padding: 20px;
  color: #919191;
  border: 2px solid #D0D0D0;
  resize: none;
}

.contact .contact__content-wrapper .contact__form p .button {
  margin-left: auto;
  margin-top: 30px;
}

.contact .contact__map {
  width: 100%;
  height: 450px;
}

.contact .contact__map iframe {
  height: 100%;
  width: 100%;
}

/*_____________________________Thank____________________________________*/
.thank__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

.thank__wrapper .thank {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 810px;
}

.thank__wrapper .thank .thank__heading {
  font-family: "FuturaDemiC", sans-serif;
  font-style: italic;
  font-weight: 600;
  line-height: 96px;
  font-size: 90px;
  color: #58AFDA;
  margin-bottom: 75px;
}

.thank__wrapper .thank .thank__description {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 72px;
  font-size: 41px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 75px;
}

/*____________________________Reviews___________________________________*/
.reviews {
  width: 100%;
  max-width: 1420px;
  margin: 70px auto 130px;
}

.reviews .reviews__heading-block {
  margin-bottom: 35px;
}

.reviews .review {
  margin-bottom: 75px;
}

.reviews .review .review__title {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 42px;
  font-size: 24px;
  color: #545353;
  text-align: left;
  margin-bottom: 20px;
}

.reviews .review .review__tag {
  font-family: "Roboto", sans-serif;
  line-height: 28px;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #58AFDA;
}

.reviews .review .review__author, .reviews .review .review_data {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 23px;
  font-size: 16px;
  color: #A8A8A8;
}

.reviews .review .review__description {
  margin-top: 20px;
}

.reviews .review .review__description p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 28px;
  font-size: 20px;
  color: #545353;
}

.reviews .reviews__form {
  background: white;
  margin-top: 70px;
  box-shadow: 0px 0px 100px rgba(148, 148, 148, 0.2);
  padding: 40px;
  min-height: 500px;
}

.reviews .reviews__form p {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.reviews .reviews__form p input {
  outline: none;
  border: none;
}

.reviews .reviews__form p .review__main-content {
  width: 100%;
  max-width: 310px;
}

.reviews .reviews__form p .review__main-content .review__form-title {
  display: block;
  width: 100%;
  max-width: 310px;
  margin-bottom: 60px;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 34px;
  font-size: 35px;
  letter-spacing: 0.02em;
  color: #7C7B7B;
}

.reviews .reviews__form p .review__main-content input {
  width: 100%;
  max-width: 310px;
  height: 50px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 25px;
  letter-spacing: 0.02em;
  color: #7C7B7B;
  margin-bottom: 30px;
  border-bottom: 2px solid #B6B6B6;
}

.reviews .reviews__form p .review__main-content input:focus {
  border-bottom: 2px solid #58AFDA;
}

.reviews .reviews__form p .review__add-content {
  width: 100%;
  max-width: 890px;
  margin-left: 140px;
  height: 220px;
  align-self: flex-end;
  margin-bottom: 10px;
}

.reviews .reviews__form p .review__add-content textarea {
  height: 100%;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 25px;
  letter-spacing: 0.02em;
  padding: 20px;
  color: #919191;
  border: 2px solid #D0D0D0;
  resize: none;
}

.reviews .reviews__form p .button {
  margin-left: auto;
  margin-top: 30px;
}

.about {
  /*___________________________Welcome____________________________________*/
}

.about .welcome {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about .welcome .welcome__img {
  width: 100%;
}

.about .welcome .welcome__title {
  position: absolute;
  width: 100%;
  max-width: 750px;
  font-family: "FuturaDemiC", sans-serif;
  font-style: italic;
  font-weight: 600;
  line-height: 84px;
  font-size: 60px;
  text-align: center;
  color: #FFFFFF;
}

.about .interesting {
  width: 100%;
  max-width: 1400px;
  margin: 90px auto 0;
}

.about .interesting .interesting__title {
  display: flex;
  width: 100%;
  text-align: center;
  font-family: "FuturaDemiC", sans-serif;
  font-style: italic;
  font-weight: 600;
  line-height: 67px;
  font-size: 48px;
  color: #545353;
  margin-bottom: 90px;
}

.about .interesting .interesting__description {
  display: flex;
  justify-content: space-between;
}

.about .interesting .interesting__description p {
  width: calc((100% - 35px) / 2);
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 300;
  line-height: 23px;
  font-size: 18px;
  color: #545353;
}

.about .advantages {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 150px auto 0;
}

.about .advantages .advantage {
  display: flex;
  flex-direction: column;
  align-content: center;
  width: 100%;
  max-width: calc((100% - 90px) / 4);
}

.about .advantages .advantage .advantage__img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 122px;
  width: 122px;
  margin: 0 auto 35px;
}

.about .advantages .advantage .advantage__img img {
  width: 100%;
}

.about .advantages .advantage .advantage__title {
  font-family: "FuturaDemiC", sans-serif;
  font-weight: 600;
  line-height: 46px;
  font-size: 26px;
  text-align: center;
  color: #545353;
  margin-bottom: 30px;
}

.about .advantages .advantage .advantage__description {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 25px;
  font-size: 18px;
  text-align: center;
  color: #545353;
}

.about .about__steps-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #58AFDA;
  margin: 125px auto 0;
  width: 100%;
  height: 275px;
}

.about .about__steps-wrapper .steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
}

.about .about__steps-wrapper .steps .step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 290px;
}

.about .about__steps-wrapper .steps .step .step__number {
  font-family: "FuturaDemiC", sans-serif;
  font-weight: 600;
  line-height: 90px;
  font-size: 64px;
  color: #FFFFFF;
}

.about .about__steps-wrapper .steps .step .step__description {
  font-family: "Roboto", sans-serif;
  line-height: 31px;
  font-size: 22px;
  color: #FFFFFF;
  margin-left: 15px;
}

.about .photos {
  width: 100%;
  max-width: 1400px;
  margin: 100px auto 0;
}

.about .photos .photos__title {
  font-family: "FuturaDemiC", sans-serif;
  font-style: italic;
  font-weight: 600;
  line-height: 67px;
  font-size: 48px;
  text-align: center;
  color: #545353;
  margin-bottom: 90px;
}

.about .photos .photos__slider {
  display: flex;
  justify-content: space-between;
  width: 100%;
  overflow: hidden;
}

.about .photos .photos__slider .slick-list {
  width: calc(100% + 40px);
  margin: 0 -20px;
}

.about .photos .photos__slider .photos__slider-item {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 33%;
  overflow: hidden;
  padding: 0 20px;
}

.about .photos .photos__slider .photos__slider-item img {
  width: 100%;
}

/*_____________________________Footer___________________________________*/
#footer {
  width: 100%;
  background: #030A23;
}

#footer .footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 835px;
  margin: 0 auto;
  padding: 40px;
}

#footer .footer__content .menu-fnav-container, #footer .footer__content .menu-fnav-eng-container {
  width: 100%;
  height: 100%;
  margin: 50px auto 65px;
}

#footer .footer__content .menu-fnav-container .menu, #footer .footer__content .menu-fnav-eng-container .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

#footer .footer__content .menu-fnav-container .menu li, #footer .footer__content .menu-fnav-eng-container .menu li {
  list-style: none;
}

#footer .footer__content .menu-fnav-container .menu a, #footer .footer__content .menu-fnav-eng-container .menu a {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #FFFFFF;
  white-space: nowrap;
}

#footer .footer__content .menu-fnav-container .menu a:after, #footer .footer__content .menu-fnav-eng-container .menu a:after {
  display: block;
  content: "";
  background: white;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  max-width: 0;
  transition: 0.3s;
}

#footer .footer__content .menu-fnav-container .menu a:hover:after, #footer .footer__content .menu-fnav-eng-container .menu a:hover:after {
  max-width: 100px;
  transition: 0.3s;
}

#footer .footer__content .footer__social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100px;
  transform: scale(1);
  transition: 0.3s;
}

#footer .footer__content .footer__social .social__items:hover {
  transform: scale(1.3);
  transition: 0.3s;
}

#footer .footer__develop {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  
}
#footer .footer__copyright{
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

#footer .footer__develop p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #FFFFFF;
}

#footer .footer__develop img {
  transform: scale(1);
  transition: 0.3s;
}

#footer .footer__develop img:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

@media screen and (max-width: 1600px) {
  body .slick-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    border: 2px solid #58AFDA;
    background: transparent;
    z-index: 2;
  }
  body .slick-arrow:before {
    content: "" !important;
    display: flex;
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
    border: 2px solid #58AFDA;
  }
  body .slick-arrow:hover {
    background: #58AFDA;
  }
  body .slick-arrow:hover:before {
    border: 2px solid white;
  }
  body .slick-arrow.slick-prev {
    left: 20px;
  }
  body .slick-arrow.slick-prev:before {
    border-top: none;
    border-right: none;
    margin-left: 5px;
  }
  body .slick-arrow.slick-next {
    right: 20px;
  }
  body .slick-arrow.slick-next:before {
    border-bottom: none;
    border-left: none;
    margin-right: 5px;
  }
  /*________________________________Main___________________________________*/
  .slider-welcome .slick-dots {
    display: none !important;
  }
  .navigation {
    height: 175px;
  }
  .navigation .link {
    padding: 30px;
  }
  .media--category .media-slider--category .slide {
    max-height: 430px;
  }
  /*_______________________________About___________________________________*/
  .about .welcome .welcome__title {
    line-height: 1;
  }
  .about .interesting {
    margin: 75px auto 0;
    padding: 0 20px;
  }
  .about .interesting .interesting__title {
    margin-bottom: 75px;
  }
  .about .advantages {
    padding: 0 20px;
  }
  .about .about__steps-wrapper {
    padding: 0 20px;
  }
  .about .photos {
    margin: 75px auto 0;
    padding: 0 20px;
  }
  .about .photos .photos__title {
    margin-bottom: 75px;
  }
  .catalog {
    padding: 0 20px;
  }
  #single {
    padding: 0 20px;
  }
  #single .single__sidebar {
    max-width: 330px;
  }
  #single .single__main {
    max-width: calc(100% - 360px);
  }
  #single .single__main .slider__nav {
    width: calc(100% + 16px);
    margin: 20px -8px 0;
  }
  #single .single__main .slider__nav .mini-image {
    height: 80px;
    margin: 0 8px;
  }
}

@media screen and (max-width: 1480px) {
  .header .header__content {
    padding: 0 20px;
  }
  .header .header__bottom .menu-hnav-container .menu li, .header .header .header__bottom .menu-hnav-eng-container .menu li {
    padding: 0 15px;
  }
  /*________________________________Main___________________________________*/
  .slider-welcome .slide .slide__content-wrapper {
    margin-top: 40px;
  }
  .slider-welcome .slide .slide__content-wrapper .slide__content {
    padding: 10px 25px;
  }
  .slider-welcome .slide .slide__content-wrapper .slide__content .slide__preheading {
    font-size: 20px;
  }
  .slider-welcome .slide .slide__content-wrapper .slide__content .slide__heading {
    font-size: 80px;
  }
  .slider-welcome .slide .slide__content-wrapper .slide__content .slide__postheading {
    font-size: 20px;
  }
  .navigation {
    height: 125px;
    max-width: 900px;
  }
  .navigation .link {
    padding: 20px;
  }
  .navigation .link .link__title {
    height: 60px;
    font-size: 20px;
    font-weight: 400;
  }
  .media-header {
    padding: 0 20px;
  }
  .inform .inform__content {
    margin-left: 20px;
    padding: 0 20px;
  }
  .wallpaper .wallpaper__content {
    padding: 0 20px;
  }
  .blog-min .blog-min__slider {
    padding: 0 20px;
  }
  .catalog .catalog__content {
    max-width: calc(100% - 340px);
  }
  .catalog .sidebar {
    width: 300px;
  }
  .catalog .sidebar .category .category__item {
    height: 90px;
    max-width: calc((100% - 6px) / 2);
    margin-bottom: 15px;
  }
  .catalog .sidebar .social {
    height: fit-content;
    margin: 15px auto;
    padding: 10px;
  }
  .catalog .sidebar .social .social__heading {
    font-size: 18px;
    line-height: 1.2;
  }
  .catalog .sidebar .social .social__links {
    margin: 20px auto 0;
  }
  .catalog .sidebar .social .social__links .social__link {
    font-size: 12px;
  }
  .catalog .sidebar .instagram {
    width: calc(100% - 10px);
    padding: 20px 10px;
  }
  .catalog .sidebar .instagram .instagallery-items .ig-item {
    padding: 2px;
  }
  .catalog .sidebar .popular {
    padding: 20px 10px;
    margin: 20px auto 0;
  }
  .catalog .sidebar .popular .popular__heading {
    margin-bottom: 10px;
  }
  .catalog .sidebar .popular .popular-item {
    padding: 10px 0;
  }
  .catalog .sidebar .popular .popular-item .popular-item__content .popular-item__title {
    font-size: 16px;
  }
  #news {
    padding: 0 20px;
    justify-content: flex-start;
  }
  #news .news__heading-block {
    margin-bottom: 30px;
  }
  #news .post .post__img {
    height: fit-content;
  }
  .contact .contact__heading-block {
    padding: 0 20px;
  }
  .contact .contact__content-wrapper {
    padding: 0 20px;
  }
}

html body div.wprm-wrapper {
  overflow: initial !important;
}
@media screen and (max-width: 1366px) {
	.slider-welcome .slide .slide__content-wrapper{
		margin-left: 10px;
	}
	.navigation{
		height: 117px;
		max-width: 785px;
	}
	.navigation .link .link__title {
	    height: 71px;
	    font-size: 15px;
	    font-weight: 600;
	}
	.navigation .link .link__button{
		font-size: 15px;
	}
	.inform .inform__content .inform__description{
		font-size: 16px;
	}
	.button{
		font-size: 16px;
	}
	.wallpaper .wallpaper__content .wallpaper__description{
		font-size: 16px;
	}
	.reviews--main .review .review__description{
		font-size: 20px;
	}
	.blog-min .post .post__heading{
		font-size: 22px;
	}
	.blog-min .post .post__description{
		font-size: 16px;
	}
	.blog-min .post .post__link{
		font-size: 18px;

	}
	#single-post .post__form p .review__main-content .review__form-title{
		font-size: 30px;
	}
	#single-post .post__form p .review__main-content input{
		font-size:20px;
	}
	#news .post .post__heading{
		font-size: 22px;
	}
	#news .post .post__description{
		font-size: 16px;
	}
	#news .post .post__link{
		font-size: 16px;
	}
	#single-post .post__description p{
		font-size: 16px;
	}
	.reviews{
		padding: 0 20px;
	}
	.reviews .review .review__description p{
		font-size: 16px;

	}
	.reviews .reviews__form p .review__main-content input{
		font-size: 18px;
	}
}

@media screen and (max-width: 1200px) {
  .heading-block .heading-block__title {
    font-size: 36px;
    line-height: 1.2;
  }
  .media--category .media-slider--category .slide {
    max-height: 390px;
  }
  .inform img {
    max-width: 50%;
  }
  .about .advantages .advantage .advantage__title {
    line-height: 1;
    height: 45px;
    margin-bottom: 20px;
  }
  .catalog .catalog__content .popular__heading--global {
    font-size: 36px;
    line-height: 1.2;
  }
  .catalog .catalog__content .services .service .service__icon {
    max-width: 300px;
  }
  .catalog .catalog__content .services .service .service__content {
    width: 100%;
    max-width: calc(100% - 320px);
  }
  .catalog .catalog__content .services .service .service__content .service__pre-header {
    margin-bottom: 5px;
  }
  .catalog .catalog__content .services .service .service__content .service__excerpt {
    margin: 0;
  }
  .catalog .catalog__content .popular-small .service .service__title {
    width: 90%;
    height: 40px;
  }
}

@media screen and (max-width: 1080px) {
  .heading-block {
    height: 100px;
  }
  #wprmenu_bar, #mg-wprm-wrap {
    display: flex !important;
  }
  #wprmenu_bar #wprmenu_menu_ul, #mg-wprm-wrap #wprmenu_menu_ul {
    width: 100%;
	  overflow: scroll;
  }
  #wprmenu_bar .menu_title {
    height: fit-content;
    margin-left: 5px;
  }
  #menu-toolbar {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    background: #58afda;
    padding: 10px 16px;
    width: calc(100% - 135px);
    cursor: pointer;
    overflow: hidden;
    height: 42px;
    z-index: 100000;
  }
  #menu-toolbar .toolbar {
    display: flex;
    align-items: center;
  }
  #menu-toolbar .toolbar .button {
    cursor: pointer;
    font-size: 0;
    padding: 0px;
    min-width: 0;
    margin-right: 5px;
    width: 20px;
    border: none !important;
    background-image: url("https://turism-italia.com/wp-content/themes/italy/img/icons/profile.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  #menu-toolbar .toolbar .wpml-ls-legacy-list-horizontal {
    padding: 0;
  }
  #menu-toolbar .toolbar .wpml-ls-legacy-list-horizontal ul {
    display: flex;
    justify-content: space-between;
  }
  #menu-toolbar .toolbar .wpml-ls-legacy-list-horizontal li {
    display: flex;
    align-items: center;
  }
  #menu-toolbar .toolbar .wpml-ls-legacy-list-horizontal li a {
    padding: 0;
  }
  #menu-toolbar .toolbar .wpml-ls-legacy-list-horizontal li a span {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
  }
  #menu-toolbar .toolbar .wpml-ls-legacy-list-horizontal li a .wpml-ls-display {
    display: none;
  }
  #menu-toolbar .toolbar .wpml-ls-legacy-list-horizontal li.wpml-ls-current-language a span {
    font-weight: 500;
  }
  #menu-toolbar .toolbar .wpml-ls-legacy-list-horizontal li:first-child:after {
    content: " / ";
    font-size: 21px;
    margin: 0px 10px;
    color: white;
  }
  #menu-toolbar .toolbar .sidebar__search {
    display: none;
  }
  html body div.wprm-overlay {
    background: rgba(0, 0, 0, 0.3) !important;
  }
  .js body.wprmenu-body-fixed {
    position: static !important;
  }
  .slider-welcome .slide {
    overflow: hidden;
  }
  .slider-welcome .slide img {
    height: 100%;
    max-height: 500px;
    width: auto;
    min-width: 100%;
  }
  .media-header .media-header__heading b {
    font-size: 40px;
  }
  .inform .inform__content .inform__title {
    font-size: 40px;
  }
  .wallpaper .wallpaper__content .wallpaper__title {
    font-size: 40px;
  }
  .wallpaper .wallpaper__content .wallpaper__description {
    margin: 10px 0 20px;
  }
  .blog-min .post {
    padding: 0 5px;
  }
  .blog-min .post .post__img {
    height: fit-content;
  }
  .blog-min .post .post__heading {
    font-size: 20px;
  }
  .blog-min .post .post__description {
    font-size: 18px;
  }
  .about .interesting {
    margin: 35px auto 0;
  }
  .about .interesting .interesting__title {
    margin-bottom: 35px;
  }
  .about .advantages {
    margin: 100px auto 0;
  }
  .about .advantages .advantage .advantage__title {
    line-height: 1;
    height: 45px;
    margin-bottom: 20px;
  }
  .about .about__steps-wrapper {
    margin: 75px auto 0;
  }
  .about .about__steps-wrapper .steps .step .step__number {
    font-size: 45px;
    line-height: 1;
  }
  .about .about__steps-wrapper .steps .step .step__description {
    font-size: 18px;
  }
  .about .photos {
    margin: 35px auto 0;
  }
  .about .photos .photos__title {
    margin-bottom: 35px;
    line-height: 1;
  }
  .about .blog-min {
    margin: 75px auto 0;
  }
  .catalog .catalog__content .services .service .service__icon {
    max-width: 250px;
  }
  .catalog .catalog__content .services .service .service__content {
    max-width: calc(100% - 270px);
  }
  .catalog .catalog__content .services .service .service__content .service__pre-header {
    margin-bottom: 0px;
  }
  .catalog .catalog__content .services .service .service__content .service__title {
    font-size: 20px;
    line-height: 1.2;
  }
  .catalog .catalog__content .services .service .service__content .service__excerpt p {
    font-size: 16px;
    line-height: 1.2;
  }
  .catalog .catalog__content .popular__heading--global {
    margin: 20px 0 40px;
  }
  .catalog .catalog__content .popular-big .service .service__content {
    padding: 0 10px;
  }
  .catalog .catalog__content .popular-big .service .service__content .service__title {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .catalog .catalog__content .popular-big .service .service__content .service__excerpt {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .sidebarButton.active {
    right: 305px;
    opacity: 0.7;
    transition: 0.3s;
  }
	
  #single .single__main {
    max-width: 100%;
  }
  #single .single__main .single__slider-wrapper {
    max-width: 940px;
    margin: 0 auto;
  }
  #single .single__sidebar {
    height: calc(100vh - 42px);
    overflow-y: scroll;
    position: fixed;
    top: 42px;
    right: -350px;
    background: white;
    transition: 0.3s;
    z-index: 4;
    padding: 0 15px;
    border-left: 1px solid #c4cfdf;
  }
  #single .single__sidebar.active {
    right: 0;
    transition: 0.3s;
  }
  #single-post {
    padding: 50px 20px 90px;
  }
  #single-post .post__heading-block {
    margin: 0 auto 35px;
  }
  #news {
    padding: 0px 20px;
  }
  #news .post {
    max-width: calc((100% - 30px) / 3);
    margin: 0px 5px 30px;
  }
  #news .post .post__heading {
    font-size: 20px;
    line-height: 1.4;
  }
  #news .post .post__description p {
    font-size: 18px;
    line-height: 1.4;
  }
  #news .post .post__link {
    font-size: 19px;
  }
  .contact .contact__content-wrapper .contact__form {
    max-width: 450px;
  }
}

@media screen and (max-width: 900px) {
  .media-header .media-header__heading {
    font-size: 16px;
  }
  .media-header .media-header__heading b {
    font-size: 33px;
    line-height: 1;
  }
  .button {
    padding: 5px 20px;
    font-size: 16px;
  }
  .home .header .header__top .toolbar .button {
    padding: 5px 15px;
  }
  .slider-welcome .slide .slide__content-wrapper .slide__content .slide__heading {
    font-size: 70px;
    line-height: 1;
  }
  .navigation .link .link__title {
    font-size: 18px;
  }
  .navigation .link .link__button {
    font-size: 16px;
  }
  .media--category .media-slider--category .slide {
    max-height: 340px;
  }
  .media--city .grid {
    height: 100%;
    max-height: 400px;
    display: flex !important;
  }
  .media--city .grid .slick-track {
    height: 100%;
  }
  .media--city .grid .grid__item img {
    height: 100%;
  }
  .inform {
    margin: 50px auto;
  }
  .inform .inform__content .inform__description {
    margin: 0px 0 15px;
  }
  #footer .footer__content {
    padding: 20px;
  }
  #footer .footer__content .menu-fnav-container, #footer .footer__content .menu-fnav-eng-container {
    margin: 20px auto 30px;
  }
  .about .interesting .interesting__description {
    flex-wrap: wrap;
  }
  .about .interesting .interesting__description p {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  .about .advantages {
    flex-wrap: wrap;
  }
  .about .advantages .advantage {
    max-width: calc((100% - 40px) / 2);
  }
  .about .about__steps-wrapper .steps {
    flex-wrap: wrap;
  }
  .about .about__steps-wrapper .steps .step {
    max-width: calc((100% - 40px) / 2);
    justify-content: flex-start;
  }
  .catalog .catalog__content {
    max-width: 100%;
  }
  .catalog .catalog__content .services .service {
    max-width: 768px;
    margin: 0 auto;
  }
  .catalog .catalog__content .services .service .service__content .service__excerpt p {
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.2;
  }
  .catalog .sidebar {
    height: calc(100vh - 42px);
    overflow-y: scroll;
    position: fixed;
    top: 42px;
    right: -350px;
    background: white;
    transition: 0.3s;
    z-index: 4;
    padding: 0 15px;
    border-left: 1px solid #c4cfdf;
  }
  .catalog .sidebar.active {
    right: 0;
    transition: 0.3s;
  }
  #news .post {
    max-width: calc((100% - 20px) / 2);
  }
  .contact .contact__content-wrapper {
    margin: 30px auto;
    flex-direction: column;
  }
  .contact .contact__content-wrapper .contact__content .contact__info-block {
    height: fit-content;
    margin-bottom: 20px;
  }
  .contact .contact__content-wrapper .contact__content .contact__info-block .contact__title {
    margin-bottom: 5px;
  }
  .contact .contact__content-wrapper .contact__form {
    margin: 30px auto;
  }
  .sidebarButton{
  	display: flex;
  }
}

@media screen and (max-width: 768px) {
  .logo-block {
    font-size: 40px;
  }
  .header .header__top .toolbar .button {
    padding: 5px 10px;
    font-size: 14px;
    margin-right: 10px;
  }
  .header .header__top .toolbar .wpml-ls-legacy-list-horizontal li:first-child:after {
    margin: 0px 5px;
  }
  .header .header__top .toolbar .sidebar__search {
    display: none;
  }
  .media-header .media-header__heading b {
    font-size: 26px;
    margin-bottom: 5px;
  }
  .media--category .media-slider--category .slide {
    max-height: 290px;
  }
  .media--city {
    margin-top: 50px;
  }
  .inform {
    display: none;
  }
  .wallpaper {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 30px 0;
  }
  .wallpaper .wallpaper__content .wallpaper__title {
    font-size: 30px;
  }
  .wallpaper .wallpaper__content .wallpaper__description {
    line-height: 1.2;
  }
  .reviews--main {
    margin: 0;
  }
  .about .welcome .welcome__title {
    padding: 0 40px;
    font-size: 45px;
  }
  .about .interesting .interesting__title {
    font-size: 32px;
  }
  .about .advantages .advantage .advantage__title {
    font-size: 24px;
  }
  .about .photos .photos__title {
    font-size: 28px;
  }
  .about .photos .photos__slider .photos__slider-item {
    padding: 0 5px;
  }
  #single .single__description p, #single .single__description h3 {
    line-height: 1.3;
  }
  #single .single__description-add {
    width: 100%;
    margin: 30px 0 0;
  }
  #single .single__description-add h3 {
    margin-bottom: 5px;
    line-height: 1.3;
  }
  #single .single__description-add p {
    margin: 15px 0 0;
    line-height: 1.3;
  }
  .reviews--main .review .review__description{
  	font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .heading-block {
    height: 90px;
  }
  .slide__preheading, .slide__postheading {
    font-size: 16px;
  }
  .slide__preheading p, .slide__postheading p {
    font-size: 18px;
  }
  .slider-welcome .slide {
    justify-content: center;
  }
  .slider-welcome .slide .slide__content-wrapper {
    margin-top: 0;
  }
  .slider-welcome .slide .slide__content-wrapper .slide__content .slide__preheading, .slider-welcome .slide .slide__content-wrapper .slide__content .slide__postheading {
    font-size: 18px;
  }
  .slider-welcome .slide .slide__content-wrapper .slide__content .slide__heading {
    font-size: 46px;
  }
  .slider-welcome .slide .slide__content-wrapper .slide__video-run {
    position: absolute;
    z-index: 2;
    left: calc(50% - 30px);
    top: -60%;
  }
  .navigation {
    display: none;
  }
  .media--category {
    margin-top: 0px;
  }
  .wallpaper img {
    height: 100%;
    max-height: 350px;
    width: auto;
  }
  .reviews--main .review .review__img {
    max-width: 150px;
    margin: 0 auto 30px;
  }
  .reviews--main .review .review__subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .reviews--main .review .review__description {
    font-size: 18px;
    line-height: 1.2;
  }
  #footer .footer__content .menu-fnav-container .menu, #footer .footer__content .menu-fnav-eng-container .menu {
    flex-wrap: wrap;
  }
  #footer .footer__content .menu-fnav-container .menu li, #footer .footer__content .menu-fnav-eng-container .menu li {
    width: 25%;
  }
  #footer .footer__content .menu-fnav-container .menu li a, #footer .footer__content .menu-fnav-eng-container .menu li a {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }
  .about .welcome .welcome__img {
    max-height: 300px;
    height: 100%;
    width: auto;
  }
  .about .welcome .welcome__title {
    padding: 0px 30px;
    font-size: 40px;
  }
  .about .advantages .advantage .advantage__img {
    margin: 0 auto 10px;
  }
  .about .advantages .advantage .advantage__img img {
    width: 75%;
  }
  .about .advantages .advantage .advantage__title {
    margin-bottom: 0;
  }
  .about .about__steps-wrapper .steps .step {
    max-width: 100%;
    align-items: flex-end;
  }
  .about .interesting .interesting__title {
    margin-bottom: 25px;
    line-height: 1;
  }
  .catalog {
    margin: 0;
  }
  .catalog .catalog__content .services .service {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  .catalog .catalog__content .services .service .service__icon {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .catalog .catalog__content .services .service .service__content {
    max-width: 100%;
  }
  .catalog .catalog__content .services .service .popular__heading--global {
    font-size: 24px;
  }
  .catalog .catalog__content .popular__heading--global span {
    font-size: 24px;
  }
  .catalog .catalog__content .popular-small .service .service__icon img {
    opacity: 0.8;
  }
  .catalog .catalog__content .popular-big {
    display: none;
  }
  .catalog .alm-btn-wrap {
    padding: 0;
  }
  #single-post {
    overflow: hidden;
  }
  #single-post .post__img {
    object-fit: cover;
    height: 300px;
  }
  #single-post .post__description {
    margin: 20px auto 0;
  }
  #single-post .post__description p {
    font-size: 16px;
    line-height: 1.4;
  }
  #single-post .post__description h3 {
    font-size: 20px;
    line-height: 1.2;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  #single-post .post__form {
    width: calc(100% + 40px);
    margin: 20px -20px 0;
    padding: 30px;
  }
  #single-post .post__form p .review__main-content .review__form-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  #single-post .post__form p .review__main-content input {
    height: 40px;
    font-size: 21px;
    margin-bottom: 15px;
    width: 100%;
  }
  #single-post .post__form .form-check {
    font-size: 14px;
  }
  #single-post .post__form .form-check a {
    font-size: 14px;
  }
  #news .post .post__heading {
    height: 20px;
    font-size: 18px;
    line-height: 1.4;
    overflow: hidden;
  }
  #news .post .post__description p {
    font-size: 16px;
  }
  #news .post .post__link {
    font-size: 16px;
  }
  .contact .contact__heading-block {
    margin: 40px auto 0;
  }
  .thank__wrapper .thank .thank__heading {
    font-size: 60px;
    margin-bottom: 45px;
  }
  .thank__wrapper .thank .thank__description {
    font-size: 30px;
    line-height: 1.5;
    margin-bottom: 45px;
  }
}

@media screen and (max-width: 468px) {
  .about .advantages .advantage {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .about .advantages .advantage .advantage__title {
    height: fit-content;
  }
  .media-header .media-header__heading {
    font-size: 15px;
  }
  .media-header .media-header__heading b {
    font-size: 22px;
  }
  #news .post {
    max-width: 100%;
  }
  .contact .contact__content-wrapper .contact__form {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }

  .media--city {
	display: none !important;
  }
  #footer .footer__content .menu-fnav-container .menu li a, #footer .footer__content .menu-fnav-eng-container .menu li a{
	font-size: 16px;
  }
}