@font-face {
  font-family: "Museo";
  src: url("../fonts/museo/Museo300-Regular.otf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Museo";
  src: url("../fonts/museo/Museo700-Regular.otf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Museo";
  src: url("../fonts/museo/Museo-900.otf") format("truetype");
  font-weight: 900;
}
/* General styles
 ===================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Museo";
  font-weight: 300;
  overflow-x: hidden;
  color: #1d1752;
  font-size: 16px;
  padding-top: 132px;
}
body.overflow {
  overflow-y: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Museo";
  font-weight: 900;
}

::-webkit-scrollbar {
  width: 8px;
  scrollbar-width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #b1b1b1;
}

::-webkit-scrollbar-thumb {
  background-color: #008bc4;
}

a {
  text-decoration: none;
  color: #000;
}

ul,
li {
  list-style: none;
}

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

.btn {
  background-color: #1d1752;
  max-width: 224px;
  width: 100%;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  font-weight: 300;
  border: none;
  transition: background-color 0.2s ease-in-out;
  cursor: pointer;
}
.btn:hover {
  background-color: #493ac8;
}
.btn:focus {
  outline: none;
}
.btn--alt {
  background-color: #008bc4;
}
.btn--alt:hover {
  background-color: #2bc1ff;
}

.container {
  max-width: 1122px;
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

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

.text {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
}
.text.white {
  color: #fff;
}

.logo img {
  max-width: 220px;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type=checkbox]:checked + label:before {
  background-repeat: no-repeat;
  background-color: #008bc4;
}

input[type=checkbox] + label:before {
  content: "";
  display: block;
  width: 27px;
  height: 27px;
  border: 3px solid #008bc4;
  border-radius: 100%;
  background-color: transparent;
  background-size: 70%;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.12s ease;
}

.heading-1 {
  font-size: 30px;
  text-transform: capitalize;
  padding-bottom: 10px;
  color: #1d1752;
  border-bottom: 1px solid #008bc4;
}

.main-heading {
  font-size: 20px;
  text-align: center;
}

.header {
  background-color: #1d1752;
  min-height: 132px;
  padding: 45px 0 16px 0;
  color: #fff;
  margin-bottom: 124px;
  transition: all 0.3s ease-in-out;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2222;
}
.header.fixed {
  position: fixed;
}
.header.fixed .logo {
  top: -38px;
}
.header.fixed .logo img {
  width: 120px;
}
.header .logo {
  position: absolute;
  top: -38px;
  left: 0;
  z-index: 222;
}
.header .logo img {
  transition: all 0.2s ease-in;
}
.header .main-menu {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
}
.header .main-menu .menu-item a {
  color: #fff;
  font-weight: 700;
}

.header__wrapper {
  position: relative;
}

.header__top {
  display: flex;
  justify-content: flex-end;
}

.header__tel {
  display: flex;
  gap: 32px;
}

.header__phone {
  font-size: 20px;
}
.header__phone a {
  color: #fff;
}

.header__nav {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
}

.burger {
  display: none;
}

.mini-header {
  position: fixed;
  top: 0;
  left: -100vw;
  bottom: 0;
  min-height: 100vh;
  width: 100vw;
  z-index: 2222;
  background-color: #1d1752;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.mini-header .container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mini-header.active {
  left: 0;
  pointer-events: auto;
  opacity: 1;
}
.mini-header .main-menu {
  padding-left: 10px;
  margin-top: 40px;
}
.mini-header .main-menu .menu-item {
  margin-bottom: 32px;
}
.mini-header .main-menu .menu-item a {
  color: #fff;
}

.mini-header__wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mini-header__phone {
  color: #fff;
  padding-left: 10px;
  text-align: center;
  margin-bottom: 20px;
}
.mini-header__phone a {
  color: #fff;
}

.mini-header__tel {
  margin-bottom: 20px;
}

.mini-header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer {
  background-color: #1d1752;
  padding: 72px 0 74px;
}
.footer .social {
  margin-top: 26px;
}
.footer .social__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__wrapper {
  display: flex;
  gap: 190px;
}

.footer__col {
  color: #fff;
}
.footer__col:first-child {
  max-width: 530px;
}

.footer__h4 {
  font-weight: 700;
  font-size: 18px;
}

.footer__text {
  margin: 10px 0;
}

.footer__tel {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer__tel a {
  color: #fff;
}

.footer__email {
  font-size: 18px;
  font-weight: 700;
}
.footer__email a {
  color: #fff;
}

.footer__btns {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  margin-top: 26px;
}

.footer-menu .menu-item {
  margin-bottom: 4px;
}
.footer-menu .menu-item a {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}

.social {
  display: flex;
  gap: 24px;
}

.social__item {
  height: 54px;
  width: 54px;
  border: 3px solid #fff;
  border-radius: 100%;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  background-color: rgba(29, 23, 82, 0.4);
  z-index: 3333;
  align-items: center;
  padding: 10px;
  justify-content: center;
}
.modal.active {
  display: flex;
}

.modal-window {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
}

.modal-window__header {
  background-color: #008bc4;
  min-height: 71px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 16px;
  font-size: 20px;
  color: #fff;
}

.modal-window__main {
  padding: 38px 40px 26px 40px;
}

.modal-window__confirm {
  margin-bottom: 26px;
  font-size: 18px;
  font-weight: 300;
}

.modal-window__h5 {
  font-size: 18px;
  color: #008bc4;
  text-align: center;
  font-weight: 300;
  margin-bottom: 40px;
}

.modal-form {
  background-color: rgba(0, 139, 196, 0.1);
  padding: 20px 13px 31px 26px;
}
.modal-form input[type=text],
.modal-form input[type=email] {
  background-color: #fff;
  padding: 8px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  font-size: 16px;
  font-weight: 300;
  border: none;
  transition: box-shadow 0.2s ease-in-out;
}
.modal-form input[type=text]::-moz-placeholder, .modal-form input[type=email]::-moz-placeholder {
  color: #1d1752;
}
.modal-form input[type=text]::placeholder,
.modal-form input[type=email]::placeholder {
  color: #1d1752;
}
.modal-form input[type=text]:focus,
.modal-form input[type=email]:focus {
  outline: none;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}
.modal-form input[type=submit] {
  background-color: #1d1752;
  max-width: 224px;
  width: 100%;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  font-weight: 300;
  border: none;
  transition: background-color 0.2s ease-in-out;
  cursor: pointer;
  margin: 10px auto 0 auto;
}
.modal-form input[type=submit]:hover {
  background-color: #493ac8;
}
.modal-form input[type=submit]:focus {
  outline: none;
}

.modal-form__h4 {
  text-align: center;
  margin-bottom: 21px;
}
.modal-form__h4.second {
  margin-top: 26px;
}

.modal-form__text {
  max-width: 340px;
  margin: 40px auto 30px auto;
  text-align: center;
}

.modal-form__two {
  display: flex;
  justify-content: space-between;
  margin-bottom: 11px;
}
.modal-form__two input {
  flex-basis: 49%;
}
.modal-form__two .selectric-wrapper {
  flex-basis: 49%;
}

.modal-form__full {
  margin-bottom: 11px;
}
.modal-form__full input {
  flex-basis: 100%;
  width: 100%;
}

.selectric {
  box-shadow: none;
  background: #fff;
  border-radius: 0;
  border: none;
}
.selectric .button {
  border-left: none;
}
.selectric label {
  font-size: 16px;
  padding: 10px;
}

.selectric-wrapper .selectric {
  min-height: 41px;
  display: flex;
  align-items: center;
}

.selectric .button:after {
  content: "";
  width: 20px;
  background-image: url("../img/icons/arrow-down-blue.svg");
  height: 11px;
  background-repeat: no-repeat;
  background-size: cover;
  border: none;
  top: 15px;
}

.selectric-items li.highlighted {
  background: rgba(0, 139, 196, 0.1);
}

/*===== Effect only Chrome on mac =====*/
.mac.chrome .yourClass {
  padding: 0;
}

/*===== Effect only Safari =====*/
_::-webkit-full-page-media,
_:future,
:root .yourClass {
  padding: 0;
}

.main-hero {
  margin-top: 53px;
  margin-bottom: 50px;
}

.main-hero__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.main-hero__content {
  flex-basis: 35%;
  padding-bottom: 24px;
}
.main-hero__content .text {
  margin: 36px 0 40px 0;
}

.main-hero__image {
  flex-basis: 62%;
}

.book-skip {
  margin: 40px 0;
  padding: 32px 0;
}

.book-skip__h3 {
  font-size: 20px;
  color: #008bc4;
  margin-bottom: 47px;
  text-align: center;
}

.book-skip__wrapper {
  display: grid;
  gap: 42px;
  grid-template-columns: repeat(4, 1fr);
  max-width: 956px;
  width: 100%;
  margin: 0 auto;
}

.book-skip__col:first-child .book-skip__border {
  max-width: 160px;
}
.book-skip__col:first-child .book-skip__title {
  min-height: 80px;
}
.book-skip__col:nth-child(2) .book-skip__border {
  max-width: 172px;
}
.book-skip__col:nth-child(2) .book-skip__title {
  min-height: 85px;
  margin-top: -4px;
}
.book-skip__col:nth-child(3) .book-skip__border {
  max-width: 186px;
}
.book-skip__col:nth-child(3) .book-skip__title {
  min-height: 92px;
  margin-top: -11px;
}
.book-skip__col:nth-child(4) .book-skip__border {
  max-width: 208px;
}
.book-skip__col:nth-child(4) .book-skip__title {
  min-height: 102px;
  margin-top: -20px;
}

.book-skip__title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-skip__border {
  position: absolute;
  inset: 0;
  margin: 0 auto;
}

.book-skip__info {
  margin-top: 22px;
}

.book-skip__price {
  display: flex;
  gap: 3px;
  text-align: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 3px;
}

.book-skip__amount {
  display: flex;
  gap: 3px;
  text-align: center;
  justify-content: center;
  font-size: 18px;
}

.book-skip__checkbox {
  display: flex;
  justify-content: center;
  margin-top: 17px;
}

.book-skip__btn {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

.img-and-content {
  margin: 40px 0;
}

.img-and-content__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.img-and-content__image {
  flex-basis: 50%;
}

.img-and-content__content {
  /*flex-basis: 48%;*/
  display: flex;
  padding-left: 30px;
}
.img-and-content__content .text {
  margin: 17px 0 32px;
}

.img-and-content__inner {
  max-width: 370px;
  width: 100%;
}

.advantages {
  margin: 95px 0;
}

.advantages__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.advantages__col {
  flex-basis: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantages__icon {
  display: flex;
  align-items: center;
}

.advantages__h4 {
  font-size: 20px;
  margin: 35px 0 10px;
  text-align: center;
}

.advantages__text {
  max-width: 296px;
  text-align: center;
  line-height: 1.5;
}

.about {
  padding: 140px 0 40px;
}

.about__h3 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
}

.about__item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.about__item:last-child {
  margin-bottom: 0;
}
.about__item:nth-child(even) .about__image {
  order: 2;
}
.about__item:nth-child(even) .about__text {
  text-align: right;
  max-width: 525px;
}
.about__item:nth-child(even) .about__content {
  order: 1;
}

.about__image {
  flex-basis: 48%;
}

.about__content {
  flex-basis: 48%;
}

.about__h4 {
  font-size: 20px;
  padding-bottom: 6px;
  color: #1d1752;
  border-bottom: 1px solid #008bc4;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 10px;
}

.about__text {
  max-width: 496px;
}
.about__text p {
  font-size: 18px;
  line-height: 1.4;
}

.looking-for {
  padding: 66px 0;
}

.looking-for__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.looking-for__h5 {
  font-size: 20px;
  color: #008bc4;
  margin-bottom: 25px;
}

.delivery-area {
  margin-top: 140px;
}

.delivery-area__text {
  margin-top: 40px;
  text-align: center;
}
.delivery-area__text p {
  font-size: 18px;
}

.delivery-area__cities {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 44px 0 64px;
  row-gap: 17px;
}

.delivery-area__city {
  display: flex;
  justify-content: center;
}
.delivery-area__city a {
  color: #008bc4;
}

.faqs {
  margin-top: 140px;
}

.faqs__wrapper {
  max-width: 792px;
  width: 100%;
  margin: 54px auto 0 auto;
}

.faqs__item:last-child .faqs__header {
  border-bottom: 2px solid #1d1752;
}
.faqs__item.active .faqs__header {
  border-bottom: 2px solid #1d1752;
}

.faqs__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  min-height: 60px;
  border: 2px solid #1d1752;
  border-bottom: none;
  cursor: pointer;
}

.faqs__icon {
  cursor: pointer;
  transition: transform 0.3s linear;
}

.faqs__icon.down {
  transform: rotate(90deg);
}

.faqs__answer {
  display: none;
  padding: 20px 24px 25px 24px;
}
.faqs__answer p {
  color: #008bc4;
  margin-bottom: 14px;
}
.faqs__answer p:last-child {
  margin-bottom: 0;
}

.faqs__content {
  max-width: 638px;
}

.location-detail {
  margin-top: 140px;
}

.location-detail__h3 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.location-detail__text {
  margin-bottom: 32px;
  text-align: center;
}

.location-detail__btn {
  display: flex;
  justify-content: center;
}

.commercial-skip {
  margin-top: 140px;
}

.commercial-skip__number {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}

.commercial-skip__text {
  margin-top: 30px;
}
.commercial-skip__text p {
  text-align: center;
  margin-bottom: 24px;
}
.commercial-skip__text p:last-child {
  margin-bottom: 0;
}

.commercial-skip__wrapper {
  margin-top: 30px;
}

.commercial-skip__container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.commercial-skip__item {
  margin-bottom: 20px;
  min-height: 278px;
  background-color: rgba(0, 139, 196, 0.1);
  display: flex;
  align-items: center;
}
.commercial-skip__item:last-child {
  margin-bottom: 0;
}

.commercial-skip__img {
  flex-basis: 28%;
  position: relative;
}

.commercial-skip__content {
  flex-basis: 66%;
}

.commercial-skip__h5 {
  font-size: 20px;
  text-transform: capitalize;
}

.commercial-skip__excerpt {
  margin: 12px 0 14px;
}

.guide {
  margin-top: 140px;
}

.guide-table {
  border: 2px solid #1d1752;
  border-bottom: none;
  max-width: 618px;
  width: 100%;
  margin: 55px auto 75px auto;
}

.guide-table__item {
  display: flex;
  min-height: 50px;
  border-bottom: 2px solid #1d1752;
}

.guide-table__title {
  padding: 15px 15px 15px 30px;
  width: 100%;
}

.guide-table__price {
  min-width: 120px;
  max-width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 2px solid #1d1752;
  font-weight: 500;
  color: #008bc4;
}

.contact {
  margin-top: 150px;
}

.contact__wrapper {
  background-color: rgba(0, 139, 196, 0.1);
  padding: 55px 0 70px;
  margin-top: 40px;
}

.contact__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.contact__left {
  flex-basis: 40%;
}

.contact__item {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
}
.contact__item:last-child {
  margin-bottom: 0;
}
.contact__item address {
  font-style: normal;
}

.contact__icon {
  width: 35px;
  display: flex;
  justify-content: center;
}

.contact__tel {
  color: #1d1752;
}

.contact__email {
  color: #1d1752;
}

.contact__right {
  flex-basis: 55%;
}

.contact__h4 {
  margin-bottom: 25px;
  text-align: center;
  font-weight: 300;
  font-size: 18px;
}

.main-form input[type=submit] {
  background-color: #1d1752;
  max-width: 224px;
  width: 100%;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  font-weight: 300;
  border: none;
  transition: background-color 0.2s ease-in-out;
  cursor: pointer;
  margin: 10px auto 0 auto;
}
.main-form input[type=submit]:hover {
  background-color: #493ac8;
}
.main-form input[type=submit]:focus {
  outline: none;
}
.main-form input[type=text],
.main-form input[type=email] {
  border: 1px solid #1d1752;
  background-color: #fff;
  min-height: 38px;
  display: block;
  width: 100%;
  padding: 8px 18px;
  font-family: inherit;
  font-weight: 300;
}
.main-form input[type=text]:focus,
.main-form input[type=email]:focus {
  outline: none;
}
.main-form input[type=text]::-moz-placeholder, .main-form input[type=email]::-moz-placeholder {
  color: #1d1752;
}
.main-form input[type=text]::placeholder,
.main-form input[type=email]::placeholder {
  color: #1d1752;
}
.main-form textarea {
  border: 1px solid #1d1752;
  background-color: #fff;
  min-height: 185px;
  display: block;
  width: 100%;
  margin-bottom: 18px;
  padding: 8px 18px;
  resize: none;
  font-family: inherit;
  font-weight: 300;
}
.main-form textarea:focus {
  outline: none;
}
.main-form textarea::-moz-placeholder {
  color: #1d1752;
}
.main-form textarea::placeholder {
  color: #1d1752;
}

.main-form__agreement {
  margin-top: 25px;
  display: flex;
  align-items: center;
}
.main-form__agreement .wpcf7-list-item {
  margin: 0;
}
.main-form__agreement input[type=checkbox] + span:before {
  margin-left: 38px;
  border: 2px solid #2a2e40;
  border-radius: 0;
  display: flex;
  width: 17px;
  height: 17px;
  min-width: 17px;
}
.main-form__agreement input[type=checkbox]:checked + span:before {
  background-repeat: no-repeat;
  background-color: #2a2e40;
}
.main-form__agreement input[type=checkbox] + span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

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

.data-selection {
  margin-top: 140px;
}

.data-selection__text {
  margin: 30px 0 64px;
  text-align: center;
}

.data-selection__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 103px;
}

.data-aside {
  background-color: rgba(0, 139, 196, 0.1);
  padding: 40px 25px 48px 33px;
  flex-basis: 26%;
}

.data-aside__step {
  margin-bottom: 60px;
}
.data-aside__step:last-child {
  margin-bottom: 0;
}

.data-aside__h5 {
  font-weight: 300;
  font-size: 18px;
}

.data-aside__text {
  margin-top: 14px;
}

.data-main {
  flex-basis: 72%;
}

.data-main__header {
  background-color: #1d1752;
  min-height: 53px;
  display: flex;
  gap: 106px;
  align-items: center;
  padding: 16px 16px 10px 53px;
  margin-bottom: 5px;
}

.data-main__date {
  color: #fff;
  font-size: 20px;
}

.data-main__btns {
  display: flex;
  gap: 9px;
}

.data-main__btn {
  background-color: #fff;
  border-radius: 100%;
  width: 23px;
  height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.data-main__next {
  transform: rotate(180deg);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(0, 139, 196, 0.1);
}
.data-table thead tr {
  max-width: unset;
  background-color: #008bc4;
  padding: 0 20px 0 26px;
  width: 100%;
  height: 47px;
  display: table;
  margin-bottom: 30px;
}
.data-table thead tr th {
  color: #fff;
  font-weight: 300;
}
.data-table tbody tr {
  text-align: center;
  width: 100%;
  display: table;
  vertical-align: middle;
}
.data-table tbody td {
  width: 80px;
  margin-right: 26px;
  margin-bottom: 26px;
  vertical-align: middle;
  height: 80px;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.data-table tbody td:nth-child(7), .data-table tbody td:nth-child(14), .data-table tbody td:nth-child(21), .data-table tbody td:nth-child(28) {
  margin-right: 0;
}

td[data-active] {
  position: relative;
  color: #fff;
  z-index: 22;
}
td[data-active]::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background-color: #008bc4;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.data-footer {
  background-color: rgba(0, 139, 196, 0.1);
  padding: 22px 16px 32px 28px;
}

.data-footer__h5 {
  font-size: 20px;
  margin: 22px 0;
}

.data-footer__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 394px;
  margin-bottom: 22px;
}
.data-footer__item:last-child {
  margin-bottom: 0;
}

.data-footer__time {
  flex-basis: 48%;
  font-size: 18px;
}

.data-footer__btn {
  flex-basis: 48%;
}

@media (max-width: 1200px) {
  td[data-active]::after {
    width: 40px;
    height: 40px;
  }
  .data-table tbody td {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    margin-right: 16px;
  }
  .delivery-area__text p {
    font-size: 14px;
  }
  .delivery-area__text {
    margin-top: 24px;
  }
  .header .main-menu {
    gap: 13px;
  }
  .header__phone {
    font-size: 16px;
  }
  .logo img {
    max-width: 162px;
  }
  .heading-1 {
    max-width: 336px;
    font-size: 24px;
  }
  .main-hero__image {
    flex-basis: 52%;
  }
  .main-hero__content {
    flex-basis: 41%;
  }
  .main-hero__content .text {
    margin: 24px 0;
  }
}
@media (max-width: 992px) {
  .main-form__agreement input[type=checkbox] + label:before {
    margin-left: 0;
  }
  .main-form__agreement input[type=checkbox] + label {
    padding-left: 32px;
  }
  .about__image {
    flex-basis: 49%;
  }
  .about__content {
    flex-basis: 49%;
  }
  .about__text p {
    font-size: 14px;
  }
  /*.header .main-menu {
    gap: 32px;
  }*/
  .header .main-menu .menu-item a {
    font-size: 14px;
  }
  .book-skip__wrapper {
    gap: 24px;
  }
  .data-aside {
    padding: 30px 14px;
  }
  .data-aside__text p {
    font-size: 14px;
  }
  .data-aside__h5 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .data-selection {
    margin-top: 40px;
  }
  .data-aside {
    flex-basis: 100%;
  }
  .data-main {
    flex-basis: 100%;
    margin-top: 24px;
  }
  .contact {
    margin-top: 40px;
  }
  .delivery-area__cities {
    grid-template-columns: repeat(4, 1fr);
  }
  .about__item:nth-child(even) .about__image {
    order: 1;
  }
  .about__item:nth-child(even) .about__text {
    text-align: left;
    max-width: unset;
  }
  .about__item:nth-child(even) .about__content {
    order: 2;
  }
  .about__image {
    flex-basis: 100%;
  }
  .about__content {
    flex-basis: 100%;
    margin-top: 24px;
  }
  .about__text {
    max-width: unset;
  }
  .burger {
    display: flex;
  }
  .header .logo {
    position: static;
  }
  .header__nav {
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
  }
  .header {
    padding: 0;
    min-height: unset;
    margin-bottom: 0;
  }
  .header .main-menu {
    display: none;
  }
  .main-hero {
    margin-top: 24px;
  }
  .book-skip__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .book-skip__col {
    margin-bottom: 24px;
  }
  .main-hero__wrapper {
    margin-top: 40px;
  }
  .header__top {
    display: none;
  }
  .logo img {
    max-width: 112px;
  }
  .main-hero__content {
    flex-basis: 100%;
  }
  .main-hero__image {
    flex-basis: 100%;
  }
  .img-and-content__image {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
  }
  .img-and-content__image img {
    max-width: 520px;
  }
  .img-and-content__content {
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
    text-align: center;
    padding: 0;
  }
  .img-and-content__btn {
    display: flex;
    justify-content: center;
  }
  .img-and-content__inner {
    max-width: 508px;
  }
  .book-skip {
    margin: 40px 0;
  }
  .advantages__col {
    font-size: 16px;
  }
  .footer__wrapper {
    gap: 48px;
  }
  .footer__tel {
    font-size: 16px;
  }
  .footer__email {
    font-size: 16px;
  }
  .footer__btns {
    gap: 24px;
  }
  .about {
    padding: 40px 0;
  }
  .looking-for {
    padding: 30px 0;
  }
  .delivery-area {
    margin-top: 40px;
  }
  .faqs__question {
    font-size: 14px;
  }
  .faqs__content p {
    font-size: 14px;
  }
  .faqs {
    margin-top: 40px;
  }
  .location-detail {
    margin-top: 40px;
  }
  .location-detail__text p {
    font-size: 14px;
  }
  .location-detail__h3 {
    font-size: 20px;
  }
  .commercial-skip__img {
    flex-basis: 32%;
  }
  .commercial-skip__content {
    flex-basis: 62%;
  }
  .commercial-skip__excerpt {
    font-size: 14px;
  }
  .commercial-skip {
    margin-top: 40px;
  }
  .guide-table__title {
    font-size: 14px;
  }
  .guide-table__price {
    font-size: 14px;
  }
  .guide {
    margin-top: 40px;
  }
  .contact__left {
    flex-basis: 100%;
  }
  .contact__right {
    margin-top: 24px;
    flex-basis: 100%;
  }
  .modal-window__main {
    padding: 16px;
  }
  .modal-window__h5 {
    margin-bottom: 24px;
  }
  .modal-window__confirm {
    margin-bottom: 20px;
  }
  .modal-form {
    padding: 16px;
  }
  .data-footer__item {
    margin: 0 auto 22px auto;
  }
  .data-footer__h5 {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .data-table tbody td {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    margin-right: 10px;
  }
  .modal-form__two input {
    flex-basis: 100%;
  }
  .modal-form__two .selectric-wrapper {
    flex-basis: 100%;
  }
  .modal-form__two {
    gap: 10px;
    flex-wrap: wrap;
  }
  .data-footer__h5 {
    font-size: 16px;
    text-align: center;
  }
  .data-footer__time {
    font-size: 14px;
  }
  .contact__item {
    gap: 16px;
  }
  .guide-table__title {
    padding: 14px;
  }
  .guide-table__price {
    min-width: 68px;
  }
  .commercial-skip__item {
    padding: 14px 0;
  }
  .commercial-skip__excerpt {
    text-align: center;
  }
  .commercial-skip__btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .commercial-skip__container {
    justify-content: center;
  }
  .commercial-skip__img {
    flex-basis: 70%;
  }
  .commercial-skip__content {
    margin-top: 24px;
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .faqs__header {
    padding: 8px 12px;
  }
  .faqs__answer {
    padding: 20px 12px 25px 12px;
  }
  .delivery-area__cities {
    grid-template-columns: repeat(3, 1fr);
  }
  body {
    padding-top: 92px;
  }
  .looking-for__h5 {
    font-size: 16px;
    text-align: center;
  }
  .heading-1 {
    font-size: 22px;
  }
  .logo img {
    max-width: 90px;
  }
  .burger img {
    width: 32px;
  }
  .btn {
    font-size: 14px;
  }
  .footer__wrapper {
    flex-wrap: wrap;
  }
  .advantages__col {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
  .book-skip__wrapper {
    grid-template-columns: 1fr;
  }
  td[data-active]::after {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 420px) {
  td[data-active]::after {
    width: 24px;
    height: 24px;
  }
  .data-table thead tr th {
    font-size: 14px;
  }
  .data-table tbody td {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    margin-right: 10px;
    font-size: 14px;
  }
  .delivery-area__cities {
    grid-template-columns: repeat(2, 1fr);
  }
}/*# sourceMappingURL=main.css.map */

/*=== 10-09-2025 ===*/
.news_page .np_box .np_box_image img{
  width: 100%;
}
.news_page .np_box .np_box_image{
  display: block;
}
.news_page .np_box .np_box_content .date{
  font-size: 20px;
  padding-top: 20px;
  font-weight: 600;
}
.news_page .np_box .np_box_content{
  padding: 30px 40px;
  font-size: 18px;
}
.news_page .np_box h4 a{
  color: #1d1752;
}
.news_page .np_box h4{
  font-size: 20px;
  margin-bottom: 20px;
  
}
.news_page .np_box{
  margin-bottom: 35px;
  box-shadow: 3px 1px 12px 2px rgba(0, 0, 0, 0.15);
  background: #fff;
}
.news_page{
  padding-top: 66px;
  padding-bottom: 66px;
}
.news_row >div{
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 32px;
  padding-right: 32px;
}
.news_row{
  display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -32px;
    margin-left: -32px;
}

.reviews_row li{
  display: inline-block;
  width: 100%;
}
.reviews_row{
  padding: 0;
  list-style: none;
  -webkit-columns: 2;
   -moz-columns: 2;
  columns: 2;
  -webkit-column-gap: 64px;
   -moz-column-gap: 64px;
    column-gap: 64px;
}
@media (max-width: 767px) {
  .news_row >div{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .reviews_row{
    -webkit-columns: 1;
     -moz-columns: 1;
    columns: 1;
  }
}
.singletop{
  text-align: center;
  padding-bottom: 65px;
}
.news_post_content_wrap{
  background: #e5f3f9;
}
.news_post_content .attachment-news-big img{
  width: 100%;
  max-width: 100%;
  height: auto;
}
.news_post_content .text_place{
  padding-left: 70px;
  padding-right: 70px;
  padding-top: 90px;
}
.news_post_content .text_place>*{
  margin-bottom: 22px;
}
.news_post_content{
  background: #fff;
  padding-bottom: 90px;
  max-width: 1302px;
  margin-left: auto;
  margin-right: auto;
}
.commercial-skip__text.singletop{
  margin-top: 15px;
}
@media (max-width: 767px) {
  .news_post_content .text_place {
    padding-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

:root {
  --star-size: 50px;
  --star-color: #f6f6f6;
  --star-background: #e4f2f9;
}

.np_box_content .stars:before{
    content: "★★★★★";
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.np_box_content .stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: var(--star-size);
  font-family: Times;
  line-height: 40px;
  margin-bottom: 20px;
}

.footer__text.small a{
  color: #fff;
}
.footer__text.small a:hover{
  text-decoration: underline;
}
.footer__text.small{
  max-width: 480px;
  font-size: 12px;
}
.footer__wrapper{
  gap: 95px;
}
.news_post_content .text_place a:hover{
  text-decoration: none;
}
.news_post_content .text_place a{
  color: #1d1752;
  text-decoration: underline;
}
.news_post_content .text_place b,
.news_post_content .text_place strong{
  font-weight: 600;
}
.news_post_content .text_place ul li{
  list-style: disc;
}
.news_post_content .text_place ul{
  list-style: disc;
  padding-left: 17px;
}
/*===// 10-09-2025 ===*/