html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* scroll-behavior: smooth; */
  scrollbar-width: thin;
  scrollbar-color: #413dfd #eff2f5;
}

html ::-moz-selection {
  background-color: #eff2f5;
  color: #fff;
}

html ::selection,
html ::-moz-selection {
  background-color: #413dfd;
  color: #fff;
}

html ::-webkit-scrollbar {
  width: 0.5rem;
}

html ::-webkit-scrollbar-track {
  background: #eff2f5;
}

html ::-webkit-scrollbar-thumb {
  background: #413dfd;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  min-height: 100vh;
  font-weight: 500;
  font-size: 1rem;
  line-height: 140%;
  color: #02172c;
}

body.no-scroll {
  position: fixed;
  right: 0;
  left: 0;
}

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

main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

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

form span {
  display: inline;
}

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

ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

button,
.btn {
  cursor: pointer;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.container {
  width: 100%;
  max-width: 75.625rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

.main--inner-page {
  padding-top: 6.6875rem;
}

@media screen and (max-width: 1024px) {
  .main--inner-page {
    padding-top: 4.375rem;
  }
}

@media screen and (max-width: 575px) {
  .main--inner-page {
    padding-top: 6rem;
  }
}

.logo img {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.logo img {
  -webkit-transform: skew(-10deg, 0);
  -ms-transform: skew(-10deg, 0);
  transform: skew(-10deg, 0);
}

@media (any-hover: hover) {}

.section--spacing {
  padding-bottom: 6.25rem;
}

@media screen and (max-width: 768px) {
  .section--spacing {
    padding-bottom: 4.375rem;
  }
}

.section__title {
  font-weight: 700;
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  line-height: 125%;
  color: #02172c;
}

.hero .section__title {
  color: #fff;
}

.section__title--hero {
  font-size: clamp(2.1875rem, 5vw, 3.125rem);
  /* line-height: 140%; */
}

.section__title--md {
  font-size: 25px;
  line-height: 140%;
}

@media screen and (max-width: 575px) {
  .section__title--md {
    font-size: 18px;
    line-height: 125%;
  }
}

.section__title--sm {
  font-weight: 600;
  font-size: 1.5625rem;
  line-height: 140%;
}

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

.section__title span {
  color: #a5cbff;
  font-size: 0.7em;
}

.caption {
  font-weight: 600;
  font-size: 1.35rem;
}

.link {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 140%;
  color: #02172c;
}

.hero__link {
  color: #fff;
}

.link--lg {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 120%;
}

.link--white {
  color: #fff;
}

@media (any-hover: hover) {
  .link:hover {
    text-decoration: underline;
  }
}

.dropped {
  position: relative;
}

.dropped::after {
  content: url(../img/icons/arrow-dropdown.svg);
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  line-height: 1.125rem;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 1024px) {
  .dropped::after {
    display: none;
  }
}

.booking {
  position: fixed;
  top: 86.5vh;
  /* right: calc((100vw - 1210px) / 2 - 90px); */
  right: 30px;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 5.9375rem;
  text-align: center;
  gap: 0.8125rem;
  font-size: 0.9375rem;
  line-height: 0.9375rem;
  font-weight: 700;
  
}

@media (any-hover: hover) {
  .booking:hover .booking__btn::before {
    background: rgba(65, 61, 253, 0.15);
  }
}

@media screen and (max-width: 1440px) {
  .booking {
    right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .booking {
    top: calc(var(--app-height) - 80px);
    font-size: 0;
    max-width: 3.75rem;
  }
}

.booking__btn {
  padding: 0;
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 50%;
  -webkit-box-shadow: 0px 10px 15px rgba(65, 61, 253, 0.15);
  box-shadow: 0px 10px 15px rgba(65, 61, 253, 0.15);
  /* background: #a8ec73 -o-linear-gradient(285.57deg, rgba(255, 255, 255, 0.3) 8.09%, rgba(121, 217, 46, 0.3) 92.37%); */
  background: rgb(65, 61, 253) linear-gradient(164.43deg, rgba(255, 255, 255, 0.3) 8.09%, rgba(65, 61, 253, 0.3) 92.37%);
  /* background: rgb(65, 61, 253); */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .booking__btn {
    width: 3.8rem;
    height: 3.8rem;
  }

  .booking__btn::before {
    /* display: none !important  ; */
  }
}

.booking__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: left top;
  background: rgba(0, 0, 0, 0);
  border: 1px solid rgba(65, 61, 253, 0.57);
  /* filter: drop-shadow(0px 10px 15px rgba(168, 236, 115, 0.15)); */
  animation: pulse 3s infinite linear;
  transition: all 0.3s ease-in-out;
}

.booking__btn img {
  width: 1.875rem;
  height: 1.875rem;

  filter: invert(1);
}

@media screen and (max-width: 768px) {
  .booking__btn img {
    width: 1.375rem;
    height: 1.375rem;
  }
}

.to-top-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 2.1875rem;
}

@media (any-hover: hover) {
  .to-top-btn:hover {
    -webkit-filter: drop-shadow(2px 2px 10px rgba(124, 131, 138, 0.6));
    filter: drop-shadow(2px 2px 10px rgba(124, 131, 138, 0.6));
  }
}

.overlay {
  cursor: pointer;
  position: fixed;
  top: -100%;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  background: rgba(2, 23, 44, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  transition: transform 0.3s 0.3s, opacity 0.3s, top 0s 0.3s;
}

.overlay--visible {
  top: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: transform 0s, opacity 0.3s, top 0s;
}

@-webkit-keyframes pulse {
  to {
    -webkit-transform: scale(1.75) translate(-50%, -50%);
    transform: scale(1.75) translate(-50%, -50%);
  }
}

@keyframes pulse {
  to {
    -webkit-transform: scale(1.75) translate(-50%, -50%);
    transform: scale(1.75) translate(-50%, -50%);
  }
}

.btn {
  padding: 1rem 1.25rem 1.0625rem;
  min-height: 3.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  border: none;
  background: #413dfd;
  /* -webkit-box-shadow: 0px 10px 15px rgba(0, 72, 255, 0.15); */
  /* box-shadow: 0px 10px 15px rgba(0, 72, 255, 0.15); */
  border-radius: 20px;
  font-weight: 600;
  font-size: clamp(0.9375rem, 4vw, 1rem);
  line-height: 1.375;
  color: #fff;
}

.btn--min-w {
  min-width: 15rem;
}

@media (any-hover: hover) {
  .btn:hover {
    background: #02172c;
  }

  .hero__offer .btn:hover {
    background: #5786ff;
  }
}

.btn--primary {
  background: #02172c;
}

@media (any-hover: hover) {
  .btn--primary:hover {
    background: #413dfd;
  }
}

.btn--dark {
  background: #02172c;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (any-hover: hover) {
  .btn--dark:hover {
    background: #032240;
  }
}

@media screen and (max-width: 575px) {
  .btn {
    min-height: 3.125rem;
    font-size: 0.9375rem;
    line-height: 1.3333333333;
    padding: 0.9375rem 1.25rem;
  }
}

.header {
  padding-top: 0.75rem;
  position: relative;
  z-index: 15;
  width: 100%;
  transition: transform 0.4s, width 0.4s, border-radius 0.4s;
}

.header {
  position: absolute;
}

.header.out {
  background: none;
  transform: translateY(-100%);
}

.header.scrolled {
  /* background: #000; */
}

.header__container {
  position: relative;
}

.header__wrap {
  padding-left: 1.25rem;
  padding-right: 2.625rem;
  /* background: #eff2f5; */
  background: rgba(239, 242, 245, 0.5);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: background 0.3s;
}

.header.scrolled .header__wrap {
  background: #eff2f5;
}

@media screen and (max-width: 1024px) {
  .header__wrap {
    padding: 0.8125rem 0.9375rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

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

.header__logo img {
  max-width: 13rem;
}

.header__logo span {
  margin-top: 0.3125rem;
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.2307692308;
  color: #7c838a;
}

@media screen and (max-width: 1024px) {
  .header__logo span {
    margin-top: 0.1875rem;
  }
}

@media screen and (max-width: 1024px) {
  .header__social {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 0.9375rem;
  }
}

@media screen and (max-width: 575px) {
  .header__social {
    margin-bottom: 0.625rem;
  }
}

@media screen and (max-width: 1024px) {
  .header__social .social__icon {
    width: 2.8125rem;
    height: 2.8125rem;
  }
}

@media screen and (max-width: 575px) {
  .header__social .social__icon {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}

.header__span--mobile {
  display: none;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 120%;
  text-align: center;
  color: #7c838a;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

@media screen and (max-width: 1024px) {
  .header__span--mobile {
    display: block;
  }
}

@media screen and (max-width: 575px) {
  .header__span--mobile {
    font-size: 0.8125rem;
    line-height: 1.3846153846;
  }
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
  row-gap: 0.625rem;
}

@media screen and (max-width: 1200px) {
  .nav__list {
    -webkit-column-gap: 1.875rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
  }
}

@media screen and (max-width: 1024px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    align-items: initial;
    row-gap: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #cfddeb;
  }
}

.nav__item--submenu {
  position: relative;
}

@media (any-hover: hover) {
  .nav__item--submenu:hover .nav__link.dropped::after {
    -webkit-transform: rotate(180deg) translateY(50%);
    -ms-transform: rotate(180deg) translateY(50%);
    transform: rotate(180deg) translateY(50%);
  }

  .nav__item--submenu:hover .dropdown--nav {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    top: 70%;
  }
}

@media screen and (max-width: 1024px) {
  .nav__item--submenu:hover .nav__link.dropped::after {
    display: none;
  }

  .nav__item--submenu:hover .dropdown--nav {
    display: none;
  }
}

.nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  /* font-size: 1rem; */
  line-height: 70px;
}

.nav__list {
  font-size: 1.1rem;
}

@media screen and (max-width: 1024px) {
  .nav__link {
    font-size: 1.625rem;
    line-height: 140%;
  }
}

@media screen and (max-width: 575px) {
  .nav__link {
    font-size: 1.125rem;
    line-height: 140%;
  }
}

.nav__link--active {
  cursor: default;
  color: #413dfd;
}

.nav__link.dropped::after {
  top: 52%;
}

@media screen and (max-width: 1024px) {
  .nav__link.dropped::after {
    display: none;
  }
}

@media (any-hover: hover) {
  .nav__link:hover:not(.nav__link--active) {
    color: #413dfd;
  }
}

.nav__sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.3125rem;
  font-size: 0.875rem;
  line-height: 120%;
}

@media screen and (max-width: 1024px) {
  .nav__sublist {
    display: none;
  }
}

@media (any-hover: hover) {
  .nav__sublink:hover {
    color: #413dfd;
  }
}

.menu-btn {
  cursor: pointer;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.3125rem;
  border: none;
  background: none;
  padding: 0;
  font-weight: 600;
  font-size: 0.9375rem;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .menu-btn:hover span::before {
    width: 80%;
  }

  .menu-btn:hover span::after {
    width: 55%;
  }
}

.menu-btn span {
  width: 1.5625rem;
  height: 0.125rem;
  background: #02172c;
  border-radius: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  right: 0;
  background: inherit;
  border-radius: inherit;
  height: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-btn span::before {
  top: 6px;
  width: 55%;
}

.menu-btn span::after {
  bottom: 6px;
  width: 80%;
}

.menu-btn--active span {
  background: #413dfd;
}

@media screen and (max-width: 1024px) {
  .menu-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 15px;
  right: 15px;
  z-index: 5;
  padding: 1.875rem 2.1875rem;
  margin: 0;
  background: #eff2f5;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
  opacity: 0;
  -webkit-transform: scale(0) translateY(-100%);
  -ms-transform: scale(0) translateY(-100%);
  transform: scale(0) translateY(-100%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu--active {
  opacity: 1;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

@media screen and (max-width: 575px) {
  .menu {
    padding: 1.5625rem;
  }
}

@media screen and (min-width: 1025px) {
  .menu {
    position: static;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    padding: 0;
    background: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: 1.875rem;
  }
}

@media screen and (min-width: 1201px) {
  .menu {
    margin-left: 4.0625rem;
  }
}

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

@media screen and (max-width: 1024px) {
  .cta {
    margin-bottom: 1.5625rem;
    padding-top: 1.25rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .menu {
    width: calc(100% - 40px);
    left: 20px;
  }
}

.cta__item--submenu {
  position: relative;
}

@media (any-hover: hover) {
  .cta__item--submenu:hover .cta__link.dropped::after {
    -webkit-transform: rotate(180deg) translateY(50%);
    -ms-transform: rotate(180deg) translateY(50%);
    transform: rotate(180deg) translateY(50%);
  }

  .cta__item--submenu:hover .dropdown--cta {
    top: -40%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.cta__item--hidden {
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cta__link {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1024px) {
  .cta__link {
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 575px) {
  .cta__link {
    font-size: 1.25rem;
  }
}

@media (any-hover: hover) {
  .cta__link:hover {
    text-decoration: underline;
  }
}

.cta span {
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.3846153846;
  color: #7c838a;
}

@media screen and (max-width: 1024px) {
  .cta span {
    display: none;
  }
}

.dropdown {
  position: absolute;
  top: 0;
  padding: 0.8125rem 1.25rem;
  background: #eff2f5;
  border: 1px solid #cfddeb;
  border-radius: 20px;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  top: -100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.dropdown--nav {
  padding: 0.625rem 0.875rem;
}

.dropdown--cta {
  left: -20px;
  padding: 2.375rem 2.5rem 0.8125rem 1.1875rem;
}

@media screen and (max-width: 1024px) {
  .dropdown--cta {
    position: static;
    padding: 0;
    background: rgba(0, 0, 0, 0);
    border: none;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.dropdown__item:first-child {
  margin-block: 0.625rem;
}

@media screen and (max-width: 1024px) {
  .dropdown__item:first-child {
    margin-block: 0.9375rem;
  }
}

@media screen and (max-width: 1024px) {
  .dropdown__link {
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 575px) {
  .dropdown__link {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 1200px) {
  .dropdown__link--roadtrip {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 900px) {
  .dropdown__link--roadtrip {
    font-size: clamp(0.9375rem, 4vw, 1.25rem);
  }
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.9375rem;
}

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

@media (any-hover: hover) {
  .social__link:hover {
    -webkit-transform: translate(3px, -3px);
    -ms-transform: translate(3px, -3px);
    transform: translate(3px, -3px);
  }
}

.social__icon {
  /* border-radius: 50%; */
  width: 100%;
  max-width: 35px;
  max-height: 35px;
}

.hero {
  overflow: hidden;
  position: relative;
  background: center / cover url("../img/new/new_main_bg.jpeg");
  min-height: 700px;

  height: var(--app-height);
  display: flex;
  align-items: center;
}

.hero:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, black, transparent);
  z-index: 1;
}

.hero__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  /* padding-top: 7.8125rem; */
  padding-top: 0;
  z-index: 2;
}

@media screen and (max-width: 1024px) {
  .hero__wrap {
    padding-top: 5.3125rem;
  }
}

@media screen and (max-width: 768px) {
  .hero__wrap {
    padding-top: 7rem;
  }
}

@media screen and (max-width: 575px) {
  .hero__wrap {
    padding-top: 7.9rem;
  }
}

.hero__title {
  padding-right: 47.9338842975%;
}

@media screen and (max-width: 768px) {
  .hero__title {
    padding-right: 0;
    text-align: center;
    max-width: 90%;
    margin-inline: auto;
    margin-bottom: 1.25rem;
  }
}

@media screen and (max-width: 575px) {
  .hero__title {
    text-align: start;
    max-width: 100%;
    margin-inline: 0;
    margin-bottom: 2.1875rem;
  }
}

.hero__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .hero__info {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 1.5625rem;
  }
}

@media screen and (max-width: 575px) {
  .hero__info {
    position: relative;
    margin-left: 0;
    margin-top: 1.875rem;
  }
}

.hero__offer {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero__stickers {
  margin-left: 3.125rem;
}

@media screen and (max-width: 768px) {
  .hero__stickers {
    margin-left: 1.5625rem;
  }
}

@media screen and (max-width: 575px) {
  .hero__stickers {
    margin-left: 0;
    position: absolute;
    bottom: 110px;
    right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.hero__photo {
  position: absolute;
  right: -40px;
  top: 116px;
}

@media screen and (max-width: 1300px) {
  .hero__photo {
    right: 0;
    width: max(25rem, 50%);
  }
}

@media screen and (max-width: 1024px) {
  .hero__photo {
    top: 90px;
  }
}

@media screen and (max-width: 768px) {
  .hero__photo {
    position: static;
    width: max(25rem, 80%);
    margin-inline: auto;
  }
}

@media screen and (max-width: 575px) {
  .hero__photo {
    width: max(17.8125rem, 100%);
    margin-inline: 0;
    -webkit-transform: translateX(-33%);
    -ms-transform: translateX(-33%);
    transform: translateX(-33%);
  }
}

.offer {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; */
  text-align: center;
  gap: 0.625rem;
}

@media screen and (max-width: 575px) {
  .offer {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .offer button {
    width: 100%;
  }
}

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

.sticker {
  width: 8.75rem;
  height: 8.75rem;
  -webkit-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  transform: rotate(-15deg);
  border-radius: 50%;
  background: #a8ec73 -o-linear-gradient(285.57deg, rgba(255, 255, 255, 0.3) 8.09%, rgba(121, 217, 46, 0.3) 92.37%);
  background: #A3CEEF url("../img/noise.png");
  border: 2px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  text-align: center;
  color: #313131;
}

@media screen and (max-width: 768px) {
  .sticker {
    width: 7.125rem;
    height: 7.125rem;
    font-size: 0.8125rem;
  }
}

.sticker+.sticker {
  z-index: 2;
  margin-left: -15px;
}

@media screen and (max-width: 575px) {
  .sticker+.sticker {
    margin-left: 0;
    margin-top: -15px;
  }
}

.banner {
  padding: 8rem 0 7.5rem;
}

@media screen and (max-width: 1024px) {
  .banner {
    padding: 7.5rem 0 5rem;
  }
}

@media screen and (max-width: 768px) {
  .banner {
    padding: 3.4375rem 0 3.75rem;
  }
}

.banner--lg {
  padding: 4.375rem 0 10.625rem;
}

@media screen and (max-width: 1024px) {
  .banner--lg {
    padding: 3.125rem 0 7.5rem;
  }
}

@media screen and (max-width: 768px) {
  .banner--lg {
    padding: 0 0 4.375rem;
  }
}

.banner__img {
  position: absolute;
  top: 50%;
  left: -8%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 1300px) {
  .banner__img {
    width: max(16.875rem, 30%);
    left: -6%;
  }
}

@media screen and (max-width: 768px) {
  .banner__img {
    display: none;
  }
}

.banner__wrap {
  padding: 3.125rem 3.125rem 3.125rem 20%;
  /* background: -o-linear-gradient(182.77deg, rgba(255, 255, 255, 0.5) 2.32%, rgba(165, 254, 206, 0.498143) 51.16%, rgba(61, 149, 253, 0.5) 97.69%); */
  background: linear-gradient(267.23deg, rgba(255, 255, 255, 0.5) 2.32%, rgba(75, 177, 255, 0.198143) 51.16%, rgba(61, 149, 253, 0.5) 97.69%), url("../img/noise.png");
  border: 1px solid #cfddeb;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3.125rem;
  position: relative;
}

@media screen and (max-width: 1300px) {
  .banner__wrap {
    padding: 3.125rem 1.25rem 3.125rem 22%;
    gap: 1.5625rem;
  }
}

@media screen and (max-width: 1024px) {
  .banner__wrap {
    padding: 1.875rem 1.875rem 1.875rem 20%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .banner__wrap {
    padding: 1.875rem;
  }
}

@media screen and (max-width: 575px) {
  .banner__wrap {
    padding: 1.25rem 1.25rem 1.5625rem;
  }
}

.banner__title {
  font-weight: 600;
  /* margin-bottom: 21px; */
}

.banner__title span {
  font-weight: 700;
}

.banner__offer {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  text-align: center;


  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1025px) {
  /* .banner__offer {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  } */
}

.services__wrap {
  padding: 4.0625rem 0 4.0625rem 4.375rem;
  border: 1px solid #cfddeb;
  border-radius: 20px;
  /* background: #fff -o-linear-gradient(182.77deg, rgba(255, 255, 255, 0.5) 2.32%, rgba(165, 254, 206, 0.498143) 51.16%, rgba(61, 149, 253, 0.5) 97.69%); */
  background: linear-gradient(267.23deg, rgba(255, 255, 255, 0.5) 2.32%, rgba(75, 177, 255, 0.198143) 51.16%, rgba(61, 149, 253, 0.5) 97.69%), url("../img/noise.png");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 4.0625rem 1.5625rem;
}

@media screen and (max-width: 1300px) {
  .services__wrap {
    padding: 2.5rem 0 2.5rem 3.125rem;
  }
}

@media screen and (max-width: 1024px) {
  .services__wrap {
    padding: 2.5rem 3.125rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 575px) {
  .services__wrap {
    padding: 1.875rem 1.25rem;
    gap: 5.625rem 1.5625rem;
  }
}

.services__content {
  max-width: 30rem;
}

@media screen and (max-width: 1024px) {
  .services__content {
    max-width: 100%;
  }
}

.services__content p {
  font-weight: 500;
  font-size: clamp(0.9375rem, 4vw, 1.125rem);
  line-height: 1.5;
}

.services__content p+p {
  margin-top: 1.875rem;
}

.services__title {
  margin-bottom: 1.5625rem;
}

@media screen and (max-width: 575px) {
  .services__title {
    margin-bottom: 1.25rem;
  }
}

.services__inner {
  display: grid;
  grid-template-columns: repeat(2, 17.5rem);
  gap: 3.125rem 1.875rem;
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

@media screen and (max-width: 1300px) {
  .services__inner {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
}

@media screen and (max-width: 768px) {
  .services__inner {
    grid-template-columns: repeat(2, minmax(8.75rem, 17.5rem));
    gap: 1.875rem 0.9375rem;
  }
}

@media screen and (max-width: 575px) {
  .services__inner {
    margin: 0 -20px;
    grid-template-columns: repeat(2, minmax(10rem, 12.5rem));
    gap: 1.875rem 0;
  }
}

.services__item {
  min-height: 7.6875rem;
  background-color: #fbfbfb;
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: right 10px top 10px;
  border: 1px solid #cfddeb;
  border-radius: 20px;
  padding: 1.25rem 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  position: relative;
}

@media screen and (max-width: 575px) {
  .services__item {
    min-height: 5.625rem;
    padding: 1.25rem 0.25rem 1.25rem 0.75rem;
    font-size: 0.9375rem;
    background-size: 25px;
  }
}

.services__item--kids {
  -webkit-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  transform: rotate(-10deg);
  background-image: url(../img/icons/new/icon1.svg);
}

@media screen and (max-width: 575px) {
  .services__item--kids {
    -webkit-transform: rotate(-10deg) translateY(-50%) translateX(30px);
    -ms-transform: rotate(-10deg) translateY(-50%) translateX(30px);
    transform: rotate(-10deg) translateY(-50%) translateX(30px);

    background-position: 96% 2%;
  }
}

.services__item--heat {
  -webkit-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  background-image: url(../img/icons/new/icon2.svg);
}

@media screen and (max-width: 575px) {
  .services__item--heat {
    -webkit-transform: rotate(3deg) translateX(-10px);
    -ms-transform: rotate(3deg) translateX(-10px);
    transform: rotate(3deg) translateX(-10px);
  }
}

.services__item--cond {
  -webkit-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  transform: rotate(5deg);
  background-image: url(../img/icons/new/icon3.svg);
}

@media screen and (max-width: 575px) {
  .services__item--cond {
    -webkit-transform: rotate(5deg) translateY(-50%) translateX(30px);
    -ms-transform: rotate(5deg) translateY(-50%) translateX(30px);
    transform: rotate(5deg) translateY(-50%) translateX(30px);
  }
}

.services__item--briefcase {
  -webkit-transform: rotate(-3deg) translateX(20px);
  -ms-transform: rotate(-3deg) translateX(20px);
  transform: rotate(-3deg) translateX(20px);
  background-image: url(../img/icons/new/icon4.svg);
}

@media screen and (max-width: 575px) {
  .services__item--briefcase {
    -webkit-transform: rotate(-3deg) translateX(9px);
    -ms-transform: rotate(-3deg) translateX(9px);
    transform: rotate(-3deg) translateX(9px);
  }
}

.services__item--sits {
  -webkit-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
  background-image: url(../img/icons/new/icon5.svg);
}

@media screen and (max-width: 575px) {
  .services__item--sits {
    -webkit-transform: rotate(-3deg) translateY(-50%) translateX(20px);
    -ms-transform: rotate(-3deg) translateY(-50%) translateX(20px);
    transform: rotate(-3deg) translateY(-50%) translateX(20px);
  }
}

.services__item--tv {
  -webkit-transform: rotate(6deg) translateX(10px);
  -ms-transform: rotate(6deg) translateX(10px);
  transform: rotate(6deg) translateX(10px);
  background-image: url(../img/icons/new/icon6.svg);
}

@media screen and (max-width: 575px) {
  .services__item--tv {
    -webkit-transform: rotate(6deg) translateX(0px);
    -ms-transform: rotate(6deg) translateX(0px);
    transform: rotate(6deg) translateX(0px);

    min-height: 6.3rem !important;
    height: 1rem !important;
  }
}

.routes__title {
  margin-bottom: 1.625rem;
  text-align: center;
}

@media screen and (max-width: 575px) {
  .routes__title {
    margin-bottom: 1.3125rem;
  }
}

.routes__title span {
  color: #02172c;
}

.routes__content {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.875rem;
}

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

@media screen and (max-width: 900px) {
  .routes__content {
    gap: 1.5625rem;
  }
}

.routes__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  gap: 1.25rem;
}

@media screen and (max-width: 900px) {
  .routes__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 575px) {
  .routes__inner {
    grid-template-columns: repeat(2, minmax(8.75rem, 1fr));
    gap: 0.8125rem;
  }
}

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

.routes__item.is-hidden {
  display: none;
}

@media screen and (max-width: 575px) {
  .routes__item:last-child {
    display: none;
  }
}

.routes__aside {
  padding: 2.1875rem 1.25rem 1.5625rem;
  position: sticky;
  top: 100px;
}

@media screen and (max-width: 900px) {
  .routes__aside {
    margin-top: 1.875rem;
    text-align: center;
  }
}

.routes__aside-title {
  margin-bottom: 0.625rem;
}

.routes__aside-text {
  color: #7c838a;
  margin-bottom: 1.5625rem;
}

.routes__link {
  display: block;
  text-align: center;
}

.routes__social {
  margin-top: 0.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.grid {
  display: grid;
  grid-template-columns: minmax(18.75rem, 1fr) 17.5rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.25rem;
}

@media screen and (max-width: 900px) {
  .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.grid__aside {
  width: 100%;
  background: #eff2f5;
  border-radius: 20px;
}

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

@media (any-hover: hover) {
  .card:not(.card--article):hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}

.card--article {
  display: grid;
  grid-template-columns: minmax(9.375rem, 26.875rem) minmax(31.25rem, 1fr);
  gap: 1.25rem 4.375rem;
}

@media screen and (max-width: 1024px) {
  .card--article {
    gap: 1.25rem 1.875rem;
  }
}

@media screen and (max-width: 900px) {
  .card--article {
    grid-template-columns: 100%;
  }
}

.card__care-message {
  margin-top: 2.1875rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375;
  text-align: center;
  color: #393939;
}

@media screen and (max-width: 575px) {
  .card__care-message {
    display: none;
  }
}

.card__photo {
  border-radius: 20px 20px 0px 0px;
  height: 300px;
  overflow: hidden;
}

.card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 0px 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.card__photo--article {
  border-radius: 20px;
}

.card__photo--article img {
  border-radius: 20px;
}

@media screen and (max-width: 900px) {
  .card__photo--article {
    max-height: 60vh;
    min-height: 31.25rem;
  }
}

@media screen and (max-width: 575px) {
  .card__photo--article {
    max-height: 40vh;
    min-height: 18.75rem;
  }
}

.card__photo-wrap {
  position: relative;
}

.card__sticker {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 2;
  border: none;
  pointer-events: none;
}

@media screen and (max-width: 480px) {
  .card__sticker {
    width: 6.25rem;
    height: 6.25rem;
  }
}

.card__info {
  padding: 1.625rem 1.125rem 1.5rem;
  background: #eff2f5;
  border: 1px solid #cfddeb;
  border-radius: 0px 0px 20px 20px;
  border-top: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  display: block !important;
}

@media screen and (max-width: 575px) {
  .card__info {
    padding: 0.9375rem 0.625rem 0.9375rem;
  }
}

.card__price {
  background: #a8ec73;
  border-radius: 5px;
  padding: 0.3125rem 0.625rem;
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 1.36;
  color: #468a10;
}

@media screen and (max-width: 575px) {
  .card__price {
    font-size: 1.25rem;
  }
}

.card__price--float {
  position: absolute;
  top: -18px;
  left: 18px;
  z-index: 1;
  padding: 0.3125rem 0.4375rem;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.3888888889;
}

@media screen and (max-width: 575px) {
  .card__price--float {
    font-size: 0.9375rem;
    top: -15px;
    left: 10px;
  }
}

.card__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 0.9375rem;
  margin-bottom: 1.25rem;
  /* justify-content: center; */
}

@media screen and (max-width: 900px) {
  .card__heading {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}

@media screen and (max-width: 575px) {
  .card__heading {
    margin-bottom: 0.9375rem;
  }

  .card__tile p {
    font-size: 15px !important;
  }
}

.card__title {
  margin-bottom: 0.625rem;
  font-weight: 700;
}

@media screen and (max-width: 575px) {
  .card__title {
    font-size: 1.0375rem;
    line-height: 140%;
  }
}

.card__title--article {
  margin-bottom: 0;
  line-height: 150%;
}

@media screen and (max-width: 575px) {
  .card__title--article {
    font-size: clamp(1.875rem, 5vw, 3.125rem);
  }
}

.card__content {
  display: grid;
  grid-template-columns: 100%;
  gap: 1.25rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .card__content {
    grid-template-columns: 1fr;
    gap: 0.9375rem;
  }
}

.card__tile {
  background: #eff2f5;
  border-radius: 20px;
  padding: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media screen and (max-width: 575px) {
  .card__tile {
    padding: 0.9375rem 0.625rem;
  }
}

.card__tile p {
  margin-bottom: 1.25rem;
  font-size: clamp(0.8125rem, 3vw, 1rem);
}

@media screen and (max-width: 575px) {
  .card__tile p {
    margin-bottom: 0.625rem;
    line-height: 150%;
  }
}

.card-board__head {
  display: flex;
  align-items: center;
  margin-bottom: 0.625rem;
  font-size: 18px;
  font-weight: 600;
}

@media screen and (max-width: 486px) {
  .card-board__head {
    font-size: 15px;
  }
}

.card__onboard svg {
  /* margin-bottom: 0.625rem; */
  /* margin-right: 10px; */
  color: #74b540;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.card__onboard a {
  margin-top: auto;
  font-size: clamp(0.8125rem, 3vw, 1rem);
  color: #413dfd;
}

@media (any-hover: hover) {
  .card__onboard a:hover {
    text-decoration: underline;
  }
}

.card__outboard svg {
  /* margin-bottom: 0.625rem; */
  color: #d84040;
}

.card__outboard a {
  margin-top: auto;
  font-size: clamp(0.8125rem, 3vw, 1rem);
  color: #413dfd;
}

@media (any-hover: hover) {
  .card__outboard a:hover {
    text-decoration: underline;
  }
}

.card__chars {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2.5rem;
  padding: 1.75rem 1.875rem;
}

@media screen and (max-width: 575px) {
  .card__chars {
    padding: 1.25rem 0.9375rem;
    gap: 1.25rem 1.875rem;
  }
}

.card__chars img {
  width: 1.875rem;
  height: 1.875rem;
}

@media screen and (max-width: 575px) {
  .card__chars img {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}

.card__chars div {
  max-width: 10.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
}

@media screen and (max-width: 575px) {
  .card__chars div {
    gap: 0.3125rem;
    width: max(8.75rem, 90%);
  }
}

.card__chars div p {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0;
}

.card__date p {
  font-weight: 600;
  font-size: clamp(0.9375rem, 4vw, 1.25rem);
  line-height: 140%;
  margin: 0;
}

.card__date span:not(:last-child) {
  padding-right: 0.25rem;
}

.card__date span:not(:last-child)::after {
  content: "\\";
  padding-left: 0.25rem;
}

.card__date,
.card__callback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.3125rem;
}

@media screen and (max-width: 575px) {

  .card__date,
  .card__callback {
    gap: 0.1875rem;
    grid-column: span 2;
  }
}

.card__date span,
.card__callback span {
  font-weight: 500;
  font-size: clamp(0.8125rem, 3vw, 1rem);
  line-height: 140%;
  color: #7c838a;
}

.card__callback {
  position: relative;
}

.card__callback.dropped::after {
  right: 15px;
}

@media screen and (max-width: 1024px) {
  .card__callback.dropped::after {
    display: block;
  }
}

@media (any-hover: hover) {
  .card__callback.dropped:hover .cta__item--hidden {
    opacity: 1;
    overflow: visible;
    height: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .card__callback.dropped:hover::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

.card__details {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.3125rem 1rem;
  color: #7c838a;
}

@media screen and (max-width: 575px) {
  .card__details {
    font-size: 0.8125rem;
    line-height: 140%;
  }
}

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

.card__wayback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.3125rem;
}

.card__wayback img {
  width: 1.5625rem;
  height: 1.5625rem;
}

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

@media screen and (max-width: 575px) {

  .card__booking,
  .card__wayback {
    padding: 0.78125rem 0.6875rem;
  }
}

.cars__inner {
  padding-top: 3.125rem;
  display: grid;
  grid-template-columns: 50%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.25rem;
  justify-content: center;
}

@media screen and (max-width: 900px) {
  .cars__inner {
    padding-top: 1.875rem;
    grid-template-columns: repeat(auto-fit, minmax(17.1875rem, 1fr));
  }
}

@media screen and (max-width: 480px) {
  .cars__inner {
    padding-top: 1.5rem;
  }
}

@media screen and (max-width: 575px) {
  .cars__box {
    /* display: none; */
  }
}

@media screen and (max-width: 575px) {
  .cars__box:nth-child(odd) {
    /* display: block; */
  }
}

.cars__slider {
  position: relative;
  overflow: hidden;
}

.cars__slider h3 {
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  width: 90%;
  text-align: center;
  color: #fff;
}

.cars__slider img {
  width: 100%;
  border-radius: 20px;
}

.cars__item {
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.15)), color-stop(49.53%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.15)));
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 49.53%, rgba(0, 0, 0, 0.15) 100%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 49.53%, rgba(0, 0, 0, 0.15) 100%);
}

.cars__aside {
  padding: 1.875rem 1.5rem 1.5625rem;
  -webkit-transform: rotate(1deg);
  -ms-transform: rotate(1deg);
  transform: rotate(1deg);
}

.cars__aside-item {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #02172c;
}

.cars__aside-item:not(:last-child) {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #cfddeb;
  border-radius: 5px;
}

.cars__aside-item:not(:first-child) {
  padding-top: 0.75rem;
}

.reviews {
  text-align: center;
}

@media screen and (max-width: 575px) {
  .reviews {
    overflow-x: hidden;
  }
}

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

.reviews__title {
  margin-bottom: 0.3125rem;
}

.reviews__desc {
  font-weight: 600;
}

.reviews__desc span {
  color: #413dfd;
}

.reviews__block {
  padding-top: 2rem;
  background: -o-radial-gradient(50% 50%, 50% 50%, #f1f9ff 0%, #ffffff 100%);
  background: radial-gradient(50% 50% at 50% 50%, #f1f9ff 0%, #ffffff 100%);
}

@media screen and (max-width: 575px) {
  .reviews__block {
    margin-inline: -60px;
  }
}

.reviews__item {
  border-radius: 20px;
}

.reviews__item img {
  margin-inline: auto;
}

.reviews__offer {
  margin-top: 25px;
  position: relative;
  z-index: 5;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-inline: auto;
}

@media screen and (max-width: 575px) {
  .reviews__offer {
    padding-top: 47px;
    margin-top: -45px;
    margin-top: 0;
    margin-inline: unset;
    width: unset;
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    align-items: initial;
  }
}

.reviews__sticker {
  position: absolute;
  top: 30%;
  -webkit-transform: translateY(-50%) rotate(-15deg);
  -ms-transform: translateY(-50%) rotate(-15deg);
  transform: translateY(-50%) rotate(-15deg);
  left: -70%;
}

@media screen and (max-width: 768px) {
  .reviews__sticker {
    left: -55%;
  }
}

@media screen and (max-width: 575px) {
  .reviews__sticker {
    top: -30px;
    left: 0;
    z-index: -1;
    -webkit-transform: translateY(0) rotate(-15deg);
    -ms-transform: translateY(0) rotate(-15deg);
    transform: translateY(0) rotate(-15deg);
  }
}

.reviews__sticker--revert {
  left: unset;
  right: -70%;
  -webkit-transform: translateY(-50%) rotate(15deg);
  -ms-transform: translateY(-50%) rotate(15deg);
  transform: translateY(-50%) rotate(15deg);
}

@media screen and (max-width: 768px) {
  .reviews__sticker--revert {
    right: -55%;
  }
}

@media screen and (max-width: 575px) {
  .reviews__sticker--revert {
    right: 0;
    -webkit-transform: translateY(0) rotate(15deg);
    -ms-transform: translateY(0) rotate(15deg);
    transform: translateY(0) rotate(15deg);
  }
}

.modal {
  /* position: fixed;
  top: -100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  z-index: 11;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; */

  max-width: 21.5rem;
  padding: 2.1875rem 1.25rem 1.875rem;
  background: #eff2f5;
  border-radius: 20px;
}

.modal--shown {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  top: 50%;
}

.modal__title {
  margin-bottom: 1.25rem;
  text-align: center;
}

.modal__link {
  display: block;
  text-align: center;
}

.modal__social {
  margin-top: 1.1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.roadtrip {
  padding-bottom: 6.25rem;
}

@media screen and (max-width: 1024px) {
  .roadtrip {
    padding-bottom: 3.375rem;
  }
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 575px) {
  .breadcrumbs {
    margin-bottom: 0.9375rem;
  }
}

.breadcrumbs__item,
.breadcrumbs__link {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.3888888889;
  color: #393939;
}

@media screen and (max-width: 575px) {

  .breadcrumbs__item,
  .breadcrumbs__link {
    font-size: 0.9375rem;
  }
}

.breadcrumbs__item:not(:last-child) {
  padding-right: 0.25rem;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "➞";
  cursor: pointer;
  display: inline-block;
  padding-left: 0.25rem;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .breadcrumbs__item:hover::after {
    color: #413dfd;
  }

  .breadcrumbs__item:hover .breadcrumbs__link {
    color: #413dfd;
  }
}

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

.form__input {
  width: 100%;
  border: none;
  outline: none;
  background: #fff;
  border: 1px solid #cfddeb;

  border-radius: 20px;
  padding: 0.90625rem 0.9375rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375;
  color: #02172c;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.form__input::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375;
  color: #b3b3b3;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.form__input::-moz-placeholder {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375;
  color: #b3b3b3;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.form__input:-ms-input-placeholder {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375;
  color: #b3b3b3;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.form__input::-ms-input-placeholder {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375;
  color: #b3b3b3;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.form__input::placeholder {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375;
  color: #b3b3b3;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.form__input::-webkit-input-placeholder {
  color: #b3b3b3;
}

@media (any-hover: hover) {
  .form__input:hover {
    background: #eef3ff;
  }

  .form__input:hover::-webkit-input-placeholder {
    color: #02172c;
  }

  .form__input:hover::-moz-placeholder {
    color: #02172c;
  }

  .form__input:hover:-ms-input-placeholder {
    color: #02172c;
  }

  .form__input:hover::-ms-input-placeholder {
    color: #02172c;
  }

  .form__input:hover::placeholder {
    color: #02172c;
  }
}

.form__input:focus {
  border: 1px solid #413dfd;
}

.form__input:focus::-webkit-input-placeholder {
  color: #5b6a7a;
}

.form__input:focus::-moz-placeholder {
  color: #5b6a7a;
}

.form__input:focus:-ms-input-placeholder {
  color: #5b6a7a;
}

.form__input:focus::-ms-input-placeholder {
  color: #5b6a7a;
}

.form__input:focus::placeholder {
  color: #5b6a7a;
}

.form__input:focus-within {
  color: #413dfd;
  border: 1px solid #413dfd;
}

.form span {
  margin: -5px 0 1.5625rem;
  font-size: 0.8125rem;
  text-align: center;
  color: #7c838a;
}

.form__submit {
  margin-top: 0.625rem;
}

.swiper-notification {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: 1.5625rem;
  height: 1.5625rem;
  border-radius: 50%;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

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

.swiper-button-prev svg,
.swiper-button-next svg {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.swiper-button-prev:not(:disabled):hover svg path,
.swiper-button-next:not(:disabled):hover svg path {
  fill: #413dfd;
}

.swiper-button-next {
  right: 20px;
}

.swiper-button-prev {
  left: 20px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.swiper-horizontal .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 35px;
}

@media screen and (max-width: 768px) {
  .swiper-horizontal .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 20px;
  }
}

.swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  background: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #413dfd;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  background: #02172c;
}

.footer__block {
  padding: 3.75rem 0 1.875rem;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(18.75rem, 39.375rem) minmax(21.875rem, 27.5rem);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2.1875rem 1.875rem;
}

@media screen and (max-width: 1024px) {
  .footer__block {
    grid-template-columns: minmax(18.75rem, 39.375rem) minmax(15.625rem, 27.5rem);
  }
}

@media screen and (max-width: 768px) {
  .footer__block {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 575px) {
  .footer__block {
    padding: 3.4375rem 0 2.0625rem;
  }
}

.footer__block--btm {
  padding: 1.25rem 0;
  border-top: 1px solid #1d2e40;
  font-size: clamp(0.8125rem, 3vw, 1rem);
  color: #5b6a7a;
}

@media screen and (max-width: 768px) {
  .footer__block--btm {
    gap: 0.9375rem;
  }
}

@media screen and (max-width: 575px) {
  .footer__block--btm {
    padding: 0.9375rem 0 1.875rem;
  }
}

.footer__block-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.25rem;
}

@media screen and (max-width: 768px) {
  .footer__block-list {
    gap: 0.9375rem;
  }
}

@media screen and (max-width: 1024px) {
  .footer__block-link {
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .footer__block-link {
    font-size: 1.5625rem;
  }
}

@media screen and (max-width: 370px) {
  .footer__block-link {
    font-size: 1.375rem;
  }
}

.footer__block-support {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: clamp(0.9375rem, 3vw, 1rem);
}

.footer__block-info p {
  margin-bottom: 0.625rem;
  font-weight: 500;
  font-size: clamp(0.9375rem, 4vw, 1.125rem);
  line-height: 1.5;

}

.footer__block-manager {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.625rem;


  font-weight: 500;
  font-size: clamp(0.9375rem, 4vw, 1.025rem);
  line-height: 1.5;

}

.footer__block-links {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.9375rem 0.625rem; */
}

@media screen and (max-width: 768px) {
  .footer__block-links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.9375rem 3.125rem;
  }
}

@media (any-hover: hover) {
  .footer__block-links a:hover {
    text-decoration: underline;
  }
}

.footer__social {
  margin-bottom: 0.625rem;
}

.footer__social .social__icon {
  width: 2.8125rem;
  height: 2.8125rem;
}

#archive-page {
  padding-top: 111px;
  padding-bottom: 0px;
}

.articles-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 67px;
  grid-row-gap: 50px;
}

.article-item__image {
  height: 220px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.article-item__image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.5s;
}

.article-item:hover img {
  transform: scale(1.2);
}

.article-item__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 140%;
  color: #151e2b;
  margin-top: 10px;
  transition: color 0.4s;
}

.article-item:hover .article-item__title {
  color: #1573ff;
}

.article-item__text {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #5b616e;
  margin-top: 5px;
}

.article-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f2f2f2;
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  color: #afb7c2;
}

.article-item__views {
  display: flex;
}

.post-views {
  margin-left: 3px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

/*! CSS Used from: https://bitinport.com/wp-content/themes/artteam/assets/css/media.css?ver=1455351535 */
@media only screen and (max-width: 992px) {
  .articles-list {
    grid-column-gap: 22px;
  }
}

@media only screen and (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .articles-list {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  #archive-page {
    padding-top: 100px;
  }
}

/*! CSS Used from: https://bitinport.com/wp-content/plugins/post-views-counter/css/frontend.css?ver=1.3.11 ; media=all */
@media all {
  .post-views.entry-meta>span {
    margin-right: 0 !important;
    font: 16px/1;
  }
}

.single-post__image {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 300px;
}

.single-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

#single-post .container {
  max-width: 700px;
}

#single-post {
  padding-top: 140px;
}

.breadcrumbs {
  display: flex;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #5b616e;
  align-items: center;
}

.breadcrumbs__item {
  color: #5b616e;
  margin-right: 3px;
}

.breadcrumbs__current {
  color: #151e2b;
}

.single-post__image {
  margin-top: 20px;
}

.single-post__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  color: #afb7c2;
}

.single-post__views {
  display: flex;
  align-items: center;
}

.post-share-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 13px;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #151e2b;
  padding-bottom: 12px;
  border-bottom: 1px solid #f2f2f2;
}

.single-post__content {
  color: #5b616e;
}

.single-post__content h1 {
  font-weight: 700;
  font-size: 33px;
  line-height: 110%;
  color: #151e2b;
  margin-top: 20px;
}

.single-post__content h3 {
  margin-bottom: 10px;
  margin-top: 40px;
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  color: #151e2b;
}

.single-post__content {
  line-height: 150%;
}

.single-post__content p {
  margin: 1.5em 0;
}

.shares-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
}

.share-item {
  transition: opacity 0.3s;
}

.share-item:hover {
  opacity: 0.65;
}

.wp-block-image figcaption {
  opacity: 0.7;
}

.single-post__content ul,
.single-post__content ol {
  padding-left: 20px;
}

.single-post__content li {
  margin: 1.5em 0;
}

.wp-block-quote {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #151e2b;
  position: relative;
  padding: 5px 20px;
}

.wp-block-quote:before {
  content: "";
  background: #1573ff;
  border-radius: 10px;
  position: absolute;
  left: 5px;
  height: calc(100% - 9px);
  width: 5px;
}

.wp-block-quote p:first-child {
  margin-top: 0;
}

.wp-block-quote p:last-child {
  margin-bottom: 0;
}

.single-post__content {
  padding-bottom: 50px;
  border-bottom: 1px solid #f2f2f2;
}

.single-post__footer {
  padding-top: 15px;
  display: flex;
  justify-content: flex-end;
}

.single-post__releated {
  margin-top: 50px;
}

.releated-posts__head {
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 110%;
  color: #151e2b;
  margin-bottom: 30px;
}

.releated-posts__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 67px;
}

.releated-posts .container {
  max-width: 1170px !important;
}

/*! CSS Used from: https://bitinport.com/wp-content/themes/artteam/assets/css/media.css?ver=1973127144 */
@media only screen and (max-width: 992px) {
  .releated-posts__list {
    grid-column-gap: 22px;
  }
}

@media only screen and (max-width: 768px) {
  .cars__aside {
    transform: none;
  }

  .single-post__image {
    height: 220px;
  }

  .wp-block-quote {
    font-size: 16px;
  }

  .releated-posts__list {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .hero__container {
    min-height: 700px;
    height: calc(var(--app-height) - 0px);
  }

  .hero__wrap {
    padding-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hero {
    /* background-image: url("../img/main-bg-mob.jpg"); */
  }

  .hero .section__title br {
    display: none;
  }

  .hero .section__title {
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.26);
    text-align: center;
  }

  .hero__stickers {
    justify-content: center;
    flex-direction: row;
    width: 100%;
  }

  .sticker+.sticker {
    margin-left: -15px;
  }

  .hero .section__title span {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 5px 10px;
    margin-top: 22px;
    line-height: 134%;
  }

  .card__photo {
    height: 150px;
  }

  .hero__info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero__stickers {
    position: relative;
    top: 0;
    margin-top: 15px;
  }

  .hero {
    align-items: flex-start;
  }
}

@media screen and (max-width: 575px) {
  .hero__stickers .sticker {
    transform: none;
  }

  .hero__stickers .sticker+.sticker {
    margin-top: 0;
    margin-left: 10px;
  }
}

.text-popup {
  max-width: 800px;
}

.text-popup p {
  line-height: 150%;
  margin: 1em 0;
}

@media screen and (min-width: 627px) {
  .card__date {
    height: 100px;
  }
}

.booking span {
  color: #468a10;
}

.cars .section__title {
  max-width: 880px;
}

.routes-tabs {
  display: flex;
  margin-top: 10px;
}

.routes-tabs__tab {
  display: block;
  text-align: center;
  min-width: 126px;
  margin-right: 15px;
  background: #eef2f5;
  border-radius: 22px;
  padding: 10px 25px;
  font-size: 16px;
  line-height: 140%;
  color: #02172c;
  transition: color 0.3s, background 0.3s;
}

.routes-tabs__tab.is-active {
  background: #3f73fb;
  color: #fff;
}

.banner__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

@media screen and (max-width: 768px) {
  .banner__container {
    grid-template-columns: 1fr;
  }

  .banner__wrap__content {
    max-width: 100%;
  }
}

.banner__wrap {
  display: block;
  padding: 30px;
}

.banner__img {
  max-width: 260px;
  right: 0;
  top: 50%;
  left: auto;
}

.banner__wrap:first-child .banner__img {
  max-width: 230px;
}

.banner__wrap__content {
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.single-cards {
  grid-column: span 2;
}

.single-cards__head {
  margin-bottom: 0.625rem;
  font-size: 18px;
  font-weight: 600;
}

.single-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.card__points {
  /* display: block; */
  justify-content: space-between;
  height: 100%;
}

.card__points a {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #413dfd;
  margin-top: 10px;
}

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

.card__points-point {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #7c838a;
  padding: 5px 15px;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  top: 516px;

  background: #ffffff;
  border-radius: 30px;
}

#price-popup {
  background: #eff2f5;
  border-radius: 20px;
  padding: 50px;
  width: min(100%, 750px);
}

#price-popup h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  max-width: 634px;
  margin-bottom: 40px;
}

#price-popup h2 span {
  color: #74b540;
}

.price-group {
  background: #ffffff;
  border: 1px solid #cfddeb;
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 26px 30px;
}

.price-group__title {
  font-weight: 600;
  font-size: 25px;
  line-height: 140%;
  color: #02172c;
  margin-bottom: 10px;
}

.price-group__row {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #7c838a;
  padding: 8px 0;
  display: grid;
  grid-template-columns: 1fr min(35%, 240px);
}

.price-group__row:not(:last-child) {
  border-bottom: 1px solid #cfddeb;
}

.price-group__td:last-child {
  text-align: right;
}

.price-blocked-title {
  font-weight: 600;
  font-size: 25px;
  line-height: 140%;
  color: #02172c;
  margin-bottom: 20px;
}

.price-blocked-title span {
  color: #74b540;
}

.price-blocked-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #7c838a;
}

.price-blocked-text ul {
  padding-left: 20px;
}

.price-blocked-text ul,
.price-blocked-text ul li {
  list-style: disc;
}

.price-popup-contact a {
  font-weight: 600;
  font-size: 25px;
  line-height: 120%;
  color: #02172c;
  display: block;
  outline: none;
}

.price-popup-contact a:not(:last-child) {
  margin-bottom: 20px;
}

.price-popup-contact h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: #74b540;
  margin-bottom: 20px;
}

#price-popup .fancybox-close-small svg {
  display: none;
}

#price-popup .fancybox-close-small {
  width: 30px;
  height: 30px;
  background: center / cover url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='15' cy='15' r='15' fill='%233D73FD'/%3E%3Cpath d='M10 10L15.25 15.25M20.5 20.5L15.25 15.25M15.25 15.25L20.5 10L10 20.5' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A");
  right: 30px;
  top: 30px;
}

@media screen and (max-width: 768px) {
  .banner__container {
    grid-template-columns: 1fr;
  }

  .banner__wrap__content {
    max-width: 100%;
  }

  .single-cards-wrapper {
    grid-template-columns: 1fr;
  }

  #price-popup h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  #price-popup {
    padding: 20px
  }

  #price-popup .fancybox-close-small {
    top: 10px;
    right: 10px;
  }

  .price-group {
    padding: 10px 15px;
  }

  .price-group__row {
    font-size: 13px;
  }

  .price-group__title {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .price-blocked-text {
    font-size: 13px;
  }

  .price-popup-contact h3 {
    font-size: 30px;
  }

  .card__content {

    gap: 2.9375rem;
  }

  .banner--lg {
    padding-bottom: 3.175rem;
  }

  .reviews {
    padding-bottom: 3rem;
  }

  .footer__block-item .link {
    /* border-bottom: 2px dashed; */
  }
}

.single__offer {
  margin-left: auto;
  margin-right: auto;
}

.offer .link.reviews__link,
.link.hero__link {

  border-bottom: 2px dashed;
}

.offer .link.reviews__link:hover,
.link.hero__link:hover {
  text-decoration: none;
}

.offer .link {
  margin-top: 10px;
  display: inline-block;
}

.swiper-reviews {
  position: relative;
  overflow: hidden;
}

.reviews-item {

  background: #eff2f5;
  border-radius: 20px;
  padding: 20px 30px;
}

.hero__info .btn {
  animation: pulse_button 2s infinite;
}

.hero__info .btn:hover {
  animation: none;
}

@keyframes pulse_button {
  0% {

    box-shadow: 0 0 5px 0 rgba(65, 61, 253, 0.57);
  }

  70% {
    box-shadow: 0 0 5px 15px rgba(204, 169, 44, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

.offer .btn,
.form__submit {
  /* box-shadow: 0 0 5px 0 rgba(65, 61, 253, 0.57); */
  box-shadow: 0 5px 30px rgba(65, 61, 253, 0.57);
}

.portfolio-offer {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

.footer-address span {
  border-bottom: 2px dashed;
}

.link.routes__link {
  border-bottom: 2px dashed;
  display: inline-block;
}

.card-content ul {
  padding-left: 20px;
}

.card-content ul,
.card-content ul li {
  list-style: disc;
}




.reviews__offer .btn {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.cars__item__img-wrapper {
  width: 100%;
  height: 330px;
  overflow: hidden;
}

.cars__item__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}
.--tiktok{
  max-width: 30px;
}