@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

/*--------------------*/
.spinner {
  animation: rotate 2s linear infinite;
  z-index: 2;
  margin: 15px auto;
  width: 50px;
  height: 50px;
}

.spinner .path {
  stroke: #8daf6a;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

* {
  line-height: 1.5;
}

html {
  scroll-behavior: smooth;
}

img {
  position: relative !important;
  left: 0 !important;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #353535;
  overflow-x: hidden;
}

.page {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  scroll-behavior: smooth;
}

.scroll-form {
  position: fixed;
  background-color: #8daf6a;
  bottom: 0;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: underline;
  font-size: 15px;
  font-weight: 400;
  display: flex;
  transform: translateY(50px);
  transition: .5s ease;
  z-index: 100;
}

.scroll-form.active {
  transform: translateY(0);
}

.scroll-top {
  position: fixed;
  background-color: #52772ca2;
  bottom: 10px;
  right: 20px;
  font-size: 12px;
  color: #fff;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  opacity: 0;
  transition: .5s ease;
  z-index: 101;
  border-radius: 8px;
}

.scroll-top.active {
  opacity: 1;
}

@media (max-width: 767px) {
  .scroll-top {
    right: 5px;
  }
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  scroll-behavior: smooth;
  
  height: 100%;
  width: 100%;
  flex: 1 1 auto;
}

img {
  max-width: 100%;
}

.btn-outline {
  padding: 10px 16px;
  color: #fff;
  font-weight: 300;
  border: #fff 1px solid;
  border-radius: 8px;
  display: inline-block;
}

.btn-primary {
  padding: 10px 16px;
  color: #fff;
  font-weight: 300;
  border: #fff 1px solid;
  border-radius: 8px;
  display: inline-block;
  background: #8daf6a;
}

.first-section {
  position: relative;
  color: #fff;
}

.first-section-background {
  position: absolute !important;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.first-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.page-title {
  font-weight: 600 !important;
  font-size: 34px !important;
  line-height: 1.5 !important;
  text-align: center;
}

.first-section-container {
  position: relative;
  z-index: 2;

  min-height: 60vh;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.main-page-first-section-container {
  min-height: 77vh;
}

.first-section-gag {
  height: 95px;
}

.header-logo img {
  max-height: 80px;
  max-width: 100%;
}

@media (max-width: 991px) {
  .page-title {
    font-size: 24px !important;
  }

  .first-section-gag {
    height: 65px;
  }
}

.adnvatages {
  margin-top: 50px;
  margin-bottom: 80px;
}

.adnvatages-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.adnvatages-row-item {
  width: 23%;
  text-align: center;
}

.adnvatages-row-item-image img {
  width: 45px;
  height: 45px;
}

.adnvatages-row-item-title {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}

.adnvatages-row-item-subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .adnvatages {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .adnvatages-row-item {
    margin-top: 40px;
    width: 100%;
  }
  .adnvatages-row-item-subtitle {
    display: none;
  }
}

.types {
  padding: 30px 0;
  background: #f7f8f8;
}

.types-title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
}

.types-wrapper {
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.types-wrapper-item {
  position: relative;
  display: block;
  height: 220px;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
}

.types-wrapper-item::after {
  content: '';
  position: absolute;
  border-radius: 8px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  opacity: .35;
  z-index: 5;
}

.types-wrapper-item_title {
  position: absolute;
  z-index: 10;
  font-weight: 500;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  text-align: center;
  margin: 20px auto;
  font-size: 20px;
}

.types-button {
  display: flex;
  justify-content: center;
}

.types-button .btn-primary {
  margin: 10px auto;
}

@media (max-width: 991px) {
  .types-wrapper {
    grid-template-columns: 1fr;
  }
  .types-wrapper-item {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .types-wrapper {
    grid-template-columns: 1fr;
  }
}

.regions {
  padding: 30px 0;
  background: #f7f8f8;
}

.regions-title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
}

.regions-wrapper {
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 12px;
}

.regions-wrapper-item {
  position: relative;
  display: block;
  min-height: 160px;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
}

.regions-wrapper-item::after {
  content: '';
  position: absolute;
  border-radius: 8px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  opacity: .35;
  z-index: 5;
}

.regions-wrapper-item-title {
  position: absolute;
  z-index: 10;
  font-weight: 500;
  bottom: 0;
  left: 15px;
  display: inline-block;
  width: 90%;
  margin: 20px auto;
  font-size: 15px;
}

.regions-wrapper-item_title {
  position: absolute;
  z-index: 10;
  font-weight: 500;
  bottom: 0;
  left: 15px;
  right: 0;
  display: inline-block;
  width: 90%;
  margin: 20px 0;
  margin-right: auto;
  font-size: 15px;
}

.regions-button {
  display: flex;
  justify-content: center;
}

.regions-button .btn-primary {
  margin: 10px auto;
}

@media (max-width: 991px) {
  .regions-wrapper {
    grid-template-columns: 1fr;
  }
  .regions-wrapper-item {
    height: 180px;
  }
}

@media (max-width: 767px) {
  .regions-wrapper {
    grid-template-columns: 1fr;
  }
  .regions-wrapper-item {
    height: 180px;
  }
}

.support {
  padding: 30px 0;
  background: #f7f8f8;
}

.support-wrap {
  display: flex;
  justify-content: center;
}

.support-wrap-item {
  text-align: center;
  width: 45%;
  margin: 10px;
}

.support-wrap-item-title {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 20px;
}

.support-wrap-item-content {
  line-height: 1.7em;
}

.support-wrap-item:last-child {
  border-left: 1px #353535 dashed;
  padding-left: 10px;
}

@media (max-width: 767px) {
  .support {
    padding: 0px 0;
  }
  .support-wrap {
    flex-direction: column;
  }
  .support-wrap-item {
    margin: 0;
    margin-top: 25px;
    width: 100%;
  }
  .support-wrap-item:last-child {
    border-left: none;
    padding-left: 0;
  }
}

.weekend-hikes {
  padding: 30px 0;
  background: #f7f8f8;
}

.weekend-hikes-title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
}

.weekend-hikes-subtitle {
  font-size: 16px;
  text-align: center;
  margin-top: 15px;
}

.weekend-hikes-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}

.weekend-hikes-wrapper-item {
  position: relative;
  display: block;
  height: 450px;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
}

.weekend-hikes-wrapper-item::after {
  content: '';
  position: absolute;
  border-radius: 8px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), #000);
  opacity: .35;
  z-index: 5;
}

.weekend-hikes-wrapper-item-title {
  position: absolute;
  z-index: 10;
  font-weight: 500;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  text-align: center;
  margin: 20px auto;
}

@media (max-width: 767px) {
  .weekend-hikes-wrapper {
    flex-direction: column;
  }
  .weekend-hikes-wrapper-item {
    width: 100%;
    margin: 15px 0;
  }
}

.reviews {
  padding: 40px;
}

.reviews-title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
}

.reviews-wrapper {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.reviews-wrapper_item {
  margin: 25px;
}

.reviews-wrapper_item-img {
  overflow: hidden;
  width: 181px;
  height: 181px;
  margin: 0px auto 30px;
  background: #fff;
  border: 2px solid #769f1e;
  border-radius: 150px;
}

.reviews-wrapper_item-img img {
  min-width: 200px;
  min-height: 200px;
  width: auto;
  height: auto;
}

.reviews-wrapper_item-comment {
  font-size: 14px;
  line-height: 1.65em;
  text-align: center;
}

.reviews-wrapper_item-place {
  display: block;
  text-align: center;
  color: #8daf6a;
  margin-top: 20px;
  font-weight: 500;
}

.instructors {
  padding: 20px 0;
}

.instructors-title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .instructors-title {
    margin-bottom: 30px;
  }
}

.footer {
  background: #353535;
  padding: 20px 0;
  color: #fff;
  margin-top: auto;
  font-size: 14px;
  font-weight: 400;
}

.core-information {
  margin-top: 50px;
}

.core-information-title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #353535;
  width: 70%;
  margin: 0 auto;
  line-height: 1.6em;
  margin-bottom: 25px;
}

.core-information-description {
  color: #353535;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
}

.core-information-wrap {
  margin: 60px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.core-information-wrap-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  margin-top: 50px;
}

.core-information-wrap-item-text {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3em;
}

.core-information-wrap-item-text a {
  margin-top: 3px;
  color: #353535;
  text-decoration: underline;
}

.core-information-wrap-item-subtext {
  margin-top: 15px;
}

.core-information-about-cost {
  margin-top: 40px;
}

.core-information-about-cost-title {
  font-weight: 600;
  font-weight: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}

.core-information-about-cost-wrap li {
  list-style-type: circle;
  list-style: outside;
  font-size: 16px;
  margin: 8px 30px;
}

@media (max-width: 767px) {
  .core-information-title {
    width: 100%;
  }
  .core-information-wrap {
    margin: 20px 0;
  }
  .core-information-wrap-item {
    margin-top: 20px;
    width: 100%;
  }
  .core-information-wrap-item-title {
    width: 100%;
  }
  .core-information-wrap-item-text {
    margin: 0;
  }
}

.test-section {
  margin: 40px 0;
  padding: 150px 0;
  color: #fff;
  position: relative;
  /*min-height: 460px;*/
}

.test-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), #000);
  opacity: .45;
  z-index: 5;
}

.test-section .absolute-container {
  position: absolute;
  z-index: 15;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  max-width: 1300px;
  padding: 0 20px;
}

.test-section-title {
  margin: 0 auto;
  width: 80%;
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  font-size: 34px;
  line-height: 50px;
}

.test-section-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.test-section-button a {
  border: #e8ebf2;
}

@media (max-width: 767px) {
  .test-section {
    min-height: 360px;
    padding: 60px 0;
  }
  .test-section-title {
    font-size: 24px;
    width: 100%;
  }
  .test-section-button {
    margin-top: 20px;
  }
}

.video-review {
  margin-top: 50px;
}

.video-review-wrapper {
  width: 70%;
  margin: 0 auto;
}

.video-review-title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
}

.video-review-content {
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
  padding: 0 0 56.25% 0;
  height: 0;
  overflow: hidden;
}

.video-review-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .video-review-wrapper {
    width: 100%;
  }
}

.review {
  padding: 20px 0;
}

.review-title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .review-title {
    margin-bottom: 30px;
  }
}

.tour-program {
  background: #f7f8f8;
  padding: 35px 0;
  margin-top: 50px;
}

.title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.tour-program-title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
}

.tour-program-wrapper-day {
  margin: 60px 0;
}

.tour-program-wrapper-day-date {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 16px;
  color: #6c6c6c;
}

.tour-program-wrapper-day-title {
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: 600;
}

.tour-program-wrapper-day-text {
  line-height: 1.7em;
  margin-bottom: 40px;
}

.tour-program-wrapper-day-text strong {
  font-weight: 600;
  color: #000;
}

.tour-program-wrapper-day-text ol, .tour-program-wrapper-day-text ul {
  margin: 5px 0;
  padding-left: 30px;
}

.callback {
  margin-top: 50px;
}

.callback-title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
}

.callback-subtitle {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}

.callback-form {
  width: 60%;
  margin: 40px auto;
  background-color: #e8ebf2;
  border: 1px solid #8a879b;
  padding: 20px;
  border-radius: 8px;
}

.callback-form-tour-name {
  text-align: center;
  margin: 20px auto;
  font-size: 20px;
  font-weight: 500;
  color: #696870;
}

.callback-form-inputs {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.callback-form-inputs input {
  border: 1px solid #8a879b;
  padding: 13px 8px;
  width: 90%;
  margin: 10px auto;
  border-radius: 8px;
}

.callback-form-spinner {
  display: none;
  justify-content: center;
  align-items: center;
}

.callback-form-validation-messages {
  width: 90%;
  margin: 0 auto;
  margin-top: 40px;
  display: none;
}

.callback-form-responses {
  margin: 30px auto;
  text-align: center;
  line-height: 1.7em;
}

.callback-form-responses_good {
  display: none;
}

.callback-form-responses_bad {
  display: none;
}

.callback-form-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.callback-form-additional {
  line-height: 1.6em;
  text-align: center;
  margin: 10px auto;
}

@media (max-width: 767px) {
  .callback-form {
    width: 100%;
  }
  .callback-form-inputs {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .callback-form-inputs input {
    border: 1px solid #8a879b;
    padding: 13px 8px;
    width: 90%;
    margin: 10px auto;
  }
}

.tours {
  padding: 32px 0;
}

.tours-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  margin-bottom: 32px;
}

.tours-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px 20px;
}

.tours-wrapper_item {
  display: block;
  border-radius: 50%;
  /*margin: 20px 10px;*/
}

.tours-wrapper_item-title {
  font-size: 18px;
  font-weight: 500;
  padding: 20px 0 20px 10px;
  color: #353535;
}

.tours-wrapper_item-tizer {
  width: 100%;
  min-height: 250px;
  position: relative;
  border-radius: 8px;
}

.tours-wrapper_item-tizer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .35;
  z-index: 5;
  border-radius: 8px;
}

.tours-wrapper_item-tizer-date {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 10;
  color: #fff;
  border-radius: 10px;
  background-color: #8daf6a;
  padding: 8px 12px;
  font-weight: 400;
}

.tours-wrapper_item-tizer-cost {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 10;
  color: #fff;
  border-radius: 10px;
  background-color: #e77639;
  padding: 8px 12px;
  font-weight: 400;
  font-size: 16px;
}

@media (max-width: 767px) {
  .tours-wrapper {
    grid-template-columns: 1fr;
  }
}

.instructor-information {
  padding: 50px 0;
}

.instructor-information-title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  margin-bottom: 60px;
}

.instructor-information-wrapper {
  display: flex;
}

.instructor-information-wrapper-avatar {
  width: 20%;
}

.instructor-information-wrapper-avatar img {
  max-width: 100%;
  border-radius: 8px;
}

.instructor-information-wrapper-stats {
  width: 80%;
  margin-left: 50px;
}

.instructor-information-wrapper-stats-item {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7em;
}

.instructor-information-wrapper-stats-item.insturctor_about_yourself {
  display: block;
}

.instructor-information-wrapper-stats-item i {
  font-size: 25px;
  color: #6c6c6c;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .instructor-information {
    padding: 20px 0;
  }
  .instructor-information-title {
    margin: 20px 0;
  }
  .instructor-information-wrapper {
    flex-direction: column;
  }
  .instructor-information-wrapper-avatar {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 15px 0;
  }
  .instructor-information-wrapper-avatar img {
    max-width: 85%;
  }
  .instructor-information-wrapper-stats {
    width: 100%;
    margin: 0;
  }
}

.instructor-tour {
  padding: 40px 0;
}

.instructor-tour-title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.instructor-tour-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.instructor-tour-wrapper_item {
  display: block;
  border-radius: 50%;
  margin: 20px 10px;
}

.instructor-tour-wrapper_item-title {
  font-size: 18px;
  font-weight: 500;
  padding: 20px 0 20px 10px;
  color: #353535;
}

.instructor-tour-wrapper_item-tizer {
  width: 100%;
  min-height: 200px;
  position: relative;
  border-radius: 8px;
}

.instructor-tour-wrapper_item-tizer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .35;
  z-index: 5;
  border-radius: 8px;
}

.instructor-tour-wrapper_item-tizer-date {
  position: absolute;
  left: 10px;
  bottom: 20px;
  z-index: 10;
  color: #fff;
  border-radius: 10px;
  background-color: #8daf6a;
  padding: 8px 12px;
  font-weight: 400;
}

.instructor-tour-wrapper_item-tizer-cost {
  position: absolute;
  right: 10px;
  bottom: 20px;
  z-index: 10;
  color: #fff;
  border-radius: 10px;
  background-color: #e77639;
  padding: 8px 12px;
  font-weight: 400;
}

@media (max-width: 991px) {
  .instructor-tour-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .instructor-tour {
    padding: 20px 0;
  }
  .instructor-tour-wrapper {
    grid-template-columns: 1fr;
  }
}

.not-found {
  padding: 50px 0;
}

.not-found-title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  font-size: 40px;
}

.not-found-description {
  margin: 25px auto;
  text-align: center;
  line-height: 1.7em;
  font-size: 14px;
  font-weight: 400;
}

.all-types {
  padding: 32px 0;
}

.all-types-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  margin-bottom: 32px;
}

.all-types-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px 12px;
}

.all-types-wrapper-item {
  position: relative;
  display: block;
  min-height: 200px;
  border-radius: 5px;
  color: #fff;
  font-size: 20px;
}

.all-types-wrapper-item::after {
  content: '';
  position: absolute;
  border-radius: 5px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  opacity: .35;
  z-index: 5;
}

.all-types-wrapper-item-title {
  position: absolute;
  z-index: 10;
  font-weight: 500;
  bottom: 0;
  left: 15px;
  display: inline-block;
  width: 90%;
  margin: 20px auto;
  font-size: 15px;
}

@media (max-width: 991px) {
  .all-types-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .all-types-wrapper {
    grid-template-columns: 1fr;
  }
}

.about-us {
  padding: 50px 0;
}

.about-us_title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.about-us_content {
  line-height: 1.8em;
}

.slider-container {
  margin: 40px auto;
  position:relative;
}

.slider-container .swiper-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-container .swiper-container .swiper-wrapper .swiper-slide {
  margin: 0 auto;
  text-align: center;
}

.slider-container .swiper-container .swiper-wrapper .swiper-slide-image-card {
  min-height: 320px;
  background-size: cover;
}

.slider-container .swiper-container .swiper-wrapper .swiper-slide-review-image-card {
  min-height: 320px;
  background-size: cover;
}

.slider-container .swiper-container .swiper-wrapper .swiper-slide .fill-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.slider-container .swiper-container .swiper-wrapper .swiper-slide .slider_inctructor-img {
  overflow: hidden;
  width: 200px;
  height: 200px;
  margin: 0px auto 10px;
  background: #fff;
  border-radius: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-container .swiper-container .swiper-wrapper .swiper-slide .slider_inctructor-img img {
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

.slider-container .swiper-container .swiper-wrapper .swiper-slide .slider_inctructor-item-title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  font-size: 18px;
}

.slider-container .swiper-container .swiper-wrapper .swiper-slide .slider_inctructor-description {
  margin-top: 10px;
  line-height: 1.7em;
  text-align: center;
}

.slider-container .swiper-container .swiper-wrapper .swiper-slide .slider_instructor-btn {
  display: block;
  width: 230px;
  text-align: center;
  margin: 18px auto;
}

@media (max-width: 767px) {
  .slider-container .swiper-container .swiper-wrapper .swiper-slide-review-image-card {
    min-height: 300px;
    background-size: cover;
  }
}

.slider-wrapper{
  position: relative;
  
}
.swiper-button-prev,
.swiper-button-next {
  /*position: absolute !important;*/
  /*top: 0 !important;*/
  background-color: #8daf6a !important;
  color: #fff !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-navigation-icon {
  display: none;
}

#views-wrapper {
  cursor: pointer;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 150;
  justify-content: center;
  align-items: center;
  display: none;
}

#views-wrapper .views-container {
  position: relative;
  transition: 0.4s;
}

#views-wrapper .views-container.active {
  height: 100%;
  width: 100%;
}

#views-wrapper .views-container.deactive {
  height: 50%;
  width: 50%;
}

#views-wrapper #views-close {
  cursor: pointer;
  position: absolute;
  color: white;
  z-index: 20;
  right: 11px;
  top: 11px;
}

#views-wrapper #views-close i {
  font-size: 20px;
}

#views-wrapper .views-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#views-wrapper .views-image {
  max-height: 90%;
  border-radius: 8px;
}

.image-view {
  cursor: pointer;
  border-radius: 8px;
}

.take_with_you {
  padding: 35px 0;
  margin-top: 20px;
}

.take_with_you-title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  margin-bottom: 60px;
}

.take_with_you-wrapper strong {
  font-weight: 600;
  color: #000;
}

.take_with_you-wrapper ol, .take_with_you-wrapper ul {
  margin: 5px 0;
  padding-left: 30px;
}
/*# sourceMappingURL=main.css.map */


/* dropdown menu */

.header-sidebar {
  font-size: 16px;
  font-weight: 500;
}

.menu {
  background: #8daf6a;
  border-radius: 32px;
}

.menu > li {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  /*background: #4caf50;*/
  color: white;
  cursor: pointer;
}

.menu > li:hover {
  /*background: #388e3c;*/
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #66bb6a;
  white-space: nowrap;
}

.menu li:hover > .submenu {
  display: block;
}

.submenu li {
  position: relative;
  padding: 10px 20px;
  background: #66bb6a;
  color: white;
}

.submenu li:hover {
  background: #43a047;
}

/* Подменю для вложенного уровня */
.submenu li:hover > .submenu {
  display: block;
  top: 0;
  left: 100%;
}

.header-sidebar {
  background:  #8daf6a;
  display: flex;
  border-radius: 100px;
}

.header-sidebar-item { 
  position: relative;
  cursor: pointer;
}

.header-sidebar-item a {
  color: #fff;
  padding: 16px 16px;
  display: inline-block;
}

.header-sidebar-item:hover a {
  background: #a6c18b;
}

.header-sidebar-item:first-child  a{
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.header-sidebar-item:last-child  a{
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.header-sidebar-body {
  position: absolute;
  top: calc(100% + 5px);
  left: -8px;
  background: white;
  color: black;
  padding: 8px;
  display: none !important;
}

.sidebar-regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.country-regions {
  font-size: 14px;
  font-weight: normal;
}

.empty-description {
  width: 100%;
  text-align: center;
  font-weight: 400;
  padding: 8px;
  color: gray;
}

.swiper-button-next {
  position: absolute !important;
  right: -15px !important;
}

.swiper-button-prev {
  position: absolute !important;
  left: -15px !important;
}