@charset "UTF-8";
/* Sizes */
@font-face {
  font-family: Intro;
  src: url("fonts/IntroDemo-BlackCAPS.otf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: MoshitaMono;
  src: url("fonts/MoshitaMono.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: Manrope;
  src: url("fonts/Manrope-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: SourceSansPro;
  src: url("fonts/SourceSansPro-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: InterTight;
  src: url("fonts/InterTight-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}

@media (max-width: 560px) {
  html, input {
    font-family: SourceSansPro, sans-serif;
    font-size: 20px;
  }
}
@media (min-width: 561px) and (max-width: 1080px) {
  html, input {
    font-family: SourceSansPro, sans-serif;
    font-size: 14px;
  }
}
@media (min-width: 1081px) and (max-width: 1200px) {
  html, input {
    font-family: SourceSansPro, sans-serif;
    font-size: 16px;
  }
}
@media (min-width: 1201px) {
  html, input {
    font-family: SourceSansPro, sans-serif;
    font-size: 18px;
  }
}

body {
  background-color: #ece9e0;
  margin: 0;
  color: #2d2c2c;
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: auto;
}

button, input[type=button], input[type=submit], .button {
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
  -webkit-padding-before: 0.6rem;
  -webkit-padding-end: 1.2rem;
  -webkit-padding-after: 0.6rem;
  -webkit-padding-start: 1.2rem;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  color: #ffffff;
  background-color: #365f41;
  border: 2px solid #365f41;
  cursor: pointer;
  transition: all 500ms ease;
}
button:hover, input[type=button]:hover, input[type=submit]:hover, .button:hover {
  background: transparent;
  color: #365f41;
}
button.transparent, input[type=button].transparent, input[type=submit].transparent, .button.transparent {
  -webkit-padding-before: 0.6rem;
  -webkit-padding-end: 1.2rem;
  -webkit-padding-after: 0.6rem;
  -webkit-padding-start: 1.2rem;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #ffffff;
  cursor: pointer;
}
button.border, input[type=button].border, input[type=submit].border, .button.border {
  -webkit-padding-before: 0.6rem;
  -webkit-padding-end: 1.2rem;
  -webkit-padding-after: 0.6rem;
  -webkit-padding-start: 1.2rem;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  color: #a9a9a9;
  background-color: transparent;
  border: 2px solid #a9a9a9;
  cursor: pointer;
}
button.border:hover, input[type=button].border:hover, input[type=submit].border:hover, .button.border:hover {
  border: 2px solid #365f41;
  color: #365f41;
}
button.semi_white, input[type=button].semi_white, input[type=submit].semi_white, .button.semi_white {
  color: rgba(255, 255, 255, 0.5019607843);
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5019607843);
}
button.semi_white:hover, input[type=button].semi_white:hover, input[type=submit].semi_white:hover, .button.semi_white:hover {
  color: #ffffff;
  border-color: #ffffff;
}

input[type=text] {
  border: none;
  border-radius: 0;
  margin-bottom: 4px;
  padding: 15px 0;
  border-bottom: 1px solid #a9a9a9;
  background-color: transparent;
  outline: none;
}
input[type=text].footer_input {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5019607843);
  color: #ffffff;
  margin-right: 24px;
  cursor: pointer;
}
input[type=text].footer_input::placeholder {
  color: rgba(255, 255, 255, 0.5019607843);
}

.hide {
  display: none !important;
}

.show {
  opacity: 1 !important;
}

.active {
  color: #2d2c2c !important;
}

@media (max-width: 680px) {
  .arrow_top {
    background-image: url("pic/arrow/up/semi_white.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
    position: fixed;
    bottom: 70px;
    right: 3%;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    display: inline-block;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5019607843);
    cursor: pointer;
    opacity: 0;
    transition: background 500ms ease, opacity 500ms;
  }
  .arrow_top:hover {
    background-color: rgba(255, 255, 255, 0.5019607843);
    background-image: url("pic/arrow/up/white.svg");
    border: 1px solid transparent;
  }
}
@media (min-width: 681px) and (max-width: 860px) {
  .arrow_top {
    background-image: url("pic/arrow/up/semi_white.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
    position: fixed;
    bottom: 70px;
    right: 3%;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: inline-block;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5019607843);
    cursor: pointer;
    opacity: 0;
    transition: background 500ms ease, opacity 500ms;
  }
  .arrow_top:hover {
    background-color: rgba(255, 255, 255, 0.5019607843);
    background-image: url("pic/arrow/up/white.svg");
    border: 2px solid transparent;
  }
}
@media (min-width: 861px) {
  .arrow_top {
    background-image: url("pic/arrow/up/semi_white.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
    position: fixed;
    bottom: 70px;
    right: 3%;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    display: inline-block;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5019607843);
    cursor: pointer;
    opacity: 0;
    transition: background 500ms ease, opacity 500ms;
  }
  .arrow_top:hover {
    background-color: rgba(255, 255, 255, 0.5019607843);
    background-image: url("pic/arrow/up/white.svg");
    border: 2px solid transparent;
  }
}

.arrow_left {
  transition: all 500ms ease;
  height: 30px;
  width: 30px;
  cursor: pointer;
  background-image: url("pic/arrow/left/darkgray.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
}
.arrow_left:hover {
  background-image: url("pic/arrow/left/green.svg");
}

.arrow_right {
  transition: all 500ms ease;
  height: 30px;
  width: 30px;
  cursor: pointer;
  background-image: url("pic/arrow/right/darkgray.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
}
.arrow_right:hover {
  background-image: url("pic/arrow/right/green.svg");
}

.p {
  margin: 0 auto;
  padding: 0 10%;
  max-width: 1200px;
}

@media (max-width: 560px) {
  .header {
    font-family: Intro, sans-serif;
    font-size: 18px;
    padding-bottom: 4%;
  }
}
@media (min-width: 561px) and (max-width: 860px) {
  .header {
    font-family: Intro, sans-serif;
    font-size: 18px;
    padding-bottom: 4%;
  }
}
@media (min-width: 861px) and (max-width: 1200px) {
  .header {
    font-family: Intro, sans-serif;
    font-size: 20px;
    padding-bottom: 4%;
  }
}
@media (min-width: 1201px) {
  .header {
    font-family: Intro, sans-serif;
    font-size: 1.5rem;
    padding-bottom: 4%;
  }
}

.block.hat.other {
  position: relative;
}
.block.hat.other > div:first-child {
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center;
}
.block.hat.other > div:first-child.about_hat {
  background-image: url("pic/about_hat.jpg");
  background-position: center;
}
.block.hat.other > div:first-child.tours_hat {
  background-image: url("pic/tour_hat.jpg");
  background-position: center;
}
.block.hat.other > div:first-child.adventure_hat {
  background-image: url("pic/adventure_hat.jpg");
  background-position: bottom;
}
.block.hat.other > div:first-child.one_adventure_hat {
  background-image: url("pic/one_adventure_hat.jpg");
  background-position: center;
}
.block.hat.other > div:first-child.photo_hat {
  background-image: url("pic/photo_hat.jpg");
  background-position: center;
}
.block.hat.other > div:first-child.photoalbum_hat {
  background-image: url("pic/album_hat.jpg");
  background-position: center;
}
.block.hat.other > div:first-child.tour_hat {
  background-image: url("pic/baikal.jpg");
  background-position: center;
}
.block.hat.other > div:first-child.reviews_hat {
  background-image: url("pic/review.jpg");
  background-position: center;
}
.block.hat.other > div:last-child {
  padding: 2% 12% 10%;
  position: relative;
  text-align: center;
}
.block.hat.other > div:last-child > div {
  color: #ffffff;
}
.block.hat.other > div:last-child > div:nth-of-type(1) {
  font-family: Intro, sans-serif;
  font-size: 2rem;
}
@media (max-width: 420px) {
  .play {
    background-position: center;
    background-image: url("pic/adventure.jpg");
    background-size: cover;
    text-align: center;
    padding: 16%;
  }
  .play > div {
    background-position: center;
    background-image: url("pic/about_play.png");
    height: 100px;
    background-repeat: no-repeat;
    background-size: 50px;
    display: inline-block;
    width: 100px;
    cursor: pointer;
    transition: background-size 200ms ease;
  }
  .play > div:hover {
    background-size: 55px;
  }
}
@media (min-width: 421px) and (max-width: 680px) {
  .play {
    background-position: center;
    background-image: url("pic/adventure.jpg");
    background-size: cover;
    text-align: center;
    padding: 16%;
  }
  .play > div {
    background-position: center;
    background-image: url("pic/about_play.png");
    height: 100px;
    background-repeat: no-repeat;
    background-size: 70px;
    display: inline-block;
    width: 100px;
    cursor: pointer;
    transition: background-size 200ms ease;
  }
  .play > div:hover {
    background-size: 77px;
  }
}
@media (min-width: 681px) {
  .play {
    background-position: center;
    background-image: url("pic/adventure.jpg");
    background-size: cover;
    text-align: center;
    padding: 16%;
  }
  .play > div {
    background-position: center;
    background-image: url("pic/about_play.png");
    height: 100px;
    background-repeat: no-repeat;
    background-size: 90px;
    display: inline-block;
    width: 100px;
    cursor: pointer;
    transition: background-size 200ms ease;
  }
  .play > div:hover {
    background-size: 100px;
  }
}

@media (max-width: 480px) {
  .play_iframe {
    height: 180px;
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 560px) {
  .play_iframe {
    height: 240px;
    width: 100%;
  }
}
@media (min-width: 561px) and (max-width: 860px) {
  .play_iframe {
    height: 360px;
    width: 100%;
  }
}
@media (min-width: 861px) and (max-width: 1200px) {
  .play_iframe {
    height: 420px;
    width: 100%;
  }
}
@media (min-width: 1201px) {
  .play_iframe {
    height: 500px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .other_publication {
    margin: 10% 0;
  }
  .other_publication > div:first-child {
    text-align: center;
    padding-bottom: 4%;
  }
  .other_publication > div:first-child > span {
    cursor: pointer;
    padding-bottom: 0 !important;
  }
  .other_publication > div:first-child > span:hover {
    color: #365f41;
  }
}
@media (min-width: 481px) and (max-width: 760px) {
  .other_publication {
    margin: 10% 0;
  }
  .other_publication > div:first-child {
    text-align: center;
    padding-bottom: 4%;
  }
  .other_publication > div:first-child > span {
    cursor: pointer;
    padding-bottom: 0 !important;
  }
  .other_publication > div:first-child > span:hover {
    color: #365f41;
  }
}
@media (min-width: 761px) and (max-width: 980px) {
  .other_publication {
    margin: 10% 0;
  }
  .other_publication > div:first-child {
    text-align: center;
    padding-bottom: 4%;
  }
  .other_publication > div:first-child > span {
    cursor: pointer;
    padding-bottom: 0 !important;
  }
  .other_publication > div:first-child > span:hover {
    color: #365f41;
  }
}
@media (min-width: 981px) {
  .other_publication {
    margin: 10% 0;
  }
  .other_publication > div:first-child {
    text-align: center;
    padding-bottom: 4%;
  }
  .other_publication > div:first-child > span {
    cursor: pointer;
    padding-bottom: 0 !important;
  }
  .other_publication > div:first-child > span:hover {
    color: #365f41;
  }
}

.other_public {
  position: relative;
  min-height: 6rem;
  display: flex;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  background-color: #a9a9a9;
  color: #ffffff;
  border-radius: 24px;
  cursor: pointer;
  background-size: cover;
}
.other_public:hover {
  box-shadow: 0 0 9px 2px rgba(45, 44, 44, 0.1294117647);
}
.other_public.other_story {
  justify-content: center;
  align-items: center;
}
.other_public.other_story > span {
  position: relative;
}
.other_public.other_tour {
  flex-direction: column;
}
.other_public.other_tour > span {
  position: relative;
}
.other_public.other_tour > span:nth-of-type(1) {
  flex: auto;
  display: flex;
  justify-content: center;
}
.other_public.other_tour > span:nth-of-type(2) {
  display: flex;
}
.other_public.other_tour > span:nth-of-type(2) > span:last-child:after {
  content: "₽";
  font-size: 0.8rem;
  vertical-align: bottom;
}
.other_public.other_tour > span:nth-of-type(2) > span:first-child {
  flex: auto;
  display: flex;
  align-items: end;
  font-size: 0.8rem;
}
.other_public:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  background-image: linear-gradient(to top, #1e2f22, transparent);
  opacity: 0.7;
  border-radius: 24px;
}

.carousel {
  display: flex;
  align-items: center;
}
.carousel .manage > div {
  position: absolute;
  margin-top: -15px;
}
.carousel .manage > div:first-child {
  transition: all 500ms ease;
  height: 30px;
  width: 30px;
  cursor: pointer;
  background-image: url("pic/arrow/left/darkgray.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  left: 6%;
}
.carousel .manage > div:first-child:hover {
  background-image: url("pic/arrow/left/green.svg");
}
.carousel .manage > div:last-child {
  transition: all 500ms ease;
  height: 30px;
  width: 30px;
  cursor: pointer;
  background-image: url("pic/arrow/right/darkgray.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  right: 6%;
}
.carousel .manage > div:last-child:hover {
  background-image: url("pic/arrow/right/green.svg");
}
.carousel .wrap {
  width: 100%;
}
.carousel .wrap .scroll {
  display: grid;
  grid-column-gap: 2%;
}

@media (max-width: 680px) {
  #photo_adapter .scroll {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 681px) and (max-width: 860px) {
  #photo_adapter .scroll {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 861px) {
  #photo_adapter .scroll {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 680px) {
  #review .scroll {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 681px) {
  #review .scroll {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  #other_publication .scroll, #story .scroll {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 481px) and (max-width: 680px) {
  #other_publication .scroll, #story .scroll {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 681px) and (max-width: 860px) {
  #other_publication .scroll, #story .scroll {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 861px) {
  #other_publication .scroll, #story .scroll {
    grid-template-columns: repeat(4, 1fr);
  }
}
.show_video {
  width: 560px;
  height: 315px;
  display: inline-block;
  vertical-align: top;
}

.validation_error {
  margin-top: 4px;
  height: 1.2rem;
  width: 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  background-image: url("pic/error_red.png");
  background-size: cover;
  display: inline-block;
}

.error {
  border-color: #bb462a !important;
  outline-color: #bb462a !important;
}

/* Sizes */
@font-face {
  font-family: Intro;
  src: url("fonts/IntroDemo-BlackCAPS.otf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: MoshitaMono;
  src: url("fonts/MoshitaMono.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: Manrope;
  src: url("fonts/Manrope-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: SourceSansPro;
  src: url("fonts/SourceSansPro-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: InterTight;
  src: url("fonts/InterTight-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 420px) {
  .block.footer {
    background-color: #365f41;
    color: #ffffff;
  }
  .block.footer > div {
    display: revert;
    padding: 5% 10% 3%;
  }
  .block.footer > div > div {
    flex: auto;
    display: revert;
    margin-bottom: 2rem;
  }
  .block.footer > div > div > div {
    margin: 2rem auto;
    text-align: center;
  }
  .block.footer > div > div .footer_contact {
    width: 50%;
  }
  .block.footer > div > div .footer_contact > div:first-child {
    margin-bottom: 1rem;
  }
  .block.footer > div > div .footer_contact > div:first-child > a {
    display: inline-block;
    background-image: url("pic/logo_travel.png");
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80px;
    width: 80px;
    cursor: pointer;
  }
  .block.footer > div > div .footer_menu {
    flex: auto;
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-left: 0;
  }
  .block.footer > div > div .footer_menu > div:not(:last-child) {
    margin-bottom: 3%;
  }
  .block.footer > div > div .footer_menu a {
    color: #ffffff;
    text-decoration: none;
  }
  .block.footer > div > div .footer_menu a:hover {
    border-bottom: solid 1px #ffffff;
  }
  .block.footer > div > form {
    display: flex;
    flex-direction: column;
    width: 60%;
    margin: 2rem auto;
  }
  .block.footer > div > form input {
    margin-right: 0;
  }
  .block.footer > div > form input:not(:first-child) {
    margin-top: 32px;
  }
  .block.footer > div > form input:not(:last-child) {
    text-align: center;
  }
  .block.footer > div > form a {
    margin-top: 32px;
  }
  .block.footer .number {
    padding-bottom: 8px;
  }
  .block.footer .contact {
    display: flex;
  }
  .block.footer .contact > a {
    width: 30px;
    height: 30px;
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .block.footer .contact > a:nth-of-type(1) {
    background-image: url("pic/telegram.png");
  }
  .block.footer .contact > a:nth-of-type(2) {
    background-image: url("pic/youtube.png");
  }
  .block.footer .contact > a:nth-of-type(3) {
    background-image: url("pic/vk.png");
  }
  .block.footer .contact > a:nth-of-type(4) {
    background-image: url("pic/instagram.png");
  }
  .block.footer .contact > a:not(:last-child) {
    margin-right: 8px;
  }
}
@media (min-width: 421px) and (max-width: 680px) {
  .block.footer {
    background-color: #365f41;
    color: #ffffff;
  }
  .block.footer > div {
    display: revert;
    padding: 5% 10% 3%;
  }
  .block.footer > div > div {
    flex: auto;
    display: flex;
    margin-bottom: 2rem;
  }
  .block.footer > div > div > div {
    margin: 0;
    text-align: left;
  }
  .block.footer > div > div .footer_contact {
    width: 50%;
  }
  .block.footer > div > div .footer_contact > div:first-child {
    margin-bottom: 1rem;
  }
  .block.footer > div > div .footer_contact > div:first-child > a {
    display: inline-block;
    background-image: url("pic/logo_travel.png");
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    height: 60px;
    width: 60px;
    cursor: pointer;
  }
  .block.footer > div > div .footer_menu {
    flex: auto;
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-left: 15%;
  }
  .block.footer > div > div .footer_menu > div:not(:last-child) {
    margin-bottom: 3%;
  }
  .block.footer > div > div .footer_menu a {
    color: #ffffff;
    text-decoration: none;
  }
  .block.footer > div > div .footer_menu a:hover {
    border-bottom: solid 1px #ffffff;
  }
  .block.footer > div > form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
  }
  .block.footer > div > form input {
    margin-right: 0;
  }
  .block.footer > div > form input:not(:first-child) {
    margin-top: 32px;
  }
  .block.footer > div > form input:not(:last-child) {
    text-align: left;
  }
  .block.footer > div > form a {
    margin-top: 32px;
  }
  .block.footer .number {
    padding-bottom: 8px;
  }
  .block.footer .contact {
    display: flex;
  }
  .block.footer .contact > a {
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .block.footer .contact > a:nth-of-type(1) {
    background-image: url("pic/telegram.png");
  }
  .block.footer .contact > a:nth-of-type(2) {
    background-image: url("pic/youtube.png");
  }
  .block.footer .contact > a:nth-of-type(3) {
    background-image: url("pic/vk.png");
  }
  .block.footer .contact > a:nth-of-type(4) {
    background-image: url("pic/instagram.png");
  }
  .block.footer .contact > a:not(:last-child) {
    margin-right: 8px;
  }
}
@media (min-width: 681px) and (max-width: 1080px) {
  .block.footer {
    background-color: #365f41;
    color: #ffffff;
  }
  .block.footer > div {
    display: flex;
    padding: 5% 10% 3%;
  }
  .block.footer > div > div {
    flex: auto;
    display: flex;
    margin-bottom: 0;
  }
  .block.footer > div > div > div {
    margin: 0;
    text-align: left;
  }
  .block.footer > div > div .footer_contact {
    width: 50%;
  }
  .block.footer > div > div .footer_contact > div:first-child {
    margin-bottom: 1rem;
  }
  .block.footer > div > div .footer_contact > div:first-child > a {
    display: inline-block;
    background-image: url("pic/logo_travel.png");
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80px;
    width: 80px;
    cursor: pointer;
  }
  .block.footer > div > div .footer_menu {
    flex: auto;
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-left: 0;
  }
  .block.footer > div > div .footer_menu > div:not(:last-child) {
    margin-bottom: 3%;
  }
  .block.footer > div > div .footer_menu a {
    color: #ffffff;
    text-decoration: none;
  }
  .block.footer > div > div .footer_menu a:hover {
    border-bottom: solid 1px #ffffff;
  }
  .block.footer > div > form {
    display: flex;
    flex-direction: column;
    width: 30%;
    margin: 0;
  }
  .block.footer > div > form input {
    margin-right: 0;
  }
  .block.footer > div > form input:not(:first-child) {
    margin-top: 32px;
  }
  .block.footer > div > form input:not(:last-child) {
    text-align: left;
  }
  .block.footer > div > form a {
    margin-top: 32px;
  }
  .block.footer .number {
    padding-bottom: 8px;
  }
  .block.footer .contact {
    display: flex;
  }
  .block.footer .contact > a {
    width: 30px;
    height: 30px;
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .block.footer .contact > a:nth-of-type(1) {
    background-image: url("pic/telegram.png");
  }
  .block.footer .contact > a:nth-of-type(2) {
    background-image: url("pic/youtube.png");
  }
  .block.footer .contact > a:nth-of-type(3) {
    background-image: url("pic/vk.png");
  }
  .block.footer .contact > a:nth-of-type(4) {
    background-image: url("pic/instagram.png");
  }
  .block.footer .contact > a:not(:last-child) {
    margin-right: 8px;
  }
}
@media (min-width: 1081px) {
  .block.footer {
    background-color: #365f41;
    color: #ffffff;
  }
  .block.footer > div {
    display: flex;
    padding: 5% 10% 3%;
  }
  .block.footer > div > div {
    flex: auto;
    display: flex;
    margin-bottom: 0;
  }
  .block.footer > div > div > div {
    margin: 0;
    text-align: left;
  }
  .block.footer > div > div .footer_contact {
    width: 50%;
  }
  .block.footer > div > div .footer_contact > div:first-child {
    margin-bottom: 1rem;
  }
  .block.footer > div > div .footer_contact > div:first-child > a {
    display: inline-block;
    background-image: url("pic/logo_travel.png");
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    height: 120px;
    width: 120px;
    cursor: pointer;
  }
  .block.footer > div > div .footer_menu {
    flex: auto;
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-left: 0;
  }
  .block.footer > div > div .footer_menu > div:not(:last-child) {
    margin-bottom: 3%;
  }
  .block.footer > div > div .footer_menu a {
    color: #ffffff;
    text-decoration: none;
  }
  .block.footer > div > div .footer_menu a:hover {
    border-bottom: solid 1px #ffffff;
  }
  .block.footer > div > form {
    display: flex;
    flex-direction: column;
    width: 30%;
    margin: 0;
  }
  .block.footer > div > form input {
    margin-right: 0;
  }
  .block.footer > div > form input:not(:first-child) {
    margin-top: 32px;
  }
  .block.footer > div > form input:not(:last-child) {
    text-align: left;
  }
  .block.footer > div > form a {
    margin-top: 32px;
  }
  .block.footer .number {
    padding-bottom: 8px;
  }
  .block.footer .contact {
    display: flex;
  }
  .block.footer .contact > a {
    width: 30px;
    height: 30px;
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .block.footer .contact > a:nth-of-type(1) {
    background-image: url("pic/telegram.png");
  }
  .block.footer .contact > a:nth-of-type(2) {
    background-image: url("pic/youtube.png");
  }
  .block.footer .contact > a:nth-of-type(3) {
    background-image: url("pic/vk.png");
  }
  .block.footer .contact > a:nth-of-type(4) {
    background-image: url("pic/instagram.png");
  }
  .block.footer .contact > a:not(:last-child) {
    margin-right: 8px;
  }
}

/* Sizes */
@font-face {
  font-family: Intro;
  src: url("fonts/IntroDemo-BlackCAPS.otf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: MoshitaMono;
  src: url("fonts/MoshitaMono.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: Manrope;
  src: url("fonts/Manrope-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: SourceSansPro;
  src: url("fonts/SourceSansPro-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: InterTight;
  src: url("fonts/InterTight-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 420px) {
  .windows .instance {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .windows .instance:last-child {
    background-color: rgba(0, 0, 0, 0.4392156863);
  }
  .windows .instance .space {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
  .windows .instance .window {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 0 7px 0px rgba(45, 44, 44, 0.1294117647);
    position: relative;
    max-height: 80%;
    max-width: 80%;
    min-width: 25%;
    display: flex;
    flex-direction: column;
  }
  .windows .instance .window .head {
    background-color: #365f41;
    color: #ffffff;
    display: flex;
    justify-content: end;
    align-items: center;
  }
  .windows .instance .window .head .title {
    padding: 1rem 2rem;
    flex: auto;
  }
  .windows .instance .window .head .close {
    background-image: url("pic/cross_white.svg");
    background-size: cover;
    height: 2rem;
    width: 2rem;
    margin-right: 2rem;
    cursor: pointer;
  }
  .windows .instance .window .head_null_title {
    background-color: #ffffff;
    display: flex;
    justify-content: end;
  }
  .windows .instance .window .head_null_title .close {
    background-image: url("pic/cross_green.svg");
    background-size: cover;
    height: 2rem;
    width: 2rem;
    margin: 0.6rem 2rem;
    cursor: pointer;
  }
  .windows .instance .window .container {
    background-color: #ffffff;
    overflow: hidden;
    overflow-y: auto;
    padding: 1.5rem 2.5rem 2rem;
  }
  .windows .instance .window .container > form {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 140px;
  }
  .windows .instance .window .container > form > input:not(:first-child) {
    margin-top: 24px;
  }
  .windows .instance .window .container > form > div {
    margin-top: 24px;
  }
  .windows .instance .window .container > form > div > textarea {
    border: 1px solid #a9a9a9;
    width: 90%;
    outline: none;
    -moz-appearance: none;
    resize: none;
    background-color: transparent;
    border-radius: 24px;
    padding: 16px;
    font-family: MoshitaMono, sans-serif;
    font-size: 24px;
  }
  .windows .instance .window .container > form a {
    margin-top: 24px;
  }
  .windows .instance .window .container_null_title {
    background-color: #ffffff;
    overflow: hidden;
    overflow-y: auto;
    padding: 1.5rem 2.5rem 3.2rem;
    text-align: center;
  }
}
@media (min-width: 421px) and (max-width: 560px) {
  .windows .instance {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .windows .instance:last-child {
    background-color: rgba(0, 0, 0, 0.4392156863);
  }
  .windows .instance .space {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
  .windows .instance .window {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 0 7px 0px rgba(45, 44, 44, 0.1294117647);
    position: relative;
    max-height: 80%;
    max-width: 80%;
    min-width: 25%;
    display: flex;
    flex-direction: column;
  }
  .windows .instance .window .head {
    background-color: #365f41;
    color: #ffffff;
    display: flex;
    justify-content: end;
    align-items: center;
  }
  .windows .instance .window .head .title {
    padding: 1rem 2rem;
    flex: auto;
  }
  .windows .instance .window .head .close {
    background-image: url("pic/cross_white.svg");
    background-size: cover;
    height: 2rem;
    width: 2rem;
    margin-right: 2rem;
    cursor: pointer;
  }
  .windows .instance .window .head_null_title {
    background-color: #ffffff;
    display: flex;
    justify-content: end;
  }
  .windows .instance .window .head_null_title .close {
    background-image: url("pic/cross_green.svg");
    background-size: cover;
    height: 2rem;
    width: 2rem;
    margin: 0.6rem 2rem;
    cursor: pointer;
  }
  .windows .instance .window .container {
    background-color: #ffffff;
    overflow: hidden;
    overflow-y: auto;
    padding: 1.5rem 2.5rem 2rem;
  }
  .windows .instance .window .container > form {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 180px;
  }
  .windows .instance .window .container > form > input:not(:first-child) {
    margin-top: 24px;
  }
  .windows .instance .window .container > form > div {
    margin-top: 24px;
  }
  .windows .instance .window .container > form > div > textarea {
    border: 1px solid #a9a9a9;
    width: 90%;
    outline: none;
    -moz-appearance: none;
    resize: none;
    background-color: transparent;
    border-radius: 24px;
    padding: 16px;
    font-family: MoshitaMono, sans-serif;
    font-size: 24px;
  }
  .windows .instance .window .container > form a {
    margin-top: 24px;
  }
  .windows .instance .window .container_null_title {
    background-color: #ffffff;
    overflow: hidden;
    overflow-y: auto;
    padding: 1.5rem 2.5rem 3.2rem;
    text-align: center;
  }
}
@media (min-width: 561px) {
  .windows .instance {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .windows .instance:last-child {
    background-color: rgba(0, 0, 0, 0.4392156863);
  }
  .windows .instance .space {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
  .windows .instance .window {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 0 7px 0px rgba(45, 44, 44, 0.1294117647);
    position: relative;
    max-height: 80%;
    max-width: 80%;
    min-width: 25%;
    display: flex;
    flex-direction: column;
  }
  .windows .instance .window .head {
    background-color: #365f41;
    color: #ffffff;
    display: flex;
    justify-content: end;
    align-items: center;
  }
  .windows .instance .window .head .title {
    padding: 1rem 2rem;
    flex: auto;
  }
  .windows .instance .window .head .close {
    background-image: url("pic/cross_white.svg");
    background-size: cover;
    height: 2rem;
    width: 2rem;
    margin-right: 2rem;
    cursor: pointer;
  }
  .windows .instance .window .head_null_title {
    background-color: #ffffff;
    display: flex;
    justify-content: end;
  }
  .windows .instance .window .head_null_title .close {
    background-image: url("pic/cross_green.svg");
    background-size: cover;
    height: 2rem;
    width: 2rem;
    margin: 0.6rem 2rem;
    cursor: pointer;
  }
  .windows .instance .window .container {
    background-color: #ffffff;
    overflow: hidden;
    overflow-y: auto;
    padding: 1.5rem 2.5rem 2rem;
  }
  .windows .instance .window .container > form {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 340px;
  }
  .windows .instance .window .container > form > input:not(:first-child) {
    margin-top: 24px;
  }
  .windows .instance .window .container > form > div {
    margin-top: 24px;
  }
  .windows .instance .window .container > form > div > textarea {
    border: 1px solid #a9a9a9;
    width: 90%;
    outline: none;
    -moz-appearance: none;
    resize: none;
    background-color: transparent;
    border-radius: 24px;
    padding: 16px;
    font-family: MoshitaMono, sans-serif;
    font-size: 24px;
  }
  .windows .instance .window .container > form a {
    margin-top: 24px;
  }
  .windows .instance .window .container_null_title {
    background-color: #ffffff;
    overflow: hidden;
    overflow-y: auto;
    padding: 1.5rem 2.5rem 3.2rem;
    text-align: center;
  }
}

/* Sizes */
@font-face {
  font-family: Intro;
  src: url("fonts/IntroDemo-BlackCAPS.otf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: MoshitaMono;
  src: url("fonts/MoshitaMono.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: Manrope;
  src: url("fonts/Manrope-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: SourceSansPro;
  src: url("fonts/SourceSansPro-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: InterTight;
  src: url("fonts/InterTight-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
.gallery {
  background-color: rgba(0, 0, 0, 0.4392156863);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery .space {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.gallery .container_btn > span {
  position: fixed;
  border-radius: 16px;
  padding: 8px;
}
.gallery .container_btn .close {
  transition: all 500ms ease;
  height: 30px;
  width: 30px;
  cursor: pointer;
  background-image: url("pic/cross_darkgray.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  background-color: rgba(255, 255, 255, 0.5019607843);
  top: 10%;
  right: 6%;
}
.gallery .container_btn .close:hover {
  background-image: url("pic/cross_green.svg");
}
.gallery .container_btn .arrow_left {
  background-color: rgba(255, 255, 255, 0.5019607843);
  left: 6%;
}
.gallery .container_btn .arrow_right {
  background-color: rgba(255, 255, 255, 0.5019607843);
  right: 6%;
}
.gallery .photo_gallery {
  position: relative;
  background-color: transparent;
  margin: auto;
  border-radius: 24px;
  background-size: cover;
}

/* Sizes */
@font-face {
  font-family: Intro;
  src: url("fonts/IntroDemo-BlackCAPS.otf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: MoshitaMono;
  src: url("fonts/MoshitaMono.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: Manrope;
  src: url("fonts/Manrope-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: SourceSansPro;
  src: url("fonts/SourceSansPro-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: InterTight;
  src: url("fonts/InterTight-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 860px) {
  .block.tour_form {
    padding: 10%;
    margin: 0 auto;
    background-image: url("pic/form_tour.jpg");
    background-position: center;
  }
  .block.tour_form > * {
    margin: 0 auto;
  }
  .block.tour_form > *:first-child {
    text-align: center !important;
  }
  .block.tour_form > *:last-child {
    width: 100%;
  }
  .block.tour_form > *:last-child > div:nth-of-type(1) {
    display: revert;
    gap: 4%;
  }
  .block.tour_form > *:last-child > div:nth-of-type(1) > div {
    flex: auto;
  }
  .block.tour_form > *:last-child > div:nth-of-type(1) > div:not(:last-child) {
    margin: 0 0 4% 0;
  }
  .block.tour_form > *:last-child > div:nth-of-type(1) > div > input {
    background-color: rgba(255, 255, 255, 0.5019607843);
    border-radius: 24px;
    border: none;
    outline: 1px solid transparent;
    outline-offset: -1px;
    margin: 0;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
  }
  .block.tour_form > *:last-child > div:nth-of-type(2) {
    margin-top: 4%;
  }
  .block.tour_form > *:last-child > div:nth-of-type(2) > textarea {
    background-color: rgba(255, 255, 255, 0.5019607843);
    border-radius: 24px;
    height: 150px;
    box-sizing: border-box;
    width: 100%;
    outline: none;
    -moz-appearance: none;
    resize: none;
    border: none;
    padding: 16px;
    font-family: MoshitaMono, sans-serif;
    font-size: 18px;
  }
  .block.tour_form > *:last-child > div:nth-of-type(3) {
    margin-top: 8%;
  }
  .block.tour_form > *:last-child > div:nth-of-type(3) > a {
    width: 100%;
    box-sizing: border-box;
  }
}
@media (min-width: 861px) and (max-width: 1080px) {
  .block.tour_form {
    padding: 10%;
    margin: 0 auto;
    background-image: url("pic/form_tour.jpg");
    background-position: center;
  }
  .block.tour_form > * {
    margin: 0 auto;
  }
  .block.tour_form > *:first-child {
    text-align: center !important;
  }
  .block.tour_form > *:last-child {
    width: 100%;
  }
  .block.tour_form > *:last-child > div:nth-of-type(1) {
    display: revert;
    gap: 4%;
  }
  .block.tour_form > *:last-child > div:nth-of-type(1) > div {
    flex: auto;
  }
  .block.tour_form > *:last-child > div:nth-of-type(1) > div:not(:last-child) {
    margin: 0 0 4% 0;
  }
  .block.tour_form > *:last-child > div:nth-of-type(1) > div > input {
    background-color: rgba(255, 255, 255, 0.5019607843);
    border-radius: 24px;
    border: none;
    outline: 1px solid transparent;
    outline-offset: -1px;
    margin: 0;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
  }
  .block.tour_form > *:last-child > div:nth-of-type(2) {
    margin-top: 4%;
  }
  .block.tour_form > *:last-child > div:nth-of-type(2) > textarea {
    background-color: rgba(255, 255, 255, 0.5019607843);
    border-radius: 24px;
    height: 150px;
    box-sizing: border-box;
    width: 100%;
    outline: none;
    -moz-appearance: none;
    resize: none;
    border: none;
    padding: 16px;
    font-family: MoshitaMono, sans-serif;
    font-size: 18px;
  }
  .block.tour_form > *:last-child > div:nth-of-type(3) {
    margin-top: 8%;
  }
  .block.tour_form > *:last-child > div:nth-of-type(3) > a {
    width: 100%;
    box-sizing: border-box;
  }
}
@media (min-width: 1081px) and (max-width: 1200px) {
  .block.tour_form {
    padding: 10%;
    margin: 0 auto;
    background-image: url("pic/form_tour.jpg");
    background-position: center;
  }
  .block.tour_form > * {
    margin: 0 15% 0 45%;
  }
  .block.tour_form > *:first-child {
    text-align: center !important;
  }
  .block.tour_form > *:last-child {
    width: 40%;
  }
  .block.tour_form > *:last-child > div:nth-of-type(1) {
    display: flex;
    gap: 4%;
  }
  .block.tour_form > *:last-child > div:nth-of-type(1) > div {
    flex: auto;
  }
  .block.tour_form > *:last-child > div:nth-of-type(1) > div:not(:last-child) {
    margin: 0;
  }
  .block.tour_form > *:last-child > div:nth-of-type(1) > div > input {
    background-color: rgba(255, 255, 255, 0.5019607843);
    border-radius: 24px;
    border: none;
    outline: 1px solid transparent;
    outline-offset: -1px;
    margin: 0;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
  }
  .block.tour_form > *:last-child > div:nth-of-type(2) {
    margin-top: 4%;
  }
  .block.tour_form > *:last-child > div:nth-of-type(2) > textarea {
    background-color: rgba(255, 255, 255, 0.5019607843);
    border-radius: 24px;
    height: 150px;
    box-sizing: border-box;
    width: 100%;
    outline: none;
    -moz-appearance: none;
    resize: none;
    border: none;
    padding: 16px;
    font-family: MoshitaMono, sans-serif;
    font-size: 20px;
  }
  .block.tour_form > *:last-child > div:nth-of-type(3) {
    margin-top: 8%;
  }
  .block.tour_form > *:last-child > div:nth-of-type(3) > a {
    width: 100%;
    box-sizing: border-box;
  }
}
@media (min-width: 1201px) {
  .block.tour_form {
    padding: 10%;
    margin: 0 auto;
    background-image: url("pic/form_tour.jpg");
    background-position: center;
  }
  .block.tour_form > * {
    margin: 0 15% 0 45%;
  }
  .block.tour_form > *:first-child {
    text-align: center !important;
  }
  .block.tour_form > *:last-child {
    width: 40%;
  }
  .block.tour_form > *:last-child > div:nth-of-type(1) {
    display: flex;
    gap: 4%;
  }
  .block.tour_form > *:last-child > div:nth-of-type(1) > div {
    flex: auto;
  }
  .block.tour_form > *:last-child > div:nth-of-type(1) > div:not(:last-child) {
    margin: 0;
  }
  .block.tour_form > *:last-child > div:nth-of-type(1) > div > input {
    background-color: rgba(255, 255, 255, 0.5019607843);
    border-radius: 24px;
    border: none;
    outline: 1px solid transparent;
    outline-offset: -1px;
    margin: 0;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
  }
  .block.tour_form > *:last-child > div:nth-of-type(2) {
    margin-top: 4%;
  }
  .block.tour_form > *:last-child > div:nth-of-type(2) > textarea {
    background-color: rgba(255, 255, 255, 0.5019607843);
    border-radius: 24px;
    height: 150px;
    box-sizing: border-box;
    width: 100%;
    outline: none;
    -moz-appearance: none;
    resize: none;
    border: none;
    padding: 16px;
    font-family: MoshitaMono, sans-serif;
    font-size: 24px;
  }
  .block.tour_form > *:last-child > div:nth-of-type(3) {
    margin-top: 8%;
  }
  .block.tour_form > *:last-child > div:nth-of-type(3) > a {
    width: 100%;
    box-sizing: border-box;
  }
}

/* Sizes */
@font-face {
  font-family: Intro;
  src: url("fonts/IntroDemo-BlackCAPS.otf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: MoshitaMono;
  src: url("fonts/MoshitaMono.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: Manrope;
  src: url("fonts/Manrope-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: SourceSansPro;
  src: url("fonts/SourceSansPro-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: InterTight;
  src: url("fonts/InterTight-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 680px) {
  .block.top {
    position: relative;
    display: flex;
  }
  .block.top > div:first-child {
    flex: auto;
    padding-top: 2%;
    padding-left: 10%;
  }
  .block.top > div:first-child > a {
    display: inline-block;
    background-image: url("pic/logo_travel.png");
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    height: 50px;
    width: 50px;
  }
  .block.top > div:nth-of-type(2) {
    flex: none;
    display: none;
    padding-top: 2%;
    padding-right: 6%;
  }
  .block.top > div:nth-of-type(3) {
    display: inline-block;
    background-image: url("pic/menu_thin.svg");
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    height: 32px;
    width: 32px;
    margin: 8px 6% 0 0;
    cursor: pointer;
  }
}
@media (min-width: 681px) and (max-width: 1080px) {
  .block.top {
    position: relative;
    display: flex;
  }
  .block.top > div:first-child {
    flex: auto;
    padding-top: 2%;
    padding-left: 8%;
  }
  .block.top > div:first-child > a {
    display: inline-block;
    background-image: url("pic/logo_travel.png");
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    height: 60px;
    width: 60px;
  }
  .block.top > div:nth-of-type(2) {
    flex: none;
    display: flex;
    padding-top: 2%;
    padding-right: 6%;
  }
  .block.top > div:nth-of-type(3) {
    display: none;
    background-image: url("pic/menu_thin.svg");
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    height: 32px;
    width: 32px;
    margin: 8px 6% 0 0;
    cursor: pointer;
  }
}
@media (min-width: 1081px) and (max-width: 1200px) {
  .block.top {
    position: relative;
    display: flex;
  }
  .block.top > div:first-child {
    flex: auto;
    padding-top: 2%;
    padding-left: 8%;
  }
  .block.top > div:first-child > a {
    display: inline-block;
    background-image: url("pic/logo_travel.png");
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    height: 70px;
    width: 70px;
  }
  .block.top > div:nth-of-type(2) {
    flex: none;
    display: flex;
    padding-top: 2%;
    padding-right: 6%;
  }
  .block.top > div:nth-of-type(3) {
    display: none;
    background-image: url("pic/menu_thin.svg");
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    height: 32px;
    width: 32px;
    margin: 8px 6% 0 0;
    cursor: pointer;
  }
}
@media (min-width: 1201px) {
  .block.top {
    position: relative;
    display: flex;
  }
  .block.top > div:first-child {
    flex: auto;
    padding-top: 2%;
    padding-left: 8%;
  }
  .block.top > div:first-child > a {
    display: inline-block;
    background-image: url("pic/logo_travel.png");
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80px;
    width: 80px;
  }
  .block.top > div:nth-of-type(2) {
    flex: none;
    display: flex;
    padding-top: 2%;
    padding-right: 6%;
  }
  .block.top > div:nth-of-type(3) {
    display: none;
    background-image: url("pic/menu_thin.svg");
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    height: 32px;
    width: 32px;
    margin: 8px 6% 0 0;
    cursor: pointer;
  }
}

.block.menu > div {
  margin: 0.5rem;
}
.block.menu > div > a {
  color: #ffffff;
  text-decoration: none;
  transition: all 500ms ease;
}
.block.menu > div > a:hover {
  border-bottom: solid 1px #ffffff;
}

.mini_menu {
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.mini_menu .space {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.mini_menu .content_menu {
  margin-top: 98px;
  background-color: transparent;
  position: fixed;
  right: 0;
  height: 100%;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}
.mini_menu .close_menu {
  background-color: transparent;
  cursor: pointer;
  position: fixed;
  top: 8px;
  right: 6%;
  background-image: url("pic/cross_white.svg");
  background-size: cover;
  background-position: center;
  width: 32px;
  height: 32px;
}
.mini_menu .close_menu:hover {
  background-image: url("pic/cross_green.svg");
}
.mini_menu .pages_menu {
  display: flex;
  flex-direction: column;
  text-align: end;
  position: fixed;
  top: 64px;
  right: 6%;
}
.mini_menu .pages_menu > div:not(:last-child) {
  margin-bottom: 8%;
}
.mini_menu .pages_menu a {
  display: inline-block;
  flex: auto;
  text-decoration: none;
  color: #ffffff;
  font-family: Intro, sans-serif;
  cursor: pointer;
  font-size: 24px;
}
.mini_menu .pages_menu a:hover {
  color: #365f41;
}

@media (max-width: 560px) {
  .block.hat.main {
    position: relative;
  }
  .block.hat.main > div:first-child {
    background-position: bottom;
    background-image: url("pic/hat.jpg");
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .block.hat.main > div:last-child {
    padding: 2% 12% 10%;
    position: relative;
  }
  .block.hat.main > div:last-child > div {
    color: #ffffff;
  }
  .block.hat.main > div:last-child > div:nth-of-type(2) {
    font-family: Intro, sans-serif;
    font-size: 1.5rem;
    padding: 0.3rem 0 0.6rem 0;
  }
  .block.hat.main > div:last-child > div:nth-of-type(3) {
    font-family: Intro, sans-serif;
    width: 100%;
    font-size: 18px;
  }
  .block.hat.main > div:last-child > div:nth-of-type(4) > span {
    margin-top: 2%;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
  }
  .block.hat.main > div:last-child > div:nth-of-type(4) > span > span:first-child {
    background-image: url(pic/play.png);
    width: 30px;
    height: 30px;
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    margin-right: 0.3rem;
  }
}
@media (min-width: 561px) and (max-width: 860px) {
  .block.hat.main {
    position: relative;
  }
  .block.hat.main > div:first-child {
    background-position: bottom;
    background-image: url("pic/hat.jpg");
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .block.hat.main > div:last-child {
    padding: 2% 12% 10%;
    position: relative;
  }
  .block.hat.main > div:last-child > div {
    color: #ffffff;
  }
  .block.hat.main > div:last-child > div:nth-of-type(2) {
    font-family: Intro, sans-serif;
    font-size: 2rem;
    padding: 0.3rem 0 0.6rem 0;
  }
  .block.hat.main > div:last-child > div:nth-of-type(3) {
    font-family: Intro, sans-serif;
    width: 100%;
    font-size: 1rem;
  }
  .block.hat.main > div:last-child > div:nth-of-type(4) > span {
    margin-top: 2%;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
  }
  .block.hat.main > div:last-child > div:nth-of-type(4) > span > span:first-child {
    background-image: url(pic/play.png);
    width: 30px;
    height: 30px;
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    margin-right: 0.3rem;
  }
}
@media (min-width: 861px) {
  .block.hat.main {
    position: relative;
  }
  .block.hat.main > div:first-child {
    background-position: bottom;
    background-image: url("pic/hat.jpg");
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .block.hat.main > div:last-child {
    padding: 2% 12% 10%;
    position: relative;
  }
  .block.hat.main > div:last-child > div {
    color: #ffffff;
  }
  .block.hat.main > div:last-child > div:nth-of-type(2) {
    font-family: Intro, sans-serif;
    font-size: 2rem;
    padding: 0.3rem 0 0.6rem 0;
  }
  .block.hat.main > div:last-child > div:nth-of-type(3) {
    font-family: Intro, sans-serif;
    width: 100%;
    font-size: 1.3rem;
  }
  .block.hat.main > div:last-child > div:nth-of-type(4) > span {
    margin-top: 2%;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
  }
  .block.hat.main > div:last-child > div:nth-of-type(4) > span > span:first-child {
    background-image: url(pic/play.png);
    width: 30px;
    height: 30px;
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    margin-right: 0.3rem;
  }
}

@media (max-width: 1400px) {
  .block.about_us {
    padding: 10%;
  }
  .block.about_us > div:nth-of-type(1) {
    color: #365f41;
  }
}
@media (min-width: 1401px) {
  .block.about_us {
    padding: 190px 10% 10%;
  }
  .block.about_us > div:nth-of-type(1) {
    color: #365f41;
  }
}

.block.page_about_us {
  text-align: center;
}

@media (max-width: 680px) {
  .page_about_us > div:nth-of-type(1) {
    display: revert;
    padding: 10%;
  }
  .page_about_us > div:nth-of-type(2) {
    padding: 0;
  }
}
@media (min-width: 681px) and (max-width: 860px) {
  .page_about_us > div:nth-of-type(1) {
    display: revert;
    padding: 10%;
  }
  .page_about_us > div:nth-of-type(2) {
    padding: 0;
  }
}
@media (min-width: 861px) {
  .page_about_us > div:nth-of-type(1) {
    display: flex;
    padding: 10%;
  }
  .page_about_us > div:nth-of-type(2) {
    padding: 0 10%;
  }
}

@media (max-width: 360px) {
  .block.about_header > div:first-child {
    width: 100%;
    margin: 0 0 8%;
  }
  .block.about_header > div:first-child > div {
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  .block.about_header > div:first-child > div:nth-of-type(1) {
    color: #365f41;
    padding-bottom: 2%;
  }
  .block.about_header > div:first-child > div:nth-of-type(2) {
    padding-bottom: 4%;
  }
  .block.about_header > div:first-child > div:nth-of-type(2) > div {
    font-family: Intro, sans-serif;
    font-size: 0.7rem;
    padding-bottom: 0.7rem;
  }
  .block.about_header > div:first-child > div:nth-of-type(3) {
    flex: auto;
  }
  .block.about_header > div:last-child {
    width: 100%;
    background-color: #a9a9a9;
    border-radius: 24px;
    height: 120px;
    background-size: cover;
    background-position: center;
  }
}
@media (min-width: 361px) and (max-width: 560px) {
  .block.about_header > div:first-child {
    width: 100%;
    margin: 0 0 8%;
  }
  .block.about_header > div:first-child > div {
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  .block.about_header > div:first-child > div:nth-of-type(1) {
    color: #365f41;
    padding-bottom: 2%;
  }
  .block.about_header > div:first-child > div:nth-of-type(2) {
    padding-bottom: 4%;
  }
  .block.about_header > div:first-child > div:nth-of-type(2) > div {
    font-family: Intro, sans-serif;
    font-size: 0.7rem;
    padding-bottom: 0.7rem;
  }
  .block.about_header > div:first-child > div:nth-of-type(3) {
    flex: auto;
  }
  .block.about_header > div:last-child {
    width: 100%;
    background-color: #a9a9a9;
    border-radius: 24px;
    height: 200px;
    background-size: cover;
    background-position: center;
  }
}
@media (min-width: 561px) and (max-width: 680px) {
  .block.about_header > div:first-child {
    width: 100%;
    margin: 0 0 8%;
  }
  .block.about_header > div:first-child > div {
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  .block.about_header > div:first-child > div:nth-of-type(1) {
    color: #365f41;
    padding-bottom: 2%;
  }
  .block.about_header > div:first-child > div:nth-of-type(2) {
    padding-bottom: 4%;
  }
  .block.about_header > div:first-child > div:nth-of-type(2) > div {
    font-family: Intro, sans-serif;
    font-size: 0.8rem;
    padding-bottom: 0.7rem;
  }
  .block.about_header > div:first-child > div:nth-of-type(3) {
    flex: auto;
  }
  .block.about_header > div:last-child {
    width: 100%;
    background-color: #a9a9a9;
    border-radius: 24px;
    height: 300px;
    background-size: cover;
    background-position: center;
  }
}
@media (min-width: 681px) and (max-width: 860px) {
  .block.about_header > div:first-child {
    width: 100%;
    margin: 0 0 8%;
  }
  .block.about_header > div:first-child > div {
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  .block.about_header > div:first-child > div:nth-of-type(1) {
    color: #365f41;
    padding-bottom: 2%;
  }
  .block.about_header > div:first-child > div:nth-of-type(2) {
    padding-bottom: 4%;
  }
  .block.about_header > div:first-child > div:nth-of-type(2) > div {
    font-family: Intro, sans-serif;
    font-size: 0.8rem;
    padding-bottom: 0.7rem;
  }
  .block.about_header > div:first-child > div:nth-of-type(3) {
    flex: auto;
  }
  .block.about_header > div:last-child {
    width: 100%;
    background-color: #a9a9a9;
    border-radius: 24px;
    height: 300px;
    background-size: cover;
    background-position: center;
  }
}
@media (min-width: 861px) {
  .block.about_header > div:first-child {
    width: 58%;
    margin: 0 2% 0 0;
  }
  .block.about_header > div:first-child > div {
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  .block.about_header > div:first-child > div:nth-of-type(1) {
    color: #365f41;
    padding-bottom: 2%;
  }
  .block.about_header > div:first-child > div:nth-of-type(2) {
    padding-bottom: 8%;
  }
  .block.about_header > div:first-child > div:nth-of-type(2) > div {
    font-family: Intro, sans-serif;
    font-size: 0.8rem;
    padding-bottom: 0.7rem;
  }
  .block.about_header > div:first-child > div:nth-of-type(3) {
    flex: auto;
  }
  .block.about_header > div:last-child {
    width: 40%;
    background-color: #a9a9a9;
    border-radius: 24px;
    height: auto;
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 860px) {
  .block.tour_video > div {
    padding: 10% 0;
    margin: 0 auto;
    max-width: 1200px;
  }
  .block.tour_video > div > div:nth-of-type(1) {
    text-align: center !important;
  }
}
@media (min-width: 861px) {
  .block.tour_video > div {
    padding: 10%;
    margin: 0 auto;
    max-width: 1200px;
  }
  .block.tour_video > div > div:nth-of-type(1) {
    text-align: center !important;
  }
}

/* Sizes */
@font-face {
  font-family: Intro;
  src: url("fonts/IntroDemo-BlackCAPS.otf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: MoshitaMono;
  src: url("fonts/MoshitaMono.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: Manrope;
  src: url("fonts/Manrope-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: SourceSansPro;
  src: url("fonts/SourceSansPro-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: InterTight;
  src: url("fonts/InterTight-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 360px) {
  .block.team {
    padding: 10%;
  }
  .block.team > div {
    display: revert;
    min-height: 320px;
    margin-bottom: 3rem;
    gap: 2rem;
    width: 100%;
  }
  .block.team > div:nth-child(even) {
    flex-direction: row-reverse;
  }
  .block.team > div:nth-child(even) .about_text > div:nth-of-type(1) {
    text-align: end;
  }
  .block.team > div:nth-child(even) .about_text > div:nth-of-type(3) > div {
    justify-content: end;
  }
  .block.team > div:last-child {
    margin-bottom: 0;
  }
  .block.team .about_pic {
    width: 100%;
    background-size: cover;
    border-radius: 24px;
    height: 14rem;
    margin-bottom: 1rem;
    background-position: center;
  }
  .block.team .about_text {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .block.team .about_text > div {
    text-align: justify;
  }
  .block.team .about_text > div:nth-of-type(1) {
    font-family: Intro, sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 0 0 1rem;
  }
  .block.team .about_text > div:nth-of-type(2) {
    flex: auto;
    padding-bottom: 2rem;
  }
}
@media (min-width: 361px) and (max-width: 480px) {
  .block.team {
    padding: 10%;
  }
  .block.team > div {
    display: revert;
    min-height: 320px;
    margin-bottom: 3rem;
    gap: 2rem;
    width: 100%;
  }
  .block.team > div:nth-child(even) {
    flex-direction: row-reverse;
  }
  .block.team > div:nth-child(even) .about_text > div:nth-of-type(1) {
    text-align: end;
  }
  .block.team > div:nth-child(even) .about_text > div:nth-of-type(3) > div {
    justify-content: end;
  }
  .block.team > div:last-child {
    margin-bottom: 0;
  }
  .block.team .about_pic {
    width: 100%;
    background-size: cover;
    border-radius: 24px;
    height: 14rem;
    margin-bottom: 1rem;
    background-position: center;
  }
  .block.team .about_text {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .block.team .about_text > div {
    text-align: justify;
  }
  .block.team .about_text > div:nth-of-type(1) {
    font-family: Intro, sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 0 0 1rem;
  }
  .block.team .about_text > div:nth-of-type(2) {
    flex: auto;
    padding-bottom: 2rem;
  }
}
@media (min-width: 481px) and (max-width: 680px) {
  .block.team {
    padding: 10%;
  }
  .block.team > div {
    display: revert;
    min-height: 320px;
    margin-bottom: 3rem;
    gap: 2rem;
    width: 100%;
  }
  .block.team > div:nth-child(even) {
    flex-direction: row-reverse;
  }
  .block.team > div:nth-child(even) .about_text > div:nth-of-type(1) {
    text-align: end;
  }
  .block.team > div:nth-child(even) .about_text > div:nth-of-type(3) > div {
    justify-content: end;
  }
  .block.team > div:last-child {
    margin-bottom: 0;
  }
  .block.team .about_pic {
    width: 100%;
    background-size: cover;
    border-radius: 24px;
    height: 24rem;
    margin-bottom: 1rem;
    background-position: center;
  }
  .block.team .about_text {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .block.team .about_text > div {
    text-align: justify;
  }
  .block.team .about_text > div:nth-of-type(1) {
    font-family: Intro, sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 0 0 1rem;
  }
  .block.team .about_text > div:nth-of-type(2) {
    flex: auto;
    padding-bottom: 16%;
  }
}
@media (min-width: 681px) and (max-width: 1200px) {
  .block.team {
    padding: 10%;
  }
  .block.team > div {
    display: flex;
    min-height: 320px;
    margin-bottom: 3rem;
    gap: 2rem;
    width: 100%;
  }
  .block.team > div:nth-child(even) {
    flex-direction: row-reverse;
  }
  .block.team > div:nth-child(even) .about_text > div:nth-of-type(1) {
    text-align: end;
  }
  .block.team > div:nth-child(even) .about_text > div:nth-of-type(3) > div {
    justify-content: end;
  }
  .block.team > div:last-child {
    margin-bottom: 0;
  }
  .block.team .about_pic {
    width: 30%;
    background-size: cover;
    border-radius: 24px;
    height: auto;
    margin-bottom: 0;
    background-position: center;
  }
  .block.team .about_text {
    display: flex;
    flex-direction: column;
    width: 70%;
  }
  .block.team .about_text > div {
    text-align: justify;
  }
  .block.team .about_text > div:nth-of-type(1) {
    font-family: Intro, sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 0 0 1rem;
  }
  .block.team .about_text > div:nth-of-type(2) {
    flex: auto;
    padding-bottom: 2rem;
  }
}
@media (min-width: 1201px) {
  .block.team {
    padding: 10%;
  }
  .block.team > div {
    display: flex;
    min-height: 320px;
    margin-bottom: 3rem;
    gap: 2rem;
    width: 100%;
  }
  .block.team > div:nth-child(even) {
    flex-direction: row-reverse;
  }
  .block.team > div:nth-child(even) .about_text > div:nth-of-type(1) {
    text-align: end;
  }
  .block.team > div:nth-child(even) .about_text > div:nth-of-type(3) > div {
    justify-content: end;
  }
  .block.team > div:last-child {
    margin-bottom: 0;
  }
  .block.team .about_pic {
    width: 30%;
    background-size: cover;
    border-radius: 24px;
    height: auto;
    margin-bottom: 0;
    background-position: center;
  }
  .block.team .about_text {
    display: flex;
    flex-direction: column;
    width: 70%;
  }
  .block.team .about_text > div {
    text-align: justify;
  }
  .block.team .about_text > div:nth-of-type(1) {
    font-family: Intro, sans-serif;
    font-size: 0.8rem;
    line-height: 1.5rem;
    padding: 0 0 1rem;
  }
  .block.team .about_text > div:nth-of-type(2) {
    flex: auto;
    padding-bottom: 2rem;
  }
}

@media (max-width: 1080px) {
  .contact_person {
    color: #a9a9a9;
  }
  .contact_person > div:nth-of-type(1) {
    display: flex;
    margin-bottom: 14px;
    font-size: 1.2rem;
  }
  .contact_person > div:nth-of-type(1) > div:first-child {
    margin-right: 8px;
  }
  .contact_person > div:nth-of-type(1) > div:last-child {
    color: #2d2c2c;
  }
  .contact_person > div:nth-of-type(2) {
    display: flex;
  }
  .contact_person > div:nth-of-type(2) > a {
    width: 35px;
    height: 35px;
    background-size: 80%;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .contact_person > div:nth-of-type(2) > a:first-child {
    background-image: url("pic/form_vk.png");
  }
  .contact_person > div:nth-of-type(2) > a:last-child {
    background-image: url("pic/form_whatsapp.png");
  }
}
@media (min-width: 1081px) {
  .contact_person {
    color: #a9a9a9;
  }
  .contact_person > div:nth-of-type(1) {
    display: flex;
    margin-bottom: 14px;
  }
  .contact_person > div:nth-of-type(1) > div:first-child {
    margin-right: 8px;
  }
  .contact_person > div:nth-of-type(1) > div:last-child {
    color: #2d2c2c;
  }
  .contact_person > div:nth-of-type(2) {
    display: flex;
  }
  .contact_person > div:nth-of-type(2) > a {
    width: 30px;
    height: 30px;
    background-size: 80%;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .contact_person > div:nth-of-type(2) > a:first-child {
    background-image: url("pic/form_vk.png");
  }
  .contact_person > div:nth-of-type(2) > a:last-child {
    background-image: url("pic/form_whatsapp.png");
  }
}

/* Sizes */
@font-face {
  font-family: Intro;
  src: url("fonts/IntroDemo-BlackCAPS.otf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: MoshitaMono;
  src: url("fonts/MoshitaMono.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: Manrope;
  src: url("fonts/Manrope-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: SourceSansPro;
  src: url("fonts/SourceSansPro-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: InterTight;
  src: url("fonts/InterTight-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
.photo_carousel .scroll > div {
  height: 200px;
  background-size: cover;
  border-radius: 24px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .block.tour_photo {
    margin-bottom: 10%;
  }
  .block.tour_photo > div:first-child {
    text-align: center !important;
  }
  .block.tour_photo > div:last-child {
    text-align: center;
    margin-top: 4%;
  }
  .block.tour_photo .tour_mini_photo {
    display: none;
    grid-row-gap: 1rem;
    grid-column-gap: 1rem;
    margin-bottom: 4%;
    grid-template-columns: repeat(3, 1fr);
  }
  .block.tour_photo .tour_mini_photo > div {
    background-color: #a9a9a9;
    border-radius: 24px;
    cursor: pointer;
    padding-top: 42%;
    background-size: cover;
    height: 120px;
    background-position: center;
  }
  .block.tour_photo .tour_mini_photo > div:hover {
    box-shadow: 0 0 7px 0px rgba(45, 44, 44, 0.1294117647);
  }
  .block.tour_photo .tour_mini_photo_carousel {
    display: revert;
  }
  .block.tour_photo .scroll > div {
    height: 200px;
    background-size: cover;
    border-radius: 24px;
    cursor: pointer;
  }
}
@media (min-width: 861px) {
  .block.tour_photo {
    margin-bottom: 10%;
  }
  .block.tour_photo > div:first-child {
    text-align: center !important;
  }
  .block.tour_photo > div:last-child {
    text-align: center;
    margin-top: 4%;
  }
  .block.tour_photo .tour_mini_photo {
    display: grid;
    grid-row-gap: 1rem;
    grid-column-gap: 1rem;
    margin-bottom: 4%;
    grid-template-columns: repeat(3, 1fr);
  }
  .block.tour_photo .tour_mini_photo > div {
    background-color: #a9a9a9;
    border-radius: 24px;
    cursor: pointer;
    padding-top: 42%;
    background-size: cover;
    height: 120px;
    background-position: center;
  }
  .block.tour_photo .tour_mini_photo > div:hover {
    box-shadow: 0 0 7px 0px rgba(45, 44, 44, 0.1294117647);
  }
  .block.tour_photo .tour_mini_photo_carousel {
    display: none;
  }
  .block.tour_photo .scroll > div {
    height: 200px;
    background-size: cover;
    border-radius: 24px;
    cursor: pointer;
  }
}

@media (max-width: 680px) {
  .page_photo {
    color: #ffffff;
  }
  .page_photo .photo_albums {
    padding: 10% 0 70px 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 2%;
  }
  .page_photo .photo_albums > a {
    padding-top: 50%;
    overflow: hidden;
    margin-bottom: 6%;
    background-color: #a9a9a9;
    background-size: cover;
    border-radius: 24px;
    transition: all 200ms ease;
    cursor: pointer;
    display: flex;
    align-items: end;
    text-decoration: none;
    color: #ffffff;
  }
  .page_photo .photo_albums > a:hover {
    box-shadow: 0 0 7px 0px rgba(45, 44, 44, 0.1294117647);
  }
  .page_photo .photo_albums > a > div {
    color: #365f41;
    background-color: #ffffff;
    padding: 8px 14px;
    border-radius: 18px;
    margin: 10px 24px;
  }
}
@media (min-width: 681px) and (max-width: 980px) {
  .page_photo {
    color: #ffffff;
  }
  .page_photo .photo_albums {
    padding: 10% 0 70px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2%;
  }
  .page_photo .photo_albums > a {
    padding-top: 50%;
    overflow: hidden;
    margin-bottom: 6%;
    background-color: #a9a9a9;
    background-size: cover;
    border-radius: 24px;
    transition: all 200ms ease;
    cursor: pointer;
    display: flex;
    align-items: end;
    text-decoration: none;
    color: #ffffff;
  }
  .page_photo .photo_albums > a:hover {
    box-shadow: 0 0 7px 0px rgba(45, 44, 44, 0.1294117647);
  }
  .page_photo .photo_albums > a > div {
    color: #365f41;
    background-color: #ffffff;
    padding: 8px 14px;
    border-radius: 18px;
    margin: 10px 24px;
  }
}
@media (min-width: 981px) {
  .page_photo {
    color: #ffffff;
  }
  .page_photo .photo_albums {
    padding: 10% 0 70px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2%;
  }
  .page_photo .photo_albums > a {
    padding-top: 50%;
    overflow: hidden;
    margin-bottom: 6%;
    background-color: #a9a9a9;
    background-size: cover;
    border-radius: 24px;
    transition: all 200ms ease;
    cursor: pointer;
    display: flex;
    align-items: end;
    text-decoration: none;
    color: #ffffff;
  }
  .page_photo .photo_albums > a:hover {
    box-shadow: 0 0 7px 0px rgba(45, 44, 44, 0.1294117647);
  }
  .page_photo .photo_albums > a > div {
    color: #365f41;
    background-color: #ffffff;
    padding: 8px 14px;
    border-radius: 18px;
    margin: 10px 24px;
  }
}

@media (max-width: 680px) {
  .photo_album {
    padding: 10% 0;
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(1, 1fr);
  }
  .photo_album > div {
    background-color: #a9a9a9;
    border-radius: 24px;
    cursor: pointer;
    padding-top: 42%;
    background-size: cover;
    background-position: center;
    height: 120px;
  }
  .photo_album > div:hover {
    box-shadow: 0 0 7px 0px rgba(45, 44, 44, 0.1294117647);
  }
}
@media (min-width: 681px) and (max-width: 860px) {
  .photo_album {
    padding: 10% 0;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  .photo_album > div {
    background-color: #a9a9a9;
    border-radius: 24px;
    cursor: pointer;
    padding-top: 42%;
    background-size: cover;
    background-position: center;
    height: 120px;
  }
  .photo_album > div:hover {
    box-shadow: 0 0 7px 0px rgba(45, 44, 44, 0.1294117647);
  }
}
@media (min-width: 861px) and (max-width: 1080px) {
  .photo_album {
    padding: 10% 0;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
  }
  .photo_album > div {
    background-color: #a9a9a9;
    border-radius: 24px;
    cursor: pointer;
    padding-top: 42%;
    background-size: cover;
    background-position: center;
    height: 120px;
  }
  .photo_album > div:hover {
    box-shadow: 0 0 7px 0px rgba(45, 44, 44, 0.1294117647);
  }
}
@media (min-width: 1081px) and (max-width: 1200px) {
  .photo_album {
    padding: 10% 0;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
  .photo_album > div {
    background-color: #a9a9a9;
    border-radius: 24px;
    cursor: pointer;
    padding-top: 42%;
    background-size: cover;
    background-position: center;
    height: 120px;
  }
  .photo_album > div:hover {
    box-shadow: 0 0 7px 0px rgba(45, 44, 44, 0.1294117647);
  }
}
@media (min-width: 1201px) {
  .photo_album {
    padding: 10% 0;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
  }
  .photo_album > div {
    background-color: #a9a9a9;
    border-radius: 24px;
    cursor: pointer;
    padding-top: 42%;
    background-size: cover;
    background-position: center;
    height: 120px;
  }
  .photo_album > div:hover {
    box-shadow: 0 0 7px 0px rgba(45, 44, 44, 0.1294117647);
  }
}

/* Sizes */
@font-face {
  font-family: Intro;
  src: url("fonts/IntroDemo-BlackCAPS.otf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: MoshitaMono;
  src: url("fonts/MoshitaMono.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: Manrope;
  src: url("fonts/Manrope-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: SourceSansPro;
  src: url("fonts/SourceSansPro-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: InterTight;
  src: url("fonts/InterTight-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
.page_reviews {
  margin: 4% 0 10%;
}

.block.reviews {
  padding: 0 10% 10%;
}
@media (max-width: 680px) {
  .review_cards {
    margin-top: 4%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 2%;
    grid-row-gap: 4%;
    align-content: center;
    flex: 100%;
  }
}
@media (min-width: 681px) {
  .review_cards {
    margin-top: 4%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2%;
    grid-row-gap: 4%;
    align-content: center;
    flex: 100%;
  }
}

.review_card {
  background-color: white;
  padding: 6% 10% 10%;
  border-radius: 24px;
  cursor: pointer;
  height: 120px;
}
.review_card:hover {
  box-shadow: 0 0 7px 0px rgba(45, 44, 44, 0.1294117647);
}
.review_card .review_person {
  display: flex;
  align-items: center;
}
.review_card .review_person > div:first-child {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  margin-right: 4%;
  flex: none;
}
.review_card .review_person > div:last-child {
  font-family: Intro, sans-serif;
}
.review_card .review_text {
  padding-top: 6%;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.review_window .review_person {
  display: flex;
  align-items: center;
}
.review_window .review_person > div:first-child {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  margin-right: 4%;
  flex: none;
}
.review_window .review_person > div:last-child {
  font-family: Intro, sans-serif;
}
.review_window .review_text {
  text-align: left !important;
  padding-top: 1rem;
  max-width: 550px;
}

.avatar_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.avatar_container > label {
  cursor: pointer;
}
.avatar_container .ava {
  background-size: cover;
  width: 60px;
  height: 60px;
  margin: 2px;
  border-radius: 50%;
  opacity: 50%;
}
.avatar_container .active {
  opacity: 100%;
}

.leave_review {
  display: flex;
  justify-content: center;
}
.leave_review > a {
  text-decoration: none;
  color: #2d2c2c;
  cursor: pointer;
  box-sizing: border-box;
}
.leave_review > a:hover {
  color: #365f41;
}
.leave_review > span {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 1rem;
  cursor: pointer;
  background-image: url("pic/chat_gray.png");
  background-size: cover;
}

/* Sizes */
@font-face {
  font-family: Intro;
  src: url("fonts/IntroDemo-BlackCAPS.otf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: MoshitaMono;
  src: url("fonts/MoshitaMono.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: Manrope;
  src: url("fonts/Manrope-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: SourceSansPro;
  src: url("fonts/SourceSansPro-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: InterTight;
  src: url("fonts/InterTight-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
.block.adventure {
  padding: 5%;
  background-position: center;
  background-image: url("pic/adventure.jpg");
  background-size: cover;
  margin-bottom: 10%;
}
.block.adventure > div {
  text-align: center !important;
}
.block.adventure > div > div {
  color: #ffffff;
}
.block.adventure > div > div:nth-of-type(1) {
  padding-bottom: 0 !important;
}
.block.adventure > div > div:nth-of-type(2) {
  padding: 0.7rem 0 1.4rem 0;
}

.block.page_adventure .cards_adventure {
  padding: 4% 0;
  display: grid;
}
.block.page_adventure .cards_adventure > a {
  min-height: 100px;
  color: #2d2c2c;
  text-decoration: none;
  overflow: hidden;
  display: flex;
  margin-bottom: 2%;
  transition: all 200ms ease;
  background-color: #ffffff;
  border-radius: 24px;
}
.block.page_adventure .cards_adventure > a:hover {
  box-shadow: 0 0 7px 0px rgba(45, 44, 44, 0.1294117647);
}
.block.page_adventure .cards_adventure > a:hover > div:last-child > div:nth-of-type(1) {
  color: #365f41;
}
.block.page_adventure .cards_adventure > a:hover > div:last-child > div:nth-of-type(3) {
  color: #365f41;
}
.block.page_adventure .cards_adventure > a > div:first-child {
  background-color: #a9a9a9;
  padding-top: 20%;
  width: 30%;
  flex: none;
  background-size: cover;
}
.block.page_adventure .cards_adventure > a > div:last-child {
  flex: auto;
  padding: 4% 8% 4% 4%;
  display: flex;
  flex-direction: column;
}
.block.page_adventure .cards_adventure > a > div:last-child > div:nth-of-type(1) {
  flex: none;
  font-family: Intro, sans-serif;
  font-size: 0.8rem;
}
.block.page_adventure .cards_adventure > a > div:last-child > div:nth-of-type(2) {
  flex: auto;
  margin: 4% 0;
  overflow: hidden;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.block.page_adventure .cards_adventure > a > div:last-child > div:nth-of-type(3) {
  text-align: right;
  color: #a9a9a9;
}

@media (max-width: 240px) {
  .page_one_adventure .adventure_text {
    margin-top: -15px;
    margin-bottom: 10%;
    position: relative;
    background-color: #ffffff;
    padding: 8% 10%;
    border-radius: 15px;
  }
  .page_one_adventure .adventure_text > div:first-child {
    margin-bottom: 4%;
  }
  .page_one_adventure .adventure_text > div:last-child > div {
    width: 60%;
    margin: auto;
    height: 4rem;
    background-color: #a9a9a9;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
  }
}
@media (min-width: 241px) and (max-width: 420px) {
  .page_one_adventure .adventure_text {
    margin-top: -15px;
    margin-bottom: 10%;
    position: relative;
    background-color: #ffffff;
    padding: 8% 10%;
    border-radius: 15px;
  }
  .page_one_adventure .adventure_text > div:first-child {
    margin-bottom: 4%;
  }
  .page_one_adventure .adventure_text > div:last-child > div {
    width: 60%;
    margin: auto;
    height: 6rem;
    background-color: #a9a9a9;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
  }
}
@media (min-width: 421px) and (max-width: 480px) {
  .page_one_adventure .adventure_text {
    margin-top: -20px;
    margin-bottom: 10%;
    position: relative;
    background-color: #ffffff;
    padding: 10% 12%;
    border-radius: 20px;
  }
  .page_one_adventure .adventure_text > div:first-child {
    margin-bottom: 4%;
  }
  .page_one_adventure .adventure_text > div:last-child > div {
    width: 60%;
    margin: auto;
    height: 8rem;
    background-color: #a9a9a9;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
  }
}
@media (min-width: 481px) and (max-width: 560px) {
  .page_one_adventure .adventure_text {
    margin-top: -30px;
    margin-bottom: 10%;
    position: relative;
    background-color: #ffffff;
    padding: 8% 10%;
    border-radius: 30px;
  }
  .page_one_adventure .adventure_text > div:first-child {
    margin-bottom: 4%;
  }
  .page_one_adventure .adventure_text > div:last-child > div {
    width: 60%;
    margin: auto;
    height: 10rem;
    background-color: #a9a9a9;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
  }
}
@media (min-width: 561px) and (max-width: 680px) {
  .page_one_adventure .adventure_text {
    margin-top: -40px;
    margin-bottom: 10%;
    position: relative;
    background-color: #ffffff;
    padding: 8% 10%;
    border-radius: 30px;
  }
  .page_one_adventure .adventure_text > div:first-child {
    margin-bottom: 4%;
  }
  .page_one_adventure .adventure_text > div:last-child > div {
    width: 60%;
    margin: auto;
    height: 12rem;
    background-color: #a9a9a9;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
  }
}
@media (min-width: 681px) and (max-width: 760px) {
  .page_one_adventure .adventure_text {
    margin-top: -40px;
    margin-bottom: 10%;
    position: relative;
    background-color: #ffffff;
    padding: 8% 10%;
    border-radius: 40px;
  }
  .page_one_adventure .adventure_text > div:first-child {
    margin-bottom: 4%;
  }
  .page_one_adventure .adventure_text > div:last-child > div {
    width: 60%;
    margin: auto;
    height: 12rem;
    background-color: #a9a9a9;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
  }
}
@media (min-width: 761px) and (max-width: 860px) {
  .page_one_adventure .adventure_text {
    margin-top: -60px;
    margin-bottom: 10%;
    position: relative;
    background-color: #ffffff;
    padding: 6% 8%;
    border-radius: 60px;
  }
  .page_one_adventure .adventure_text > div:first-child {
    margin-bottom: 4%;
  }
  .page_one_adventure .adventure_text > div:last-child > div {
    width: 60%;
    margin: auto;
    height: 14rem;
    background-color: #a9a9a9;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    border-radius: 40px;
  }
}
@media (min-width: 861px) and (max-width: 1400px) {
  .page_one_adventure .adventure_text {
    margin-top: -70px;
    margin-bottom: 10%;
    position: relative;
    background-color: #ffffff;
    padding: 6% 8%;
    border-radius: 60px;
  }
  .page_one_adventure .adventure_text > div:first-child {
    margin-bottom: 4%;
  }
  .page_one_adventure .adventure_text > div:last-child > div {
    width: 60%;
    margin: auto;
    height: 18rem;
    background-color: #a9a9a9;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    border-radius: 40px;
  }
}
@media (min-width: 1401px) {
  .page_one_adventure .adventure_text {
    margin-top: -100px;
    margin-bottom: 10%;
    position: relative;
    background-color: #ffffff;
    padding: 6% 8%;
    border-radius: 60px;
  }
  .page_one_adventure .adventure_text > div:first-child {
    margin-bottom: 4%;
  }
  .page_one_adventure .adventure_text > div:last-child > div {
    width: 60%;
    margin: auto;
    height: 24rem;
    background-color: #a9a9a9;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    border-radius: 40px;
  }
}

/* Sizes */
@font-face {
  font-family: Intro;
  src: url("fonts/IntroDemo-BlackCAPS.otf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: MoshitaMono;
  src: url("fonts/MoshitaMono.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: Manrope;
  src: url("fonts/Manrope-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: SourceSansPro;
  src: url("fonts/SourceSansPro-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: InterTight;
  src: url("fonts/InterTight-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 680px) {
  .block.check_tour {
    height: revert;
    margin: 0 auto;
  }
  .block.check_tour > div {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    text-align: center;
  }
  .block.check_tour > div > form {
    width: none;
    padding: 1rem 3rem;
    margin: 0 auto;
    background-color: #ffffff;
    display: revert;
    justify-content: center;
    border-radius: none;
  }
  .block.check_tour > div > form > div {
    margin-top: auto;
    margin-bottom: auto;
  }
  .block.check_tour > div > form > div:first-child {
    flex: auto;
    display: revert;
    margin: 0 0 1rem 0;
  }
  .block.check_tour > div > form > div:first-child > div:nth-of-type(1) > div {
    padding-bottom: 0.5rem;
  }
  .block.check_tour > div > form > div:first-child > div:nth-of-type(2) > div {
    padding-bottom: 0.5rem;
  }
  .block.check_tour > div > form > div:last-child > a {
    width: 100%;
    padding: 0.6rem 0;
  }
  .block.check_tour div > form > div > div {
    text-align: left;
    width: 100%;
  }
  .block.check_tour div > form > div > div:first-child {
    margin: 0 0 5% 0;
  }
  .block.check_tour div > form > div > div > select {
    width: 100%;
    font-family: SourceSansPro, sans-serif;
    font-size: 12px;
    outline: none;
    padding-bottom: 6px;
    border: none;
    border-bottom: 2px solid #a9a9a9;
    padding-right: 32px;
    appearance: none;
    background-image: url("pic/arrow/down/darkgray.svg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 24px;
  }
  .block.check_tour div > form > div > div > div {
    color: #365f41;
    font-weight: bold;
  }
}
@media (min-width: 681px) and (max-width: 760px) {
  .block.check_tour {
    height: revert;
    margin: 0 auto;
  }
  .block.check_tour > div {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    text-align: center;
  }
  .block.check_tour > div > form {
    width: none;
    padding: 1rem 3rem;
    margin: 0 auto;
    background-color: #ffffff;
    display: revert;
    justify-content: center;
    border-radius: none;
  }
  .block.check_tour > div > form > div {
    margin-top: auto;
    margin-bottom: auto;
  }
  .block.check_tour > div > form > div:first-child {
    flex: auto;
    display: flex;
    margin: 0 0 1rem 0;
  }
  .block.check_tour > div > form > div:first-child > div:nth-of-type(1) > div {
    padding-bottom: 0.5rem;
  }
  .block.check_tour > div > form > div:first-child > div:nth-of-type(2) > div {
    padding-bottom: 0.5rem;
  }
  .block.check_tour > div > form > div:last-child > a {
    width: auto;
    padding: 0.6rem 1.2rem;
  }
  .block.check_tour div > form > div > div {
    text-align: left;
    width: 50%;
  }
  .block.check_tour div > form > div > div:first-child {
    margin: 0 5% 0 0;
  }
  .block.check_tour div > form > div > div > select {
    width: 100%;
    font-family: SourceSansPro, sans-serif;
    font-size: 12px;
    outline: none;
    padding-bottom: 6px;
    border: none;
    border-bottom: 2px solid #a9a9a9;
    padding-right: 32px;
    appearance: none;
    background-image: url("pic/arrow/down/darkgray.svg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 24px;
  }
  .block.check_tour div > form > div > div > div {
    color: #365f41;
    font-weight: bold;
  }
}
@media (min-width: 761px) and (max-width: 980px) {
  .block.check_tour {
    height: revert;
    margin: 0 auto;
  }
  .block.check_tour > div {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    text-align: center;
  }
  .block.check_tour > div > form {
    width: none;
    padding: 1rem 3rem;
    margin: 0 auto;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    border-radius: none;
  }
  .block.check_tour > div > form > div {
    margin-top: auto;
    margin-bottom: auto;
  }
  .block.check_tour > div > form > div:first-child {
    flex: auto;
    display: flex;
    margin: 0 5% 0 0;
  }
  .block.check_tour > div > form > div:first-child > div:nth-of-type(1) > div {
    padding-bottom: 0.5rem;
  }
  .block.check_tour > div > form > div:first-child > div:nth-of-type(2) > div {
    padding-bottom: 0.5rem;
  }
  .block.check_tour > div > form > div:last-child > a {
    width: auto;
    padding: 0.6rem 1.2rem;
  }
  .block.check_tour div > form > div > div {
    text-align: left;
    width: 50%;
  }
  .block.check_tour div > form > div > div:first-child {
    margin: 0 5% 0 0;
  }
  .block.check_tour div > form > div > div > select {
    width: 100%;
    font-family: SourceSansPro, sans-serif;
    font-size: 12px;
    outline: none;
    padding-bottom: 6px;
    border: none;
    border-bottom: 2px solid #a9a9a9;
    padding-right: 32px;
    appearance: none;
    background-image: url("pic/arrow/down/darkgray.svg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 24px;
  }
  .block.check_tour div > form > div > div > div {
    color: #365f41;
    font-weight: bold;
  }
}
@media (min-width: 981px) and (max-width: 1080px) {
  .block.check_tour {
    height: revert;
    margin: 0 auto;
  }
  .block.check_tour > div {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    text-align: center;
  }
  .block.check_tour > div > form {
    width: none;
    padding: 1rem 3rem;
    margin: 0 auto;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    border-radius: none;
  }
  .block.check_tour > div > form > div {
    margin-top: auto;
    margin-bottom: auto;
  }
  .block.check_tour > div > form > div:first-child {
    flex: auto;
    display: flex;
    margin: 0 5% 0 0;
  }
  .block.check_tour > div > form > div:first-child > div:nth-of-type(1) > div {
    padding-bottom: 0.5rem;
  }
  .block.check_tour > div > form > div:first-child > div:nth-of-type(2) > div {
    padding-bottom: 0.5rem;
  }
  .block.check_tour > div > form > div:last-child > a {
    width: auto;
    padding: 0.6rem 1.2rem;
  }
  .block.check_tour div > form > div > div {
    text-align: left;
    width: 50%;
  }
  .block.check_tour div > form > div > div:first-child {
    margin: 0 5% 0 0;
  }
  .block.check_tour div > form > div > div > select {
    width: 100%;
    font-family: SourceSansPro, sans-serif;
    font-size: 12px;
    outline: none;
    padding-bottom: 6px;
    border: none;
    border-bottom: 2px solid #a9a9a9;
    padding-right: 32px;
    appearance: none;
    background-image: url("pic/arrow/down/darkgray.svg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 24px;
  }
  .block.check_tour div > form > div > div > div {
    color: #365f41;
    font-weight: bold;
  }
}
@media (min-width: 1081px) and (max-width: 1200px) {
  .block.check_tour {
    height: revert;
    margin: 0 auto;
  }
  .block.check_tour > div {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    text-align: center;
  }
  .block.check_tour > div > form {
    width: none;
    padding: 1rem 3rem;
    margin: 0 auto;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    border-radius: none;
  }
  .block.check_tour > div > form > div {
    margin-top: auto;
    margin-bottom: auto;
  }
  .block.check_tour > div > form > div:first-child {
    flex: auto;
    display: flex;
    margin: 0 5% 0 0;
  }
  .block.check_tour > div > form > div:first-child > div:nth-of-type(1) > div {
    padding-bottom: 0.5rem;
  }
  .block.check_tour > div > form > div:first-child > div:nth-of-type(2) > div {
    padding-bottom: 0.5rem;
  }
  .block.check_tour > div > form > div:last-child > a {
    width: auto;
    padding: 0.6rem 1.2rem;
  }
  .block.check_tour div > form > div > div {
    text-align: left;
    width: 50%;
  }
  .block.check_tour div > form > div > div:first-child {
    margin: 0 5% 0 0;
  }
  .block.check_tour div > form > div > div > select {
    width: 100%;
    font-family: SourceSansPro, sans-serif;
    font-size: 14px;
    outline: none;
    padding-bottom: 6px;
    border: none;
    border-bottom: 2px solid #a9a9a9;
    padding-right: 32px;
    appearance: none;
    background-image: url("pic/arrow/down/darkgray.svg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 24px;
  }
  .block.check_tour div > form > div > div > div {
    color: #365f41;
    font-weight: bold;
  }
}
@media (min-width: 1201px) and (max-width: 1400px) {
  .block.check_tour {
    height: revert;
    margin: 0 auto;
  }
  .block.check_tour > div {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    text-align: center;
  }
  .block.check_tour > div > form {
    width: none;
    padding: 1rem 3rem;
    margin: 0 auto;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    border-radius: none;
  }
  .block.check_tour > div > form > div {
    margin-top: auto;
    margin-bottom: auto;
  }
  .block.check_tour > div > form > div:first-child {
    flex: auto;
    display: flex;
    margin: 0 5% 0 0;
  }
  .block.check_tour > div > form > div:first-child > div:nth-of-type(1) > div {
    padding-bottom: 0.5rem;
  }
  .block.check_tour > div > form > div:first-child > div:nth-of-type(2) > div {
    padding-bottom: 0.5rem;
  }
  .block.check_tour > div > form > div:last-child > a {
    width: auto;
    padding: 0.6rem 1.2rem;
  }
  .block.check_tour div > form > div > div {
    text-align: left;
    width: 50%;
  }
  .block.check_tour div > form > div > div:first-child {
    margin: 0 5% 0 0;
  }
  .block.check_tour div > form > div > div > select {
    width: 100%;
    font-family: SourceSansPro, sans-serif;
    font-size: 18px;
    outline: none;
    padding-bottom: 6px;
    border: none;
    border-bottom: 2px solid #a9a9a9;
    padding-right: 32px;
    appearance: none;
    background-image: url("pic/arrow/down/darkgray.svg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 24px;
  }
  .block.check_tour div > form > div > div > div {
    color: #365f41;
    font-weight: bold;
  }
}
@media (min-width: 1401px) {
  .block.check_tour {
    height: 0;
    margin: 0 auto;
  }
  .block.check_tour > div {
    position: relative;
    left: 0;
    right: 0;
    top: -50px;
    text-align: center;
  }
  .block.check_tour > div > form {
    width: 1200px;
    padding: 1rem 3rem;
    margin: 0 auto;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    border-radius: 40px;
  }
  .block.check_tour > div > form > div {
    margin-top: auto;
    margin-bottom: auto;
  }
  .block.check_tour > div > form > div:first-child {
    flex: auto;
    display: flex;
    margin: 0 5% 0 0;
  }
  .block.check_tour > div > form > div:first-child > div:nth-of-type(1) > div {
    padding-bottom: 0.5rem;
  }
  .block.check_tour > div > form > div:first-child > div:nth-of-type(2) > div {
    padding-bottom: 0.5rem;
  }
  .block.check_tour > div > form > div:last-child > a {
    width: auto;
    padding: 0.6rem 1.2rem;
  }
  .block.check_tour div > form > div > div {
    text-align: left;
    width: 50%;
  }
  .block.check_tour div > form > div > div:first-child {
    margin: 0 5% 0 0;
  }
  .block.check_tour div > form > div > div > select {
    width: 100%;
    font-family: SourceSansPro, sans-serif;
    font-size: 18px;
    outline: none;
    padding-bottom: 6px;
    border: none;
    border-bottom: 2px solid #a9a9a9;
    padding-right: 32px;
    appearance: none;
    background-image: url("pic/arrow/down/darkgray.svg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 24px;
  }
  .block.check_tour div > form > div > div > div {
    color: #365f41;
    font-weight: bold;
  }
}

@media (max-width: 560px) {
  .block.tours > div {
    margin-bottom: 10%;
  }
  .block.tours > div > div:nth-of-type(2) {
    display: flex;
    flex-wrap: wrap;
  }
  .block.tours > div > div:nth-of-type(2) > div {
    color: #a9a9a9;
    flex: none;
    margin-bottom: 4%;
  }
  .block.tours > div > div:nth-of-type(2) > div:not(:last-child) {
    margin-right: 30px;
  }
  .block.tours > div > div:nth-of-type(2) > div:hover {
    color: #365f41;
    cursor: pointer;
  }
  .block.tours > div > div:nth-of-type(3) > div {
    display: revert;
  }
  .block.tours > div > div:nth-of-type(3) > div > div {
    width: 100%;
    margin: auto;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:first-child {
    padding-bottom: 50%;
    margin-bottom: 4%;
    background-color: #a9a9a9;
    border-radius: 24px;
    background-size: cover;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div {
    padding-left: 0;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(1) {
    font-family: Intro, sans-serif;
    font-size: 12px;
    padding-bottom: 2%;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(2) {
    width: 100%;
    padding-bottom: 50px;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(3) {
    text-align: center;
  }
}
@media (min-width: 561px) and (max-width: 860px) {
  .block.tours > div {
    margin-bottom: 10%;
  }
  .block.tours > div > div:nth-of-type(2) {
    display: flex;
    flex-wrap: wrap;
  }
  .block.tours > div > div:nth-of-type(2) > div {
    color: #a9a9a9;
    flex: none;
    margin-bottom: 4%;
  }
  .block.tours > div > div:nth-of-type(2) > div:not(:last-child) {
    margin-right: 30px;
  }
  .block.tours > div > div:nth-of-type(2) > div:hover {
    color: #365f41;
    cursor: pointer;
  }
  .block.tours > div > div:nth-of-type(3) > div {
    display: revert;
  }
  .block.tours > div > div:nth-of-type(3) > div > div {
    width: 100%;
    margin: auto;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:first-child {
    padding-bottom: 50%;
    margin-bottom: 4%;
    background-color: #a9a9a9;
    border-radius: 24px;
    background-size: cover;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div {
    padding-left: 0;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(1) {
    font-family: Intro, sans-serif;
    font-size: 16px;
    padding-bottom: 2%;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(2) {
    width: 100%;
    padding-bottom: 50px;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(3) {
    text-align: center;
  }
}
@media (min-width: 861px) and (max-width: 980px) {
  .block.tours > div {
    margin-bottom: 10%;
  }
  .block.tours > div > div:nth-of-type(2) {
    display: flex;
    flex-wrap: wrap;
  }
  .block.tours > div > div:nth-of-type(2) > div {
    color: #a9a9a9;
    flex: none;
    margin-bottom: 4%;
  }
  .block.tours > div > div:nth-of-type(2) > div:not(:last-child) {
    margin-right: 50px;
  }
  .block.tours > div > div:nth-of-type(2) > div:hover {
    color: #365f41;
    cursor: pointer;
  }
  .block.tours > div > div:nth-of-type(3) > div {
    display: flex;
  }
  .block.tours > div > div:nth-of-type(3) > div > div {
    width: 50%;
    margin: auto;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:first-child {
    padding-bottom: 35%;
    margin-bottom: 0;
    background-color: #a9a9a9;
    border-radius: 24px;
    background-size: cover;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div {
    padding-left: 8%;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(1) {
    font-family: Intro, sans-serif;
    font-size: 16px;
    padding-bottom: 30px;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(2) {
    width: 80%;
    padding-bottom: 50px;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(3) {
    text-align: revert;
  }
}
@media (min-width: 981px) and (max-width: 1080px) {
  .block.tours > div {
    margin-bottom: 10%;
  }
  .block.tours > div > div:nth-of-type(2) {
    display: flex;
    flex-wrap: wrap;
  }
  .block.tours > div > div:nth-of-type(2) > div {
    color: #a9a9a9;
    flex: none;
    margin-bottom: 4%;
  }
  .block.tours > div > div:nth-of-type(2) > div:not(:last-child) {
    margin-right: 50px;
  }
  .block.tours > div > div:nth-of-type(2) > div:hover {
    color: #365f41;
    cursor: pointer;
  }
  .block.tours > div > div:nth-of-type(3) > div {
    display: flex;
  }
  .block.tours > div > div:nth-of-type(3) > div > div {
    width: 50%;
    margin: auto;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:first-child {
    padding-bottom: 35%;
    margin-bottom: 0;
    background-color: #a9a9a9;
    border-radius: 24px;
    background-size: cover;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div {
    padding-left: 8%;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(1) {
    font-family: Intro, sans-serif;
    font-size: 16px;
    padding-bottom: 30px;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(2) {
    width: 80%;
    padding-bottom: 50px;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(3) {
    text-align: revert;
  }
}
@media (min-width: 1081px) and (max-width: 1200px) {
  .block.tours > div {
    margin-bottom: 10%;
  }
  .block.tours > div > div:nth-of-type(2) {
    display: flex;
    flex-wrap: wrap;
  }
  .block.tours > div > div:nth-of-type(2) > div {
    color: #a9a9a9;
    flex: none;
    margin-bottom: 4%;
  }
  .block.tours > div > div:nth-of-type(2) > div:not(:last-child) {
    margin-right: 50px;
  }
  .block.tours > div > div:nth-of-type(2) > div:hover {
    color: #365f41;
    cursor: pointer;
  }
  .block.tours > div > div:nth-of-type(3) > div {
    display: flex;
  }
  .block.tours > div > div:nth-of-type(3) > div > div {
    width: 50%;
    margin: auto;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:first-child {
    padding-bottom: 35%;
    margin-bottom: 0;
    background-color: #a9a9a9;
    border-radius: 24px;
    background-size: cover;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div {
    padding-left: 8%;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(1) {
    font-family: Intro, sans-serif;
    font-size: 18px;
    padding-bottom: 30px;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(2) {
    width: 80%;
    padding-bottom: 50px;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(3) {
    text-align: revert;
  }
}
@media (min-width: 1201px) and (max-width: 1400px) {
  .block.tours > div {
    margin-bottom: 10%;
  }
  .block.tours > div > div:nth-of-type(2) {
    display: flex;
    flex-wrap: wrap;
  }
  .block.tours > div > div:nth-of-type(2) > div {
    color: #a9a9a9;
    flex: none;
    margin-bottom: 4%;
  }
  .block.tours > div > div:nth-of-type(2) > div:not(:last-child) {
    margin-right: 50px;
  }
  .block.tours > div > div:nth-of-type(2) > div:hover {
    color: #365f41;
    cursor: pointer;
  }
  .block.tours > div > div:nth-of-type(3) > div {
    display: flex;
  }
  .block.tours > div > div:nth-of-type(3) > div > div {
    width: 50%;
    margin: auto;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:first-child {
    padding-bottom: 35%;
    margin-bottom: 0;
    background-color: #a9a9a9;
    border-radius: 24px;
    background-size: cover;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div {
    padding-left: 8%;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(1) {
    font-family: Intro, sans-serif;
    font-size: 20px;
    padding-bottom: 30px;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(2) {
    width: 80%;
    padding-bottom: 50px;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(3) {
    text-align: revert;
  }
}
@media (min-width: 1401px) {
  .block.tours > div {
    margin-bottom: 10%;
  }
  .block.tours > div > div:nth-of-type(2) {
    display: flex;
    flex-wrap: wrap;
  }
  .block.tours > div > div:nth-of-type(2) > div {
    color: #a9a9a9;
    flex: none;
    margin-bottom: 4%;
  }
  .block.tours > div > div:nth-of-type(2) > div:not(:last-child) {
    margin-right: 50px;
  }
  .block.tours > div > div:nth-of-type(2) > div:hover {
    color: #365f41;
    cursor: pointer;
  }
  .block.tours > div > div:nth-of-type(3) > div {
    display: flex;
  }
  .block.tours > div > div:nth-of-type(3) > div > div {
    width: 50%;
    margin: auto;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:first-child {
    padding-bottom: 35%;
    margin-bottom: 0;
    background-color: #a9a9a9;
    border-radius: 24px;
    background-size: cover;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div {
    padding-left: 8%;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(1) {
    font-family: Intro, sans-serif;
    font-size: 20px;
    padding-bottom: 30px;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(2) {
    width: 80%;
    padding-bottom: 50px;
  }
  .block.tours > div > div:nth-of-type(3) > div > div:last-child > div:nth-of-type(3) {
    text-align: revert;
  }
}

.relative_tours {
  position: relative;
}

.navigation_tour > div:nth-of-type(1) > a {
  background-image: url("pic/major_travel.png");
}
.navigation_tour > div:nth-of-type(2) > a {
  background-image: url("pic/individual_support.png");
}
.navigation_tour > div:nth-of-type(3) > a {
  background-image: url("pic/vip.png");
}
.navigation_tour > div:nth-of-type(4) > a {
  background-image: url("pic/weekend_tour.png");
}
.navigation_tour > div:not(:last-child) {
  margin-bottom: 0.5rem;
}
.navigation_tour > div > a {
  background-repeat: no-repeat;
  background-size: 1.3rem;
  background-position-y: center;
  background-position-x: 0.2rem;
  box-shadow: 0 0 7px 0px rgba(45, 44, 44, 0.1294117647);
  display: inline-block;
  height: 2rem;
  padding-left: 2rem;
  overflow: hidden;
  white-space: nowrap;
  margin-right: 10px;
  line-height: 2rem;
  text-decoration: none;
  width: 0;
  background-color: #365f41;
  color: #ffffff;
  border-radius: 0 24px 24px 0;
  cursor: pointer;
  transition: all 200ms ease;
}
.navigation_tour > div > a:hover {
  width: auto;
  padding-right: 1rem;
}

.block.page_tours {
  padding-bottom: 140px;
}
.block.page_tours > div:first-child {
  text-align: center !important;
  padding-top: 3%;
}
.block.page_tours:first-child {
  padding-top: 70px;
}

@media (max-width: 360px) {
  .cards_tours {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 2%;
    width: 100%;
    grid-row-gap: 24px;
  }
  .cards_tours > a, .cards_tours > div {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #2d2c2c;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 24px;
    transition: all 200ms ease;
    min-height: 400px;
  }
  .cards_tours > a:hover, .cards_tours > div:hover {
    box-shadow: 0 0 9px 2px rgba(45, 44, 44, 0.1294117647);
  }
  .cards_tours > a:hover > div:last-child > div:nth-of-type(2), .cards_tours > div:hover > div:last-child > div:nth-of-type(2) {
    color: #365f41;
  }
  .cards_tours > a > div:first-child, .cards_tours > div > div:first-child {
    background-color: #a9a9a9;
    height: 200px;
    display: flex;
    justify-content: right;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
  }
  .cards_tours > a > div:first-child > span, .cards_tours > div > div:first-child > span {
    color: #365f41;
    background-color: #ffffff;
    padding: 8px 14px;
    border-radius: 18px;
    margin: 10px 24px;
  }
  .cards_tours > a > div:first-child > span:after, .cards_tours > div > div:first-child > span:after {
    content: "₽";
    font-size: 0.8rem;
    vertical-align: bottom;
  }
  .cards_tours > a > div:last-child, .cards_tours > div > div:last-child {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: auto;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(1), .cards_tours > div > div:last-child > div:nth-of-type(1) {
    color: #a9a9a9;
    font-size: 0.8rem;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(2), .cards_tours > div > div:last-child > div:nth-of-type(2) {
    font-family: Intro, sans-serif;
    font-size: 0.8rem;
    margin: 0.3rem 0 0.5rem;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(3), .cards_tours > div > div:last-child > div:nth-of-type(3) {
    margin-bottom: 1.5rem;
    overflow: hidden;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    flex: auto;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4), .cards_tours > div > div:last-child > div:nth-of-type(4) {
    display: flex;
    justify-content: right;
    flex-wrap: revert;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4) > a, .cards_tours > div > div:last-child > div:nth-of-type(4) > a {
    margin: 0;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4) > a:not(:last-child), .cards_tours > div > div:last-child > div:nth-of-type(4) > a:not(:last-child) {
    margin-right: 2%;
  }
}
@media (min-width: 361px) and (max-width: 560px) {
  .cards_tours {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 2%;
    width: 100%;
    grid-row-gap: 24px;
  }
  .cards_tours > a, .cards_tours > div {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #2d2c2c;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 24px;
    transition: all 200ms ease;
    min-height: 400px;
  }
  .cards_tours > a:hover, .cards_tours > div:hover {
    box-shadow: 0 0 9px 2px rgba(45, 44, 44, 0.1294117647);
  }
  .cards_tours > a:hover > div:last-child > div:nth-of-type(2), .cards_tours > div:hover > div:last-child > div:nth-of-type(2) {
    color: #365f41;
  }
  .cards_tours > a > div:first-child, .cards_tours > div > div:first-child {
    background-color: #a9a9a9;
    height: 200px;
    display: flex;
    justify-content: right;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
  }
  .cards_tours > a > div:first-child > span, .cards_tours > div > div:first-child > span {
    color: #365f41;
    background-color: #ffffff;
    padding: 8px 14px;
    border-radius: 18px;
    margin: 10px 24px;
  }
  .cards_tours > a > div:first-child > span:after, .cards_tours > div > div:first-child > span:after {
    content: "₽";
    font-size: 0.8rem;
    vertical-align: bottom;
  }
  .cards_tours > a > div:last-child, .cards_tours > div > div:last-child {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: auto;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(1), .cards_tours > div > div:last-child > div:nth-of-type(1) {
    color: #a9a9a9;
    font-size: 0.8rem;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(2), .cards_tours > div > div:last-child > div:nth-of-type(2) {
    font-family: Intro, sans-serif;
    font-size: 0.8rem;
    margin: 0.3rem 0 0.5rem;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(3), .cards_tours > div > div:last-child > div:nth-of-type(3) {
    margin-bottom: 1.5rem;
    overflow: hidden;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    flex: auto;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4), .cards_tours > div > div:last-child > div:nth-of-type(4) {
    display: flex;
    justify-content: right;
    flex-wrap: revert;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4) > a, .cards_tours > div > div:last-child > div:nth-of-type(4) > a {
    margin: 0;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4) > a:not(:last-child), .cards_tours > div > div:last-child > div:nth-of-type(4) > a:not(:last-child) {
    margin-right: 2%;
  }
}
@media (min-width: 561px) and (max-width: 680px) {
  .cards_tours {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2%;
    width: 100%;
    grid-row-gap: 50px;
  }
  .cards_tours > a, .cards_tours > div {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #2d2c2c;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 24px;
    transition: all 200ms ease;
    min-height: 400px;
  }
  .cards_tours > a:hover, .cards_tours > div:hover {
    box-shadow: 0 0 9px 2px rgba(45, 44, 44, 0.1294117647);
  }
  .cards_tours > a:hover > div:last-child > div:nth-of-type(2), .cards_tours > div:hover > div:last-child > div:nth-of-type(2) {
    color: #365f41;
  }
  .cards_tours > a > div:first-child, .cards_tours > div > div:first-child {
    background-color: #a9a9a9;
    height: 200px;
    display: flex;
    justify-content: right;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
  }
  .cards_tours > a > div:first-child > span, .cards_tours > div > div:first-child > span {
    color: #365f41;
    background-color: #ffffff;
    padding: 8px 14px;
    border-radius: 18px;
    margin: 10px 24px;
  }
  .cards_tours > a > div:first-child > span:after, .cards_tours > div > div:first-child > span:after {
    content: "₽";
    font-size: 0.8rem;
    vertical-align: bottom;
  }
  .cards_tours > a > div:last-child, .cards_tours > div > div:last-child {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: auto;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(1), .cards_tours > div > div:last-child > div:nth-of-type(1) {
    color: #a9a9a9;
    font-size: 0.8rem;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(2), .cards_tours > div > div:last-child > div:nth-of-type(2) {
    font-family: Intro, sans-serif;
    font-size: 0.8rem;
    margin: 0.3rem 0 0.5rem;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(3), .cards_tours > div > div:last-child > div:nth-of-type(3) {
    margin-bottom: 1.5rem;
    overflow: hidden;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    flex: auto;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4), .cards_tours > div > div:last-child > div:nth-of-type(4) {
    display: flex;
    justify-content: right;
    flex-wrap: wrap-reverse;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4) > a, .cards_tours > div > div:last-child > div:nth-of-type(4) > a {
    margin: 2% 0 0 0;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4) > a:not(:last-child), .cards_tours > div > div:last-child > div:nth-of-type(4) > a:not(:last-child) {
    margin-right: 0;
  }
}
@media (min-width: 681px) and (max-width: 860px) {
  .cards_tours {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2%;
    width: 100%;
    grid-row-gap: 50px;
  }
  .cards_tours > a, .cards_tours > div {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #2d2c2c;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 24px;
    transition: all 200ms ease;
    min-height: 400px;
  }
  .cards_tours > a:hover, .cards_tours > div:hover {
    box-shadow: 0 0 9px 2px rgba(45, 44, 44, 0.1294117647);
  }
  .cards_tours > a:hover > div:last-child > div:nth-of-type(2), .cards_tours > div:hover > div:last-child > div:nth-of-type(2) {
    color: #365f41;
  }
  .cards_tours > a > div:first-child, .cards_tours > div > div:first-child {
    background-color: #a9a9a9;
    height: 200px;
    display: flex;
    justify-content: right;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
  }
  .cards_tours > a > div:first-child > span, .cards_tours > div > div:first-child > span {
    color: #365f41;
    background-color: #ffffff;
    padding: 8px 14px;
    border-radius: 18px;
    margin: 10px 24px;
  }
  .cards_tours > a > div:first-child > span:after, .cards_tours > div > div:first-child > span:after {
    content: "₽";
    font-size: 0.8rem;
    vertical-align: bottom;
  }
  .cards_tours > a > div:last-child, .cards_tours > div > div:last-child {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: auto;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(1), .cards_tours > div > div:last-child > div:nth-of-type(1) {
    color: #a9a9a9;
    font-size: 0.8rem;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(2), .cards_tours > div > div:last-child > div:nth-of-type(2) {
    font-family: Intro, sans-serif;
    font-size: 0.8rem;
    margin: 0.3rem 0 0.5rem;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(3), .cards_tours > div > div:last-child > div:nth-of-type(3) {
    margin-bottom: 1.5rem;
    overflow: hidden;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    flex: auto;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4), .cards_tours > div > div:last-child > div:nth-of-type(4) {
    display: flex;
    justify-content: right;
    flex-wrap: revert;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4) > a, .cards_tours > div > div:last-child > div:nth-of-type(4) > a {
    margin: 0;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4) > a:not(:last-child), .cards_tours > div > div:last-child > div:nth-of-type(4) > a:not(:last-child) {
    margin-right: 2%;
  }
}
@media (min-width: 861px) and (max-width: 1080px) {
  .cards_tours {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2%;
    width: 100%;
    grid-row-gap: 50px;
  }
  .cards_tours > a, .cards_tours > div {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #2d2c2c;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 24px;
    transition: all 200ms ease;
    min-height: 400px;
  }
  .cards_tours > a:hover, .cards_tours > div:hover {
    box-shadow: 0 0 9px 2px rgba(45, 44, 44, 0.1294117647);
  }
  .cards_tours > a:hover > div:last-child > div:nth-of-type(2), .cards_tours > div:hover > div:last-child > div:nth-of-type(2) {
    color: #365f41;
  }
  .cards_tours > a > div:first-child, .cards_tours > div > div:first-child {
    background-color: #a9a9a9;
    height: 200px;
    display: flex;
    justify-content: right;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
  }
  .cards_tours > a > div:first-child > span, .cards_tours > div > div:first-child > span {
    color: #365f41;
    background-color: #ffffff;
    padding: 8px 14px;
    border-radius: 18px;
    margin: 10px 24px;
  }
  .cards_tours > a > div:first-child > span:after, .cards_tours > div > div:first-child > span:after {
    content: "₽";
    font-size: 0.8rem;
    vertical-align: bottom;
  }
  .cards_tours > a > div:last-child, .cards_tours > div > div:last-child {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: auto;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(1), .cards_tours > div > div:last-child > div:nth-of-type(1) {
    color: #a9a9a9;
    font-size: 0.8rem;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(2), .cards_tours > div > div:last-child > div:nth-of-type(2) {
    font-family: Intro, sans-serif;
    font-size: 0.8rem;
    margin: 0.3rem 0 0.5rem;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(3), .cards_tours > div > div:last-child > div:nth-of-type(3) {
    margin-bottom: 1.5rem;
    overflow: hidden;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    flex: auto;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4), .cards_tours > div > div:last-child > div:nth-of-type(4) {
    display: flex;
    justify-content: right;
    flex-wrap: revert;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4) > a, .cards_tours > div > div:last-child > div:nth-of-type(4) > a {
    margin: 0;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4) > a:not(:last-child), .cards_tours > div > div:last-child > div:nth-of-type(4) > a:not(:last-child) {
    margin-right: 2%;
  }
}
@media (min-width: 1081px) and (max-width: 1200px) {
  .cards_tours {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2%;
    width: 100%;
    grid-row-gap: 50px;
  }
  .cards_tours > a, .cards_tours > div {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #2d2c2c;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 24px;
    transition: all 200ms ease;
    min-height: 400px;
  }
  .cards_tours > a:hover, .cards_tours > div:hover {
    box-shadow: 0 0 9px 2px rgba(45, 44, 44, 0.1294117647);
  }
  .cards_tours > a:hover > div:last-child > div:nth-of-type(2), .cards_tours > div:hover > div:last-child > div:nth-of-type(2) {
    color: #365f41;
  }
  .cards_tours > a > div:first-child, .cards_tours > div > div:first-child {
    background-color: #a9a9a9;
    height: 200px;
    display: flex;
    justify-content: right;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
  }
  .cards_tours > a > div:first-child > span, .cards_tours > div > div:first-child > span {
    color: #365f41;
    background-color: #ffffff;
    padding: 8px 14px;
    border-radius: 18px;
    margin: 10px 24px;
  }
  .cards_tours > a > div:first-child > span:after, .cards_tours > div > div:first-child > span:after {
    content: "₽";
    font-size: 0.8rem;
    vertical-align: bottom;
  }
  .cards_tours > a > div:last-child, .cards_tours > div > div:last-child {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: auto;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(1), .cards_tours > div > div:last-child > div:nth-of-type(1) {
    color: #a9a9a9;
    font-size: 0.8rem;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(2), .cards_tours > div > div:last-child > div:nth-of-type(2) {
    font-family: Intro, sans-serif;
    font-size: 0.8rem;
    margin: 0.3rem 0 0.5rem;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(3), .cards_tours > div > div:last-child > div:nth-of-type(3) {
    margin-bottom: 1.5rem;
    overflow: hidden;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    flex: auto;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4), .cards_tours > div > div:last-child > div:nth-of-type(4) {
    display: flex;
    justify-content: right;
    flex-wrap: revert;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4) > a, .cards_tours > div > div:last-child > div:nth-of-type(4) > a {
    margin: 0;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4) > a:not(:last-child), .cards_tours > div > div:last-child > div:nth-of-type(4) > a:not(:last-child) {
    margin-right: 2%;
  }
}
@media (min-width: 1201px) {
  .cards_tours {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2%;
    width: 100%;
    grid-row-gap: 50px;
  }
  .cards_tours > a, .cards_tours > div {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #2d2c2c;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 24px;
    transition: all 200ms ease;
    min-height: 400px;
  }
  .cards_tours > a:hover, .cards_tours > div:hover {
    box-shadow: 0 0 9px 2px rgba(45, 44, 44, 0.1294117647);
  }
  .cards_tours > a:hover > div:last-child > div:nth-of-type(2), .cards_tours > div:hover > div:last-child > div:nth-of-type(2) {
    color: #365f41;
  }
  .cards_tours > a > div:first-child, .cards_tours > div > div:first-child {
    background-color: #a9a9a9;
    height: 200px;
    display: flex;
    justify-content: right;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
  }
  .cards_tours > a > div:first-child > span, .cards_tours > div > div:first-child > span {
    color: #365f41;
    background-color: #ffffff;
    padding: 8px 14px;
    border-radius: 18px;
    margin: 10px 24px;
  }
  .cards_tours > a > div:first-child > span:after, .cards_tours > div > div:first-child > span:after {
    content: "₽";
    font-size: 0.8rem;
    vertical-align: bottom;
  }
  .cards_tours > a > div:last-child, .cards_tours > div > div:last-child {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: auto;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(1), .cards_tours > div > div:last-child > div:nth-of-type(1) {
    color: #a9a9a9;
    font-size: 0.8rem;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(2), .cards_tours > div > div:last-child > div:nth-of-type(2) {
    font-family: Intro, sans-serif;
    font-size: 0.8rem;
    margin: 0.3rem 0 0.5rem;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(3), .cards_tours > div > div:last-child > div:nth-of-type(3) {
    margin-bottom: 1.5rem;
    overflow: hidden;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    flex: auto;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4), .cards_tours > div > div:last-child > div:nth-of-type(4) {
    display: flex;
    justify-content: right;
    flex-wrap: revert;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4) > a, .cards_tours > div > div:last-child > div:nth-of-type(4) > a {
    margin: 0;
  }
  .cards_tours > a > div:last-child > div:nth-of-type(4) > a:not(:last-child), .cards_tours > div > div:last-child > div:nth-of-type(4) > a:not(:last-child) {
    margin-right: 2%;
  }
}

@media (max-width: 760px) {
  .block.about_tour {
    display: revert;
    padding: 6% 10% 0;
  }
  .block.about_tour > div:first-child {
    width: 100%;
    margin: 0 0 4% 0;
  }
  .block.about_tour > div:last-child {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .block.about_tour .about_mini > div {
    width: auto;
  }
  .block.about_tour .about_mini > div:not(:last-child) {
    margin-right: 10%;
  }
  .block.about_tour .about_mini > div > div:first-child {
    color: darkgray;
    font-family: Intro, sans-serif;
    font-size: 1.5rem;
  }
}
@media (min-width: 761px) {
  .block.about_tour {
    display: flex;
    padding: 6% 10% 0;
  }
  .block.about_tour > div:first-child {
    width: 60%;
    margin: 0 10% 0 0;
  }
  .block.about_tour > div:last-child {
    width: 40%;
    display: flex;
    justify-content: revert;
  }
  .block.about_tour .about_mini > div {
    width: 50%;
  }
  .block.about_tour .about_mini > div:not(:last-child) {
    margin-right: 0;
  }
  .block.about_tour .about_mini > div > div:first-child {
    color: darkgray;
    font-family: Intro, sans-serif;
    font-size: 1.5rem;
  }
}

@media (max-width: 680px) {
  .block.tour_price > div:first-child {
    padding-bottom: 2%;
    color: #a9a9a9;
  }
  .block.tour_price > div:last-child {
    display: revert;
  }
  .block.tour_price > div:last-child > div {
    width: 100%;
  }
  .block.tour_price > div:last-child > div:first-child {
    margin-bottom: 8%;
  }
  .block.tour_price > div:last-child > div > div:first-child {
    font-family: Intro, sans-serif;
  }
  .block.tour_price .list {
    padding: 4% 0 0 4%;
  }
  .block.tour_price .list > div {
    display: flex;
  }
  .block.tour_price .list > div > div:last-child {
    padding: 0 0 4px 8px;
  }
}
@media (min-width: 681px) {
  .block.tour_price > div:first-child {
    padding-bottom: 2%;
    color: #a9a9a9;
  }
  .block.tour_price > div:last-child {
    display: flex;
  }
  .block.tour_price > div:last-child > div {
    width: 50%;
  }
  .block.tour_price > div:last-child > div:first-child {
    margin-bottom: 0;
  }
  .block.tour_price > div:last-child > div > div:first-child {
    font-family: Intro, sans-serif;
  }
  .block.tour_price .list {
    padding: 4% 0 0 4%;
  }
  .block.tour_price .list > div {
    display: flex;
  }
  .block.tour_price .list > div > div:last-child {
    padding: 0 0 4px 8px;
  }
}

@media (max-width: 560px) {
  .block.tour_program {
    padding: 120px 10%;
  }
  .block.tour_program > div:first-child {
    text-align: center !important;
  }
  .block.tour_program > div:last-child {
    display: revert;
  }
  .block.tour_program .days > div {
    display: flex;
  }
  .block.tour_program .days > div > div:first-child {
    width: 50px;
    text-align: center;
    position: relative;
    padding-right: 20px;
    color: #a9a9a9;
  }
  .block.tour_program .days > div > div:first-child > div:first-child {
    font-size: 40px;
  }
  .block.tour_program .days > div > div:first-child > div:last-child {
    font-size: 12px;
  }
  .block.tour_program .days > div > div:first-child:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #a9a9a9;
    border-radius: 50%;
    right: -4px;
    top: 0;
  }
  .block.tour_program .days > div > div:last-child {
    border-left: 1px solid #a9a9a9;
    width: 90%;
    padding-left: 20px;
    padding-bottom: 50px;
  }
  .block.tour_program .map {
    background-image: url("pic/mymap.png");
    background-size: contain;
    width: 80%;
    background-repeat: no-repeat;
    background-position-y: center;
  }
}
@media (min-width: 561px) and (max-width: 760px) {
  .block.tour_program {
    padding: 120px 10%;
  }
  .block.tour_program > div:first-child {
    text-align: center !important;
  }
  .block.tour_program > div:last-child {
    display: revert;
  }
  .block.tour_program .days > div {
    display: flex;
  }
  .block.tour_program .days > div > div:first-child {
    width: 80px;
    text-align: center;
    position: relative;
    padding-right: 20px;
    color: #a9a9a9;
  }
  .block.tour_program .days > div > div:first-child > div:first-child {
    font-size: 40px;
  }
  .block.tour_program .days > div > div:first-child > div:last-child {
    font-size: 12px;
  }
  .block.tour_program .days > div > div:first-child:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #a9a9a9;
    border-radius: 50%;
    right: -4px;
    top: 0;
  }
  .block.tour_program .days > div > div:last-child {
    border-left: 1px solid #a9a9a9;
    width: 70%;
    padding-left: 20px;
    padding-bottom: 50px;
  }
  .block.tour_program .map {
    background-image: url("pic/mymap.png");
    background-size: contain;
    width: 80%;
    background-repeat: no-repeat;
    background-position-y: center;
  }
}
@media (min-width: 761px) and (max-width: 980px) {
  .block.tour_program {
    padding: 120px 10%;
  }
  .block.tour_program > div:first-child {
    text-align: center !important;
  }
  .block.tour_program > div:last-child {
    display: flex;
  }
  .block.tour_program .days > div {
    display: flex;
  }
  .block.tour_program .days > div > div:first-child {
    width: 100px;
    text-align: center;
    position: relative;
    padding-right: 20px;
    color: #a9a9a9;
  }
  .block.tour_program .days > div > div:first-child > div:first-child {
    font-size: 60px;
  }
  .block.tour_program .days > div > div:first-child > div:last-child {
    font-size: 12px;
  }
  .block.tour_program .days > div > div:first-child:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #a9a9a9;
    border-radius: 50%;
    right: -4px;
    top: 0;
  }
  .block.tour_program .days > div > div:last-child {
    border-left: 1px solid #a9a9a9;
    width: 50%;
    padding-left: 20px;
    padding-bottom: 50px;
  }
  .block.tour_program .map {
    background-image: url("pic/mymap.png");
    background-size: contain;
    width: 80%;
    background-repeat: no-repeat;
    background-position-y: top;
  }
}
@media (min-width: 981px) {
  .block.tour_program {
    padding: 120px 10%;
  }
  .block.tour_program > div:first-child {
    text-align: center !important;
  }
  .block.tour_program > div:last-child {
    display: flex;
  }
  .block.tour_program .days > div {
    display: flex;
  }
  .block.tour_program .days > div > div:first-child {
    width: 100px;
    text-align: center;
    position: relative;
    padding-right: 20px;
    color: #a9a9a9;
  }
  .block.tour_program .days > div > div:first-child > div:first-child {
    font-size: 60px;
  }
  .block.tour_program .days > div > div:first-child > div:last-child {
    font-size: 12px;
  }
  .block.tour_program .days > div > div:first-child:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #a9a9a9;
    border-radius: 50%;
    right: -4px;
    top: 0;
  }
  .block.tour_program .days > div > div:last-child {
    border-left: 1px solid #a9a9a9;
    width: 50%;
    padding-left: 20px;
    padding-bottom: 50px;
  }
  .block.tour_program .map {
    background-image: url("pic/mymap.png");
    background-size: contain;
    width: 80%;
    background-repeat: no-repeat;
    background-position-y: center;
  }
}

@media (max-width: 480px) {
  .block.tour_take_things {
    padding: 0 10% 10%;
  }
  .block.tour_take_things .print_btn {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 1rem;
    cursor: pointer;
    background-image: url("pic/print.svg");
  }
  .block.tour_take_things > div:first-child {
    display: flex;
    justify-content: center;
  }
  .block.tour_take_things > div:last-child {
    display: revert;
    grid-row-gap: 1.5rem;
    grid-column-gap: 1.5rem;
  }
  .block.tour_take_things > div:last-child > div:not(:last-child) {
    margin-bottom: 8%;
  }
  .block.tour_take_things > div:last-child > div:nth-of-type(1) {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 4;
  }
  .block.tour_take_things > div:last-child > div:nth-of-type(2) {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .block.tour_take_things > div:last-child > div:nth-of-type(3) {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .block.tour_take_things > div:last-child > div:nth-of-type(4) {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
  }
  .block.tour_take_things > div:last-child > div > div:first-child {
    font-family: Intro, sans-serif;
    padding-bottom: 0.5rem;
  }
  .block.tour_take_things > div:last-child > div > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .block.tour_take_things > div:last-child > div > div:last-child > label {
    margin: 0.2rem 0;
    cursor: pointer;
  }
  .block.tour_take_things > div:last-child > div > div:last-child > label > input {
    display: none;
  }
  .block.tour_take_things > div:last-child > div > div:last-child > label > input:checked + span:before {
    background-color: #365f41;
    border: 1px solid #365f41;
    background-image: url("pic/cheked.svg");
    background-position: center;
    background-size: 65%;
    background-repeat: no-repeat;
  }
  .block.tour_take_things > div:last-child > div > div:last-child > label > span:before {
    content: "";
    height: 1rem;
    width: 1rem;
    display: inline-block;
    margin-right: 0.5rem;
    border-radius: 50%;
    border: 1px solid #a9a9a9;
  }
}
@media (min-width: 481px) {
  .block.tour_take_things {
    padding: 0 10% 10%;
  }
  .block.tour_take_things .print_btn {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 1rem;
    cursor: pointer;
    background-image: url("pic/print.svg");
  }
  .block.tour_take_things > div:first-child {
    display: flex;
    justify-content: center;
  }
  .block.tour_take_things > div:last-child {
    display: grid;
    grid-row-gap: 1.5rem;
    grid-column-gap: 1.5rem;
  }
  .block.tour_take_things > div:last-child > div:not(:last-child) {
    margin-bottom: 0;
  }
  .block.tour_take_things > div:last-child > div:nth-of-type(1) {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 4;
  }
  .block.tour_take_things > div:last-child > div:nth-of-type(2) {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .block.tour_take_things > div:last-child > div:nth-of-type(3) {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .block.tour_take_things > div:last-child > div:nth-of-type(4) {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
  }
  .block.tour_take_things > div:last-child > div > div:first-child {
    font-family: Intro, sans-serif;
    padding-bottom: 0.5rem;
  }
  .block.tour_take_things > div:last-child > div > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .block.tour_take_things > div:last-child > div > div:last-child > label {
    margin: 0.2rem 0;
    cursor: pointer;
  }
  .block.tour_take_things > div:last-child > div > div:last-child > label > input {
    display: none;
  }
  .block.tour_take_things > div:last-child > div > div:last-child > label > input:checked + span:before {
    background-color: #365f41;
    border: 1px solid #365f41;
    background-image: url("pic/cheked.svg");
    background-position: center;
    background-size: 65%;
    background-repeat: no-repeat;
  }
  .block.tour_take_things > div:last-child > div > div:last-child > label > span:before {
    content: "";
    height: 1rem;
    width: 1rem;
    display: inline-block;
    margin-right: 0.5rem;
    border-radius: 50%;
    border: 1px solid #a9a9a9;
  }
}

@media print {
  header, footer, body > span.arrow_top, main > .block:not(.print) {
    display: none;
  }
  body, .block.tour_take_things span.print_btn {
    background: none;
  }
}

/*# sourceMappingURL=main.css.map */
