:root {
  --circle-color: #658754;
  --footer-background-color: #48613c;
  --header-text-color: #1d1d1d;
  --header-sticky-text-color: #000;
}

* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Inter Tight", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

p {
  margin: 0;
}

a {
  display: block;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

ul {
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media all and (max-width: 920px) {
  .container {
    padding: 0 10px;
  }
}

.items-center {
  align-items: center;
}

.items-flex-end {
  align-items: flex-end;
}

.space-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.row {
  display: flex;
  flex-direction: row;
}
.row.full {
  width: 100%;
}

.relative {
  position: relative;
}

.col {
  display: flex;
  flex-direction: column;
}
.col.full {
  flex: 1;
}
.col.auto {
  flex: 0;
}

img {
  max-width: 100%;
  display: block;
}

@media all and (max-width: 960px) {
  .hidden-md {
    display: none;
  }
}
.display-sm {
  display: none;
}

.display-flex-sm {
  display: none;
}

@media all and (max-width: 720px) {
  .flex-wrap-sm {
    flex-wrap: wrap;
  }
  .flex-column-sm {
    flex-direction: column;
  }
  .flex-column-reverse-sm {
    flex-direction: column-reverse;
  }
  .mt-2 {
    margin-top: 24px;
  }
  .hidden-sm {
    display: none;
  }
  .full-sm {
    flex: 1;
  }
  .display-sm {
    display: block;
  }
  .display-flex-sm {
    display: flex;
  }
  .justify-center-sm {
    justify-content: center;
  }
}
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 14px;
  color: var(--header-text-color);
  background-color: transparent;
  transition: top linear 0.3s, color linear 0.3s, background-color linear 0.3s;
  z-index: 1000;
  padding: 0 40px;
}
header > .container {
  background: #f6f6fb;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 10px;
  transition: background-color 0.2s linear, padding 0.2s linear;
}
header svg.logo {
  width: 100%;
  min-width: 100px;
}
header path {
  transition: fill linear 0.3s;
}
header a {
  white-space: nowrap;
  transition: color linear 0.3s;
}
header .main-row {
  gap: 40px;
}
header .second-row {
  gap: 12px;
}
header nav > ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 3px;
  justify-content: space-between;
}
header nav > ul a {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #1d1d1d;
  text-decoration: none;
  white-space: nowrap;
}
header .mobile-menu {
  width: 40px;
  height: 40px;
  display: none;
  padding: 10px;
  flex-direction: column;
  justify-content: space-around;
}
header .mobile-menu .bar {
  width: 100%;
  height: 3px;
  background: #fff;
}
header .icon-button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  mix-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  position: relative;
  border: 1.75px solid rgba(255, 255, 255, 0.2);
}
header .icon-button .counter {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 16px;
  height: 16px;
  right: 0px;
  top: -2px;
  background: #ffffff;
  border-radius: 50%;
  font-family: "Inter";
  font-style: normal;
  font-weight: 520;
  font-size: 11px;
  color: #1f1f1f;
}
header .icon-button:hover {
  cursor: pointer;
  opacity: 0.8;
}
@media all and (max-width: 720px) {
  header .icon-button {
    width: 26px;
    height: 26px;
  }
}
header.is-sticky {
  position: fixed;
  color: var(--header-sticky-text-color);
  top: 5px;
}
header.is-sticky > .container {
  background: transparent;
  padding: 16px 16px;
  background: rgba(31, 31, 31, 0.02);
  border-radius: 100px;
  border-radius: 100px;
  border: 1.75px solid rgba(0, 0, 0, 0.1098039216);
  backdrop-filter: blur(6px);
  background-clip: padding-box; /* Keeps background inside the border */
}
header.is-sticky > .container::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: var(--border-width);
  border-radius: var(--radius);
  background: linear-gradient(45deg, #f06, #4a90e2);
  -webkit-mask: linear-gradient(rgb(31, 31, 31) 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
header.is-sticky path {
  fill: var(--header-sticky-text-color);
}
header.is-sticky a {
  color: var(--header-sticky-text-color);
}
header.is-sticky svg.icon {
  color: #000;
}
header.is-sticky .dropdown::after {
  filter: invert(0);
}
header.is-sticky .counter {
  background: #1f1f1f;
  color: #fff;
}
@media all and (max-width: 1024px) {
  header .main-row {
    gap: 12px;
  }
  header nav ul {
    gap: 12px;
  }
}
@media all and (max-width: 720px) {
  header {
    padding: 8px;
    position: absolute !important;
  }
  header .container {
    background: transparent;
  }
  header .main-row {
    flex-direction: column;
  }
  header .phone-row a {
    color: #fff;
    font-size: 26px;
  }
  header .phone-hours {
    color: #fff;
    padding-left: 0;
    font-size: 11px;
    position: relative;
    bottom: unset;
    right: unset;
    left: unset;
  }
  header .messengers {
    gap: 8px;
  }
  header .messengers a {
    width: 30px;
    height: 30px;
  }
  header .messengers a svg {
    width: 30px;
    height: auto;
  }
  header .messengers path {
    fill: #fff;
  }
  header .logon {
    fill: #fff;
  }
  header .logo {
    height: 23px;
  }
}

.banner {
  position: relative;
  border-radius: 0px 0px 20px 20px;
  overflow: hidden;
}
.banner .wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.banner .img-wrapper {
  border-radius: 0px 0px 20px 20px;
  overflow: hidden;
}
.banner .img-wrapper::before {
  content: " ";
  position: absolute;
  inset: 0;
  background: linear-gradient(89.63deg, rgba(0, 0, 0, 0.9) 0.36%, rgba(0, 0, 0, 0) 128.65%);
}
.banner img {
  width: 100%;
  max-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px 0px 20px 20px;
  position: relative;
  z-index: -1;
}
.banner .container {
  padding: 40px;
  color: #fff;
}
@media all and (max-width: 920px) {
  .banner .container {
    padding: 15px;
  }
}
@media all and (max-width: 850px) {
  .banner img {
    min-height: 600px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media all and (max-width: 720px) {
  .banner .img-wrapper::before {
    content: unset;
  }
  .banner img {
    min-height: 600px;
    -o-object-fit: cover;
       object-fit: cover;
    filter: brightness(0.5);
  }
  .banner .container > .row {
    justify-content: center;
  }
}

.phone-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-row a {
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
  color: #1d1d1d;
  text-decoration: none;
  white-space: nowrap;
}

.phone-hours {
  font-size: 10px;
  font-weight: 400;
  line-height: 10px;
  color: rgb(29, 29, 29);
  text-align: center;
  margin-top: 2px;
  position: absolute;
  bottom: -9px;
  left: 65px;
  opacity: 0.7;
}

.messengers {
  display: flex;
  align-items: center;
  gap: 5px;
}
.messengers a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.callback {
  height: 31px;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: #ffa000;
  background: #f6f6fb;
  border: 1px solid #ffa000;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  transition: background-color 0.2s, color 0.2s;
}
.callback:hover {
  background: #ffa000;
  color: #ffffff;
}

.form {
  background: #f6f6fb;
  border-radius: 10px;
  padding: 20px;
  gap: 10px;
}
.form button {
  border: 0;
  height: 49px;
  background: #ffa000;
  border-radius: 50px;
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  padding: 0 20px;
  cursor: pointer;
  white-space: nowrap;
  width: 100%;
}
.form input {
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #e8e8f1;
  border-radius: 10px;
  height: 50px;
  padding: 15px 20px;
  color: #1d1d1d;
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  width: 100%;
}
.form label {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: #1d1d1d;
  opacity: 0.6;
  position: absolute;
  left: 21px;
  top: 2px;
}
.form.pd input {
  padding: 15px 15px 5px 15px;
}
.form.pd label {
  left: 16px;
  top: 5px;
  opacity: 1;
}
@media all and (max-width: 720px) {
  .form {
    flex-wrap: wrap;
  }
  .form > :nth-child(1) {
    width: 100%;
    flex: unset;
  }
  .form > :nth-child(2) {
    width: 48%;
    flex: unset;
  }
  .form > :nth-child(3) {
    width: 48%;
    flex: unset;
  }
  .form > :nth-child(4) {
    width: 100%;
  }
  .form > :nth-child(5) {
    width: 100%;
    text-align: center;
  }
  .form input {
    height: 46px;
    padding: 10px;
  }
  .form button {
    height: 49px;
  }
  .form label {
    left: 11px;
  }
}

.offer {
  gap: 20px;
  margin-top: 16px;
}
.offer .item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  background: #ffffff;
  border: 1px solid #e8e8f1;
  border-radius: 5px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #1d1d1d;
}
.offer .item svg {
  margin-right: 10px;
}

.banner h1 {
  font-weight: 600;
  font-size: 48px;
  line-height: 110%;
  margin-bottom: 17px;
  white-space: pre-wrap;
}
.banner .sub {
  font-weight: 500;
  font-size: 25px;
  line-height: 27px;
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 18px;
  white-space: pre-wrap;
}
.banner .price {
  font-weight: 600;
  font-size: 32px;
  line-height: 31px;
  color: #ffffff;
  margin-bottom: 65px;
}
@media all and (max-width: 720px) {
  .banner h1 {
    font-weight: 600;
    font-size: 30px;
    line-height: 110%;
    text-align: center;
    margin-bottom: 15px;
    white-space: wrap;
  }
  .banner .sub {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 13px;
    white-space: wrap;
  }
  .banner .price {
    text-align: center;
    margin-bottom: 22px;
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
  }
}

.list {
  margin-top: 18px;
  border: 1px solid #b5bfc8;
  border-radius: 10px;
}
.list .item .head {
  background: #393939;
  border-radius: 10px;
  padding: 6px 20px;
  color: #fff;
}
.list .item .content {
  padding: 20px;
}
.list .item .content > .row {
  gap: 20px;
}
.list .item.prices {
  background: #f6f6fb;
  outline: 1px solid #b5bfc8;
  border-radius: 10px;
}
@media all and (max-width: 720px) {
  .list .item .content > .row {
    justify-content: space-between;
  }
}
@media all and (min-width: 721px) {
  .list .item .content {
    padding: 15px 20px;
  }
  .list .item .content .tcard__city,
  .list .item .content .tcard__time {
    font-size: 18px;
    line-height: normal;
  }
  .list .tcard__price-content {
    padding: 15px 20px 15px 20px;
  }
  .list .tcard__price-amount {
    font-size: 26px;
    line-height: normal;
  }
}

.tcard__time {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #1d1d1d;
}
.tcard__date {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: #1d1d1d;
  margin-top: 7px;
}
.tcard__city {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #1d1d1d;
  margin-top: 6px;
}
.tcard__note {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 12px;
  color: rgba(29, 29, 29, 0.8);
  text-align: left;
  width: 130px;
  margin-top: 0;
}
.tcard__price-content {
  display: flex;
  flex-direction: column;
  padding: 17px 20px 20px 20px;
}
.tcard__price-amount {
  font-size: 32px;
  font-weight: 600;
  line-height: 39px;
  color: #1d1d1d;
  margin-bottom: 8px;
}
.tcard__price-info {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}
.tcard__price-info li {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #1d1d1d;
  padding-left: 14px;
  position: relative;
  margin-bottom: 5px;
}
.tcard__price-info li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #569ee6;
}
.tcard__price-payment {
  display: inline-flex;
  align-items: center;
  height: 25px;
  padding: 0 9px;
  background: #f6f6fb;
  border: 1px solid #b5bfc8;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  color: #1d1d1d;
  width: -moz-fit-content;
  width: fit-content;
}
@media all and (max-width: 720px) {
  .tcard__point {
    display: flex;
    flex-direction: column;
  }
  .tcard__price-content {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .tcard__date {
    order: 1;
  }
}
@media all and (min-width: 721px) {
  .tcard__price-amount {
    text-align: right;
  }
  .tcard__price-amount + div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

.gap10 {
  gap: 10px;
}

.order-form {
  gap: 13px;
  padding: 18px 20px 20px 18px;
  background: #e8e8f1;
  border-radius: 10px;
  margin-top: 20px;
}
.order-form input {
  background: #ffffff;
  border: 1px solid #e8e8f1;
  border-radius: 10px;
  height: 50px;
  width: 100%;
  padding: 0 20px;
}
.order-form button {
  width: 100%;
  height: 50px;
  background: #ffa000;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  border: 0;
}
.order-form .row2 {
  margin-top: 13px;
  justify-content: space-between;
}
.order-form .col-order-notify {
  width: 300px;
}
.order-form .checkbox-label {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #1d1d1d;
  white-space: nowrap;
}
.order-form .order-notify {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: right;
  color: #1d1d1d;
}
.order-form .order-notify svg {
  margin-right: 10px;
}
@media all and (max-width: 720px) {
  .order-form {
    background: #e8e8f1;
    border: 1px solid #b5bfc8;
    border-radius: 10px;
    padding: 10px 15px 30px 15px;
  }
  .order-form .gap10 {
    flex-direction: column;
  }
  .order-form .row2 {
    flex-direction: column;
  }
  .order-form .checkbox-label {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #1d1d1d;
  }
  .order-form .order-notify {
    text-align: left;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #1d1d1d;
  }
  .order-form input {
    background: #ffffff;
    border: 1px solid #e8e8f1;
    border-radius: 10px;
    height: 40px;
    padding: 0 15px;
  }
  .order-form button {
    width: 100%;
    max-width: unset;
  }
  .order-form .big-checkbox {
    width: 40px;
    height: 40px;
    margin-right: 11px;
  }
  .order-form .big-checkbox label {
    width: 40px;
    height: 40px;
  }
  .order-form .col-order-notify {
    width: unset;
  }
}

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

.order-form-description {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #1d1d1d;
  opacity: 0.7;
  margin-top: 20px;
}
@media all and (max-width: 720px) {
  .order-form-description br {
    display: none;
  }
}
@media all and (min-width: 721px) {
  .order-form-description {
    font-size: 14px;
    line-height: 16px;
  }
}

.actual {
  margin-top: 50px;
}
@media all and (max-width: 720px) {
  .actual h2 {
    width: 50%;
    margin: 0 0 30px 0;
  }
  .actual .actual-info {
    padding: 30px 20px 30px 20px;
  }
  .actual {
    position: relative;
  }
  .actual > .col:first-child {
    display: none;
    position: absolute;
    width: 112px;
    transform: scaleX(-1);
    right: 0;
    top: 17px;
  }
}

.actual-info {
  background: #f6f6fb;
  border-radius: 10px;
  padding: 45px 100px 45px 45px;
}
.actual-info img {
  width: 100%;
}

.price-table {
  margin-top: 34px;
}
.price-table .head {
  font-weight: 600;
  font-size: 34px;
  line-height: 110%;
  text-align: center;
  color: #1d1d1d;
  margin-bottom: 40px;
}
.price-table .item {
  padding: 12px 30px;
  border-radius: 10px;
  font-size: 18px;
  align-items: center;
  outline: 1px solid #e8e8f1;
  background: #e8e8f1;
}
.price-table .item:nth-child(2n) {
  background: #fff;
}
.price-table .city {
  font-weight: 600;
  line-height: 15px;
  color: #1d1d1d;
}
.price-table .date {
  font-size: 16px;
}
@media all and (max-width: 720px) {
  .price-table .head {
    text-align: center;
    font-size: 26px;
    line-height: 110%;
  }
  .price-table .item {
    padding: 12px;
  }
  .price-table .date {
    align-items: center;
    font-size: 12px;
  }
  .price-table .date div {
    text-align: left;
    width: 67px;
  }
  .price-table .price-table-content {
    overflow: auto;
  }
  .price-table .len4 .item {
    width: 120%;
  }
}

.pickup {
  margin-top: 50px;
}
.pickup h2 {
  font-weight: 600;
  font-size: 34px;
  line-height: 110%;
  text-align: center;
  color: #1d1d1d;
  margin-bottom: 40px;
}
.pickup .item {
  background: #f6f6fb;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 0 25px 0;
}
.pickup .row {
  gap: 20px;
}
.pickup .icon-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #1d1d1d;
  margin-top: 20px;
}
.pickup .pickup-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  background: #ffa000;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  border: 0;
  margin-top: 30px;
  min-width: 160px;
}
@media all and (max-width: 720px) {
  .pickup h2 {
    font-size: 26px;
    line-height: 110%;
  }
  .pickup .row {
    gap: 10px;
    flex-wrap: wrap;
  }
  .pickup .row > .col:nth-child(3) {
    flex: 100%;
  }
  .pickup svg {
    height: 30px;
  }
  .pickup .pickup-button {
    margin-top: 20px;
    width: 100%;
  }
  .pickup .icon-title {
    font-size: 16px;
    margin-top: 10px;
  }
  .pickup .item {
    padding: 10px;
  }
}

.fromto {
  margin-top: 50px;
}
.fromto h2 {
  font-weight: 600;
  font-size: 34px;
  line-height: 110%;
  text-align: center;
  color: #1d1d1d;
}
.fromto .item {
  background: #f6f6fb;
  border-radius: 10px;
  padding: 20px 20px 15px 20px;
}
.fromto .image {
  margin-bottom: 20px;
}
.fromto .image img {
  border-radius: 10px;
  max-height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 250px;
}
.fromto .path {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #1d1d1d;
}
.fromto .price {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: right;
  color: #1d1d1d;
}
.fromto > .row {
  flex-wrap: wrap;
  gap: 20px;
}
.fromto > .row > .col {
  flex: 0 0 calc(50% - 10px);
}
@media all and (max-width: 720px) {
  .fromto h2 {
    font-size: 26px;
  }
  .fromto > .row {
    gap: 10px;
  }
  .fromto > .row > .col {
    flex: 0 0 100%;
  }
  .fromto .image img {
    height: 185px;
  }
}

.fromto-map {
  margin-top: 20px;
}
.fromto-map img {
  border-radius: 10px;
}

.howto {
  margin-top: 50px;
}
.howto h2 {
  font-weight: 600;
  font-size: 34px;
  line-height: 110%;
  color: #1d1d1d;
  text-align: center;
}
.howto .row {
  gap: 20px;
}
.howto .item {
  background: #f6f6fb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 20px 10px;
  margin-top: 10px;
  width: 100%;
  height: 100%;
}
.howto .item .title {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #1d1d1d;
  margin-top: 16px;
  width: 90%;
}
@media all and (max-width: 720px) {
  .howto h2 {
    font-size: 26px;
  }
  .howto .row {
    flex-direction: column;
  }
  .howto .col {
    flex-direction: row;
  }
  .howto .item {
    flex-direction: row;
    padding: 15px 20px;
    margin-top: 0;
    margin-left: 6px;
  }
  .howto .item .title {
    margin-top: 0;
    text-align: left;
    margin-left: 10px;
    font-size: 16px;
  }
}
.howto-button-block {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.howto-button-block button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  height: 50px;
  background: #ffa000;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  border: 0;
}
@media all and (max-width: 720px) {
  .howto-button-block button {
    width: 100%;
  }
}

.recomendation {
  margin-top: 50px;
}
.recomendation h2 {
  font-weight: 600;
  font-size: 34px;
  line-height: 110%;
  text-align: center;
  color: #1d1d1d;
  margin: 0;
  margin-bottom: 30px;
}
.recomendation .row {
  gap: 20px;
}
.recomendation .item {
  background: #f6f6fb;
  border-radius: 10px;
  padding: 30px;
  width: 100%;
}
.recomendation .item .image img {
  height: 175px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
.recomendation .item .price,
.recomendation .item .title {
  margin-top: 20px;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #1d1d1d;
}
.recomendation .item .price {
  margin-top: 10px;
}
@media all and (max-width: 720px) {
  .recomendation h2 {
    font-size: 26px;
    margin-bottom: 18px;
  }
  .recomendation .row {
    gap: 10px;
    flex-direction: column;
  }
}
@media all and (min-width: 721px) {
  .recomendation .item .title {
    font-weight: 400;
  }
}

.recomendation-block {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recomendation-block button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #ffa000;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  height: 50px;
  border: 0;
  min-width: 160px;
}
@media all and (max-width: 720px) {
  .recomendation-block button {
    width: 100%;
  }
}

.main-map {
  margin-top: 50px;
}
.main-map img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}

footer {
  padding: 50px 60px 20px 50px;
  background: #222222;
}
footer .credentials {
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: #ffffff;
  opacity: 0.8;
  margin-top: 10px;
}
footer .col-title {
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: #ffffff;
  opacity: 0.8;
}
footer .col-contact,
footer .col-description {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  margin-top: 17px;
  color: #ffffff;
}
footer .col-contact a,
footer .col-description a {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
footer .col-contact a svg,
footer .col-description a svg {
  margin-right: 10px;
}
footer .text {
  margin-top: 50px;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  color: #ffffff;
  opacity: 0.8;
}
@media all and (max-width: 720px) {
  footer {
    padding: 50px 33px 20px 33px;
  }
  footer > .container > .row {
    flex-direction: column;
    text-align: center;
  }
  footer > .container > .row > .col {
    align-items: center;
  }
  footer .col-title {
    margin-top: 30px;
  }
  footer .col-description {
    margin-top: 10px;
    text-align: center;
  }
  footer .col-description a {
    text-align: center;
    justify-content: center;
  }
  footer .col-description .row {
    justify-content: center;
  }
  footer .contacts-col svg {
    height: 26px;
    width: auto;
  }
  footer .contacts-col a {
    font-size: 20px;
  }
}
@media all and (min-width: 721px) {
  footer .col-description {
    font-weight: 400;
  }
  footer .col-description a {
    font-weight: 400;
  }
}

.big-checkbox {
  position: relative;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  cursor: pointer;
}
.big-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.big-checkbox .checkbox-custom {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 2px solid #569ee6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.big-checkbox .checkbox-custom svg {
  width: 24px;
  height: 18px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.big-checkbox input:checked + .checkbox-custom {
  background: #ffffff;
  border-color: #569ee6;
}
.big-checkbox input:checked + .checkbox-custom svg {
  opacity: 1;
}
.big-checkbox {
  margin-right: 20px;
}

.reviews {
  margin-top: 50px;
}
.reviews h2 {
  font-weight: 600;
  font-size: 34px;
  line-height: 110%;
  text-align: center;
  color: #1d1d1d;
  margin: 0;
  margin-bottom: 30px;
}
.reviews .item {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e8e8f1;
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.reviews .item .head-row {
  gap: 19px;
}
.reviews .item .head-row .name {
  margin-top: 7px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #1d1d1d;
}
.reviews .item .text {
  margin-top: 20px;
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #1d1d1d;
}
.reviews .item .date {
  font-family: "Inter Tight";
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #1d1d1d;
  opacity: 0.8;
  margin-top: 30px;
}
@media all and (max-width: 720px) {
  .reviews h2 {
    font-size: 26px;
    margin-bottom: 18px;
  }
}
.reviews .reviewsSwiper .navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.reviews .reviewsSwiper .navigation div {
  margin: 0;
  top: 0;
  left: 0;
  right: 0;
  position: relative;
  color: transparent;
}

.faq {
  margin-top: 50px;
}
.faq h2 {
  font-weight: 600;
  font-size: 34px;
  line-height: 110%;
  text-align: center;
  color: #1d1d1d;
  margin: 0;
  margin-bottom: 30px;
}
@media all and (max-width: 720px) {
  .faq h2 {
    font-size: 26px;
    margin-bottom: 18px;
  }
}

button {
  font-size: 16px !important;
  font-weight: 500;
  font-family: "Inter Tight", sans-serif;
}

@media all and (max-width: 720px) {
  .line-sm {
    position: relative;
  }
  .line-sm::before {
    content: " ";
    height: 1px;
    background: #b5bfc8;
    position: absolute;
    left: 0;
    right: 107px;
    top: 10px;
    z-index: -1;
  }
}
.bus {
  margin-top: 50px;
}
.bus h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 110%;
  text-align: center;
  color: #1d1d1d;
  margin: 0;
}
.bus .description {
  margin-top: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #1d1d1d;
}
.bus button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #ffa000;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #ffffff;
  max-width: 150px;
  height: 50px;
  border: 0;
  margin-top: 20px;
  width: 100%;
}
@media all and (max-width: 720px) {
  .bus button {
    width: 100%;
    max-width: unset;
  }
}
@media all and (min-width: 721px) {
  .bus > div {
    display: flex;
  }
  .bus h2 {
    font-weight: 600;
    font-size: 34px;
    line-height: 110%;
    color: #1d1d1d;
    margin-bottom: 20px;
    text-align: left;
  }
  .bus .busSwiper {
    width: 100%;
  }
  .bus .busSwiper img {
    height: 320px !important;
    max-height: 320px !important;
  }
  .bus .busSwiper + div {
    padding: 35px 35px 0 117px;
  }
}

.busSwiper {
  margin-top: 30px;
  --swiper-navigation-size: 33px;
}
.busSwiper .navigation > div {
  color: #fff;
}
.busSwiper .navigation > div circle {
  stroke: transparent;
}
.busSwiper .item img {
  max-height: 198px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 198px;
}

.faq .item {
  margin-top: 15px;
  border-bottom: 1px solid rgb(232, 232, 241);
  padding-bottom: 15px;
}
.faq .f {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #1d1d1d;
}
.faq .q {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #1d1d1d;
  opacity: 0.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.faq .q div {
  margin-top: 15px;
}
.faq .opened {
  display: none;
}
.faq .f.active .opened {
  display: block;
}
.faq .f.active .close {
  display: none;
}

button {
  cursor: pointer;
}
button:hover {
  opacity: 0.8;
}

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup.active {
  display: flex;
}
.popup .container {
  justify-content: center;
  display: flex;
}
.popup .form {
  max-width: 550px;
  background: rgb(232, 232, 241);
  padding: 30px 20px 30px 20px;
  position: relative;
}
.popup .form .close {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -14px;
  top: -14px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.popup .form .heading {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #1d1d1d;
  margin-bottom: 30px;
  width: 100%;
}
.popup .form .form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
}
.popup .form button {
  margin-top: 8px;
  width: 100%;
}
@media all and (max-width: 720px) {
  .popup .form .close {
    right: -7px;
  }
}

@media all and (min-width: 721px) {
  h2 {
    font-size: 28px !important;
  }
  .actual-info h2 {
    font-size: 1.5em !important;
  }
}
@media all and (min-width: 721px) {
  .prem .row {
    justify-content: center !important;
  }
  .prem h2 {
    font-size: 28px !important;
    text-align: left !important;
    font-weight: 600;
  }
  .prem h2 br {
    display: none;
  }
  .prem img {
    width: 100px !important;
  }
}
#headerMobile {
  position: fixed;
  left: 0;
  right: 0;
  top: 5px;
  color: var(--header-text-color);
  background-color: transparent;
  transition: transform linear 0.3s, top linear 0.3s, color linear 0.3s, background-color linear 0.3s;
  z-index: 1000;
  padding: 0px;
  transform: translateY(-150%);
}
#headerMobile > .container {
  background: #f6f6fb;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 10px;
  transition: background-color 0.2s linear, padding 0.2s linear;
}
#headerMobile svg.logo {
  width: 100%;
  min-width: 100px;
}
#headerMobile path {
  transition: fill linear 0.3s;
}
#headerMobile a {
  white-space: nowrap;
  transition: color linear 0.3s;
}
#headerMobile .main-row {
  gap: 40px;
}
#headerMobile .second-row {
  gap: 12px;
}
#headerMobile nav > ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 3px;
  justify-content: space-between;
}
#headerMobile nav > ul a {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #1d1d1d;
  text-decoration: none;
  white-space: nowrap;
}
#headerMobile .mobile-menu {
  width: 40px;
  height: 40px;
  display: none;
  padding: 10px;
  flex-direction: column;
  justify-content: space-around;
}
#headerMobile .mobile-menu .bar {
  width: 100%;
  height: 3px;
  background: #fff;
}
#headerMobile.is-sticky {
  transform: translateY(0);
  position: fixed;
  color: var(--header--text-color);
  top: 5px;
}
#headerMobile {
  display: none;
}
@media all and (max-width: 720px) {
  #headerMobile {
    padding: 0 8px;
    position: fixed !important;
    display: block;
  }
  #headerMobile .container {
    background: #fff;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.5215686275);
  }
  #headerMobile .main-row {
    gap: 8px;
  }
  #headerMobile .phone-row a {
    color: #1d1d1d;
    font-size: 20px;
  }
  #headerMobile .phone-hours {
    color: #fff;
    padding-left: 0;
    font-size: 11px;
    position: relative;
    bottom: unset;
    right: unset;
    left: unset;
    display: none;
  }
  #headerMobile .messengers {
    gap: 6px;
  }
  #headerMobile .messengers a {
    width: 24px;
    height: 24px;
  }
  #headerMobile .messengers a svg {
    width: 24px;
    height: auto;
  }
  #headerMobile .logo {
    height: 30px;
    min-width: 120px !important;
  }
}
@media all and (max-width: 400px) {
  #headerMobile .phone-row a {
    color: #1d1d1d;
    font-size: 16px;
  }
  #headerMobile .phone-hours {
    color: #fff;
    padding-left: 0;
    font-size: 11px;
    position: relative;
    bottom: unset;
    right: unset;
    left: unset;
    display: none;
  }
  #headerMobile .messengers {
    gap: 6px;
  }
  #headerMobile .messengers a {
    width: 20px;
    height: 20px;
  }
  #headerMobile .messengers a svg {
    width: 20px;
    height: auto;
  }
  #headerMobile .logo {
    height: 23px;
    min-width: 100px !important;
  }
}

.prem > .row {
  gap: 15px;
  padding: 15px 15px 0 0;
  border-radius: 10px;
  margin-top: 0;
  text-align: center;
  justify-content: space-between;
}
.prem img {
  width: 130px;
}
.prem h2 {
  text-align: right;
  margin: 0;
  white-space: pre-wrap;
}
@media all and (max-width: 720px) {
  .prem > .row {
    justify-content: flex-start;
  }
  .prem img {
    width: 80px;
    min-width: 80px;
  }
  .prem h2 {
    font-size: 22px;
    text-align: left;
  }
  .prem h2 ul {
    list-style: none;
  }
}/*# sourceMappingURL=style.css.map */