@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

sup {
  vertical-align: text-bottom;
}

sub {
  vertical-align: sub;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  font-size: 16px;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

button {
  outline: none;
  cursor: pointer;
  border: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

input,
select,
textarea,
button {
  border: none;
  outline: none;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=sibmit] {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

svg {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-start-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-start-around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-stretch-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.mr-auto,
.my-auto {
  margin-right: auto;
}

.ml-auto,
.my-auto {
  margin-left: auto;
}

.mob {
  visibility: hidden;
  position: absolute;
  right: 0;
}

.pos-r {
  position: relative;
}

.overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  z-index: 999;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (max-width: 768px) {
  .mob {
    visibility: visible;
    position: relative;
  }
  .desk {
    display: none !important;
  }
}
:root {
  --main-bg: #e5e5e5;
  --main-text: #000000;
  --main-white: #ffffff;
  --main-blue: #1a47b8;
  --main-yellow: rgba(245, 206, 62, 1);
  --main-border: #bdbdbd;
  --color-grey: #EAEAEA;
}

body,
html {
  scroll-behavior: smooth;
}

strong {
  font-weight: 700;
}

h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
}

h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 32px;
  line-height: 40px;
}

h3 {
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
}

h4 {
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
}

h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

a,
p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.page_404 {
  margin: 100px auto;
  height: 38vh;
}

.text-default {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.text-small {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}

nav a,
.nav_blue_color {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
}

section {
  margin: 0 auto;
}

.nav_blue_color {
  color: var(--main-blue);
}

nav a:hover,
.nav_blue_color:hover {
  color: var(--main-yellow);
}

body {
  background-color: var(--main-white);
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1230px;
}

.full_screen {
  max-width: unset;
}

.btn {
  height: 48px;
  width: 149px;
  font-weight: 700;
}

.btn-yellow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  background: var(--main-yellow);
  color: var(--main-text);
}

.btn-yellow:hover {
  background-color: var(--main-white);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-yellow-2:hover {
  background-color: var(--main-blue);
  color: var(--main-white);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-transparent {
  background-color: transparent;
  color: var(--main-white);
  fill: var(--main-white);
}

.btn-transparent:hover {
  background-color: var(--main-white);
  color: var(--main-text);
  border-color: var(--main-yellow);
}

.btn-transparent:hover svg path {
  fill: var(--main-text) !important;
}

.default_page {
  padding: 70px 15px;
}

.default_page * {
  margin-bottom: 8px;
}

.default_page ul {
  list-style: disc;
  list-style-position: inside;
}

.default_page ol {
  list-style: decimal;
  list-style-position: inside;
}

/*//////////////////////////////////HEADER////////////////////////////////*/
.header_wrapper {
  padding: 0 15px;
  min-height: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
  max-width: 1228px;
  margin: auto;
}

.header .header__logo {
  margin-left: 0;
  padding-top: 9px;
}

.header .header__menu {
  margin-left: auto;
}

.header .header__menu a {
  margin-right: 32px;
}

.header .header__menu a:hover {
  color: var(--main-blue);
}

/*//////////////////////////////////HEADER////////////////////////////////*/
/*//////////////////////////////MAIN BANNER///////////////////////////////*/
.main_banner_wrapper {
  height: 100%;
  min-height: 656px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  cursor: pointer;
}

.main_banner_image {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url(../images/main_banner.png) no-repeat center center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main_banner_content {
  width: 100%;
}

.main_banner_content_left {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 50px 50px 50px 15px;
}

.main_banner_content_left .play_wrapper {
  max-width: 550px;
  width: 100%;
}

.main_banner_content_left .play_wrapper .play_text {
  margin-left: 24px;
  color: var(--main-white);
}

.main_banner_content_left .play_wrapper .play_text h2 {
  margin-top: 2px;
  line-height: 38px;
}

.main_banner_content_right {
  width: 50%;
  margin-left: 20px;
  padding: 24px 32px 56px;
  background-color: var(--main-blue);
  cursor: auto;
}

.main_banner_content_right p {
  color: var(--main-yellow);
  font-weight: 700;
  line-height: 24px;
}

.main_banner_content_right h1 {
  max-width: 400px;
  margin-bottom: 8px;
  color: var(--main-white);
}

.main_banner_content_right h2 {
  color: var(--main-white);
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  max-width: 520px;
}

/*//////////////////////////////MAIN BANNER///////////////////////////////*/
/*//////////////////////////////SECTION TEXT///////////////////////////////*/
.text_section {
  margin: 81px auto 62px;
  position: relative;
  padding: 17px 0;
}

body.single-tour-sticky-block .text_section {
  padding-top: 24px;
}

.text_section:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  top: -1px;
  background-color: var(--main-text);
}

.options_text_section {
  margin: 20px auto 2px;
  position: relative;
  padding: 35px 15px;
}

.options_text_section:before {
  content: "";
  position: absolute;
  /* height: 1px; */
  width: calc(100% - 30px);
  left: 15px;
  top: -1px;
  background-color: var(--main-text);
}

.text_section .text_section_title,
.options_text_section .text_section_title {
  width: 49.2%;
  padding-right: 20px;
}

.text_section .text_section_content,
.options_text_section .text_section_content {
  width: 50%;
  position: relative;
  padding-left: 19px;
}

@media only screen and (max-width: 767px) {
  .options_text_section {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    padding: 0;
  }
  .options_text_section .text_section_title,
  .options_text_section .text_section_content {
    width: 100%;
    padding: 0;
  }
  .options_text_section .text_section_content {
    margin-bottom: 20px;
  }
}
.text_section .text_section_content p:first-child {
  margin-bottom: 7px;
}

.text_section .text_section_content:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 95.9%;
  top: 6px;
  left: 0;
  background-color: var(--main-border);
}

.extra_section {
  padding-top: 50px;
}

.extra_section_content {
  padding-top: 5px;
}

.extra_section_content a {
  text-decoration: underline;
  text-decoration-color: var(--main-yellow);
}

.extra_section_content a:hover {
  text-decoration: none;
  /* text-decoration-color: var(--main-text); */
}

.border_top {
  position: relative;
}

.border_top:before {
  content: "";
  position: absolute;
  height: 0.5px;
  width: 100%;
  left: 0;
  top: 0px;
  opacity: 0.66;
  background-color: var(--main-border);
}

/*//////////////////////////////SECTION TEXT//////////////////////////////*/
/*//////////////////////////////SECTION TOURS////////////////////////////*/
/*//////////////////////////////SECTION TOURS AB Test////////////////////////////*/
.tours_variant_container {
  display: none;
}

body.tours_variant_design .tours_control_container {
  display: none;
}

body.tours_variant_design .tours_variant_container {
  display: block;
}

body.tours_variant_design .tours_variant_container::before {
  display: none;
}

body.tours_variant_design .tours_variant_container .main_tours_desc_variant {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: initial;
  min-width: calc(25% - 6px);
}

body.tours_variant_design .tours_variant_container .main_tours_list {
  gap: 8px;
}

body.tours_variant_design .tours_variant_container .main_tours_desc_variant img {
  height: 184px;
  -o-object-fit: cover;
     object-fit: cover;
}

body.tours_variant_design .tours_variant_container .main_tours_desc_variant {
  border: 1px solid var(--main-white);
}

body.tours_variant_design .tours_variant_container .main_tours_desc_variant::after {
  display: none;
}

body.tours_variant_design .tours_variant_container .main_tours_desc_variant.main_tours_desc_variant__special {
  border: 1.5px solid var(--main-yellow);
}

body.tours_variant_design .tours_variant_container .main_tours_desc_variant__special .tours_special_title {
  border-bottom: 1.5px solid var(--main-yellow);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 32px;
  font-size: 13px;
  font-weight: 800;
  line-height: 16px;
  letter-spacing: 0.06em;
  text-align: center;
}

body.tours_variant_design .tours_variant_container .main_tours_desc_variant__special .tour_detail_separator {
  color: var(--main-yellow);
}

body.tours_variant_design .tours_variant_container .main_tours_desc {
  padding: 32px 24px;
}

body.tours_variant_design .tours_variant_container .main_tours_desc_variant__special {
  padding: 0 0 32px 0;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

body.tours_variant_design .tours_variant_container .main_tours_desc_variant__special .tour_main_container,
body.tours_variant_design .tours_variant_container .main_tours_desc_variant__special .main_tours_desc_button_wrapper {
  padding: 0 24px;
}

body.tours_variant_design .tours_variant_container .tour_title {
  font-size: 22px;
  line-height: 26px;
  margin: 8px 0;
}

body.tours_variant_design .tours_variant_container .main_tours_desc_variant__special .tour_title {
  color: var(--main-yellow);
}

body.tours_variant_design .tours_variant_container .tour_description,
body.tours_variant_design .tours_variant_container .tour_tagline {
  font-size: 14px;
  line-height: 20px;
  color: #EAEAEA;
  margin-bottom: 24px;
}

body.tours_variant_design .tours_variant_container .tour_description {
  margin-bottom: 32px;
}

body.tours_variant_design .tours_variant_container .tour_description {
  color: var(--main-white);
}

body.tours_variant_design .tours_variant_container .tour_description ul {
  padding: 0;
  margin-top: 15px;
}

body.tours_variant_design .tours_variant_container .tour_description ul li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

body.tours_variant_design .tours_variant_container .tour_description ul li::before {
  content: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.3327 4L5.99935 11.3333L2.66602 8" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

body.tours_variant_design .tours_variant_container .main_tours_desc_variant__special .tour_description ul li::before {
  content: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.3327 4L5.99935 11.3333L2.66602 8" stroke="%23F5CE3E" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

body.tours_variant_design .tours_variant_container .tour_price_class {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body.tours_variant_design .tours_variant_container .tour_price_class div {
  text-align: right;
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
}

body.tours_variant_design .tours_variant_container .tour_price_class h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
}

body.tours_variant_design .tours_variant_container .tour_price_class span {
  position: static;
}

body.tours_variant_design .tours_variant_container .tour_price_class span:nth-child(1) {
  display: inline;
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
  color: #fff;
}

body.tours_variant_design .tours_variant_container .tour_price_class span:nth-child(2) {
  display: inline;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.66);
}

body.tours_variant_design .tours_variant_container .tour_price_class:not(:first-child) {
  margin-top: 24px;
}

body.tours_variant_design .tours_variant_container .tour_detail_separator {
  margin-top: 24px;
  margin-bottom: 24px;
}

body.tours_variant_design .tours_variant_container .main_tours_desc_list {
  margin: 0px;
  padding: 0px;
}

body.tours_variant_design .tours_variant_container .main_tours_desc_button_wrapper {
  width: auto;
  margin: 0px 32px 8px 32px;
}

body.tours_variant_design .tours_variant_container .main_tours_desc_button_wrapper a:nth-child(2) {
  border: 1px solid #fff;
  margin-left: 0px;
}

body.tours_variant_design .tours_variant_container .main_tours_desc_button_wrapper .btn:not(:last-child) {
  margin-bottom: 8px;
}

body.tours_variant_design .tours_variant_container .tour_rating {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #E0E0E0;
  margin-top: 24px;
}

body.tours_variant_design .tours_variant_container .tour_rating span {
  display: inline;
  line-height: inherit;
  position: static;
  font-weight: inherit;
  color: inherit;
}

body.tours_variant_design .tours_variant_container .main_tours_desc_button_wrapper {
  margin-left: 0;
  margin-right: 0;
}

:root {
  --popular-tag-height: 40px;
  --tour-description-height: 50px;
}

body.tours_variant_design .tours_variant_container .main_tours_desc_variant__special .tours_special_title {
  position: relative;
  top: initial;
  height: var(--popular-tag-height);
  margin: 0;
  padding: 0;
  line-height: 1;
}

body.tours_variant_design .tours_variant_container .main_tours_desc_variant__special .tour_main_container {
  padding-top: 23px;
}

body.tours_variant_design .main_tours_wrapper .single_tour_options .main_tours_desc:not(:last-child) {
  margin-right: 0;
}

@media only screen and (min-width: 768px) {
  body.tours_variant_design .tours_variant_container .main_tours_desc {
    padding: 24px 16px;
  }
  body.tours_variant_design .tours_variant_container .main_tours_desc_variant__special {
    padding: 0px 0 24px 0;
  }
  body.tours_variant_design .tours_variant_container .main_tours_desc_variant__special .tour_main_container,
  body.tours_variant_design .tours_variant_container .main_tours_desc_variant__special .main_tours_desc_button_wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  body.tours_variant_design .main_tours_list {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  body.tours_variant_design .tours_variant_container .main_tours_desc .main_tours_desc_button_wrapper {
    margin-top: auto;
    margin-bottom: 0;
  }
  body.tours_variant_design .tours_variant_container .main_tours_desc:not(.main_tours_desc_variant__special) {
    margin-top: var(--popular-tag-height);
  }
  body.tours_variant_design .tours_variant_container .main_tours_desc .tour_tagline {
    min-height: var(--tour-description-height);
  }
}
body.tours_variant_design .tours_variant_container .main_tours_desc .tour_title__mobile,
body.tours_variant_design .tours_variant_container .main_tours_desc .tour_tagline__mobile,
body.tours_variant_design .tours_variant_container .main_tours_desc .tour_description__mobile {
  display: none;
}

@media only screen and (max-width: 1250px) {
  body.tours_variant_design .tours_variant_container .main_tours_desc {
    max-width: 48.5%;
    margin-bottom: 0;
  }
  body.tours_variant_design .tours_variant_container .tour_price_class span:nth-child(1) {
    font-size: 16px;
  }
  body.tours_variant_design .main_tours_wrapper .tours_variant_container .main_tours_desc {
    margin-top: 24px !important;
  }
  body.tours_variant_design .tours_variant_container .main_tours_desc_variant {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 50%;
  }
  body.tours_variant_design .tours_variant_container .main_tours_desc.main_tours_desc__has_mobile_title .tour_title__mobile {
    display: block;
  }
  body.tours_variant_design .tours_variant_container .main_tours_desc.main_tours_desc__has_mobile_title .tour_title:not(.tour_title__mobile) {
    display: none;
  }
  body.tours_variant_design .tours_variant_container .main_tours_desc.main_tours_desc__has_mobile_tagline .tour_tagline__mobile {
    display: block;
  }
  body.tours_variant_design .tours_variant_container .main_tours_desc.main_tours_desc__has_mobile_tagline .tour_tagline:not(.tour_tagline__mobile) {
    display: none;
  }
  body.tours_variant_design .tours_variant_container .main_tours_desc.main_tours_desc__has_mobile_description .tour_description__mobile {
    display: block;
  }
  body.tours_variant_design .tours_variant_container .main_tours_desc.main_tours_desc__has_mobile_description .tour_description:not(.tour_description__mobile) {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  body.tours_variant_design .tours_variant_container .main_tours_desc {
    max-width: 100%;
  }
  body.tours_variant_design:not(.page-template-single_tour) .tours_variant_container .main_tours_desc:nth-child(2) {
    margin-top: 0 !important;
  }
}
/*//////////////////////////////SECTION TOURS AB Test////////////////////////////*/
.main_tours_wrapper {
  background-color: var(--main-blue);
  color: var(--main-white);
}

.main_tours {
  padding: 89px 15px 80px;
  position: relative;
}

.main_tours:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  top: 71px;
  background-color: var(--main-white);
}

.main_tours_title {
  position: relative;
  margin-bottom: 40px;
}

.main_tours_title:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: -15px;
  opacity: 0.6;
  background-color: var(--main-white);
}

.main_tours_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main_tours_desc {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 25%;
          flex: 1 0 25%;
  max-width: 285px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main_tours_desc span {
  display: block;
  position: absolute;
  width: 100%;
  top: 8px;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.05em;
  color: #f5ce3e;
}

.main_tours_desc h3 {
  margin-bottom: 7px;
  position: relative;
  margin-top: 25px;
}

.main_tours_desc_list {
  margin-top: auto;
  padding-top: 8px;
}

.main_tours_desc:after {
  content: "";
  position: absolute;
  height: calc(100% - 32px);
  width: 1px;
  left: -9px;
  top: 32px;
  opacity: 0.66;
  background-color: var(--main-border);
}

.main_tours_desc:first-child:after {
  content: unset;
}

.main_tours_desc img {
  width: 100%;
  height: 224px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
}

.main_tours_desc p {
  white-space: pre-line;
}

.main_tours_desc h5 {
  padding-right: 20px;
  margin-bottom: 14px;
}

.main_tours_desc ul {
  list-style-type: disc;
  padding: 10px 0 0 15px;
}

.main_tours_desc ul li {
  margin: 0 0 5px 5px;
  line-height: 24px;
  font-size: 16px;
}

.main_tours_desc_list_item {
  margin-bottom: 16px;
}

.main_tours_desc_list_item .title {
  max-width: 133px;
  width: 100%;
  font-weight: 400;
}

.main_tours_desc_button_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 8px;
  margin-bottom: 40px;
}

.main_tours_desc_button_wrapper a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
  font-weight: 700;
}

.main_tours_desc_button_wrapper a:hover {
  color: var(--main-yellow);
}

.main_tours_desc_button_wrapper .btn {
  padding: 12px 0 12px 0;
  height: auto;
  margin: 0;
}

.main_tours_desc_button_wrapper .btn:not(:last-child) {
  margin-bottom: 16px;
}

.main_tours_desc_button_wrapper .btn:hover {
  color: var(--main-text);
}

.main_tours_desc_button_wrapper a svg path {
  -webkit-transition: 0.3s all linear;
  transition: 0.3s all linear;
}

.main_tours_desc_button_wrapper a:hover svg path {
  fill: var(--main-yellow);
}

.main_tours_desc_button_wrapper a svg {
  margin: 1px 0 0 8px;
}

.main_tours_additional_wrapper {
  width: 45%;
}

.main_tours_additional {
  padding: 12px 0 0;
}

.main_tours_additional_title {
  margin-left: 51px;
}

.main_tours_additional_title p {
  margin: 0 0 18px 12px;
  font-size: 20px;
}

.main_tours_additional_list_item {
  padding: 18px 0 31px 14px;
}

.main_tours_additional_list_item label {
  height: 100%;
}

.main_tours_additional_list_item #option_3 + label {
  margin-top: 16px;
}

.main_tours_additional_list_item:last-child {
  padding-bottom: 24px;
}

.main_tours_additional_list_item.border_top:before {
  width: 90.5%;
  right: 0;
  left: unset;
}

.main_tours_additional_list_item h3 {
  margin-bottom: 7px;
}

.main_tours_additional_list_item img {
  margin-left: auto;
  max-width: 118px;
  max-height: 119px;
  width: 100%;
}

.item_description {
  margin-left: 13px;
  margin-right: 15px;
}

.item_description p:last-child {
  margin-top: 8px;
}

.item_description p {
  max-width: 350px;
  white-space: pre-line;
}

.popular {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 2px 1px;
  color: var(--main-yellow);
  text-transform: uppercase;
}

/*//////////////////////////////SECTION TOURS////////////////////////////*/
/*//////////////////////////////section accounts////////////////////////////*/
.text_section_wrapper.accounts_wrapper {
  padding: 0 15px;
}

.text_section_wrapper.accounts_wrapper .text_section {
  margin-top: 120px;
  margin-bottom: 50px;
}

.accounts_wrapper .text_section_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.accounts_wrapper a.btn_forward {
  margin-bottom: 26px;
}

.btn_forward {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 24px;
  margin-top: auto;
  margin-bottom: 26px;
  font-weight: 700;
}

.btn_forward svg {
  margin: 2px 0 0 8px;
}

.btn_forward svg path {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn_forward:hover {
  color: var(--main-blue);
}

.btn_forward:hover svg path {
  fill: var(--main-blue);
}

.accounts_wrapper .text_section_title h2 {
  line-height: 38px;
  margin-bottom: 9px;
}

.accounts_wrapper .text_section_title h3 {
  max-width: 470px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

.accounts_wrapper .accounts_content:before {
  content: unset;
}

.accounts_wrapper .accounts_content.text_section_content p:first-child {
  margin-bottom: 8px;
}

.accounts_wrapper .accounts_content .accounts_content_item:first-child:before {
  content: unset;
}

.accounts_wrapper .accounts_content .accounts_content_item {
  margin-bottom: 23px;
  padding-top: 6px;
}

.accounts_wrapper .accounts_content .accounts_content_item h4 {
  padding-top: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}

.accounts_wrapper .accounts_content .accounts_content_item:not(:first-child) {
  padding-top: 10px;
}

/*//////////////////////////////SECTION accounts////////////////////////////*/
/*//////////////////////////////SECTION REVIEWS////////////////////////////*/
.review_section {
  margin: 78px auto 80px;
}

.review_section:before {
  top: 0;
}

.review_title {
  margin-bottom: 14px;
}

.review_title .btn_forward {
  margin: 0;
}

.review_content_item {
  max-width: 387px;
  padding-top: 9px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 32%;
          flex: 1 0 32%;
}

.review_content_item:nth-child(2) {
  margin: 0 15px;
}

.review_content_item h3 {
  margin-top: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

body.single-tour-sticky-block .review_content_item {
  max-width: initial;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body.single-tour-sticky-block .review_content_item:nth-child(2) {
  margin: 15px 0 0 0;
}

/*//////////////////////////////SECTION REVIEWS////////////////////////////*/
/*//////////////////////////////SECTION ////////////////////////////*/
body.single-tour-sticky-block .video_section::before {
  display: none;
}

.video_section {
  margin: 103px auto;
}

.video_title {
  margin-bottom: 22px;
}

body.single-tour-sticky-block .video_content_wrapper {
  position: relative;
}

body.single-tour-sticky-block .video_content_wrapper::before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(249, 248, 248, 0.88)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(249, 248, 248, 0.88) 100%);
  width: 25%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

.video_content {
  padding-top: 25px;
  width: 100%;
  max-width: 590px;
}

.video_content a {
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.video_content a:hover img {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.video_content a h2 {
  margin: 10px 0 0 18px;
  color: var(--main-white);
}

.video_desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 16px;
  bottom: 16px;
}

/*//////////////////////////////SECTION REVIEWS////////////////////////////*/
/*//////////////////////////////SECTION REVIEWS////////////////////////////*/
.accounts_wrapper .text_section.accessibility_section {
  margin-top: 0;
  margin-bottom: 105px;
  padding: 0 15px;
}

.accessibility_section_title {
  padding-top: 17px;
}

.accessibility_section_title h2 {
  margin-bottom: 9px;
}

.accounts_wrapper .accessibility_section_title.text_section_title h3 {
  max-width: 505px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

.accessibility_content_item:first-child {
  padding-top: 15px;
}

.accessibility_content_item:first-child:before {
  content: unset;
}

.accessibility_content_item {
  padding-top: 9px;
}

.item_image {
  padding-left: 1px;
}

.item_content {
  padding-left: 25px;
  padding-bottom: 7px;
}

.item_content h3,
.item_content p {
  margin-bottom: 8px;
  padding-right: 15px;
  white-space: pre-line;
}

.item_content h3 {
  font-size: 20px;
  line-height: 24px;
}

.accessibility_content_item:last-child .item_content p {
  white-space: unset;
}

/*//////////////////////////////SECTION accessibility////////////////////////////*/
/*//////////////////////////////FOOTER////////////////////////////*/
footer {
  background-color: var(--main-text);
  padding: 24px 0 16px;
}

footer > p {
  color: var(--main-white);
  font-size: 12px;
  line-height: 16px;
  max-width: 1198px;
  margin: auto;
}

/* .footer_wrapper {
  margin-bottom: 16px;
} */
.footer_wrapper .footer_logo {
  margin: 8px 10px 0 1px;
}

.footer_wrapper .footer_menu {
  color: var(--main-white);
  font-size: 12px;
  line-height: 16px;
  max-width: 589px;
  width: 100%;
}

.footer_wrapper .footer_menu nav {
  width: 100%;
}

.footer_wrapper .footer_menu ul li {
  margin-bottom: 8px;
}

.footer_wrapper .footer_menu ul:nth-child(1) {
  display: block;
  max-width: 110px;
  margin-right: 68px;
  width: 100%;
}

.footer_wrapper .footer_menu ul:nth-child(2) {
  display: block;
  max-width: 230px;
  width: 100%;
}

.footer_wrapper .footer_menu ul:nth-child(3) {
  display: block;
  margin-right: 0;
  width: 100%;
  /* max-width: 106px; */
}

.copyright {
  color: #fff;
  padding: 25px 15px 15px;
}

/*//////////////////////////////FOOTER////////////////////////////*/
.cookie_popup {
  position: fixed;
  padding: 8px;
  bottom: 10px;
  left: calc(50% - 365px);
  display: none;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 730px;
  border-radius: 8px;
  height: 40px;
  background-color: var(--main-white);
  z-index: 9999999;
  -webkit-filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.1));
}

.cookie_popup p,
.cookie_popup p > a,
.cookie_popup > a {
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.cookie_popup p > a {
  color: var(--main-blue);
}

.cookie_popup > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 24px;
  width: 72px;
  border-radius: 24px;
}

/*///////////////////////////////////////////single tour main//////////////////////*/
.single_tour_image {
  background: url(../images/main_tour_banner.png) no-repeat center top;
  background-size: cover;
}

.single_banner_wrapper .btn {
  margin-top: 15px;
}

.single_banner_wrapper .main_banner_content_right {
  padding-bottom: 64px;
}

.d-inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.single-tour-w-60 {
  width: 100%;
}

body.single-tour-sticky-block .single-tour-w-60 {
  width: 65%;
}

.booking__card {
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: min(34%, 374px);
  padding: 24px;
  padding-top: 16px;
  color: #06273f;
  background: #fff;
  margin-left: 41px;
  -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

body.single-tour-sticky-block .booking__card {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.booking__head {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
}

.booking__pricing {
  margin: 0;
  margin-bottom: 16px;
  padding: 0;
  font-size: 15px;
  line-height: 24px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.6588235294);
  width: 65%;
}

.booking__pricing h2 {
  font-size: 24px;
  font-weight: 800;
  line-height: 32px;
  color: var(--main-text);
}

.booking__duration {
  margin-top: 5px;
  text-align: right;
  color: var(--main-blue);
  font-weight: 700;
  line-height: 1.5;
  width: 35%;
}

.booking__duration svg {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  margin-right: 5px;
}

.booking__feature {
  margin: 0;
  margin-bottom: 15px;
  padding: 0;
  padding-left: 25px !important;
  list-style: none;
}

.booking__feature li {
  position: relative;
  margin-bottom: 8px;
  font-size: 15px !important;
  line-height: 24px !important;
  font-weight: bold;
  color: var(--main-text);
}

.booking__feature li span {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6588235294);
}

.booking__feature li:before {
  position: absolute;
  left: -25px;
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxNiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgNi41MTA1TDUuNDc5MSAxMi4wMDAxTDE2IDEuNDg5NTZMMTQuNDg5NiAwTDUuNDc5MSA4Ljk5OTk5TDEuNDg5NTMgNS4wMTA0NUwwIDYuNTEwNVoiIGZpbGw9IiMxYTQ3YjgiLz4KPC9zdmc+Cg==");
  width: 16px;
  height: 16px;
}

.booking__button {
  width: 100%;
}

.booking__button a {
  width: 100%;
}

.single_tours_wrapper {
  background-color: var(--main-white);
  color: var(--main-text);
}

.single_tours_wrapper .anchors {
  padding: 24px 15px;
}

.single_tours_wrapper .anchors a {
  margin-right: 18px;
}

.single_tours_wrapper .anchors a:hover {
  color: var(--main-blue);
}

.single_tours:before {
  background-color: var(--main-text);
  top: 7px;
}

.review_wrapper.policies_wrapper {
  margin-top: 12px;
}

.single_tours {
  padding: 24px 0 64px;
}

.main_tours_wrapper .single_tour_options {
  padding-bottom: 96px;
}

.main_tours_wrapper .single_tour_options .main_tours_desc {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33.3%;
          flex: 1 0 33.3%;
  max-width: 385px;
}

.main_tours_wrapper .single_tour_options .main_tours_desc:not(:last-child) {
  margin-right: 20px;
}

.main_tours_wrapper .single_tour_options .main_tours_desc_button_wrapper {
  margin-top: 16px;
}

.main_tours_wrapper .single_tour_options .main_tours_desc img {
  height: 304px;
}

.single_tours_desc {
  width: 40%;
}

body.single-tour-sticky-block .single_tours_desc {
  width: 100%;
}

body.single-tour-sticky-block .single_tours form.flex-between {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.single_tours_desc h2 {
  max-width: 415px;
  margin-top: 1px;
  padding-right: 20px;
}

body.single-tour-sticky-block .single_tours_desc h2 {
  max-width: initial;
}

.single_tours_desc h2:after {
  content: unset;
}

.single_tours_additional_wrapper:before {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% - 8px);
  top: 0;
  left: -20px;
  background-color: var(--main-border);
}

.single_tours_additional_wrapper {
  width: 55.9%;
  position: relative;
}

body.single-tour-sticky-block .single_tours_additional_wrapper {
  width: 100%;
}

body.single-tour-sticky-block .single_tours_additional_wrapper::before {
  display: none;
}

.single_tours_additional_wrapper .tour_details {
  font-weight: 400;
  margin-bottom: 8px;
  padding-right: 5px;
  font-size: 16px;
  line-height: 24px;
}

body.single-tour-sticky-block .single_tours_additional_wrapper .tour_details {
  margin-top: 24px;
  margin-bottom: 16px;
}

.single_tours_additional_wrapper .main_tours_desc_list_item .title {
  max-width: 98px;
  font-weight: bold;
}

.single_tours_additional_wrapper .main_tours_desc_list {
  max-width: 367px;
  width: 100%;
  padding-right: 5px;
}

body.single-tour-sticky-block .single_tours_additional_wrapper .main_tours_desc_list {
  max-width: initial;
}

.single_tours_additional_wrapper .single_tours_desc_list_item {
  margin-bottom: 8px;
}

.single_tours_additional_wrapper .btn {
  margin-left: auto;
  max-width: 183px;
  width: 100%;
  margin-top: 16px;
}

.single_tours_additional_wrapper .btn:hover {
  background-color: var(--main-blue);
  color: var(--main-white);
}

.single_tours_additional {
  position: relative;
  margin-top: 32px;
  padding-top: 8px;
}

.single_tours_additional .main_tours_additional_title p {
  color: #bdbdbd;
  font-weight: 800;
  margin-bottom: 15px;
  margin-left: 7px;
}

.single_tours_additional:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  top: 0;
  background-color: var(--main-text);
}

.single_tours_additional .main_tours_additional_title {
  margin: 0;
}

.checkbox,
.single_tours_additional .main_tours_additional_list_item input:checked + label .checkbox {
  border: 1px solid var(--main-blue);
}

.single_tours_additional .main_tours_additional_list_item label {
  height: 100%;
}

.single_tours_additional .main_tours_additional_list_item h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 800;
  margin-bottom: 9px;
}

.single_tours_additional .main_tours_additional_list_item {
  padding: 16px 0 24px 0;
}

.single_tours_additional .main_tours_additional_list_item:nth-child(3) h3 {
  margin-top: 2px;
  margin-bottom: 13px;
}

.single_tours_additional .main_tours_additional_list .btn {
  margin: 0 auto 0 39px;
  max-width: 216px;
}

/*////////////////////////////////quote////////////////////////////////////////*/
.quote {
  max-width: 692px;
  margin: 9px 0 10px auto;
  padding-right: 50px;
}

body.single-tour-sticky-block .quote {
  max-width: initial;
  margin-left: initial;
}

.quote h3,
h4 {
  font-weight: 400;
}

.quote_author {
  margin-top: 8px;
  color: #808080;
}

/*////////////////////////////////quote////////////////////////////////////////*/
/*////////////////////////////////included////////////////////////////////////////*/
.included_wrapper {
  background-color: var(--main-blue);
  color: var(--main-white);
  margin: 119px 0 121px;
}

.included:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  top: 72px;
  background-color: var(--main-white);
}

.included {
  position: relative;
  padding: 88px 0 31px;
}

.included h2 {
  margin-bottom: 23px;
}

.included_item {
  padding: 17px 0 40px;
}

body.single-tour-sticky-block .included_item {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.included_item .included_item_text {
  width: 26%;
  margin-right: 20px;
  padding-bottom: 60px;
}

body.single-tour-sticky-block .included_item .included_item_text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: auto;
  margin-right: 0;
  max-width: calc(90% - 50px);
  padding-bottom: 20px;
}

.included_item .included_item_text h3 {
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
}

.included_item .included_item_text p {
  padding-right: 26px;
}

.included_item .included_item_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}

body.single-tour-sticky-block .included_item .included_item_image {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-left: initial;
  width: 100%;
}

.included_item .included_item_image img {
  max-width: 640px;
  width: 100%;
}

body.single-tour-sticky-block .included_item .included_item_image img {
  max-width: initial;
  width: 100%;
  height: 408px;
  -o-object-fit: cover;
     object-fit: cover;
}

.included_item .included_item_image p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  font-size: 12px;
  padding-right: 4px;
}

.included_item .included_item_number {
  margin-left: 25px;
  width: 100px;
  text-align: right;
}

body.single-tour-sticky-block .included_item .included_item_number {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-left: 0;
  width: auto;
  max-width: 10%;
  text-align: left;
}

.included_item .border_number {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 120px;
  line-height: 106px;
  text-align: right;
  color: transparent;
  -webkit-text-stroke: 1px white;
  position: relative;
  left: 13px;
  width: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

body.single-tour-sticky-block .included_item .included_item_number .border_number {
  width: auto;
  left: 0;
  font-size: 115px;
  position: relative;
  -webkit-text-stroke: initial;
}

body.single-tour-sticky-block .included_item .included_item_number .border_number span {
  position: relative;
  z-index: 2;
  color: var(--main-blue);
}

body.single-tour-sticky-block .included_item .included_item_number .border_number:before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  -webkit-text-stroke: 3px white;
  z-index: 1;
}

.included .btn {
  position: relative;
  top: -89px;
}

/*////////////////////////////////included////////////////////////////////////////*/
.single_tours_video .video_section {
  margin: 119px auto 70px;
}

body.single-tour-sticky-block .single_tours_video .video_section {
  margin-left: initial;
  margin-right: initial;
}

/*////////////////////////////////single review////////////////////////////////////////*/
.single_review_section .text_section {
  margin: 102px auto 77px;
  padding: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body.single-tour-sticky-block .single_review_section .text_section {
  margin-left: initial;
  margin-right: initial;
}

.single_review_section .text_section_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 40%;
  padding-top: 31px;
}

.single_review_section .text_section_title img {
  max-width: 285px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body.single-tour-sticky-block .single_review_section .text_section_title {
  padding-top: 0px;
}

body.single-tour-sticky-block .single_review_section .text_section_title img {
  width: 285px;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single_review_section .text_section_content {
  width: 100%;
  padding-left: 16px;
  padding-right: 0;
  max-width: 606px;
}

.single_review_section .single_review_content:before,
.single_review_section .single_review_content_item:first-child:before {
  content: unset;
}

.single_review_content .single_review_content_item {
  margin-bottom: 23px;
  margin-top: 23px;
  padding-top: 8px;
}

body.single-tour-sticky-block .single_review_content .single_review_content_item:first-child {
  padding-top: 0px;
  margin-top: 0px;
}

body.single-tour-sticky-block .single_review_content .single_review_content_item:first-child h4 {
  margin-top: 0px;
}

.single_review_content .single_review_content_item:first-child {
  padding-top: 1px;
}

.single_review_content .single_review_content_item:nth-child(3) {
  padding-top: 13px;
}

.single_review_content .single_review_content_item .grey_text {
  margin-top: 7px;
  font-weight: bold;
  color: #000;
}

.single_review_content .btn_forward {
  margin-top: 39px;
}

body.single-tour-sticky-block .single_review_section .btn_forward {
  position: static;
  visibility: visible;
  margin-top: 20px;
}

/*////////////////////////////////single review////////////////////////////////////////*/
/*////////////////////////////////single location////////////////////////////////////////*/
.grey_text {
  color: #808080;
}

.location_section {
  margin: 103px auto 10px;
  padding: 16px 14px;
}

body.single-tour-sticky-block .location_section {
  margin-left: initial;
  margin-right: initial;
}

.location_title {
  margin-bottom: 15px;
}

.location_content {
  padding-top: 16px;
  margin-bottom: 40px;
}

body.single-tour-sticky-block .location_content {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 30px;
}

.location_content_item {
  width: 23.8%;
  padding-right: 10px;
}

body.single-tour-sticky-block .location_content_item {
  width: 49%;
  padding-top: 16px;
  padding-bottom: 16px;
}

body.single-tour-sticky-block .location_content_item::before {
  content: unset;
  position: absolute;
  height: 0.5px;
  width: 100%;
  left: 0;
  top: 0px;
}

body.single-tour-sticky-block .location_content_item:first-child,
body.single-tour-sticky-block .location_content_item:nth-child(3n) {
  border-right: 1px solid var(--main-border);
}

body.single-tour-sticky-block .location_content_item:first-child::before,
body.single-tour-sticky-block .location_content_item:nth-child(3n)::before {
  width: 95%;
}

.location_content_item:first-child:before {
  content: unset;
}

body.single-tour-sticky-block .location_content_item:nth-child(n+3):before {
  content: "";
  top: -15px;
}

.location_content_item:first-child h4 {
  margin-bottom: 16px;
}

.location_content_item h3 {
  margin-bottom: 8px;
  padding-right: 20px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

.location_content_item:first-child p {
  padding-right: 30px;
}

.text a {
  color: var(--main-blue);
}

.text a:hover {
  color: var(--main-yellow);
}

.border_left {
  position: relative;
}

.border_left:before {
  content: "";
  position: absolute;
  height: calc(100% - 17px);
  width: 1px;
  left: -22px;
  top: 1px;
  background-color: var(--main-border);
}

.subway {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 28px;
  width: 100%;
  height: 28px;
  border-radius: 50%;
  color: var(--main-white);
  text-transform: uppercase;
  margin-right: 1.5px;
  margin-bottom: 12px;
  text-shadow: 1px 1px 3px #000;
}

.subway_red {
  background: #dd473a;
}

.subway_green {
  background: #409047;
}

.subway_blue {
  background: #1545b3;
}

.subway_brown {
  background: #93683c;
}

.subway_yellow {
  background: #f5ce3e;
}

.location_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.location_image img {
  max-width: 589px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  width: 50%;
}

#map {
  max-width: 590px;
  height: 400px;
  width: 50%;
}

/*////////////////////////////////single location////////////////////////////////////////*/
/*////////////////////////////////faqs start////////////////////////////////////////*/
.faq_wrapper {
  padding-top: 22px;
}

.faq_wrapper .faq__title {
  width: 40%;
}

body.single-tour-sticky-block .faq_wrapper .faq__title {
  width: auto;
  margin-bottom: 20px;
}

.faq_wrapper > .flex {
  border-top: solid 1px black;
  padding-top: 17px;
  padding-bottom: 13px;
}

body.single-tour-sticky-block .faq_wrapper .flex {
  display: block;
}

.faq__list {
  width: 100%;
  padding-left: 16px;
  padding-right: 0;
  max-width: 606px;
  margin-left: auto;
  margin-top: -3px;
}

body.single-tour-sticky-block .faq_wrapper .faq__list {
  margin-left: initial;
  max-width: initial;
  margin-top: initial;
  padding: initial;
}

.faq__item {
  margin-bottom: 16px;
}

.faq__item:first-child {
  margin-bottom: 8px;
  padding-bottom: 8px;
}

.faq__item:first-child:before {
  bottom: -8px;
}

.faq__item:before {
  top: unset;
  bottom: -18px;
}

.faq__item_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 31px 0 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  line-height: 24px;
}

.faq__item_title.active,
.faq__item_title:hover {
  cursor: pointer;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.faq__item_title:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 22px;
  right: 0;
  top: 17px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background: url(../images/aacordeon.svg) no-repeat center center;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.faq__item_title.active:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.faq__item_answer {
  display: none;
  padding: 11px 44px 0 1px;
}

.faq__item_answer > p {
  padding-bottom: 8px;
}

.faq__item_answer a {
  text-decoration: underline;
}

/*//////////////////////////////////faqs end////////////////////////////////////////*/
/*///////////////////////////////////policies//////////////////////////////////////*/
.policies_wrapper .review_section {
  margin: 10px auto 45px;
}

body.single-tour-sticky-block .policies_wrapper .review_section {
  margin-left: initial;
  margin-right: initial;
}

.policies_wrapper .policies_content h3 {
  margin: 8px 0 8px 0;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

.policies_wrapper .policies_content p {
  padding-bottom: 8px;
}

.policies_wrapper .policies_content .review_content_item:not(:last-child) p {
  padding-right: 30px;
}

.policies_wrapper .policies_content p > span {
  font-style: italic;
}

body.single-tour-sticky-block .review_content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*///////////////////////////////////policies//////////////////////////////////////*/
/*////////////////////////////MODAL VIDEO////////////////////////////////////////*/
.modal_banner,
.modal_video {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  top: 0;
  left: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99999;
}

.modal_wrapper {
  position: relative;
  width: 69%;
  height: 74%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal_banner .close,
.modal_video .close {
  position: absolute;
  width: 64px;
  height: 64px;
  background: url(../images/close.btn.svg) no-repeat center center;
  top: 5.6%;
  right: 3.9%;
  cursor: pointer;
}

.modal_wrapper video,
.modal_wrapper iframe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 70vw;
  max-height: 70vh;
}

/*////////////////////////////MODAL VIDEO////////////////////////////////////////*/
/*////////////////////////////STICKY ANCHOR////////////////////////////////////////*/
.anchors_sticky {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 56px;
  background: #1a47b8;
  z-index: 99999;
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
}

.anchors_wrapper {
  padding-right: 0;
}

.anchors_sticky .btn-yellow {
  margin: 0 15px 0 auto;
  height: 56px;
  width: 222px;
}

.anchors_sticky .anchors_menu {
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  padding: 16px 0;
}

.anchors_sticky .anchors_menu a {
  margin-right: 19px;
}

.anchors_sticky .anchors_menu a:hover {
  color: var(--main-yellow);
}

/*////////////////////////////STICKY ANCHOR////////////////////////////////////////*/
/*////////////////////////////FAQ////////////////////////////////////////*/
.faq_screen .faq_screen_wrapper {
  overflow: hidden;
}

.faq_screen .title_block_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 40.8%;
  background-color: var(--main-blue);
  color: var(--main-white);
}

.faq_screen .title_block {
  max-width: 470px;
  width: 100%;
  margin: 25px 13px 0 0;
  padding: 0 15px;
}

.faq_screen .title_block h3 {
  max-width: 300px;
  margin-top: 7px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}

.faq_screen .faq_block {
  width: 59.2%;
  max-width: 100%;
  padding-bottom: 24px;
}

.faq_screen .faq_wrapper {
  padding: 14px 15px 0 40px;
  margin-bottom: 7px;
}

.faq_screen .faq_wrapper > .flex {
  padding-top: 0;
  padding-bottom: 14px;
  max-width: 695px;
  border: unset;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.faq_screen .faq__title {
  max-width: 160px;
  margin-top: 10px;
  width: 100%;
  font-weight: 600;
}

.faq_screen .faq__list {
  padding: 0 0 0 14px;
  max-width: 504px;
}

.faq_screen .faq__item {
  margin-bottom: 19px;
}

.faq_screen .faq__item:last-child:before,
.faq_screen .faq__item:first-child:after {
  content: unset;
}

.faq_screen .faq__item:before {
  width: 99.5%;
  top: unset;
  bottom: -16px;
  background-color: #000;
}

.faq_screen .faq__item_title {
  padding: 13px 31px 0 0;
}

.faq_screen .faq__item_title:after {
  top: 21px;
  right: 0;
}

.faq_screen .faq__item_title:after {
  width: 16px;
  height: 12px;
  background-size: contain;
}

.faq_screen .faq__item_answer {
  padding: 10px 0 5px;
}

.faq_screen .faq__item_answer > img {
  margin: 10px auto 5px;
  width: 100%;
}

.faq_screen .faq__item_answer > p {
  padding-bottom: 8px;
}

/*////////////////////////////FAQ////////////////////////////////////////*/
/*////////////////////////////ABOUT PAGE////////////////////////////////////////*/
.about_screen_wrapper {
  overflow: hidden;
}

.about_screen {
  margin-top: 23px;
  padding: 10px 15px 87px;
}

.about_screen:before {
  height: 1px;
  left: 15px;
  width: calc(100% - 30px);
  background-color: var(--main-text);
  opacity: 1;
}

.about_title {
  margin-bottom: 15px;
}

.about_title h1 {
  text-transform: capitalize;
}

.about_content {
  padding-top: 16px;
}

.about_content_text {
  width: 50%;
  margin-right: 20px;
}

.about_content_text ul {
  list-style-type: disc;
  padding: 10px 0 0 15px;
}

.about_content_text ul li {
  margin: 0 0 5px 5px;
  line-height: 24px;
  font-size: 16px;
}

.about_content_text p {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 15px;
  padding-right: 20px;
}

.about_content_text a {
  color: var(--main-blue);
}

.about_content_text a:hover {
  text-decoration: underline;
}

.about_content_links {
  width: 33%;
  margin-top: 24px;
}

.about_content img {
  max-width: 285px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 375px;
  margin: 8px 120px 3px 0;
}

.about_content_links li {
  margin-bottom: 16px;
}

.about_content_links a {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #1a47b8;
}

.about_content_links a:hover {
  text-decoration: underline;
}

.about_images {
  margin: 24px 0 32px;
}

.about_images img {
  width: 100%;
  max-width: 589px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 20px;
}

.about_images img.desk {
  max-width: 169px;
  height: 171px;
  margin: auto 116px 3px 0;
}

.about_members {
  max-width: 590px;
  width: 100%;
  margin-top: 21px;
}

.about_members:after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--main-border);
  opacity: 1;
}

.about_members img {
  margin: 8px 64px 28px 0;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 181px;
  width: 100%;
}

/*////////////////////////////ABOUT PAGE////////////////////////////////////////*/
/*////////////////////////////ACCOUNTS PAGE////////////////////////////////////////*/
.accounts_screen {
  background-color: var(--main-blue);
  color: var(--main-white);
}

.accounts_wrapper {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 72px 15px 81px;
}

.accounts_title {
  width: 45%;
}

.accounts_title h3 {
  margin: 0 0 1px 2px;
  color: var(--main-yellow);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

.accounts_image_comment {
  margin-top: 712px;
  position: relative;
}

.accounts_image_comment:last-child {
  margin-top: 631px;
}

.accounts_image_comment h3 {
  max-width: 370px;
  margin-bottom: 15px;
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
}

.accounts_image_comment img {
  width: 100%;
  max-width: 387px;
}

.accounts_image_comment:before {
  content: "“";
  position: absolute;
  top: 0;
  left: -20px;
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
}

.accounts_list {
  width: 50%;
  padding: 31px 0 0 10px;
}

.accounts_list .accounts_image_comment {
  display: none;
}

.accounts_list_item {
  padding: 9px 0 39px 0;
}

.accounts_list_item h4 {
  font-size: 18px;
  font-weight: bold;
  padding-right: 20px;
  min-width: 80px;
}

.accounts_item_text {
  margin-left: auto;
  max-width: 488px;
}

.accounts_item_text p {
  padding-right: 7px;
  overflow: hidden;
  /* display: flex; */
  height: 143px;
  max-height: 95%;
  white-space: pre-line;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.btn_collapse {
  text-transform: capitalize;
  margin-top: 12px;
  display: inline-block;
  position: relative;
}

.btn_collapse:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.btn_collapse:hover:after {
  height: 0;
}

.readmore {
  margin-top: 8px;
  display: none;
}

/*////////////////////////////ACCOUNTS PAGE////////////////////////////////////////*/
/*/////////////////////////////////BUTTON TO TOP////////////////////////////////////*/
.toTop {
  border-radius: 50%;
  background: rgb(255, 255, 255) url(../images/aacordeon.svg) no-repeat center center;
  background-size: 20px 19px;
  position: fixed;
  right: 15px;
  top: 65px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 40px;
  height: 40px;
  z-index: 999;
}

.toTop:hover {
  background-color: var(--main-yellow);
}

/*/////////////////////////////////BUTTON TO TOP////////////////////////////////////*/
/*////////////////////////////CONTACT PAGE///////////////////////////////////////////*/
.contact {
  padding: 23px 15px 49px;
}

.contact_title {
  padding: 10px 0 14px;
}

.contact_title h1 {
  font-weight: 800;
}

.contact_title:before {
  background-color: var(--main-text);
}

.contact_content_wrapper {
  padding-top: 17px;
}

.contact_content {
  width: 100%;
}

.contact_content_body {
  margin-bottom: 8px;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.contact_content_body p {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}

.contact_content_body a {
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
}

.contact_content_body .link_chat {
  color: var(--main-blue);
}

.contact_content_body a:hover {
  color: var(--main-yellow);
}

.useful_links {
  margin-top: auto;
  max-width: 500px;
  width: 100%;
}

.useful_links h4 {
  margin-bottom: 16px;
}

.useful_links a {
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--main-blue);
  margin-bottom: 16px;
}

.useful_links a:hover {
  color: var(--main-yellow);
}

.contact_form_wrapper {
  width: 50%;
}

.contact_form_wrapper:before {
  left: -3px;
  opacity: 0.66;
}

.contact_form_wrapper form {
  padding: 0 0 16px 17px;
}

.contact_form_wrapper form .thankyou {
  display: none;
  max-width: 355px;
  width: 100%;
  margin-top: 33px;
  padding-top: 15px;
}

.contact_form_wrapper form .thankyou:before {
  background-color: var(--main-text);
}

.input_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 16px;
  margin-top: 16px;
  position: relative;
}

.error_form {
  display: none;
  font-size: 12px;
  line-height: 16px;
  color: #eb5757;
  position: absolute;
  bottom: -18px;
}

.input_wrapper label {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}

.input_wrapper input,
.input_wrapper textarea {
  width: 100%;
  height: 48px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  padding: 20px 7px;
}

.input_wrapper .wpcf7-not-valid {
  border: 1px solid #eb5757;
}

.wpcf7-not-valid-tip {
  margin: 10px 0;
}

.wpcf7 form .wpcf7-response-output {
  margin: 15px 0;
  padding: 10px;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #dc3232;
}

.input_wrapper input:focus,
.input_wrapper textarea:focus {
  border: 1px solid #000000;
}

.input_wrapper textarea {
  height: 96px;
  padding: 11px 7px;
  resize: none;
}

.contact_form_wrapper > h2 {
  padding-left: 16px;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

.contact_form_wrapper form .btn {
  max-width: 286px;
  margin-top: 6px;
  width: 100%;
  height: 48px;
  background-color: var(--main-yellow);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.contact_form_wrapper form .btn:hover {
  background-color: var(--main-blue);
  color: var(--main-white);
}

/*////////////////////////////CONTACT PAGE///////////////////////////////////////////*/
/*////////////////////////////BLOG PAGE///////////////////////////////////////////*/
.blog_first_wrapper {
  background-color: var(--main-blue);
  color: var(--main-white);
  padding: 32px 0 58px;
}

.blog_first {
  padding: 24px 15px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blog_first:before {
  background-color: var(--main-white);
  left: 15px;
  width: calc(100% - 30px);
  opacity: 1;
}

.blog_first_image img {
  max-width: 590px;
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog_first_image {
  width: 50%;
}

.blog_first_content {
  width: 44.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blog_first_content .blog_first_title {
  margin: 9px 0 7px;
  font-weight: 800;
  font-size: 32px;
  line-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog_first_content .blog_first_title:hover {
  color: var(--main-yellow);
}

.blog_first_content p {
  padding-right: 10px;
}

.date {
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog_first_content .btn {
  margin-top: auto;
  text-transform: capitalize;
}

.blog_list_wrapper {
  padding: 63px 0 96px;
}

.blog_list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blog_item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 49%;
          flex: 1 0 49%;
  max-width: 590px;
  width: 100%;
  padding-top: 25px;
  margin-bottom: 18px;
}

.blog_item:nth-child(odd) {
  margin-right: 14px;
}

.blog_item img,
.blog_item_wide img {
  max-width: 590px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 368px;
}

.blog_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog_item_wide_text a,
.blog_item .post_link {
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  display: block;
}

.blog_item_wide_text a:hover,
.blog_item .post_link:hover {
  color: var(--main-blue);
}

.blog_item .post_link {
  width: 92%;
  min-height: 100px;
}

.item_date a,
.item_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
}

.item_date a:hover {
  color: var(--main-yellow);
}

.item_date {
  margin: 16px 0 9px;
}

.blog_item_wide {
  width: 100%;
  padding-top: 11px;
  padding-bottom: 31px;
}

.blog_item_wide_text {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 49%;
          flex: 1 0 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 40px;
  width: 50%;
}

.blog_item_wide_text .item_date {
  margin: 14px 0 9px;
}

.blog_item_wide_text a + p {
  padding-top: 7px;
}

a.btn_forward {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
  font-size: 16px;
  margin-bottom: 12px;
}

.blog_item_wide_image {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 47.3%;
          flex: 1 0 47.3%;
  padding: 14px 0;
}

.blog_btn_more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 1px;
}

.blog_btn_more a {
  border: 1px solid #bdbdbd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 168px;
  height: 48px;
  text-transform: capitalize;
  font-weight: 800;
}

.blog_btn_more a:hover {
  border: 1px solid var(--main-blue);
  background-color: var(--main-blue);
  color: var(--main-white);
}

.blog_subscribe_wrapper {
  background-color: var(--main-blue);
  color: var(--main-white);
  padding: 25px 0 31px;
}

.blog_subscribe_wrapper.container {
  max-width: 1230px;
  padding: 25px;
  margin-bottom: 50px;
}

.blog_subscribe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog_subscribe_wrapper h2 {
  max-width: 600px;
  width: 100%;
  margin-right: 20px;
}

.form_input {
  max-width: 500px;
  padding-top: 7px;
  width: 100%;
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form_input .input_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* max-width: 355px; */
  width: 100%;
  /* margin-left: auto; */
}

.form_input .input_wrap .error_form {
  bottom: 0;
}

.form_input input {
  height: 48px;
  max-width: 355px;
  width: 100%;
  /* margin-left: auto; */
  padding: 8px 16px;
  border: 1px solid #eaeaea;
}

.form_input input:focus {
  border: 1px solid #000;
}

.form_input button {
  height: 48px;
  width: 149px;
  padding: 10px 20px;
  margin-left: 8px;
  background: var(--main-yellow);
  color: var(--main-text);
  font-weight: bold;
}

.form_input button:hover {
  background: var(--main-white);
}

.form_disclaimer,
.form_disclaimer p,
.form_disclaimer a {
  font-size: 16px;
  line-height: 22px;
  padding-top: 8px;
}

.form_disclaimer a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #afafaf;
}

.form_disclaimer a:hover {
  color: #fdcc00;
}

.d-none {
  display: none !important;
}

.form_confirm {
  display: none;
  text-align: right;
  font-size: 28px;
  color: #000 !important;
}

@media only screen and (max-width: 767px) {
  .blog_subscribe .form_input button {
    margin-top: 5px;
  }
  .form_disclaimer {
    text-align: center;
  }
  .blog_item_wide_text .post_link {
    font-size: 22px;
    line-height: 24px;
  }
  .form_disclaimer,
  .form_disclaimer p,
  .form_disclaimer a {
    font-size: 14px;
    line-height: 18px;
    padding-top: 8px;
  }
  .form_input {
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
  }
}
/*////////////////////////////BLOG PAGE///////////////////////////////////////////*/
/*////////////////////////////BLOG SINGLE PAGE///////////////////////////////////////////*/
.blog_single_wrapper {
  background: var(--main-blue);
  color: var(--main-white);
}

.blog_single {
  padding: 40px 15px 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blog_single:before,
.comments:before,
.blog_single_title:before,
.single_post:before {
  left: 15px;
  width: calc(100% - 30px);
}

.blog_single:before,
.comments:before {
  height: 1px;
  background-color: #000;
  opacity: 1;
}

.blog_single:before {
  top: 23px;
  background-color: var(--main-white);
}

.blog_single h2 {
  margin: 0 0 7px;
  font-weight: 800;
  max-width: 540px;
}

.blog_single_content {
  max-width: 590px;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blog_single_content .date {
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
}

.blog_single_content p {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 8px;
}

.blog_single_author_wrapper {
  margin-top: auto;
  padding-left: 0;
}

@media (max-width: 767px) {
  .blog_single_author_wrapper {
    padding-top: 20px;
  }
}
.blog_single_author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog_single_author img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 16px;
}

@media (max-width: 767px) {
  .blog_single_author img {
    width: 50px;
    height: 50px;
    margin-right: 12px;
  }
}
.blog_single_author_desc .date {
  font-weight: 400;
  font-size: 11px;
  line-height: 18px;
  text-transform: capitalize;
}

.blog_single_share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 31px;
}

.blog_single_share h3 {
  font-size: 16px;
  line-height: 16px;
  margin-right: 67px;
  text-transform: capitalize;
  margin-top: 3px;
}

.blog_single_share .content_share a {
  color: var(--main-white);
}

.blog_single_share .content_share a:last-child {
  margin-right: 0;
}

.svg_wrapper a,
.svg_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 16px;
}

.blog_single_image {
  padding-top: 7px;
}

.blog_single_image img {
  max-width: 488px;
  max-height: 360px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single_post {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 49px 15px 15px;
}

.post_content {
  /* max-width: 590px; */
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  margin-right: 20px;
  padding: 0 15%;
}

@media (max-width: 767px) {
  .post_content {
    padding: 0;
  }
}
.post_content ol,
.post_content ul {
  padding: 20px 16px;
  padding-top: 0;
}

.post_content ol {
  list-style-type: auto;
}

.post_content ul {
  list-style-type: disc;
}

.post_content li {
  margin-bottom: 8px;
  line-height: 24px;
  font-size: 16px;
}

.post_content a {
  color: var(--main-blue);
}

.post_content a:hover {
  text-decoration: underline;
}

.single_post .blog_single_author_wrapper {
  max-width: 100%;
  padding: 25px 15%;
}

@media (max-width: 767px) {
  .single_post .blog_single_author_wrapper {
    padding: 25px 0;
  }
}
.single_post .blog_single_author_wrapper .blog_single_share {
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.blog_single_author_desc a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single_post .blog_single_author_wrapper .blog_single_share h3 {
  margin-bottom: 9px;
}

.single_post .blog_single_author_wrapper .blog_single_share .content_share a {
  color: var(--main-blue);
}

.blog_single_author_desc a:hover,
.single_post .blog_single_author_wrapper .blog_single_share .content_share a:hover {
  color: var(--main-yellow);
}

.post_image img,
.post_content img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.post_title {
  margin-bottom: 7px;
}

.post_content p {
  margin-bottom: 14px;
  padding-right: 3px;
}

.post_content .wp-caption {
  width: 100% !important;
  margin: 24px 0 32px;
}

.post_content p + .wp-caption {
  width: 100% !important;
  margin: 40px 0 16px;
}

.post_content .wp-caption img {
  width: 100%;
  max-width: 590px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.post_additional .wp-caption .wp-caption-text,
.post_content .wp-caption .wp-caption-text {
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  margin-top: 12px;
  padding: 0;
}

.post_additional .wp-caption .wp-caption-text {
  margin-top: 7px;
}

.post_content h4 {
  margin-bottom: 8px;
  margin-top: 24px;
}

.post_content h2 {
  font-weight: 800;
  font-size: 32px;
  line-height: 36px;
  margin: 20px 0;
  padding-top: 20px;
}

.post_content h3 {
  font-size: 30px;
  line-height: 34px;
  margin-top: 20px;
  padding: 17px 0;
  position: relative;
}

/* .post_content h3:before {
  content: "";
  position: absolute;
  height: 0.5px;
  width: 100%;
  left: 0;
  top: -0px;
  opacity: 0.66;
  background-color: var(--main-border);
} */
.post_content h5 {
  margin-top: 7px;
  margin-bottom: 8px;
}

.post_content p + h5 {
  margin-top: 24px;
}

@media (max-width: 767px) {
  .post_content h2,
  .post_content h3,
  .post_content h4,
  .post_content h5 {
    padding-bottom: 10px;
  }
}
.post_content figure {
  margin-bottom: 32px;
  text-align: center;
}

.post_content figcaption,
.post_content figcaption a {
  margin: 0;
  padding-top: 10px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  color: #8f8f8f;
}

.post_content iframe {
  width: 100%;
  height: 465px;
}

@media (max-width: 767px) {
  .post_content iframe {
    height: 250px;
  }
}
.post_tip + img {
  margin: 32px 0;
  width: 100%;
}

.post_additionals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.post_additional {
  max-width: 349px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
}

.post_additional > img + p {
  margin-top: 15px;
}

.post_additional img + p {
  margin-bottom: auto;
}

.post_additional img {
  width: 100%;
  max-width: 349px;
  -o-object-fit: cover;
     object-fit: cover;
}

.post_additional h2 {
  padding: 25px 0;
  font-weight: 800;
  position: relative;
  margin: auto 0;
}

.post_additional h2:before {
  content: "“";
  position: absolute;
  top: 26px;
  left: -27px;
  font-weight: 800;
  font-size: 40px;
  line-height: 44px;
  color: #bdbdbd;
}

.post_tip {
  position: relative;
  top: 193px;
}

.post_additional p {
  padding-top: 8px;
}

.post_additional h4 {
  margin-top: auto;
  margin-bottom: 15px;
  position: relative;
  width: 100%;
}

.post_additional h4:before {
  content: "";
  position: absolute;
  height: 1px;
  bottom: -16px;
  opacity: 1;
  background-color: #000;
  left: 1px;
  width: calc(100% - 2px);
}

.comments {
  padding: 33px 15px 92px;
}

.blog_single_list_wrapper {
  padding: 0 0 49px;
}

.blog_single_title:before {
  opacity: 1;
  background-color: #000;
}

.blog_single_title h2 {
  padding: 18px 0 22px;
}

.blog_single_list {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*////////////////////////////BLOG SINGLE PAGE///////////////////////////////////////////*/
/*////////////////////////////Chat Widget///////////////////////////////////////////*/
body .embeddedServiceHelpButton .helpButton {
  right: 15px;
  bottom: 15px;
}

body .scrollTop {
  bottom: 70px;
}

body .embeddedServiceHelpButton .helpButton .uiButton {
  background-color: #005290;
  color: #fff;
  min-width: auto;
  padding: 8px 16px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 4px !important;
  margin-left: auto;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
body .embeddedServiceHelpButton .helpButton .uiButton .helpButtonLabel {
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
}
body .embeddedServiceHelpButton .helpButton .uiButton .embeddedServiceIcon {
  margin: 0;
}
body .embeddedServiceHelpButton .helpButton .uiButton .embeddedServiceIcon::before {
  content: "";
}

body .embeddedServiceHelpButton .helpButton .uiButton {
  background-color: #DFDFDF;
  color: var(--main-blue);
}
body .embeddedServiceHelpButton .helpButton .uiButton:hover {
  background-color: #D4D4D4;
}
body .embeddedServiceHelpButton .helpButton .uiButton:active {
  background-color: #C9C9C9;
}
body .embeddedServiceHelpButton .helpButton .uiButton:focus {
  background-color: #D6D6D6;
}

body .embeddedServiceHelpButton .helpButton .helpButtonDisabled {
  background-color: #DFDFDF;
  color: #828282;
}
body .embeddedServiceHelpButton .helpButton .helpButtonDisabled:hover, body .embeddedServiceHelpButton .helpButton .helpButtonDisabled:focus, body .embeddedServiceHelpButton .helpButton .helpButtonDisabled:active {
  background-color: #DFDFDF;
  color: #828282;
}

body.white_stroke_chat_button .embeddedServiceHelpButton .helpButton .uiButton {
  background-color: #fff;
  color: #494B54;
  border: 1px solid #494B54;
}
body.white_stroke_chat_button .embeddedServiceHelpButton .helpButton .uiButton:hover {
  border: 1px solid #494B54;
  color: var(--main-blue);
}
body.white_stroke_chat_button .embeddedServiceHelpButton .helpButton .uiButton:active {
  background-color: #EDEDED;
  border-color: var(--main-blue);
  color: var(--main-blue);
}
body.white_stroke_chat_button .embeddedServiceHelpButton .helpButton .uiButton:focus {
  background-color: #fff;
  border-color: var(--main-blue);
  color: var(--main-blue);
}

body.white_stroke_chat_button .embeddedServiceHelpButton .helpButton .helpButtonDisabled {
  background-color: #EAEAEA;
  border: 1px solid #828282;
  color: #828282;
}
body.white_stroke_chat_button .embeddedServiceHelpButton .helpButton .helpButtonDisabled:hover, body.white_stroke_chat_button .embeddedServiceHelpButton .helpButton .helpButtonDisabled:focus, body.white_stroke_chat_button .embeddedServiceHelpButton .helpButton .helpButtonDisabled:active {
  background-color: #EAEAEA;
  border: 1px solid #828282;
  color: #828282;
}

body.blacker_gray_chat_button .embeddedServiceHelpButton .helpButton .uiButton {
  background-color: #494B54;
  color: #fff;
  outline: 1px solid transparent;
}
body.blacker_gray_chat_button .embeddedServiceHelpButton .helpButton .uiButton:hover {
  outline-color: #585B66;
}
body.blacker_gray_chat_button .embeddedServiceHelpButton .helpButton .uiButton:active {
  background-color: #70737F;
}
body.blacker_gray_chat_button .embeddedServiceHelpButton .helpButton .uiButton:focus {
  background-color: #585B66;
  color: #fff;
}

body.blacker_gray_chat_button .embeddedServiceHelpButton .helpButton .helpButtonDisabled {
  background-color: #EAEAEA;
  color: #828282;
}
body.blacker_gray_chat_button .embeddedServiceHelpButton .helpButton .helpButtonDisabled:hover, body.blacker_gray_chat_button .embeddedServiceHelpButton .helpButton .helpButtonDisabled:focus, body.blacker_gray_chat_button .embeddedServiceHelpButton .helpButton .helpButtonDisabled:active {
  background-color: #EAEAEA;
  color: #828282;
}

/*////////////////////////////Chat Widget///////////////////////////////////////////*/
/*////////////////////////////PRIVATE TOURS PAGE///////////////////////////////////////////*/
.private {
  padding-top: 23px;
}

.private_title {
  padding-top: 10px;
}

.private_title h1 {
  font-weight: 800;
}

.private_title.border_top:before {
  background-color: #000;
}

.private_content_wrapper {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0 71px;
}

.private_content {
  max-width: 692px;
  min-width: 500px;
  margin-right: 20px;
}

.private_content_item {
  padding-top: 8px;
  margin-bottom: 32px;
}

.private_content_item p {
  line-height: 32px;
}

.private_content_item p + p {
  line-height: 24px;
}

.private_content_item h2 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  padding-top: 10px;
}

.private_tour_sidebar .sidebar_content {
  padding-top: 15px;
}

.private_content_item p,
.private_content_item h2 {
  padding-bottom: 4px;
  white-space: pre-line;
}

.private_content_item p > a {
  padding-left: 5px;
}

.content_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 70%;
  padding-right: 15px;
}

.private_tour_sidebar .border_top:before {
  content: unset;
}

.content_wrapper .btn {
  max-width: 140px;
  height: 40px;
  margin-top: 9px;
  padding: 0 10px;
}

.content_file {
  margin-left: 2px;
}

.brochure_wrapper {
  background: rgb(242, 242, 242);
  margin-top: 10px;
  border-radius: 4px;
  padding: 14px 17px 8px;
  text-align: center;
}

.brochure_wrapper img {
  margin-bottom: 8px;
}

.brochure_wrapper a {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 16px;
  color: var(--main-blue);
}

.private_contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}

.private_contacts svg {
  margin-right: 8px;
}

.private_contacts svg path {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.private_content_item p > a:hover,
.brochure_wrapper a:hover,
.private_contacts:hover,
.private_contacts:hover svg path {
  color: var(--main-yellow);
  fill: var(--main-yellow);
}

.blue {
  color: var(--main-blue);
}

.private_tour_sidebar {
  max-width: 387px;
}

.private_tour_sidebar img {
  max-width: 387px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
}

.private_tour_sidebar h5 {
  margin: 16px 0 31px;
}

/*////////////////////////////PRIVATE TOURS PAGE///////////////////////////////////////////*/
/*////////////////////////////REVIEW PAGE///////////////////////////////////////////*/
.review_wrapper {
  margin-top: 23px;
}

.review_title:before {
  background-color: #000;
}

.review_title h1 {
  display: block;
  font-weight: 800;
  padding-top: 10px;
  margin: 0 5rem;
  width: 100%;
  /* margin: auto; */
}

@media (max-width: 767px) {
  .review_title h1 {
    margin: 0;
  }
}
.review_content_wrapper {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 5rem;
  margin-bottom: 169px;
}

@media (max-width: 767px) {
  .review_content_wrapper {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.review_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.review_item {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 592px;
  padding: 18px 0 6px;
}

.review_item img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: contain;
     object-fit: contain;
}

.review_item a {
  font-weight: bold;
  font-size: 16px;
  border: 1px solid #bdbdbd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 157px;
  width: 100%;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.review_item a:hover {
  border: 1px solid #000;
}

.review_item.item_review {
  margin-top: 23px;
  padding-bottom: 7px;
}

.review_item:before {
  top: unset;
  bottom: -16px;
}

.review_item h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}

.review_groupPhoto {
  padding-top: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.review_groupPhoto a {
  font-weight: bold;
  font-size: 16px;
  border: 1px solid #bdbdbd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 157px;
  width: 100%;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.review_groupPhoto a:hover {
  border: 1px solid #000;
}

/*////////////////////////////REVIEW PAGE///////////////////////////////////////////*/
/*////////////////////////////THANK YOU PAGE///////////////////////////////////////////*/
.thank_you_wrapper {
  padding: 23px 0 13px;
}

.thank_you_title:before {
  background-color: #000;
}

.thank_you_title h1 {
  font-weight: 800;
}

.thank_you_title {
  padding: 10px 2px 14px;
}

.thank_you_content_wrapper {
  padding-top: 17px;
}

.thank_you_content {
  max-width: 590px;
  width: 100%;
  margin-right: 20px;
}

.thank_you_content_item {
  width: 100%;
}

.thank_you_content_item h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  padding-bottom: 15px;
}

.thank_you_content_item .content_wrapper {
  margin-top: 16px;
  max-width: 100%;
  padding-right: 10px;
}

.content_row {
  width: 100%;
  margin-bottom: 16px;
}

.content_row h4 {
  width: 100%;
}

.content_row_title {
  max-width: 202px;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.content_row_meta {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.content_share_wrapper {
  margin-top: 16px;
}

.content_share_wrapper h2 {
  margin-bottom: 9px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 0;
}

.content_share a:first-child:before {
  content: unset;
}

.content_share a:before {
  height: calc(100% - 5px);
  left: -17px;
  top: 4px;
}

.content_share a {
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  margin-right: 28px;
  color: var(--main-blue);
}

.content_share a:hover {
  color: var(--main-yellow);
}

.thank_you_sidebar {
  max-width: 316px;
  width: 100%;
}

.thank_you_sidebar:before {
  left: 0;
}

.thank_you_sidebar form {
  padding-left: 31px;
  padding-bottom: 130px;
}

.thank_you_sidebar form h2 {
  margin-bottom: 14px;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

.thank_you_sidebar label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.thank_you_sidebar .wpcf7-list-item-label {
  margin-left: 35px;
  margin-top: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 24px;
  position: relative;
}

.thank_you_sidebar form p {
  line-height: 14px;
}

.thank_you_sidebar input:checked + .wpcf7-list-item-label:after {
  background-color: var(--main-blue);
}

span.wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.wpcf7-list-item-label:before {
  content: "";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 12px;
  height: 12px;
  padding: 5px;
  left: -35px;
  top: 0;
  border-radius: 50%;
  border: 1px solid var(--main-blue);
  cursor: pointer;
}

.wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 12px;
  left: -29px;
  top: 6px;
  height: 12px;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.main_tours_additional_list_item.most_popular .checkbox {
  margin-top: 19px;
}

.thank_you_sidebar form .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 157px;
  width: 100%;
  height: 48px;
  border: 1px solid #bdbdbd;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 800;
  margin-top: 10px;
}

.thank_you_sidebar form .button:hover {
  border: 1px solid #000000;
}

#wpcf7-f571-o1 form #SpecifyOther {
  display: none;
}

/*////////////////////////////THANK YOU PAGE///////////////////////////////////////////*/
/*////////////////////////////BLOG AUTHOR PAGE///////////////////////////////////////////*/
.blog_author_first_wrapper {
  padding: 32px 0 39px;
}

.blog_author_first {
  padding: 9px 15px 0;
}

.blog_author_first_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
}

.blog_author_first_content .blog_first_title:hover {
  color: var(--main-white);
}

.blog_author_first_content .blog_first_title {
  margin-top: 0;
  padding: 10px 0;
}

.blog_author_first_content .content_share_wrapper {
  margin-top: auto;
  padding-top: 15px;
}

.blog_author_first_content .content_share_wrapper h5 {
  font-weight: 400;
}

.blog_author_first_content .content_share_wrapper .content_share a {
  color: var(--main-white);
}

.blog_author_first_content .content_share_wrapper .content_share a:hover {
  color: var(--main-yellow);
}

.blog_author_first_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 7px;
}

.blog_author_first_image img {
  margin-left: auto;
  max-width: 150px;
  max-height: 150px;
}

.no_posts {
  font-size: 20px;
  padding-bottom: 30px;
}

/*////////////////////////////BLOG AUTHOR PAGE///////////////////////////////////////////*/
/* TOP SCROLLER */
.scrollTop {
  position: fixed;
  right: 20px;
  bottom: 10px;
  max-width: 40px;
  height: 0;
  cursor: pointer;
  z-index: 99;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.scrollTop:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

@media (max-width: 767px) {
  .scrollTop {
    display: none !important;
  }
}
.account-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 20px;
}

.accounts-link {
  padding: 20px;
  text-align: center;
  display: block;
  color: var(--main-blue);
  font-weight: 700;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 4px;
  width: 0;
  background-color: #35d07f;
}

/* Newsletter Block */
.newsletter_block {
  margin-top: 25px;
  color: #fff;
}

.newsletter_block .widget-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  font-family: "Inter", sans-serif;
  padding-bottom: 8px;
}

.newsletter_block .form_content input[type=email] {
  background: #fff;
  border: none;
  padding: 10px;
}

.newsletter_block .form_content input[type=email]::-webkit-input-placeholder {
  color: #828282;
  font-size: 16px;
  line-height: 24px;
  font-family: "Inter", sans-serif;
}

.newsletter_block .form_content input[type=email]::-moz-placeholder {
  color: #828282;
  font-size: 16px;
  line-height: 24px;
  font-family: "Inter", sans-serif;
}

.newsletter_block .form_content input[type=email]:-ms-input-placeholder {
  color: #828282;
  font-size: 16px;
  line-height: 24px;
  font-family: "Inter", sans-serif;
}

.newsletter_block .form_content input[type=email]::-ms-input-placeholder {
  color: #828282;
  font-size: 16px;
  line-height: 24px;
  font-family: "Inter", sans-serif;
}

.newsletter_block .form_content input[type=email]::placeholder {
  color: #828282;
  font-size: 16px;
  line-height: 24px;
  font-family: "Inter", sans-serif;
}

.newsletter_block .form_content button[type=submit] {
  background: #f5ce3e;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 24px;
  margin-left: 8px;
  font-family: "Inter", sans-serif;
}

.newsletter_block .form_content button[type=submit]:hover {
  background: #ffcd16;
}

.newsletter_block .form_disclaimer p,
.newsletter_block .form_disclaimer a {
  font-family: "Inter", sans-serif;
  font-size: 12px !important;
  line-height: 16px;
  padding-top: 5px;
  max-width: 400px;
  padding-bottom: 10px;
}

.newsletter_block .form_disclaimer p a {
  text-decoration: underline;
  color: #f5ce3e;
  text-decoration-color: #000;
  font-family: "Inter", sans-serif;
}

.newsletter_block .form_confirm {
  display: none;
}

@media only screen and (max-width: 767px) {
  .newsletter_block {
    margin-top: 20px;
  }
  .form_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .newsletter_block .form_content button[type=submit] {
    margin-left: 0;
    margin-top: 5px;
  }
  .newsletter_block .form_content input[type=email]::-webkit-input-placeholder {
    text-align: center;
  }
  .newsletter_block .form_content input[type=email]::-moz-placeholder {
    text-align: center;
  }
  .newsletter_block .form_content input[type=email]:-ms-input-placeholder {
    text-align: center;
  }
  .newsletter_block .form_content input[type=email]::-ms-input-placeholder {
    text-align: center;
  }
  .newsletter_block .form_content input[type=email]::placeholder {
    text-align: center;
  }
  .newsletter_block .form_disclaimer {
    text-align: center;
  }
  /* Live Chat Positioning */
  #PureChatWidget.purechat.purechat-popped-out-widget.purechat-image-only.purechat-has-image.purechat-widget-collapsed.purechat-bottom .purechat-collapsed-image {
    bottom: -12px !important;
    right: 22px !important;
    left: 100% !important;
    -webkit-transform: translateX(-78px) !important;
            transform: translateX(-78px) !important;
  }
  .page-template-single_tour #PureChatWidget.purechat.purechat-popped-out-widget.purechat-image-only.purechat-has-image.purechat-widget-collapsed.purechat-bottom .purechat-collapsed-image {
    top: -125px !important;
  }
  body.page-template-single_tour {
    padding-bottom: 50px;
  }
  .page-template-templatessingle_tour-php .embeddedServiceHelpButton .helpButton,
  .page-template-templatessingle_tour-php .a11ly_styles_minifiedWidget__LGUBi {
    bottom: 70px;
  }
  body .embeddedServiceHelpButton .helpButton {
    right: 15px !important;
  }
}
/* Skip to Content */
.skip-to-content-link {
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -40px;
}

.skip-to-content-link {
  background: #1a47b8;
  color: #fff;
  left: 50%;
  padding: 8px 12px;
  position: absolute;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.skip-to-content-link:focus {
  top: 0;
}

/*  Screen reader text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*  Sticky Header */
body.sticky-header {
  padding-top: 64px;
}

body.sticky-header header.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

body.sticky-header.admin-bar header.header {
  top: 32px;
}

.header-banner {
  background-color: var(--main-blue);
  padding: 8px 0;
  display: block;
  text-decoration: none;
}

.header-banner__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-banner__content {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 34px;
  color: #fff;
  letter-spacing: 0.5px;
}

.header-banner__content span {
  font-size: inherit;
  font-weight: inherit;
}

.header-banner__content_mobile {
  display: none;
}

@media only screen and (max-width: 991px) {
  .header-banner__content_mobile {
    display: block;
  }
  .header-banner__content_desktop {
    display: none;
  }
}
.header-banner__close {
  margin-left: auto;
  cursor: pointer;
  padding: 2.5px 10px;
}

.header-banner__close svg {
  vertical-align: middle;
}

@media (max-width: 1366px) {
  .about_screen:before {
    width: calc(100% - 30px);
  }
  .accounts_image_comment {
    padding-left: 20px;
  }
  .accounts_image_comment::before {
    left: 0;
  }
  .faq_screen .faq__item_title:after {
    top: 38%;
  }
  footer > p {
    padding-left: 15px;
  }
}
@media (max-width: 1250px) {
  .main_tours_desc {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
    max-width: 47%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .main_tours_desc:nth-child(odd):after {
    content: unset;
  }
  .main_tours_wrapper .single_tour_options .main_tours_desc:nth-child(odd):after {
    content: "";
  }
  .main_tours_wrapper .single_tour_options .main_tours_desc:nth-child(1):after {
    content: unset;
  }
  .main_tours_wrapper .single_tour_options .main_tours_desc {
    max-width: 31%;
  }
  .anchors_sticky .btn-yellow {
    margin: 0 0 0 auto;
  }
}
@media (max-width: 1200px) {
  .header .header__logo {
    margin-left: 0;
  }
  .header .header__menu a {
    margin-right: 15px;
  }
  .header_wrapper {
    padding: 0 15px;
  }
  .included_item .included_item_image img {
    max-width: 640px;
    width: 100%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: top;
       object-position: top;
  }
  .location_content_item .text {
    padding-right: 30px;
  }
}
@media (max-width: 1100px) {
  body.single-tour-sticky-block .single_review_section .text_section_title img {
    max-width: 275px;
    -o-object-fit: cover;
       object-fit: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 1228px) {
  body.single-tour-sticky-block .booking__card {
    margin-left: 0;
  }
}
@media (max-width: 1024px) {
  body.single-tour-sticky-block .booking__card {
    display: none;
  }
  body.single-tour-sticky-block .single-tour-w-60 {
    width: 100%;
  }
  body.single-tour-sticky-block .location_content_item {
    width: 100%;
    border-right: none !important;
  }
  body.single-tour-sticky-block .location_content_item:not(:first-child)::before {
    content: "";
  }
  .text_section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .text_section::before {
    left: 0;
    width: 100%;
  }
  .main_tours_desc {
    width: 47%;
  }
  .main_tours_additional_list_item.border_top:before {
    width: 87.5%;
  }
  .main_tours_additional {
    width: 410px;
    margin-left: auto;
  }
  .single_tours {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .single_tours::before {
    width: 100%;
    left: 0;
  }
  .single_tours_additional {
    width: 100%;
  }
  .single_tours_additional_wrapper > .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .single_tours_additional_wrapper .btn {
    margin-left: 0;
    margin-right: auto;
  }
  .main_tours_additional_list_item img {
    display: none;
  }
  .single_tours_additional_wrapper:before {
    left: -52px;
  }
  .included_item {
    padding: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 27px;
  }
  .included_item:before {
    top: -7px;
  }
  .included_item .included_item_text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 88%;
    padding: 12px 0 0 20px;
    margin-right: 0;
  }
  .included_item .included_item_image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .included_item .included_item_image img {
    min-height: 255px;
    max-width: unset;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .included_item .included_item_number {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin: 0;
    width: unset;
  }
  .included_item .border_number {
    font-size: 80px;
    line-height: 80px;
    /* left: 0; */
    width: 38px;
  }
  .included_item .included_item_text h4 {
    margin-bottom: 7px;
  }
  .included_item .included_item_text p {
    padding-right: 0;
    padding-bottom: 22px;
  }
  .included_item .included_item_image p {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    padding-right: 0;
    padding-top: 5px;
  }
  .included .btn {
    position: unset;
    width: 100%;
    max-width: 160px;
    margin: 1px auto 0;
  }
  .anchors_sticky .anchors_menu a {
    margin-right: 6px;
  }
  .faq_screen .faq__title {
    max-width: 110px;
  }
  .faq_screen .faq_block {
    width: 60.6%;
  }
  .faq_screen .title_block_wrapper {
    width: 34.2%;
  }
  .about_images img.desk {
    margin: auto 30px 0 auto;
  }
}
@media (max-width: 900px) {
  .header .header__logo img {
    max-width: 180px;
  }
  .single_tours_additional_wrapper .main_tours_desc_list_item .title {
    max-width: 84px;
  }
  .about_images img {
    max-width: 460px;
  }
}
@media (min-width: 1025px) {
  body.single-tour-sticky-block .anchors_sticky .btn-yellow {
    display: none;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
    line-height: 32px;
  }
  h2 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
  }
  h3 {
    font-weight: 800;
    font-size: 22px;
    line-height: 26px;
  }
  h4 {
    font-weight: 800;
    font-size: 18px;
    line-height: 24px;
  }
  h5 {
    font-size: 16px;
    line-height: 24px;
  }
  .header_wrapper {
    padding: 4px 15px 9px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .header .header__logo {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-left: 0;
    max-width: 202px;
    padding-top: 7px;
  }
  .header .header__logo img {
    width: 100%;
    max-width: 200px;
  }
  .header .header__menu {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    overflow-x: auto;
    overflow-y: unset;
    margin: 5px auto 0 0;
    width: 100%;
  }
  .header .header__menu ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header .header__menu a {
    margin-right: 10px;
    white-space: nowrap;
  }
  .nav_blue_color {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: 18px;
  }
  .main_banner_wrapper {
    min-height: unset;
  }
  .main_banner_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main_banner_content_left {
    width: 100%;
    padding: 287px 15px 17px 15px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .main_banner_content_right {
    width: 100%;
    margin-left: 0;
    padding: 24px 15px 24px;
  }
  .main_banner_content_left .play_wrapper a svg {
    width: 48px;
    height: 50px;
  }
  .main_banner_content_left .play_wrapper .play_text h2 {
    line-height: 20px;
    margin-top: 7px;
  }
  .main_banner_content_left .play_wrapper .play_text {
    margin-left: 16px;
  }
  .main_banner_content_left .play_wrapper .play_text p {
    font-size: 14px;
  }
  .main_banner_content_right p {
    font-size: 12px;
    line-height: 16px;
  }
  .main_banner_content_right h1 {
    max-width: 290px;
    line-height: 32px;
  }
  .main_banner_content_right h2 {
    font-size: 18px;
    margin-top: 9px;
    line-height: 24px;
  }
  .text_section {
    margin: 39px auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .text_section:before {
    top: 8px;
  }
  .text_section .text_section_title {
    width: 100%;
    padding-right: 0;
  }
  .text_section .text_section_content {
    width: 100%;
    padding: 9px 0 0;
    margin-top: 23px;
  }
  .text_section .text_section_content:before {
    width: 100%;
    height: 0.5px;
    top: 0;
  }
  .text_section .text_section_content p:last-child {
    padding: 0 3px 0 2px;
  }
  .text_section .text_section_content p:first-child {
    margin-bottom: 16px;
  }
  .main_tours {
    padding: 48px 15px 18px;
  }
  .main_tours_wrapper .single_tour_options .main_tours_desc,
  .main_tours_desc {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    max-width: unset;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .main_tours_desc span {
    position: relative;
    padding: 2px 0 6px;
  }
  .main_tours:before {
    top: 39px;
  }
  .main_tours_desc h3 {
    margin-top: 11px;
  }
  .main_tours_desc:nth-child(odd):after {
    content: "";
  }
  .main_tours_desc:nth-child(1):after {
    content: unset;
  }
  .main_tours_desc:after {
    height: 1px;
    width: 100%;
    left: 0;
    top: 1px;
  }
  .main_tours_wrapper .single_tour_options .main_tours_desc img,
  .main_tours_desc img {
    height: 256px;
    margin-bottom: 8px;
  }
  .main_tours_desc h5 {
    padding-right: 0;
    margin-bottom: 16px;
  }
  .item_description {
    margin-right: 0;
  }
  .main_tours_desc_list_item {
    margin-bottom: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main_tours_desc_list_item p {
    font-weight: 400;
  }
  .main_tours_desc_button_wrapper {
    margin-bottom: 32px;
  }
  .main_tours_additional_wrapper {
    width: 100%;
  }
  .main_tours_additional {
    padding: 25px 0 0;
    margin: 0;
    width: 100%;
  }
  .main_tours_additional_title {
    margin-left: 0;
  }
  .main_tours_additional_title p {
    margin: 0 0 23px 13px;
    font-size: 16px;
    line-height: 23px;
  }
  .main_tours_additional_list_item {
    padding: 6px 0 24px 1px;
  }
  .main_tours_additional_list_item #option_3 + label {
    margin-top: 28px;
  }
  .item_description {
    margin-top: 3px;
    margin-left: 12px;
  }
  .main_tours_additional_list_item img {
    display: none;
  }
  .popular {
    text-transform: capitalize;
    font-size: 11px;
    margin: 0 0 10px;
  }
  .main_tours_additional_list_item.most_popular .checkbox {
    margin-top: 31px;
  }
  .main_tours_additional_list_item.border_top:before {
    right: 0;
    width: 89.4%;
  }
  .item_description p {
    max-width: 460px;
    padding-right: 7px;
  }
  .main_tours_desc_button_wrapper a {
    margin-left: 25px;
  }
  .btn {
    width: 175px;
  }
  .text_section_wrapper.accounts_wrapper .text_section {
    margin-bottom: 20px;
    margin-top: 40px;
    padding: 14px 0 0;
  }
  .text_section_wrapper.accounts_wrapper .text_section:before {
    width: 100%;
    left: 0;
  }
  .accounts_wrapper .text_section_title h2 {
    line-height: 38px;
    margin-bottom: 5px;
  }
  .text_section .text_section_content.accounts_content {
    padding-top: 3px;
  }
  .text_section .text_section_content.accounts_content:before {
    content: "";
  }
  .accounts_wrapper .accounts_content .accounts_content_item {
    margin-bottom: 22px;
  }
  .text_section .text_section_content.accounts_content p {
    margin-bottom: 8px;
    padding-right: 2px;
  }
  .btn_forward.mob {
    margin: 2px auto 0;
  }
  .text_section.review_section {
    margin: 22px auto 47px;
    padding: 17px 15px 0;
  }
  .review_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .review_content_item {
    margin-bottom: 23px;
    max-width: unset;
  }
  .review_content_item:nth-child(2) {
    margin: 0 0 23px;
  }
  .review_section .mob.btn_forward {
    margin-top: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .text_section.video_section {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .video_title {
    margin-bottom: 8px;
  }
  .video_content {
    padding-top: 16px;
    max-width: 295px;
  }
  .video_content a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 8px;
  }
  .video_content h3 {
    font-size: 16px;
  }
  .video_content a img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .video_desc {
    bottom: 17px;
  }
  .video_desc svg {
    width: 32px;
    height: 32px;
  }
  .video_content a h2 {
    font-size: 15px;
    margin: 1px 0 0 9px;
    line-height: 13px;
  }
  .text_section.accessibility_section .accessibility_section_title {
    padding-top: 0;
  }
  .accessibility_content_item .item_image img {
    width: 24px;
  }
  .accounts_wrapper .accessibility_section_title.text_section_title h3 {
    max-width: unset;
  }
  .item_content {
    padding-left: 15px;
    padding-bottom: 23px;
  }
  .item_content h3,
  .item_content p {
    margin-bottom: 0;
    padding-right: 0;
  }
  .accessibility_content_item:first-child {
    padding-top: 0;
  }
  .accessibility_content_item {
    padding-top: 9px;
  }
  .text_section .text_section_content p:last-child {
    padding: 0;
  }
  .accessibility_content .accessibility_content_item:first-child p:last-child {
    padding: 8px 0 1px;
  }
  .accessibility_wrapper.accounts_wrapper .accessibility_content > div:nth-child(3) .item_content p {
    padding-bottom: 7px;
  }
  .accessibility_wrapper.accounts_wrapper .accessibility_content > div:nth-child(3) .item_content:last-child {
    padding-bottom: 17px;
  }
  .accessibility_content .accessibility_content_item:last-child .item_content p {
    padding-right: 30px;
  }
  .accounts_wrapper .text_section.accessibility_section {
    margin-bottom: 25px;
    margin-top: 16px;
  }
  footer {
    padding: 32px 0 18px;
  }
  .footer_wrapper .footer_menu ul:nth-child(2) {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
  .footer_wrapper .footer_menu nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
  .footer_wrapper .footer_menu ul:nth-child(3) {
    margin-left: auto;
    color: var(--main-yellow);
  }
  .footer_wrapper .footer_menu ul:nth-child(3) li a:hover {
    color: var(--main-white);
  }
  .footer_wrapper .footer_logo {
    margin: 33px 0 3px 1px;
  }
  .footer_wrapper .footer_logo img {
    width: 100%;
    max-width: 200px;
  }
  footer > p {
    font-size: 12px;
    padding-left: 15px;
  }
  /*//////////////////////////////////// single tour..///////////////////////////////////////*/
  .single_tour_image {
    background-size: 177%;
    background-position: center 2px;
  }
  .single_banner_wrapper .main_banner_content_left {
    padding: 346px 15px 17px 15px;
  }
  .single_banner_wrapper .main_banner_content_right {
    padding-bottom: 24px;
  }
  .single_banner_wrapper .btn {
    margin-top: 14px;
    width: 165px;
  }
  .single_tours_wrapper .anchors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 10px;
  }
  .single_tours_wrapper .anchors a {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
    margin-right: 0;
    margin-bottom: 16px;
  }
  .single_tours_wrapper .anchors a:nth-child(even) {
    padding-left: 7px;
  }
  .single_tours {
    padding: 22px 15px 53px;
  }
  .single_tours form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .single_tours .single_tours_desc {
    width: 100%;
  }
  .single_tours:before {
    top: 13px;
  }
  .single_tours_desc h2 {
    max-width: unset;
    padding-right: 26px;
    margin-bottom: 8px;
  }
  .main_tours_wrapper .single_tour_options {
    padding: 62px 15px 19px;
  }
  .main_tours_wrapper .single_tour_options:before {
    top: 54px;
  }
  .single_tours_additional_wrapper .single_tours_desc_list_item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .single_tours_additional_wrapper > .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .single_tours_additional_wrapper .main_tours_desc_list_item .title {
    max-width: 89px;
  }
  .single_tours_additional_wrapper .main_tours_desc_list {
    padding-right: 0;
  }
  .single_tours_additional_wrapper .main_tours_desc_list_item p {
    font-weight: 500;
    line-height: 25px;
  }
  .single_tours_additional_wrapper .btn {
    margin: 14px 0 0 0;
  }
  .single_tours_additional {
    margin-top: 39px;
    padding-top: 10px;
  }
  .single_tours_additional .main_tours_additional_title {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .single_tours_additional .main_tours_additional_title p {
    margin-right: 19px;
    font-size: 17px;
    letter-spacing: 0.5px;
  }
  .single_tours_additional .main_tours_additional_list_item.border_top:before {
    right: 0;
  }
  .single_tours_additional .main_tours_additional_list_item {
    padding: 6px 0 22px 0;
  }
  .single_tours_additional .main_tours_additional_list_item h3 {
    font-size: 18px;
  }
  .single_tours_additional .main_tours_additional_list_item:nth-child(3) h3 {
    margin-top: 1px;
    margin-bottom: 7px;
  }
  .single_tours_additional .main_tours_additional_list .btn {
    margin: 2px 0 0;
    max-width: 175px;
  }
  .quote {
    margin: 9px 0 0 0;
    padding: 0;
  }
  .included_wrapper {
    margin: 56px 0 50px;
  }
  .included {
    position: relative;
    padding: 48px 15px 38px;
  }
  .included .btn {
    max-width: 400px;
  }
  .included:before {
    top: 39px;
  }
  .single_tours_video .video_section {
    margin: 39px 0 30px;
  }
  .single_review_section .text_section {
    margin: 30px auto 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .single_review_section .single_review_content {
    width: 101%;
    padding: 8px 2px 0 0;
    margin-top: 0;
  }
  .single_review_section .text_section_title img {
    max-width: 165px;
    margin: auto;
  }
  .single_review_section .text_section_title {
    padding-top: 9px;
  }
  .single_review_section .text_section_title .btn_forward.mob {
    margin: 30px auto 0;
  }
  .single_review_content .single_review_content_item {
    margin-bottom: 23px;
    margin-top: 8px;
  }
  .single_review_content .single_review_content_item:last-child {
    padding-top: 0;
  }
  .location_section {
    margin: 0;
  }
  .location_title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 24px;
  }
  .location_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 10px;
    padding-left: 2px;
    margin-bottom: -2px;
  }
  .location_content_item:first-child p {
    padding-right: 14px;
    line-height: 17px;
  }
  .subway_yellow {
    margin-bottom: 0;
  }
  .location_content_item {
    width: 100%;
  }
  .location_content_item .text {
    padding-right: 0;
  }
  .location_content_item:first-child h4 {
    margin-bottom: 6px;
  }
  .location_content_item h4 {
    margin-bottom: 5px;
    padding-right: 80px;
  }
  .location_content_item:first-child {
    margin-bottom: 20px;
  }
  .location_content_item {
    margin-bottom: 24px;
  }
  .location_content_item:before {
    height: 0.5px;
    left: 0;
    top: -9px;
    width: 100%;
  }
  .text a {
    display: block;
    margin-top: 8px;
  }
  .location_image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #map {
    height: 423px;
    width: 100%;
  }
  .location_image img {
    width: 100%;
  }
  .faq_wrapper {
    padding-top: 15px;
    margin-bottom: 44px;
  }
  .faq_wrapper > .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: solid 1px black;
    padding-top: 8px;
    padding-bottom: 11px;
  }
  .faq__title {
    margin-bottom: 10px;
  }
  .faq__item_title {
    padding-top: 10px;
    font-size: 18px;
  }
  .faq__list {
    padding: 0;
    max-width: unset;
  }
  .faq__item_title:after {
    background-size: contain;
    width: 16px;
    top: 11px;
    right: 1px;
  }
  .faq__item_title.active:after {
    top: 15px;
  }
  .faq__item_answer {
    padding: 7px 2px 0 1px;
  }
  .faq__item_answer > p {
    padding-bottom: 8px;
  }
  .faq__item {
    margin-bottom: 12px;
  }
  .policies_wrapper .review_section {
    margin: 2px 0 0;
  }
  .policies_wrapper .review_section .review_content_item {
    padding-top: 3px;
  }
  .policies_wrapper .policies_content h4 {
    margin-bottom: 6px;
  }
  .policies_wrapper .policies_content .review_content_item:not(:last-child) p {
    padding-right: 3px;
  }
  .policies_wrapper .policies_content .review_content_item {
    margin-bottom: 7px;
  }
  .policies_wrapper .mob.btn_forward {
    display: none;
  }
  .policies_wrapper .policies_content {
    margin-bottom: 49px;
  }
  /*//////////////////////////////////// single tour..///////////////////////////////////////*/
  .cookie_popup {
    max-width: 345px;
    left: calc(50% - 173px);
    min-height: 64px;
    z-index: 99999999999;
  }
  .modal_wrapper {
    width: 90%;
  }
  .modal_video .close {
    width: 32px;
    height: 32px;
    top: 2%;
    right: 3.9%;
    background-size: cover;
  }
  .anchors_sticky {
    top: unset;
    bottom: 0;
  }
  .anchors_sticky .mob {
    font-size: 16px;
    padding: 16px 5px 16px 0;
    line-height: 24px;
    color: #ffffff;
  }
  /*/////////////////////////////////FAQ///////////////////////////*/
  .faq_screen {
    margin-top: 17px;
  }
  .faq_screen .faq_screen_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .faq_screen .title_block_wrapper {
    width: 100%;
  }
  .faq_screen .title_block {
    margin: 25px auto 87px 0;
  }
  .faq_screen .title_block h4 {
    margin-top: 1px;
  }
  .faq_screen .faq_block.border_top:before {
    content: unset;
  }
  .faq_screen .faq_block {
    width: 100%;
    max-width: unset;
    padding-bottom: 40px;
    padding-top: 24px;
  }
  .faq_screen .faq_wrapper {
    padding: 6px 15px 0 15px;
  }
  .faq_screen .faq_wrapper:not(:first-child) .faq__title {
    margin-bottom: 16px;
  }
  .faq_screen .faq_wrapper > .flex {
    border-top: unset;
    padding-bottom: 5px;
  }
  .faq_screen .faq__title {
    max-width: unset;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 13px;
  }
  .faq_screen .faq__list {
    padding: 0;
  }
  .faq_screen .faq__item:last-child:before {
    content: "";
    position: absolute;
    height: 0.5px;
    width: 100%;
    opacity: 0.66;
    top: -4px;
    background-color: var(--main-text);
  }
  .faq_screen .faq_wrapper:last-child .faq__item:last-child:after {
    content: "";
    position: absolute;
    height: 0.5px;
    width: 100%;
    opacity: 0.66;
    bottom: -10px;
    background-color: var(--main-text);
  }
  .faq_screen .faq__item:last-child:after {
    content: unset;
  }
  .faq_screen .faq__item:before {
    width: 100%;
    top: -4px;
    bottom: unset;
    background-color: var(--main-text);
  }
  .faq_screen .faq__item_title {
    padding: 10px 31px 0 0;
  }
  .faq_screen .faq__item {
    margin-bottom: 14px;
  }
  .faq_screen .faq__item_title:after {
    top: 15px;
    right: -2px;
  }
  .faq_screen .faq__item_answer {
    padding: 7px 0 0;
  }
  .faq_screen .faq__item_answer > img {
    margin: 8px auto 1px;
  }
  /*/////////////////////////////////FAQ///////////////////////////*/
  /*/////////////////////////////////ABOUT///////////////////////////*/
  .about_content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 10px;
  }
  .about_content_text {
    margin-right: 0;
    width: 100%;
    margin-bottom: 15px;
  }
  .about_screen:before {
    top: -6px;
  }
  .about_screen {
    padding: 3px 15px 56px;
  }
  .about_content_text p {
    padding: 0 1px 0 0;
    margin-bottom: 0;
    font-size: 18px;
  }
  .about_content_links {
    width: 54%;
    margin-top: 16px;
  }
  .about_content_links li {
    margin-bottom: 8px;
  }
  .about_content_links a {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .about_content img.mob {
    max-width: 109px;
    height: 112px;
    margin: 0;
  }
  .about_content img {
    max-width: 344px;
    height: 453px;
    margin: 0 0 34px 0;
  }
  .about_members {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: unset;
  }
  .about_members img {
    margin-right: 0;
    margin-bottom: 8px;
    height: 57px;
    max-width: 119px;
  }
  /*/////////////////////////////////ABOUT///////////////////////////*/
  /*/////////////////////////////////ACCOUNTS///////////////////////////*/
  .accounts_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 50px 15px 18px;
  }
  .accounts_wrapper .accounts_title,
  .accounts_wrapper .accounts_list {
    width: 100%;
  }
  .accounts_wrapper .accounts_list {
    padding-left: 0;
  }
  .accounts_list_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 31px;
  }
  .accounts_list_item h5 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .accounts_item_text p {
    padding-right: 2px;
  }
  .accounts_title h5 {
    margin: 0;
  }
  .accounts_list .accounts_image_comment {
    display: block;
    margin-top: 25px;
    margin-bottom: 29px;
    padding-left: 0;
  }
  .accounts_item_text {
    max-width: unset;
  }
  .accounts_image_comment.second {
    margin: 106px 0 27px 0;
  }
  .accounts_image_comment.second h3 {
    display: none;
  }
  .accounts_image_comment.second:before {
    content: unset;
  }
  .accounts_image_comment:before {
    left: 0;
    font-size: 22px;
    top: -20px;
  }
  .accounts_image_comment h3 {
    margin-bottom: 16px;
  }
  /*/////////////////////////////////ACCOUNTS///////////////////////////*/
  /*/////////////////////////////////CONTACT////////////////////////////*/
  .contact {
    padding: 16px 15px 39px;
  }
  .contact_content_wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 10px;
  }
  .contact_content,
  .contact_form_wrapper {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact_content_body {
    width: 100%;
  }
  .contact_content h4 > a {
    font-size: 18px;
  }
  .contact_form_wrapper {
    margin-top: 6px;
  }
  .input_wrapper {
    margin-top: 8px;
  }
  .contact_form_wrapper > h2 {
    padding-left: 0;
    padding-bottom: 15px;
  }
  .contact_title:before {
    top: 1px;
  }
  .contact_form_wrapper form .btn {
    max-width: 400px;
  }
  .contact_form_wrapper:before {
    left: 0;
    width: 100%;
    height: 0.5px;
  }
  .contact_form_wrapper {
    padding-top: 18px;
  }
  .contact_form_wrapper form {
    padding: 0 0 17px 0;
  }
  .contact_form_wrapper > h4 {
    font-size: 20px;
    padding-left: 0;
  }
  .useful_links {
    max-width: 240px;
  }
  .useful_links h4 {
    margin-bottom: 9px;
  }
  .contact_content h4 > a {
    color: var(--main-blue);
  }
  .useful_links a {
    font-size: 18px;
  }
  /*/////////////////////////////////CONTACT////////////////////////////*/
  /*/////////////////////////////////Blog////////////////////////////*/
  .blog_first_wrapper {
    margin-top: 10px;
    padding: 23px 0 0 0;
  }
  .blog_first {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 17px 15px 30px;
  }
  .blog_first_image,
  .blog_first_content {
    width: 100%;
  }
  .blog_first_content .blog_first_title + p,
  .blog_first_content .btn {
    display: none;
  }
  .blog_first_content .blog_first_title {
    margin: 8px 0 32px;
    letter-spacing: 0;
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
  }
  .blog_first_image img {
    height: 416px;
    max-width: unset;
  }
  .blog_list_wrapper {
    padding: 55px 0 64px;
  }
  .blog_item:nth-child(odd) {
    margin-right: 0;
  }
  .blog_item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    padding-top: 17px;
    margin-bottom: 32px;
    max-width: unset;
  }
  .blog_item img,
  .blog_item_wide img {
    max-width: unset;
  }
  .blog_item .post_link {
    width: 100%;
    min-height: unset;
    font-size: 22px;
    line-height: 24px;
  }
  .item_date {
    margin: 14px 0 8px;
  }
  .blog_item_wide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 23px;
  }
  .blog_item_wide_text,
  .blog_item_wide_image {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    width: 100%;
    padding: 0;
  }
  .blog_item_wide .item_date {
    margin: 13px 0 8px;
  }
  .blog_item_wide_text a + p {
    padding-top: 16px;
  }
  /* .blog_item_wide_text a {
      font-size: 22px;
      line-height: 24px;
  } */
  .blog_item_wide_image {
    margin-top: 23px;
  }
  .blog_btn_more a {
    width: 100%;
    max-width: 400px;
    margin: auto;
  }
  .blog_subscribe {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog_subscribe_wrapper h2 {
    text-align: center;
    width: 95%;
    margin: 7px auto;
    line-height: 30px;
  }
  .form_input {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 9px;
  }
  .form_input .input_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
    max-width: 400px;
  }
  .form_input button {
    width: 100%;
    max-width: 400px;
    margin: 0;
  }
  .form_input input {
    max-width: 400px;
  }
  .form_input input::-webkit-input-placeholder {
    text-align: center;
  }
  .form_input input::-moz-placeholder {
    text-align: center;
  }
  .form_input input:-ms-input-placeholder {
    text-align: center;
  }
  .form_input input::-ms-input-placeholder {
    text-align: center;
  }
  .form_input input::placeholder {
    text-align: center;
  }
  .form_input .input_wrap .error_form {
    bottom: -90px;
  }
  .blog_subscribe_wrapper.container {
    padding: 20px 10px;
  }
  /*/////////////////////////////////Blog////////////////////////////*/
  /*/////////////////////////////////Blog SINGLE////////////////////////////*/
  /*/////////////////////////////////Blog SINGLE////////////////////////////*/
  /*////////////////////////////PRIVATE TOURS PAGE///////////////////////////////////////////*/
  /*////////////////////////////review PAGE///////////////////////////////////////////*/
  /*////////////////////////////review PAGE///////////////////////////////////////////*/
  /*////////////////////////////PRIVATE TOURS PAGE///////////////////////////////////////////*/
  /*////////////////////////////thank you PAGE///////////////////////////////////////////*/
  /*////////////////////////////thank you PAGE///////////////////////////////////////////*/
  /*////////////////////////////BLOG AUTHOR PAGE///////////////////////////////////////////*/
  /*////////////////////////////BLOG AUTHOR PAGE///////////////////////////////////////////*/
}
@media (max-width: 768px) and (max-width: 768px) {
  .blog_item_wide_text,
  .blog_item_wide_image {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
@media (max-width: 768px) {
  .post_content_wrapper,
  .blog_single_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .post_content_wrapper,
  .post_content,
  .blog_single_content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: unset;
    margin-right: 0;
  }
  .blog_single {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0;
    margin: 0;
  }
  .blog_single_image {
    padding-top: 0px;
  }
  .blog_single:before {
    content: unset;
  }
  .blog_single_content {
    padding: 25px 15px 19px;
  }
  .blog_single h2 {
    font-weight: 700;
  }
  .blog_single_image img {
    height: 256px;
    max-width: unset;
  }
  .blog_single_author_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 28px;
  }
  .blog_single_author {
    padding-bottom: 0;
  }
  .blog_single_content p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
  }
  .blog_single_share h3 {
    line-height: 30px;
    margin-bottom: 3px;
  }
  .blog_single_share {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 15px 0 13px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .single_post .blog_single_author_wrapper {
    padding-top: 8px;
  }
  .single_post .blog_single_author_wrapper .blog_single_share h3 {
    margin-bottom: 5px;
    margin-top: 29px;
  }
  .svg_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 11px;
  }
  .post_content h2 {
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 26px;
  }
  .post_additional .wp-caption img {
    margin: 15px 0 0;
  }
  .post_content > p + .post_image {
    margin: 33px 0 0;
  }
  .post_additional .wp-caption-text {
    margin-top: 20px;
    margin-bottom: 32px;
  }
  .post_content figure {
    margin-bottom: 20px;
  }
  .post_image {
    margin: 34px 0 24px;
  }
  .post_questions {
    margin-top: 31px;
  }
  .post_content > .post_image {
    margin: 31px 0 16px;
  }
  .post_content > p + .post_image p {
    margin-top: 14px;
  }
  .post_content > .post_image p {
    margin-top: 6px;
  }
  .post_content p + h5 {
    margin-top: 20px;
  }
  .post_content p + .wp-caption {
    margin: 34px 0 0px;
  }
  .post_content .wp-caption .wp-caption-text {
    margin-bottom: 0;
  }
  .post_content h3 {
    margin-top: 31px;
  }
  .post_additional h4 {
    margin-top: 18px;
  }
  .post_tip + .post_image p {
    margin-top: 6px;
  }
  .post_tip + .post_image {
    margin: 31px 0 20px;
  }
  .post_content h5 {
    margin-top: 16px;
  }
  .post_tip {
    position: unset;
    padding-top: 17px;
  }
  .post_tip p {
    padding: 9px 0 0;
  }
  .post_tip h4 {
    margin-bottom: 16px;
  }
  .post_content .wp-caption {
    margin: 32px 0 15px;
  }
  .post_tip p:before {
    left: 0;
    width: 100%;
  }
  .single_post .blog_single_share {
    margin-top: 15px;
    position: unset;
    margin-left: unset;
  }
  .post_additional .blog_single_share {
    margin: 16px 0 5px;
  }
  .single_post {
    padding: 33px 15px 34px;
  }
  .comments {
    padding: 23px 15px 46px;
  }
  .blog_single_list_wrapper {
    padding: 0px 0 41px;
  }
  .blog_single_title h2 {
    padding: 8px 0;
  }
  .blog_single_list .item_date {
    margin-top: 16px;
  }
  .post_image .wp-caption img {
    max-width: unset;
  }
  .post_additionals .post_additional {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 10px 0 20px;
  }
  .post_additional {
    max-width: unset;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .post_additional h2:before {
    left: -10px;
    top: 6px;
  }
  .post_additional .wp-caption .wp-caption-text {
    margin: 0;
  }
  .post_additional h2 {
    padding: 5px 0px 0 15px;
  }
  .post_additional div {
    width: 100% !important;
  }
  .post_additional .wp-caption img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .private_content_wrapper {
    padding-bottom: 0;
  }
  .private_content_wrapper,
  .private_content_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .private_content {
    min-width: unset;
    margin-right: 0;
  }
  .private {
    padding-top: 6px;
  }
  .private_content_item {
    padding-top: 10px;
    margin-bottom: 21px;
  }
  .brochure_wrapper {
    margin-top: 28px;
    max-width: 207px;
  }
  .content_wrapper {
    max-width: 100%;
    padding-right: 0;
  }
  .private_content_item p > a {
    line-height: 32px;
    display: block;
    color: var(--main-blue);
    padding-left: 0;
  }
  .content_wrapper .btn {
    max-width: 164px;
  }
  .private_tour_sidebar .border_top:before {
    content: unset;
  }
  .private_tour_sidebar {
    max-width: unset;
    padding-top: 17px;
    margin-top: 11px;
  }
  .private_tour_sidebar img {
    height: 224px;
  }
  .private_tour_sidebar .private_tour_sidebar_partners {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .private_tour_sidebar h5 {
    margin: 16px 0 8px;
  }
  .review_content_wrapper {
    margin-bottom: 19px;
  }
  .review_wrapper.policies_wrapper {
    margin-top: 2px;
  }
  .review_wrapper {
    margin-top: 7px;
  }
  .review_title h1 {
    padding-top: 9px;
  }
  .review_item {
    padding: 11px 0 0px;
    margin-bottom: 27px;
  }
  .review_item:before {
    bottom: -14px;
  }
  .review_item a {
    max-width: 125px;
  }
  .review_item.item_review:before {
    bottom: 15px;
  }
  .review_item.item_review:last-child:before {
    bottom: 30px;
  }
  .review_item.item_review {
    margin-top: 0px;
    padding-bottom: 38px;
    margin-bottom: 0;
  }
  .review_item h4 {
    font-size: 18px;
    line-height: 24px;
  }
  .review_item img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -o-object-fit: contain;
       object-fit: contain;
    height: 67%;
    width: 53%;
    max-height: 62px;
    -o-object-position: left;
       object-position: left;
  }
  .thank_you_content_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .thank_you_wrapper {
    padding-top: 7px;
  }
  .content_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .thank_you_content_item .content_wrapper {
    padding-right: 0;
  }
  .thank_you_title {
    padding: 10px 0px 14px;
  }
  .thank_you_content_wrapper {
    padding-top: 10px;
  }
  .content_share_wrapper {
    margin-top: 0px;
    margin-bottom: 39px;
  }
  .content_share a {
    font-weight: 800;
    font-size: 22px;
    line-height: 24px;
  }
  .content_share_wrapper h5 {
    margin-bottom: 8px;
  }
  .content_share a:before {
    height: calc(100% - 2px);
    top: 0px;
  }
  .thank_you_sidebar:before {
    height: 1px;
    width: 100%;
    top: 0;
  }
  .thank_you_sidebar form h4 {
    font-size: 20px;
    line-height: 24px;
  }
  .thank_you_sidebar form {
    padding: 16px 0px 18px;
  }
  .thank_you_sidebar {
    max-width: 100%;
  }
  .blog_author_first_wrapper {
    margin-top: 0;
  }
  .blog_author_first {
    padding: 2px 15px 1px;
  }
  .blog_author_first_image img {
    margin-right: auto;
    margin-left: 0;
    max-width: 165px;
    height: 208px;
  }
  .blog_author_first_content .blog_first_title {
    margin: 16px 0px 8px;
  }
  .blog_author_first_content .blog_first_title + p {
    display: block;
    padding-right: 1px;
  }
  .blog_author_first_content .content_share_wrapper {
    margin-top: 24px;
  }
  .blog_author_first_content .content_share_wrapper .content_share,
  .blog_author_first_content .content_share_wrapper .content_share a:last-child {
    margin-right: 0;
  }
  .main_tours_wrapper .single_tour_options .main_tours_desc:not(:last-child) {
    margin-right: 0;
  }
}
@media (max-width: 544px) {
  .footer_wrapper .footer_menu ul:nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}
@media (max-width: 374px) {
  .header .header__logo img {
    max-width: 179px;
  }
  .faq_screen .faq__item_title:after {
    top: 38%;
  }
  .single_tour_image {
    background-size: 207%;
  }
  .cookie_popup {
    left: 4%;
    width: 92%;
    height: auto;
  }
  .cookie_popup > a {
    margin-left: 5px;
  }
  .included_item .included_item_text {
    width: 86%;
  }
  .about_members {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about_members img {
    -o-object-position: center;
       object-position: center;
  }
  .content_share a {
    font-size: 18px;
  }
}
.currency-switcher {
  z-index: 10;
  position: relative;
  cursor: pointer;
  margin-right: 32px;
}
@media only screen and (max-width: 767px) {
  .currency-switcher {
    width: 100%;
  }
}
.currency-switcher select.currency-switcher-select {
  display: none;
}
.currency-switcher .ts-control {
  background-color: transparent !important;
  border-radius: 0;
  padding: 4px 8px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
}
.currency-switcher .ts-control:not(.rtl) {
  padding-right: 8px !important;
}
@media only screen and (max-width: 767px) {
  .currency-switcher .ts-control {
    height: 48px;
    border: 1px solid var(--main-white);
  }
}
.currency-switcher .ts-control input:not([type=submit]):not([type=checkbox]):not([type=radio]) {
  height: unset !important;
  border: none !important;
  display: none !important;
}
.currency-switcher .ts-control input, .currency-switcher .ts-control .item {
  font-size: 16px;
  font-weight: 700;
  color: var(--main-text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.currency-switcher .ts-control input::-webkit-input-placeholder, .currency-switcher .ts-control .item::-webkit-input-placeholder {
  color: var(--main-text);
}
.currency-switcher .ts-control input::-moz-placeholder, .currency-switcher .ts-control .item::-moz-placeholder {
  color: var(--main-text);
}
.currency-switcher .ts-control input:-ms-input-placeholder, .currency-switcher .ts-control .item:-ms-input-placeholder {
  color: var(--main-text);
}
.currency-switcher .ts-control input::-ms-input-placeholder, .currency-switcher .ts-control .item::-ms-input-placeholder {
  color: var(--main-text);
}
.currency-switcher .ts-control input::placeholder, .currency-switcher .ts-control .item::placeholder {
  color: var(--main-text);
}
@media only screen and (max-width: 767px) {
  .currency-switcher .ts-control input, .currency-switcher .ts-control .item {
    text-align: center;
    color: var(--main-white);
  }
}
.currency-switcher .ts-control::after {
  content: url('data:image/svg+xml,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 2L6 6L10 2" stroke="%23000000" stroke-width="2" stroke-linecap="square"/></svg>');
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .currency-switcher .ts-control::after {
    content: url('data:image/svg+xml,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 2L6 6L10 2" stroke="%23ffffff" stroke-width="2" stroke-linecap="square"/></svg>');
  }
}
.currency-switcher .ts-wrapper.dropdown-active .ts-control::after {
  content: url('data:image/svg+xml,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 2L6 6L10 2" stroke="%231a47b8" stroke-width="2" stroke-linecap="square"/></svg>');
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media only screen and (max-width: 767px) {
  .currency-switcher .ts-wrapper.dropdown-active .ts-control::after {
    content: url('data:image/svg+xml,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 2L6 6L10 2" stroke="%23ffffff" stroke-width="2" stroke-linecap="square"/></svg>');
  }
}
.currency-switcher .ts-wrapper.dropdown-active .ts-control input, .currency-switcher .ts-wrapper.dropdown-active .ts-control .item {
  color: var(--main-blue);
}
@media only screen and (max-width: 767px) {
  .currency-switcher .ts-wrapper.dropdown-active .ts-control input, .currency-switcher .ts-wrapper.dropdown-active .ts-control .item {
    color: var(--main-white);
  }
}
.currency-switcher .ts-dropdown {
  border: none;
  background-color: var(--main-white);
  color: var(--main-text);
  -webkit-box-shadow: 0px 10px 5px 0px rgba(255, 255, 255, 0.01);
          box-shadow: 0px 10px 5px 0px rgba(255, 255, 255, 0.01);
  margin-top: 1rem;
  min-width: 112px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 767px) {
  .currency-switcher .ts-dropdown {
    margin-top: 0;
  }
}
.currency-switcher .ts-dropdown .option {
  font-size: 16px;
  padding: 1rem 1rem;
}
.currency-switcher .ts-dropdown .ts-dropdown-content {
  max-height: 300px;
}
.currency-switcher .ts-dropdown .ts-dropdown-content div {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.currency-switcher .ts-dropdown .ts-dropdown-content div:nth-child(n+2) {
  border: 1px solid var(--color-grey);
}
.currency-switcher .ts-dropdown .ts-dropdown-content div:hover {
  background-color: var(--color-grey);
}
.currency-switcher .ts-dropdown .ts-dropdown-content .active, .currency-switcher .ts-dropdown .ts-dropdown-content div:hover {
  background-color: var(--main-white);
  color: var(--main-blue);
}
@media only screen and (max-width: 767px) {
  header .currency-switcher {
    display: none;
  }
}

.currency-usd-price,
.currency-eur-price,
.currency-gbp-price,
.currency-aud-price,
.currency-cad-price {
  display: none !important;
}

.currency-usd .currency-usd-price {
  display: inline-block !important;
}

.currency-eur .currency-eur-price {
  display: inline-block !important;
}

.currency-gbp .currency-gbp-price {
  display: inline-block !important;
}

.currency-aud .currency-aud-price {
  display: inline-block !important;
}

.currency-cad .currency-cad-price {
  display: inline-block !important;
}

.features {
  background-color: var(--main-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 69px;
  padding-right: 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  .features {
    padding: 50px 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}
.features-section {
  margin-top: 48px;
}
.features .left-image {
  height: 100%;
}
.features .left-image img {
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 991px) {
  .features .left-image {
    display: none;
  }
}
.features .right-image img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  display: block;
}
.features-content {
  text-align: center;
}
.features-content h2 {
  font-family: "Bebas Neue";
  font-size: 72px;
  line-height: 1;
  color: var(--main-white);
}
.features-content h2 span {
  font-size: 40px;
  color: var(--main-white);
  display: inline-block;
}
@media screen and (max-width: 991px) {
  .features-content h2 {
    font-size: 40px;
  }
  .features-content h2 span {
    font-size: 24px;
  }
}
.features-content .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 991px) {
  .features-content .stars img {
    max-height: 19px;
  }
}
.features-content h3 {
  font-size: 20px;
  line-height: 32px;
  color: var(--main-white);
  margin-top: 10px;
  font-weight: 400;
}
@media screen and (max-width: 991px) {
  .features-content h3 {
    font-size: 14px;
    line-height: 16px;
  }
}