@charset "UTF-8";
/* ------------------ default színek és classok ------------------ */
body {
  font-weight: 400;
  font-family: Montserrat, sans-serif;
}
.default body {
  background: #ffffff;
}
.detective {
  --primary-color: #ffffff;
  --secondary-color: #28454d;
  --ternary-color: #ffffff;
  --box-shadow: #000000;
  --anchor-color: #bf7a51;
  --anchor-hover-color: #f5c36e;
  --box-color: #ffffff;
  --box-text: #bf7a51;
  --circle-color: #eedf99;
  --price-box-color: #eedf99;
  --foter-color: #bf7a51;
  --header-color: #f5c36e;
  --foter-bottom-color: #b7c5ce;
}
.pub-tour {
  --primary-color: #1f2e3c;
  --secondary-color: #ffffff;
  --ternary-color: #28454d;
  --box-shadow: #000000;
  --anchor-color: #f5c36e;
  --anchor-hover-color: #eedf99;
  --box-color: #f5c36e;
  --box-text: #1f2e3c;
  --circle-color: #0077d7;
  --price-box-color: #28454d;
  --foter-color: #28454d;
  --header-color: #eedf99;
  --foter-bottom-color: #ea4273;
}
.city-game {
  --primary-color: #1f2e3c;
  --secondary-color: #f5c36e;
  --ternary-color: #28454d;
  --box-shadow: #000000;
  --anchor-color: #f5c36e;
  --anchor-hover-color: #d88a5d;
  --box-color: #f5c36e;
  --box-text: #0076d6;
  --circle-color: #0076d6;
  --price-box-color: #f5c36e;
  --foter-color: #f5c36e;
  --header-color: #0076d6;
  --foter-bottom-color: #0076d6;
}
body {
  background: var(--primary-color);
  color: var(--secondary-color);
}

header {
  position: sticky;
  top: 0;
  z-index: 1024;
}
.default header {
  box-shadow: 0 0 3px;
}
header {
  background: var(--ternary-color);
  box-shadow: 0 0 3px rgba(var(--box-shadow), 0.63);
}

a:hover {
  text-decoration: none;
}

section {
  padding: 50px 0;
  scroll-margin-top: 80px;
}

textarea {
  resize: none;
}

.lh-1 {
  line-height: 1;
}

.ws-nowrap {
  white-space: nowrap;
}

.fs-18 {
  font-size: 18px;
}

.fs-22 {
  font-size: 22px;
}

.fw-500 {
  font-weight: 500;
}

.fw-800 {
  font-weight: 800;
}

.fc-black {
  color: #28454d !important;
}

@media (min-width: 992px) {
  section {
    scroll-margin-top: 94px;
  }
}
@font-face {
  font-family: Montserrat;
  src: url("/fonts/MontserratRegular.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("/fonts/MontserratMedium.woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("/fonts/MontserratBold.woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("/fonts/MontserratExtraBold.woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.default-form-check input:checked ~ .checkmark {
  border-color: #ffffff;
}

.default-form-check input:checked ~ .checkmark:after {
  display: block;
}

.default-button {
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 10px;
  font-size: 20px;
  letter-spacing: 0.95px;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.default-button:hover {
  color: #ffffff;
}

.bg-dark-blue {
  background: #1f2e3c;
}

.selected-date {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  background: #1f2e3c;
  font-weight: bold;
  border-radius: 4px;
}
.selected-date span {
  padding: 4px 10px;
}
.selected-date i {
  font-size: 20px;
  color: #ea4273;
  padding: 6px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.1s, color 0.15s;
  border-radius: 0 4px 4px 0;
}
.selected-date i:hover {
  background: whitesmoke;
  color: #e61d58;
}

.scrollbar {
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
}

.max-line {
  max-height: 190px;
  overflow-x: auto;
}
.max-line::-webkit-scrollbar {
  width: 10px;
  padding: 2px;
}
.max-line::-webkit-scrollbar-track {
  background-color: #f2f2f2;
  box-shadow: inset 0 0 3px #ffffffa1;
}
.max-line::-webkit-scrollbar-thumb {
  background-color: #e9396c;
  border: 3px solid transparent;
  background-clip: padding-box;
}
.max-line::-webkit-scrollbar-thumb:hover {
  background-color: #e83065;
  border: 2px solid transparent;
}

.contact-us-button,
.submit-button {
  padding: 15px 30px;
  width: 100%;
  border-radius: 10px;
  text-transform: uppercase;
  border: unset;
  background: #ea4273;
  color: #ffffff;
  letter-spacing: 0.8px;
  font-weight: 500;
  font-size: 14px;
  transition: 0.15s background, 0.25s color;
}
.contact-us-button:hover,
.submit-button:hover {
  background: #c7184b;
}
.contact-us-button__secondary,
.submit-button__secondary {
  border: 2px solid #ea4273;
  background: transparent;
}
.contact-us-button__secondary:hover,
.submit-button__secondary:hover {
  background: #ea4273;
  color: #ffffff;
}

.scroll-x::-webkit-scrollbar {
  width: 8px;
  height: 12px;
  padding: 1px;
}
.scroll-x::-webkit-scrollbar-track {
  background-color: #f2f2f2;
  box-shadow: inset 0 0 3px #ffffffa1;
}
.scroll-x::-webkit-scrollbar-thumb {
  background-color: #e9396c;
  border: 3px solid transparent;
  background-clip: padding-box;
}
.scroll-x::-webkit-scrollbar-thumb:hover {
  background-color: #e83065;
  border: 2px solid transparent;
}

.btn-fix {
  padding: 0;
  border: 0;
  background: 0 0;
}

.helper {
  position: absolute;
  top: 0;
  right: 15px;
  width: 14%;
  z-index: 3;
  transition: opacity 0.35s;
}
.helper i {
  position: absolute;
  top: 30px;
  left: calc(100% - 24px);
  z-index: 3;
  font-size: 24px;
  color: #c9164b;
  background: #00000019;
  animation-name: slide-animation;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  padding: 6px;
  border-radius: 50%;
  width: 36px;
  text-align: center;
}
.helper.hide {
  opacity: 0;
}

.carousel-button {
  position: unset;
  width: unset;
}
.carousel-button:hover {
  opacity: 0.5;
}

.fs-14 {
  font-size: 14px !important;
}

.fw-400 {
  font-weight: 400;
}

.ls-75 {
  letter-spacing: 0.75px;
}

.lh-medium {
  line-height: 1.4;
}

.min-h-1000 {
  min-height: 1200px;
}

@media (min-width: 992px) {
  .default-button {
    padding: 15px 30px;
    font-size: 42px;
    letter-spacing: 2.25px;
  }

  .contact-us-button {
    width: unset;
    font-size: 16px;
    padding: 10px 50px;
  }

  .min-h-1000 {
    min-height: 900px;
  }
}
.swiper-arrow {
  font-size: 18px;
  line-height: 1;
  color: #ffffff;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  transition: color 0.1s;
}
.swiper-arrow:hover {
  color: #e6e6e6;
}

.tour-table {
  width: 100%;
  display: inline-table;
  background: #1f2e3c;
  border-radius: 5px;
  padding: 5px 10px;
}
.tour-table th {
  white-space: nowrap;
  padding: 2px 8px;
}
.tour-table .table-block {
  padding: 8px 8px;
  margin-bottom: 4px;
  white-space: nowrap;
  border-bottom: 1px solid;
}
.tour-table .table-block:last-child {
  border-bottom: unset;
}
.tour-table .reserve-btn {
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  background: #ea4273;
  font-weight: 500;
  letter-spacing: 0.34px;
  transition: background-color 0.15s;
}
.tour-table .reserve-btn.active {
  background: #c7184b;
  text-decoration: underline;
}

.swiper-slide {
  padding: 0 15px;
}

.desktop-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.desktop-navbar a {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 24px;
  font-weight: bold;
}
.desktop-navbar a {
  color: var(--anchor-color);
}
.desktop-navbar .menu-points a {
  padding: 0 15px;
  text-transform: uppercase;
  transition: 0.15s;
  cursor: pointer;
}
.default .desktop-navbar .menu-points a {
  font-size: 16px;
  font-weight: normal;
}
.desktop-navbar .menu-points a {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: normal;
}
.desktop-navbar .menu-points a:hover {
  color: var(--anchor-hover-color);
}

.mobile-navbar {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-navbar span {
  text-transform: uppercase;
  letter-spacing: 1.05px;
  font-size: 20px;
  font-weight: 800;
}
.mobile-navbar span {
  color: var(--secondary-color);
}
.mobile-navbar img {
  height: 50px;
}

.sidenav {
  z-index: 50;
  position: absolute;
  top: 70px;
  width: 0;
  overflow-x: hidden;
  right: 0;
  height: calc(100vh - 70px);
}

.side-nav__dark {
  opacity: 0;
  background-color: #000000;
  height: 100%;
}

.side-nav__light {
  height: 100%;
  overflow-x: hidden;
}
.side-nav__light .side-nav__menu-points {
  padding: 15px 30px;
  text-align: right;
}
.side-nav__light .side-nav__menu-points a {
  display: block;
  text-transform: uppercase;
  font-size: 16px;
  padding: 20px 0;
}
.side-nav__light {
  background: var(--primary-color);
}
.side-nav__light .side-nav__menu-points a {
  background: var(--secondary-color);
}

.flag-icon {
  width: 24px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.flag-icon.big {
  width: 40px;
  height: 30px;
  vertical-align: baseline;
}

.flag-global {
  background-image: url(/www/detectivetour.hu/icons/flags/global.svg);
  background-repeat: no-repeat;
}

.flag-hu {
  background-image: url(/www/detectivetour.hu/icons/flags/hu.svg);
  background-repeat: no-repeat;
  height: 17px;
}

.flag-en {
  background-image: url(/www/detectivetour.hu/icons/flags/en.svg);
  background-repeat: no-repeat;
  height: 17px;
}

.flag-pl {
  background-image: url(/www/detectivetour.hu/icons/flags/pl.svg);
  background-repeat: no-repeat;
  height: 17px;
}

.flag-de {
  background-image: url(/www/detectivetour.hu/icons/flags/de.svg);
  background-repeat: no-repeat;
  height: 17px;
}

body {
  margin: 0;
}

.main-page {
  font-weight: 800;
  font-family: Montserrat, sans-serif;
  padding: 0;
}

.main-page__container {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.crazy-box {
  background: url("/images/crazy-main.jpeg") no-repeat;
  background-size: cover;
  background-position: center;
  height: 50%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  flex-direction: column;
}
.crazy-box:before {
  width: 100%;
  height: 50%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.2s, box-shadow 0.4s ease-in-out;
}
.crazy-box:hover:before {
  background: rgba(0, 0, 0, 0.2);
}
.crazy-box:hover span {
  box-shadow: 0 0 6px 4px #0000001a;
}
.crazy-box--otp {
  height: 100%;
  width: 100%;
}
.crazy-box--otp:before {
  content: unset;
}
.crazy-box--otp-fail {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.crazy-box .description {
  color: #0077d7;
  background: #ffffff;
  padding: 7px 12px;
  border-radius: 10px;
  font-size: 14px;
  border: 2px solid #0077d7;
}

.detective-box {
  background-size: cover;
  background: url("/images/detective-main.jpg") no-repeat center;
  height: 50%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  flex-direction: column;
}
.detective-box:before {
  width: 100%;
  height: 50%;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transition: background-color 0.2s ease-in-out;
}
.detective-box:hover:before {
  background-color: #00000033;
}
.detective-box:hover .default-button {
  box-shadow: 0 0 6px 4px #0000001a;
}
.detective-box--otp {
  height: 100%;
  width: 100%;
}
.detective-box--otp:before {
  content: unset;
}
.detective-box .description {
  color: #bf7a51;
  background: #ffffff;
  padding: 7px 12px;
  border-radius: 10px;
  font-size: 14px;
  border: 2px solid #bf7a51;
}
.detective-box .description:hover {
  box-shadow: unset;
}

.crazy-box__button {
  background: #0077d7;
  transition: 0.4s;
  margin-bottom: 25px;
}

.detective-box__button {
  background: #bf7a51;
  transition: 0.4s;
  margin-bottom: 25px;
}

.crazy-box__description {
  background-color: #0077d7;
  font-size: 14px;
  color: #ffffff;
  margin: 15px;
  max-width: 600px;
  padding: 15px;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .main-page__container {
    flex-direction: row;
  }

  .crazy-box {
    width: 50%;
    height: 100%;
  }
  .crazy-box:before {
    width: 50%;
    height: 100%;
  }
  .crazy-box--otp {
    height: 100%;
    width: 100%;
  }
  .crazy-box--otp:before {
    content: unset;
  }
  .crazy-box .description {
    font-size: 18px;
    padding: 10px 15px;
  }

  .detective-box {
    width: 50%;
    height: 100%;
  }
  .detective-box:before {
    width: 50%;
    height: 100%;
    left: 50%;
    top: 0;
  }
  .detective-box--otp {
    height: 100%;
    width: 100%;
  }
  .detective-box--otp:before {
    content: unset;
  }
  .detective-box .description {
    font-size: 18px;
    padding: 10px 15px;
  }
}
.fs-small {
  font-size: 14px;
}

.tour-map {
  width: 100%;
  height: 250px;
  padding: 0;
  box-shadow: 0 3px 6px #00000029;
}
.tour-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .tour-map {
    height: 350px;
  }
}
@media (min-width: 992px) {
  .tour-map {
    height: 450px;
  }
}
.about-us .image-container {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 30px;
}
.about-us .small-img {
  width: 40%;
  height: auto;
  border-radius: 10px;
}
.about-us .big-img {
  width: 57%;
  height: auto;
  border-radius: 10px;
}
.about-us h1 {
  font-size: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about-us h1 {
  color: var(--anchor-color);
}
.about-us h2 {
  font-size: 22px;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about-us p {
  font-size: 14px;
}

@media (min-width: 992px) {
  .about-us h1 {
    font-size: 36px;
  }
  .about-us h2 {
    font-size: 32px;
  }
}
.steps h2 {
  font-size: 22px;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  margin-bottom: 60px;
  color: #ffffff;
  text-align: center;
}
.steps {
  background: var(--secondary-color);
}
.steps .steps__step-box {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: relative;
  padding: 60px 30px;
  text-align: center;
}
.steps .steps__step-box {
  background: var(--box-color);
}
.steps .steps__step-box .circle {
  position: absolute;
  color: #ffffff;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  top: -35px;
  left: calc(50% - 35px);
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  letter-spacing: 1.6px;
}
.steps .steps__step-box .circle {
  background: var(--circle-color);
}
.steps .steps__step-box .steps__step-box-text span {
  letter-spacing: 0.75px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
}
.steps .steps__step-box .steps__step-box-text span {
  color: var(--box-text);
}
.steps .steps__step-box .steps__step-box-text h3 {
  margin-bottom: 20px;
}
.steps .steps__step-box h3 {
  letter-spacing: 1.05px;
  font-weight: bold;
  margin-bottom: 0;
}
.steps .steps__step-box h3 {
  color: var(--box-text);
}
.steps .steps__step-box h3.pub-tour {
  font-size: 18px;
  font-weight: 800;
}
.steps .steps__step-box h3.detective {
  font-size: 20px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .steps .steps__step-box {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 40px 10px;
  }
}
@media (min-width: 992px) {
  .steps h2 {
    font-size: 32px;
  }
  .steps .steps__step-box {
    height: 100%;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .steps .steps__step-box .circle {
    left: calc(0% + 35px);
  }
  .steps .steps__step-box h3.pub-tour {
    font-size: 28px;
  }
  .steps .steps__step-box h3.detective {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .steps .steps__step-box {
    height: 100%;
    padding: 60px 20px;
  }
}
.tours {
  padding: 60px 0;
}
.tours .tours__tour-image {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
  border-radius: 10px;
}
.tours h2 {
  font-size: 22px;
  margin-bottom: 20px;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  font-weight: 800;
}
.tours h3 {
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}
.tours h3 {
  color: var(--anchor-color);
}
.tours p {
  font-size: 14px;
  margin-bottom: 15px;
  letter-spacing: 0.75px;
}
.tours .tours__parameters {
  display: flex;
  flex-direction: column;
  justify-content: left;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.tours .tours__parameters .tours__parameter {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.tours .tours__parameters .tours__parameter span,
.tours .tours__parameters .tours__parameter a {
  font-size: 14px;
}
.tours .tours__parameters .tours__parameter span,
.tours .tours__parameters .tours__parameter a {
  color: var(--secondary-color);
}
.tours .tours__parameters .tours__parameter img {
  height: 20px;
  margin-right: 10px;
}
.tours .tours__prices .tours__price-box {
  display: inline-block;
  margin-right: 4px;
  margin-bottom: 10px;
  padding: 20px 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.15s;
  white-space: nowrap;
}
.tours .tours__prices .tours__price-box:hover {
  background: #206b80;
}
.tours .tours__prices .tours__price-box {
  background: var(--price-box-color);
}
.tours .tours__prices .tours__price-box .person {
  margin-right: 5px;
}
.tours .tours__prices .tours__price-box .price {
  color: var(--anchor-color);
}
.tours .tours__prices .tours__price-box.tours__price-box--secondary {
  background: transparent;
  padding: 15px 30px;
}
.default .tours .tours__prices .tours__price-box.tours__price-box--secondary {
  border: 1px solid;
}
.tours .tours__prices .tours__price-box.tours__price-box--secondary {
  border: 1px solid var(--price-box-color);
}
.tours .tours__prices .tours__price-box.active {
  background: #39636f;
}
.tours .tours__prices .tours__price-box.tour-page {
  background: #1f2e3c;
  border: 2px solid #1f2e3c;
}
.tours .tour-price-box input[type="radio"],
.tours .tour-price-box input[type="checkbox"] {
  display: none;
}
.tours .tour-price-box input[type="radio"]:checked + label,
.tours .tour-price-box input[type="checkbox"]:checked + label {
  background: #141516 !important;
  border: 2px solid #ea4273 !important;
}
.tours .tours__paginator {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tours .tours__paginator i {
  font-size: 20px;
  transition: 0.2s;
  cursor: pointer;
}
.tours .tours__paginator i {
  color: var(--secondary-color);
}
.tours .tours__paginator i:hover {
  color: rgba(var(--circle-color), 0.63);
}

.carousel-dots li {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border-bottom: unset;
  border-top: unset;
  transition: 0.2s;
  background-color: #efefef;
}
.carousel-dots li.active {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border-bottom: unset;
  border-top: unset;
}
.carousel-dots li.active {
  background: var(--circle-color);
}
.carousel-dots li:hover {
  background: rgba(var(--circle-color), 0.63);
}
.carousel-dots i {
  transition: 0.2s;
  cursor: pointer;
  font-size: 20px;
}
.carousel-dots i {
  color: var(--anchor-color);
}
.carousel-dots i:hover {
  color: rgba(var(--circle-color), 0.63);
}

@media (min-width: 992px) {
  .tours h2 {
    font-size: 32px;
  }
  .tours h3 {
    font-size: 26px;
  }
  .tours .tours__tour-image {
    height: 650px;
    object-fit: cover;
  }
  .tours .tours__prices {
    margin-bottom: 20px;
  }
  .tours .tours__parameters {
    margin-bottom: 25px;
    flex-direction: row;
  }
  .tours .tours__parameters .tours__parameter {
    margin-right: 30px;
  }
  .tours .tours__paginator {
    margin-top: 40px;
  }
  .tours .tours__paginator i {
    font-size: 26px;
  }

  .carousel-dots i {
    position: absolute;
    top: 320px;
    left: -70px;
    font-size: 50px;
  }
  .carousel-dots i.right {
    left: unset;
    right: -70px;
  }
}
.informations {
  box-shadow: 0px 3px 6px #00000029;
}
.informations h2 {
  color: #ffffff;
  font-size: 22px;
  letter-spacing: 1.05px;
  font-weight: 800;
  margin-bottom: 25px;
  text-align: center;
}
.informations .row .col-12:nth-child(odd) .informations__info-box {
  flex-direction: row;
  padding-right: 20px;
}
.informations .row .col-12:nth-child(even) .informations__info-box {
  flex-direction: row-reverse;
  padding-left: 20px;
}
.informations .row .col-12:nth-child(even) .informations__info-box img {
  margin-left: 10px;
  margin-right: -15px;
}
.informations .informations__info-box {
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.informations .informations__info-box img {
  margin-top: 5px;
  height: 150px;
  margin-left: -30px;
  margin-right: 10px;
}
.informations .informations__info-box p {
  margin-bottom: 0;
  font-size: 14px;
  text-align: left;
}
.informations .informations__info-box {
  background: var(--circle-color);
}
.informations {
  background: var(--ternary-color);
}

@media (min-width: 768px) {
  .informations .row .col-12:nth-child(even) .informations__info-box {
    flex-direction: row;
  }
  .informations .row .col-12:nth-child(even) .informations__info-box img {
    margin-left: -30px;
    margin-right: 10px;
  }
}
@media (min-width: 992px) {
  .informations h2 {
    font-size: 32px;
    margin-bottom: 60px;
    letter-spacing: 1.6px;
  }
  .informations img {
    height: 180px;
  }
}
.faq {
  font-size: 14px;
}
.faq h2 {
  font-size: 22px;
  letter-spacing: 1.05px;
  font-weight: 800;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
}
.faq img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.faq .faq__faq-title {
  display: flex;
  padding: 20px 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  justify-content: space-between;
  align-items: center;
}
.faq .faq__faq-title.pub-tour {
  color: #1f2e3c;
  background: #f5c36e;
}
.faq .faq__faq-title.detective {
  color: #28454d;
  background: transparent;
  border: 1px solid #eedf99;
}
.faq .faq__faq-title.pub-tour-highlighted {
  color: #1f2e3c;
  background: #ffffff;
}
.faq .faq__faq-title.detective-highlighted {
  color: #ffffff;
  background: #eedf99;
}
.faq .faq__faq-title i {
  transition: transform 0.25s ease-in-out;
}
.faq .faq__faq-title:not(.collapsed) i {
  transform: rotateZ(180deg);
}
.faq .faq__faq-text {
  letter-spacing: 0.75px;
  text-align: left;
  padding-bottom: 30px;
}

@media (min-width: 992px) {
  .faq h2 {
    font-size: 32px;
    margin-bottom: 60px;
    letter-spacing: 1.6px;
  }
}
.default .transaction-modal .modal-header {
  background: #ffffff;
}
.transaction-modal .modal-header {
  background: var(--secondary-color);
}
.transaction-modal .modal-body {
  max-height: 50vh;
  overflow-y: scroll;
  transition: 0.2s;
}
.default .transaction-modal .modal-body {
  background: #ffffff;
}
.transaction-modal .modal-body {
  background: var(--secondary-color);
}
.transaction-modal .modal-body .appointment-box {
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 15px;
  font-weight: bold;
  transition: 0.15s;
}
.transaction-modal .modal-body .appointment-box {
  color: var(--secondary-color);
}
.transaction-modal .modal-body .appointment-box {
  background: var(--primary-color);
}
.transaction-modal .modal-body .appointment-box.active {
  background: var(--circle-color);
}
.transaction-modal .modal-body::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
}
.transaction-modal .modal-body::-webkit-scrollbar {
  width: 3px;
}
.transaction-modal .modal-body .chosen-date {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.transaction-modal .modal-body .appointment-form input {
  padding: 20px 10px;
  background: #b7c5ce;
  font-weight: 500;
}
.transaction-modal .modal-body hr {
  border-top: 1px solid #eedf99;
}
.transaction-modal .modal-footer {
  border-top: 1px solid #dee2e6;
}
.default .transaction-modal .modal-footer {
  background: #ffffff;
}
.transaction-modal .modal-footer {
  background: var(--primary-color);
}
.transaction-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.coupon-modal .modal-header {
  text-align: center;
  background: #dde1e6;
}
.coupon-modal .modal-header h5 {
  width: 100%;
}
.coupon-modal .modal-body {
  max-height: 50vh;
  overflow-y: scroll;
  transition: 0.2s;
}
.default .coupon-modal .modal-body {
  background: #ffffff;
}
.coupon-modal .modal-body {
  background: var(--primary-color);
}
.coupon-modal .modal-body input {
  background: #efefef;
  font-weight: 500;
}
.coupon-modal .modal-body hr {
  border-top: 1px solid #efefef;
}
.coupon-modal .modal-body::-webkit-scrollbar-thumb {
  background: var(--ternary-color);
}
.coupon-modal .modal-body::-webkit-scrollbar {
  width: 3px;
}
.coupon-modal .modal-footer {
  background: #dde1e6;
}
.coupon-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

footer {
  box-shadow: inset 0 0 0 1px #00000024;
  padding-top: 50px;
}
footer {
  background: var(--foter-color);
}
footer .footer-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-bottom {
  background: var(--foter-bottom-color);
}
footer .footer-bottom a {
  display: inline-block;
  padding: 10px;
  background: white;
  border-radius: 5px;
  margin: 10px 0;
}
footer .footer-bottom a img {
  max-width: 300px;
}
footer h2 {
  font-size: 22px;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.05px;
  color: #ffffff;
}
footer h3 {
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
}
footer h3 {
  color: var(--header-color);
}
footer .footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .footer__links a {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 5px;
  transition: 0.15s;
}
footer .footer__links a:hover {
  color: var(--anchor-hover-color);
}
footer .footer__images {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}
footer .footer__images img {
  height: 25px;
  margin-right: 15px;
}

@media (min-width: 992px) {
  footer h2 {
    font-size: 32px;
    text-align: left;
  }
  footer h3 {
    text-align: left;
  }
  footer .footer__links {
    align-items: baseline;
  }
  footer .footer__images {
    justify-content: left;
  }
  footer .footer-bottom a img {
    max-width: 400px;
  }
}
@keyframes slide-animation {
  0% {
    left: 5px;
    background: #00000021;
    transform: rotateZ(-10deg);
  }
  50% {
    left: calc(100% - 29px);
    background: #00000000;
    transform: rotateZ(20deg);
  }
  100% {
    left: 5px;
    background: #00000016;
    transform: rotateZ(-10deg);
  }
}

/*# sourceMappingURL=styles-7.css.map */
