@font-face {
  font-family: "AR ZOZH";
  src: url("/assets/fonts/ARZOZH.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Black-1.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-SemiBold-1.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Light-1.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

img {
  display: block;
}

input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background-color: inherit;
  color: inherit;
  border: none;
}

body {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  color: #323232;
  overflow-x: hidden;
}

body.header-top-hidden .header__top {
  opacity: 0;
  height: 0;
  overflow: hidden;
  padding: 0;
}

body.header-top-hidden .container--top {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

body.header-top-hidden {
  padding-top: 70px;
}

body {
  padding-top: 100px;
}

.no-scroll {
  overflow: hidden;
  background: rgba(0, 62, 71, 0.0012);
}

.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.container--top {
  transition:
    opacity 0.5s ease,
    height 0.5s ease;
}

@media (max-width: 1200px) {
  body {
    padding-top: 65px;
  }
}

@media (max-width: 1600px) {
  .container {
    padding: 0 10px;
  }
}

@media (max-width: 575px) {
  .container {
    padding: 0 10px;
  }
}

.calc {
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 30px;
  padding: 30px 20px;
}

.calc--w100 {
  width: 100%;
}

.calc__top {
  text-align: center;
}

.calc__top h3 {
  margin-bottom: 10px;
}

.calc__title {
  margin-bottom: 10px;
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .calc__title {
    font-size: 16px;
  }
}

.calc__desc {
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

@media (max-width: 575px) {
  .calc__desc {
    font-size: 14px;
  }
}

.calc__desc {
  gap: 4px;
  margin-bottom: 12px;
  text-align: center;
}

.calc__inner {
  display: flex;
  gap: 40px;
}

.calc__params {
  width: 50%;
}

.calc__fields {
  width: 50%;
}

.calc__fields.mobile-visible {
  display: none;
}

.calc__agree {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.calc__agree .form__police {
  width: 50%;
}

.calc__agree .btn-second {
  align-self: flex-start;
  flex: 1;
}

.calc__agree .btn-second .text {
  margin: 0 auto;
}

.param {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.param__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.param__value,
.param__max {
  display: inline;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: #f3f3f3;
  color: #323232;
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  text-align: right;
  border: 1px solid #ffffff;
  box-shadow: 0px 0px 5.94px 0px rgba(0, 0, 0, 0.2509803922);
}

.param__track {
  position: relative;
  height: 14px;
  background: #f3f3f3;
  border-radius: 10px;
}

.param__safe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: #0f6c74;
  border-radius: 10px;
  z-index: 3;
}

.param__danger {
  position: absolute;
  top: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg, #ff4d4d 0 10px, #fff 10px 20px);
  border-radius: 10px;
  z-index: 1;
}

.param__input-wrapper {
  position: absolute;
  top: -50px;
  z-index: 1;
  padding: 2px 2px 2px 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  transform: translateX(-20px);
}

.param__input-wrapper span {
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

@media (max-width: 575px) {
  .param__input-wrapper span {
    font-size: 14px;
  }
}

.param__input-wrapper span {
  color: #ffffff;
}

.param__input-wrapper input {
  padding: 5px;
  border-radius: 8px;
  color: #222222;
  background: #f7f3f1;
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  width: 48px;
  border: 1px solid transparent;
  outline: none;
  -webkit-appearance: none;
  margin: 0;
}

.param__input-wrapper input:focus {
  border: 1px solid #0f6c74;
}

.param__input-wrapper input[type="number"]::-webkit-inner-spin-button,
.param__input-wrapper input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.param__input-wrapper {
  /* Firefox */
}

.param__input-wrapper input[type="number"] {
  -moz-appearance: textfield;
}

.param__metr {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.param__metr::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 2px;
  height: 25px;
  background: #db3c3c;
}

.param__metr-start {
  position: absolute;
  left: 0;
  bottom: -40px;
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
  text-transform: uppercase;
  color: #b52a2a;
  transform: translateX(-50%);
}

.param__metr-end {
  position: absolute;
  right: 0;
  bottom: -40px;
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  text-align: center;
  color: #5e5e5e;
  transform: translateX(50%);
}

.param__thumb.circle {
  top: 50%;
  width: 37px;
  height: 37px;
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: grab;
  z-index: 4;
}

.param__ticks {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #5e5e5e;
}

.param__tick {
  position: relative;
  width: 1px;
  height: 10px;
  background: #5e5e5e;
}

.param__tick::after {
  position: absolute;
  content: attr(data-count);
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
}

@media (max-width: 1280px) {
  .calc__inner {
    gap: 20px;
  }
}

@media (max-width: 1180px) {
  .calc__inner {
    flex-wrap: wrap;
  }

  .calc__params {
    width: 100%;
  }

  .calc__fields {
    width: 100%;
  }

  .param {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .calc {
    padding: 20px 6px 0;
    box-shadow: none;
    min-height: 522px;
  }

  .calc__inner {
    margin-top: 10px;
  }

  .calc .param__input-wrapper {
    transform: translateX(-10px);
  }

  .calc__fields.mobile-hidden {
    display: none;
  }

  .calc__fields.mobile-visible {
    display: block;
  }

  .calc__desc {
    display: inline;
    text-align: left;
  }

  .calc__desc .circle {
    width: 20px;
    height: 20px;
  }

  .calc__agree {
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .calc__agree .form__police {
    width: 100%;
  }
}

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 0px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 0px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition:
    0.2s transform,
    0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section ul:not(.breadcrumb) li:hover::after {
    transform: rotate(360deg);
  }
}

.section {
  margin-bottom: 110px;
}

@media (max-width: 992px) {
  .section {
    margin-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 60px;
  }
}

.section .container.section--mini-gallery,
.section .container.section--similar-services {
  position: relative;
}

.section__inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.section__btn-center {
  margin: 0 auto;
}

.section__btn-center .swiper-pagination-bullet {
  width: 32px;
  height: 4px;
  border-radius: 20px;
  background: #c5c5c5;
}

.section__btn-center .swiper-pagination-bullet-active {
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
}

.section__btn {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 100px;
  z-index: 10;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0px 0px 8.49px 0px rgba(0, 0, 0, 0.2509803922);
  backdrop-filter: blur(8.4900665283px);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
  box-shadow: 0px 0px 8.49px 0px rgba(0, 0, 0, 0.2509803922);
}

.section__btn::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: linear-gradient(243.37deg, #01b6bf -12.96%, #007079 109.16%);
  opacity: 0;
  transition: opacity ease-in-out 0.3s;
  border-radius: 10px;
}

.section__btn::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #ffffff;
  border-radius: 10px;
  opacity: 1;
  transition: opacity ease-in-out 0.3s;
}

.section__btn svg {
  display: block;
  width: auto;
  height: auto;
  z-index: 10;
  color: #007079;
}

.section__btn::after {
  display: none;
}

.section__btn--left {
  left: 0;
}

.section__btn--right {
  right: 0;
}

.section__btn:hover::before {
  opacity: 1;
}

.section__btn:hover svg {
  color: #f3f3f3;
}

.section p {
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

@media (max-width: 575px) {
  .section p {
    font-size: 14px;
  }
}

.section p {
  margin-bottom: 10px;
  color: #505050;
}

.section ul:not(.breadcrumb) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.section ul:not(.breadcrumb) li {
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

@media (max-width: 575px) {
  .section ul:not(.breadcrumb) li {
    font-size: 14px;
  }
}

.section ul:not(.breadcrumb) li {
  padding-left: 34px;
  padding-top: 1px;
  position: relative;
  color: #505050;
  overflow: hidden;
}

.section ul:not(.breadcrumb) li::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 23px;
  top: 0px;
  left: 0px;
  background: url("../images/icons/common/circle.svg") center/contain no-repeat;
  transition: transform ease 0.3s;
}

.section ul:not(.breadcrumb) li span {
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #505050;
  text-wrap: nowrap;
}

.section ul:not(.breadcrumb) li i {
  width: 100%;
  border-bottom: 2px dashed #f3f3f3;
  margin-bottom: 5px;
}

.section .truck-card ul li,
.section .long-card ul li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  text-wrap: nowrap;
}

.section ol:not(.breadcrumb) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  counter-reset: ol-count;
}

.section ol:not(.breadcrumb) li {
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

@media (max-width: 575px) {
  .section ol:not(.breadcrumb) li {
    font-size: 14px;
  }
}

.section ol:not(.breadcrumb) li {
  padding-left: 34px;
  padding-top: 1px;
  position: relative;
  color: #505050;
  overflow: hidden;
  counter-increment: ol-count;
}

.section ol:not(.breadcrumb) li a {
  font-weight: 600;
  text-decoration: underline;
  color: #14848d;
}

.section ol:not(.breadcrumb) li::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 23px;
  top: 0px;
  left: 0px;
  background: url("../images/icons/common/circle-accent.svg") center/contain no-repeat;
  transition: transform ease 0.3s;
}

.section ol:not(.breadcrumb) li::before {
  position: absolute;
  content: counter(ol-count);
  top: 8px;
  left: 6px;
  z-index: 10;
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 8px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #323232;
  width: 12px;
}

.section ol:not(.breadcrumb) li span {
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #505050;
  text-wrap: nowrap;
}

.section ol:not(.breadcrumb) li i {
  width: 100%;
  border-bottom: 2px dashed #f3f3f3;
  margin-bottom: 5px;
}

.section h4 {
  margin-bottom: 10px;
}

.section .about__wrapper ul,
.section .about__wrapper ol {
  display: inline;
}

.section .about__wrapper ul li,
.section .about__wrapper ol li {
  margin-bottom: 10px;
}

@media (min-width: 1601px) {
  .section__btn--left {
    left: calc(50% - 800px - 60px);
  }

  .section__btn--right {
    right: calc(50% - 800px - 60px);
  }
}

@media (max-width: 1600px) {
  .section.wellcome {
    overflow: hidden;
  }
}

@media (max-width: 992px) {
  .section__inner {
    gap: 30px;
  }

  .section__inner--accent h2 {
    max-width: 50%;
  }

  .section__inner--accent .btn-main {
    align-self: start;
  }
}

@media (max-width: 575px) {
  .section .wellcome {
    overflow: hidden;
  }

  .section__inner {
    gap: 20px;
  }

  .section__inner--accent h2 {
    max-width: 100%;
  }

  .section__inner .btn-main.btn-main--accent.btn-hover {
    order: 3;
    margin: 0 auto;
  }

  .section__btn {
    height: 44px;
  }

  .section__btn svg {
    width: 10px;
    height: 15px;
  }

  .section__btn-center {
    width: 100%;
  }

  .section ul li {
    gap: 10px;
  }

  .section ul li::after {
    height: 21px;
  }
}

@media (min-width: 768px) {
  .header__top-link:hover .phone {
    animation: phoneRing 0.6s ease-in-out infinite;
  }

  .header__top-link:hover .email {
    animation: mailBounce 0.6s ease-in-out infinite;
  }

  .submenu__list:hover {
    border-color: #f3f3f3;
    background: #f3f3f3;
    border-radius: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .nav__list:not(.open):hover {
    border-color: #f3f3f3;
    background: #f3f3f3;
    border-radius: 16px;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  background: #ffffff;
  transition:
    opacity 0.5s ease,
    height 0.5s ease;
}

.header__top-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__top-link {
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #323232;
}

@media (min-width: 768px) {
  .header__top-link:hover {
    background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: background ease-in-out 0.3s;
  }
}

.header__top-link_tel {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .header__top-link_tel {
    font-size: 12px;
  }
}

.header__info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__info_wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__middle {
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  padding: 10px 0;
  border-radius: 0 0 30px 30px;
  height: 67px;
}

.header__middle-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__actions {
  display: flex;
  gap: 10px;
}

.burger {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border: none;
  gap: 4px;
  position: relative;
  display: none;
  outline: none;
}

.burger span {
  width: 24px;
  height: 3px;
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  transition: transform linear 0.2s;
}

.burger.open span {
  position: absolute;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg);
}

.burger.open span:nth-child(2) {
  transform: rotate(-45deg);
}

.logo__wrapper {
  display: flex;
  align-items: center;
  transition:
    transform 0.4s linear,
    row-reverse linear 0.3s;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.logo__text,
.logo__img {
  transition:
    transform 0.4s linear,
    row-reverse linear 0.3s;
  position: relative;
  will-change: transform;
}

.logo:hover .logo__wrapper {
  transform: rotateY(180deg);
}

.logo:hover .logo__text {
  transform: rotateY(180deg);
}

.hide-menu {
  display: none;
  position: absolute;
  left: -100%;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  transition:
    opacity ease-in-out 0.1s,
    transform 0.3s ease;
}

@media (min-width: 1200px) and (max-width: 1300px) {
  .header__top-links {
    gap: 16px;
  }

  .header__info_wrapper {
    gap: 16px;
  }
}

@media (min-width: 1200px) {
  .nav__lists {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .nav__list {
    position: relative;
  }

  .nav__list--dropdown {
    cursor: pointer;
  }

  .nav__list--dropdown .nav__link {
    padding: 5px 0;
    z-index: 10;
  }

  .nav__list--dropdown:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    height: 30px;
    z-index: 0;
  }

  .nav__list.active {
    position: relative;
  }

  .nav__list.active .nav__item {
    color: #ca910a;
  }

  .nav__list.active .submenu {
    position: absolute;
    display: flex;
    flex-direction: column;
    left: -80px;
  }

  .nav__list:hover .nav__item {
    color: #ca910a;
  }

  .nav__list:hover .submenu {
    position: absolute;
    display: flex;
    flex-direction: column;
    left: -80px;
    top: 25px;
  }

  .nav__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    transition: color 0.3s ease-in-out;
  }

  .nav__item:hover {
    color: #ca910a;
  }

  .nav__link {
    font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    text-align: center;
  }

  .submenu {
    background: #ffffff;
    display: none;
    padding: 10px 0;
    border-radius: 30px 30px 0 30px;
    position: relative;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1019607843);
  }

  .submenu::after {
    position: absolute;
    bottom: 0;
    right: -1px;
    background: url("data:image/svg+xml;utf8,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M24%2024C24%2020.8483%2023.3792%2017.7274%2022.1731%2014.8156C20.967%2011.9038%2019.1992%209.25804%2016.9706%207.02944C14.742%204.80083%2012.0962%203.033%209.1844%201.82689C6.27259%200.620778%203.15173%20-1.37766e-07%200%200L24%200V24Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A")
      center/cover no-repeat;
    width: 44px;
    height: 44px;
    transform: rotate(90deg);
  }

  .submenu.no-radius {
    border-radius: 30px 0 0 30px;
  }

  .submenu__item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    padding: 5px 20px;
    color: #323232;
    border-radius: 16px;
    border: 1px solid transparent;
    cursor: pointer;
  }

  .submenu__item:hover {
    border-color: #f3f3f3;
    background: #f3f3f3;
  }

  .submenu__item {
    transition:
      border ease-in-out 0.3s,
      background ease-in 0.3s;
  }

  .submenu__link {
    font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    width: 320px;
    color: inherit;
    padding: 5px 0;
  }

  .submenu__wrapper {
    padding: 0 10px;
    border-bottom: 1px solid #f3f3f3;
  }

  .submenu__wrapper:last-child {
    border: 1px solid transparent;
  }

  .submenu__wrapper:hover .submenu__item {
    background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
    color: #ffffff;
  }

  .submenu__wrapper:hover .submenu__lists {
    position: absolute;
    top: 0;
    left: 100%;
    display: block;
    -moz-column-count: 2;
    column-count: 2;
    min-height: 100%;
    z-index: 99;
  }

  .submenu__wrapper.active .submenu__item {
    background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
    color: #ffffff;
  }

  .submenu__wrapper.active .submenu__lists {
    position: absolute;
    top: 0;
    left: 100%;
    display: block;
    -moz-column-count: 2;
    column-count: 2;
    min-height: 100%;
    z-index: 99;
  }

  .submenu__lists {
    padding: 10px;
    background: #ffffff;
    display: none;
    border-radius: 0 30px 30px 0px;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1019607843);
    position: relative;
  }

  .submenu__lists::after {
    position: absolute;
    top: 0;
    left: -44px;
    content: "";
    background: url("data:image/svg+xml;utf8,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M24%2024C24%2020.8483%2023.3792%2017.7274%2022.1731%2014.8156C20.967%2011.9038%2019.1992%209.25804%2016.9706%207.02944C14.742%204.80083%2012.0962%203.033%209.1844%201.82689C6.27259%200.620778%203.15173%20-1.37766e-07%200%200L24%200V24Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A")
      center/cover no-repeat;
    width: 44px;
    height: 44px;
  }

  .submenu__list {
    border-bottom: 1px solid #f3f3f3;
    width: 320px;
    padding: 10px 20px;
    color: #323232;
    border-radius: 16px;
    border: 1px solid transparent;
    cursor: pointer;
  }

  .submenu__list:hover {
    border-color: #f3f3f3;
    background: #f3f3f3;
  }

  .submenu__list {
    transition:
      border ease-in-out 0.3s,
      background ease-in 0.3s;
  }
}

@media (max-width: 1200px) {
  .header__top {
    display: none;
  }

  .hide-menu {
    max-height: 100vh;
    min-height: 99vh;
    overflow-y: auto;
    z-index: 100;
    position: absolute;
    left: 0;
    top: 100%;
  }

  .hide-menu::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }

  .hide-menu::-webkit-scrollbar-button {
    display: none;
  }

  .hide-menu::-webkit-scrollbar-track {
    background: transparent;
  }

  .hide-menu__title {
    font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
}

@media (max-width: 1200px) and (max-width: 575px) {
  .hide-menu__title {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .hide-menu.open {
    display: block;
    width: 50%;
    background: #ffffff;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1019607843);
    padding: 30px 16px;
    transform: translateX(0);
    pointer-events: auto;
    opacity: 1;
  }

  .hide-menu.open .nav__lists {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .hide-menu.open .nav__link {
    font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
  }

  .hide-menu.open .nav__list {
    width: 100%;
    padding: 0 10px;
    border-bottom: 1px solid #f3f3f3;
  }

  .hide-menu.open .nav__list.open .nav__item svg {
    transform: rotate(180deg);
  }

  .hide-menu.open .nav__list.open .submenu {
    display: block;
  }

  .hide-menu.open .nav__item {
    color: #323232;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px 0;
  }

  .hide-menu.open .nav__item svg {
    transition: transform ease-in-out 0.3s;
  }

  .hide-menu .submenu {
    display: none;
    padding: 0 10px;
  }

  .hide-menu .submenu__item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f3f3f3;
    gap: 10px;
    padding: 10px 0;
  }

  .hide-menu .submenu__list {
    padding: 10px;
    border-bottom: 1px solid #f3f3f3;
  }

  .hide-menu .submenu__lists {
    display: none;
  }

  .hide-menu .submenu__item svg {
    transform: rotate(90deg);
    transition: transform ease-in-out 0.3s;
    cursor: pointer;
  }

  .hide-menu .submenu__link {
    font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
  }

  .hide-menu .submenu__wrapper.open .submenu__lists {
    display: block;
  }

  .hide-menu .submenu__wrapper.open .submenu__item svg {
    transform: rotate(-90deg);
  }

  .hide-menu .submenu__wrapper.open .submenu__item {
    background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
    color: #ffffff;
    border-radius: 16px;
    padding: 10px;
  }

  .header__top-links {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0;
  }

  .header__top-links a,
  .header__top-links button {
    font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    padding: 10px;
    border-bottom: 1px solid #f3f3f3;
    width: 100%;
    text-align: left;
  }

  .header__top-link_tel:last-child {
    padding-left: 30px;
  }

  .burger {
    display: flex;
  }

  .header__info {
    margin-top: 30px;
    align-items: start;
    flex-direction: column;
    gap: 30px;
  }

  .header__info_wrapper--second {
    flex-direction: column;
    order: -1;
  }

  .hide-menu .header__actions {
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0 50px;
  }
}

@keyframes phoneRing {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(15deg);
  }

  20% {
    transform: rotate(-15deg);
  }

  30% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-15deg);
  }

  50% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(5deg);
  }

  80% {
    transform: rotate(-5deg);
  }

  90% {
    transform: rotate(2deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes mailBounce {
  0% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-3px);
  }

  60% {
    transform: translateY(3px);
  }

  100% {
    transform: translateY(0);
  }
}

.loaded {
  display: none;
}

@media (max-width: 575px) {
  .hide-menu.open {
    width: 100%;
  }

  .hide-menu .header__actions {
    gap: 10px;
  }

  .header__info_wrapper {
    gap: 10px;
  }
}

@media (min-width: 768px) {
  .breadcrumb li:first-child:hover a::after {
    opacity: 0;
  }

  .breadcrumb li:first-child:hover a::before {
    opacity: 1;
  }
}

h1 {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 23px;
  }

  .h1-mob-fsz20 {
    font-size: 20px;
  }
}

h2 {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 20px;
  }
}

h2 span {
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  h3 {
    font-size: 16px;
  }
}

h4 {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  h4 {
    font-size: 14px;
  }
}

h5 {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  h5 {
    font-size: 14px;
  }
}

.flex {
  display: flex;
  gap: 10px;
}

.breadcrumb {
  display: flex;
  gap: 20px;
  /* align-items: flex-end; */
  align-items: center;
  margin: 40px 0 20px;
}

.breadcrumb li {
  color: #505050;
  position: relative;
  padding: 0 2px;
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 16px;
}

@media (max-width: 575px) {
  .breadcrumb li {
    font-size: 14px;
  }
}

.breadcrumb li::after {
  position: absolute;
  content: "/";
  top: 60%;
  transform: translateY(-50%);
  right: -10px;
}

.breadcrumb li:first-child a {
  position: relative;
  width: 23px;
  height: 23px;
  display: block;
  overflow: hidden;
}

.breadcrumb li:first-child a::before,
.breadcrumb li:first-child a::after {
  position: absolute;
  transition: top ease-in-out 0.3s;
  content: "";
  width: 23px;
  height: 24px;
  top: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  transition: opacity ease-in-out 0.3s;
}

.breadcrumb li:first-child a::after {
  background-image: url("../images/icons/common/home.svg");
}

.breadcrumb li:first-child a::before {
  background-image: url("../images/icons/common/home-hover.svg");
  opacity: 0;
}

.breadcrumb li:not(:first-child) a {
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.breadcrumb li:last-child::after {
  content: "";
}

.inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 100;
  padding-top: 20px;
}

.inputs__wrapper {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inputs__container {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  background: inherit;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 2px solid transparent;
  background: #f7f3f1;
  width: 100%;
  border-radius: 12px;
  transition: border 0.3s ease-in-out;
}

.inputs__container:hover input {
  background: #dadada;
}

.inputs__container:hover input[type="date"] + label {
  width: 50%;
  background: #dadada;
}

.inputs__container:hover label {
  color: #323232;
}

.inputs__container:hover textarea {
  background: #dadada;
  color: #323232;
}

.inputs__container.focused,
.inputs__container.filled {
  border: 2px solid #003e47;
}

.inputs__container.focused input,
.inputs__container.filled input {
  background: #f7f3f1;
}

.inputs__container.focused input[type="date"] + label,
.inputs__container.filled input[type="date"] + label {
  background: #f7f3f1;
}

.inputs__container.focused label,
.inputs__container.filled label {
  color: #003e47;
  top: 7px;
  z-index: 1;
  font-size: 10px;
}

.inputs__container input {
  outline: none;
  background: inherit;
  border: none;
  width: 100%;
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

@media (max-width: 575px) {
  .inputs__container input {
    font-size: 14px;
  }
}

.inputs__container input {
  padding: 12px 20px 14px 20px;
  border-radius: 12px;
  color: #323232;
}

.inputs__container input:not([type="date"]) {
  transition: background ease-in 0.3s;
}

.inputs__container input[type="number"] {
  -moz-appearance: textfield;
}

.inputs__container input[type="number"]::-webkit-inner-spin-button,
.inputs__container input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.inputs__container input[type="date"] + label {
  width: 50%;
  background: #f7f3f1;
}

.inputs__container textarea {
  outline: none;
  background: inherit;
  border: none;
  width: 100%;
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

@media (max-width: 575px) {
  .inputs__container textarea {
    font-size: 14px;
  }
}

.inputs__container textarea {
  padding: 12px 20px 14px 20px;
  height: 104px;
  resize: none;
  border-radius: 12px;
  color: #222;
  font-weight: 400;
  transition: background ease-in 0.3s;
}

.inputs__container label {
  position: absolute;
  color: #5e5e5e;
  text-wrap: nowrap;
  z-index: 1;
  pointer-events: none;
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

@media (max-width: 575px) {
  .inputs__container label {
    font-size: 14px;
  }
}

.inputs__container label {
  font-weight: 400;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  transition:
    top ease 0.3s,
    color ease 0.3s;
}

.inputs__container input:-webkit-autofill,
.inputs__container textarea:-webkit-autofill {
  background-color: inherit !important;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
}

.inputs__container span {
  color: #ad5451;
  display: none;
  position: absolute;
  bottom: 0px;
  left: 0;
  font-size: 12px;
  text-wrap: nowrap;
  transition: bottom ease-in-out 0.3s;
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
}

.inputs__container.input-error {
  border: 1px solid #ad5451;
}

.inputs__container.input-error input {
  color: #949494;
}

.inputs__container.input-error label {
  color: #ad5451;
}

.inputs__container.input-valid {
  border: 1px solid #8a8f6f;
  color: #fff;
}

.inputs__container.input-error span {
  display: block;
  position: absolute;
  bottom: -15px;
}

.form__police {
  display: flex;
  position: relative;
  cursor: pointer;
}

.form__police.input-error input[type="checkbox"] {
  border: 1px solid #ad5451;
}

.form__police span {
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

@media (max-width: 575px) {
  .form__police span {
    font-size: 14px;
  }
}

.form__police span {
  color: #323232;
}

.form__police span a {
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}

.form__police input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  cursor: pointer;
  min-width: 20px;
  height: 20px;
  border: 1px solid #003e47;
  margin-right: 8px;
  transition: box-shadow ease-in-out 0.3s;
  border-radius: 4px;
}

.form__police input[type="checkbox"]:checked {
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
}

.form__police input[type="checkbox"]:checked::after {
  background: url("data:image/svg+xml;utf8,%3Csvg%20width%3D%2216%22%20height%3D%2212%22%20viewBox%3D%220%200%2016%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M2%205.78947L6.13793%2010L14%202%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22square%22%2F%3E%0A%3C%2Fsvg%3E%0A")
    center/cover no-repeat;
  width: 15px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.form__police--white span {
  color: #ffffff;
}

.form__police--white span a {
  color: #ffffff;
}

.form__police--white input[type="checkbox"] {
  border: 1px solid #ffffff;
}

.form__police--white input[type="checkbox"]:checked {
  background: #ffffff;
}

.form__police--white input[type="checkbox"]:checked::after {
  background: url("data:image/svg+xml;utf8,%3Csvg%20width%3D%2215%22%20height%3D%2211%22%20viewBox%3D%220%200%2015%2011%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M1.41406%205.20354L5.55199%209.41406L13.4141%201.41406%22%20stroke%3D%22url%28%23paint0_linear_876_23741%29%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22square%22%2F%3E%0A%3Cdefs%3E%0A%3ClinearGradient%20id%3D%22paint0_linear_876_23741%22%20x1%3D%2214.8457%22%20y1%3D%220.214061%22%20x2%3D%220.792672%22%20y2%3D%2210.7822%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0A%3Cstop%20stop-color%3D%22%2314848D%22%2F%3E%0A%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23003E47%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A")
    center/cover no-repeat;
}

.similar-services__wrapper {
  padding-bottom: 13px;
}

.similar-services__wrapper .services-card {
  height: auto;
}

.police h2 {
  margin: 60px 0 30px;
}

.police h2:first-child {
  margin-top: 0;
}

.police p:last-child {
  margin-bottom: 0;
}

.police__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.police__link {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f3f3f3;
  padding: 20px;
  border-radius: 20px;
  max-width: 520px;
  transition: background ease-in-out 0.3s;
}

.police__link span {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .police__link span {
    font-size: 14px;
  }
}

.police__link:hover {
  background: #c5c5c5;
}

.police__link:active {
  background: #14848d;
}

.police__link:active span {
  color: #fff;
}

.police__link img {
  width: 56px;
  height: 56px;
}

.ymaps-2-1-79-gototech,
.ymaps-2-1-79-copyright__text,
.ymaps-2-1-79-copyright__agreement,
.ymaps-2-1-79-copyright__logo-cell {
  display: none !important;
}

.fancybox__nav .f-button {
  width: 44px;
  border-radius: 10px;
  height: 100px;
  background: #ffffff;
  box-shadow: 0px 0px 8.49px 0px rgba(0, 0, 0, 0.2509803922);
  backdrop-filter: blur(8.4900665283px);
  transition: background ease-in-out 0.3s;
}

.fancybox__nav .f-button svg {
  color: #003e47;
  transition: color ease-in-out 0.3s;
}

.fancybox__nav .f-button:hover {
  background: linear-gradient(243.37deg, #01b6bf -12.96%, #007079 109.16%);
}

.fancybox__nav .f-button:hover svg {
  color: #fff;
}

.upBtn {
  position: fixed;
  bottom: 40px;
  right: 10px;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 100;
  transition: all ease-in-out 0.3s;
}

.upBtn__glass {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
}

.upBtn__glass::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 50%;
  border: 5px solid rgba(226, 226, 226, 0.6);
  pointer-events: none;
  z-index: 1;
  box-shadow: 0px 0px 13.6px 0px rgba(0, 0, 0, 0.102);
  transition:
    border ease-in-out 0.3s,
    box-shadow ease-in 0.3s;
}

.upBtn__glass::after {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  top: 0px;
  left: 0px;
}

.upBtn__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0px 0px 8.49px 0px rgba(0, 0, 0, 0.2509803922);
  backdrop-filter: blur(8.4900665283px);
  border: 2px solid #ffffff;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upBtn__btn svg {
  color: #003e47;
  z-index: 10;
  transition: color ease 0.3s;
}

.upBtn:hover .upBtn__btn {
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  transition: color ease 0.3s;
}

.upBtn:hover .upBtn__btn svg {
  color: #ffffff;
}

.dropdown {
  position: relative;
}

.dropdown__item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.dropdown__wrapper {
  position: relative;
  width: 100%;
  background: #f7f3f1;
  border-radius: 12px;
}

.dropdown__wrapper.active .dropdown__icon:before {
  top: 20%;
  transition-delay: 0s;
  transform: rotate(-45deg);
}

.dropdown__wrapper.active .dropdown__icon:after {
  top: 20%;
  transition-delay: 0.15s;
  transform: rotate(45deg);
}

.dropdown__wrapper.active .dropdown__lists {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.dropdown__wrapper.active .dropdown__list {
  opacity: 1;
  transform: translateY(0px);
}

.dropdown__selected {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border ease-in-out 0.3s;
}

.dropdown__selected span {
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

@media (max-width: 575px) {
  .dropdown__selected span {
    font-size: 14px;
  }
}

.dropdown__icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 10px;
}

.dropdown__icon::before,
.dropdown__icon::after {
  content: "";
  position: absolute;
  top: 40%;
  width: 9px;
  height: 2px;
  background: #323232;
  transition:
    top 0.3s ease,
    transform 0.3s ease;
  border-radius: 0px 0px 1px 1px;
}

.dropdown__icon::before {
  left: 0;
  transform: rotate(45deg);
}

.dropdown__icon::after {
  right: 0;
  transform: rotate(-45deg);
}

.dropdown__lists {
  position: absolute;
  top: 100%;
  right: 0px;
  width: 100%;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity ease 0.3s,
    visibility ease-in-out 0.3s,
    transform ease-out 0.3s;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  overflow: hidden;
  z-index: 1000;
}

.dropdown__list {
  padding: 12px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity ease 0.3s,
    transform ease-in 0.3s;
  border-bottom: 1px solid #f5f5f5;
  transition:
    background ease-in-out 0.3s,
    color ease-in 0.3s;
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: left;
  cursor: pointer;
}

.dropdown__list:last-child {
  border-bottom: 0;
}

.dropdown__list:hover {
  background: #dadada;
}

@media (max-width: 768px) {
  .police h2 {
    margin: 50px 0 20px;
  }
}

@media (max-width: 575px) {
  .breadcrumb {
    margin: 20px 0 20px;
    gap: 0;
  }

  .breadcrumb li:first-child a::after {
    background-image: url("../images/icons/common/home-mobile.svg");
  }

  .breadcrumb li:first-child a::before {
    opacity: 0;
  }

  .breadcrumb li a {
    display: none;
  }

  .breadcrumb li::after {
    content: none;
  }

  .inputs {
    gap: 10px;
  }

  .inputs__wrapper {
    width: 100%;
  }

  .upBtn {
    width: 56px;
    height: 56px;
  }

  .upBtn__btn {
    width: 41px;
    height: 41px;
  }

  .police__link {
    max-width: 100%;
    gap: 10px;
    padding: 10px;
  }

  .police h2 {
    margin: 40px 0 20px;
  }
}

.wellcome--main {
  margin-top: 20px;
}

.wellcome--main h1 {
  max-width: 1200px;
}

.wellcome__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.wellcome__visual {
  border-radius: 30px;
  overflow: hidden;
  height: 250px;
}

.wellcome__content {
  position: relative;
}

.wellcome__content .action {
  position: absolute;
  bottom: 9px;
  right: 103px;
}

.wellcome__tracking {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.wellcome__tracking p {
  margin-bottom: 0;
}

.wellcome__tracking .btn-second {
  justify-self: flex-start;
}

@media (max-width: 1280px) {
  .wellcome__content .action {
    right: 20px;
    bottom: 180px;
  }
}

@media (max-width: 768px) {
  .wellcome__tracking {
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .wellcome .container {
    display: flex;
    flex-direction: column;
  }

  .wellcome--main .wellcome__inner {
    order: 2;
  }

  .wellcome--main .calc {
    margin-bottom: 20px;
  }

  .wellcome__inner {
    margin-bottom: 0;
  }

  .wellcome__visual {
    height: 200px;
  }

  .wellcome__visual img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .wellcome__content .action {
    display: none;
  }

  .wellcome__tracking {
    gap: 10px;
  }
}

@media (min-width: 768px) {
  .btn-simple:hover {
    background: #ffffff;
  }

  .btn-simple:hover .icon-path {
    fill: url(#gradTurquoise);
  }

  .btn-main--accent:hover::before {
    opacity: 1;
  }

  .btn-main--accent:hover .text {
    background: #ffffff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .btn-hover:hover:after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .btn-main:hover .special::before,
  .btn-second:hover .special::before {
    opacity: 1;
  }

  .btn-main:not(.btn-main--accent, .btn-main-menu):hover {
    transition: background ease-in-out 0.3s;
    position: relative;
    background: #ffffff;
  }

  .btn-main:not(.btn-main--accent, .btn-main-menu):hover .text {
    background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .btn-second:hover::before {
    opacity: 1;
  }

  .action:hover .action__glass::before {
    border: 15px solid rgba(255, 255, 255, 0.938);
    box-shadow: 0px 0px 13.6px 0px rgba(0, 0, 0, 0.202);
  }

  .action:hover .action__btn::before {
    opacity: 1;
  }

  .action:hover .action__btn::after {
    opacity: 0;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .btn-simple-menu {
    z-index: 100;
  }

  .btn-simple-menu:hover::before {
    opacity: 1;
    z-index: -1;
  }

  .btn-simple-menu:hover .icon-path {
    fill: #fff;
  }
}

.btn-simple {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #ffffff;
  border-radius: 8px;
  padding: 13px;
  background: inherit;
  transition: background ease-in-out 0.3s;
}

.btn-simple .icon-path {
  fill: #ffffff;
}

.btn-main {
  border: 2px solid #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-main--accent {
  border: 2px solid #14848d;
  padding: 2px;
  transition: background ease-in-out 0.3s;
  position: relative;
}

.btn-main--accent::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  opacity: 0;
  transition: opacity linear 0.3s;
}

.btn-main--accent .text {
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-main .text {
  margin: 0 24px;
  color: #ffffff;
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
  text-align: center;
}

.btn-main .special {
  justify-self: flex-end;
  width: 40px;
  height: 40px;
  background: #1a858f;
  border-radius: 4px;
  position: relative;
}

.btn-main .special::after,
.btn-main .special::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: opacity ease-in-out 0.3s;
}

.btn-main .special::after {
  background: url("../images/icons/common/alarm-default.svg") center/cover no-repeat;
}

.btn-main .special::before {
  background: url("../images/icons/common/alarm-hover.svg") center/cover no-repeat;
  opacity: 0;
}

.btn-second {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  padding: 4px;
  border-radius: 8px;
  position: relative;
}

.btn-second::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(243.37deg, #01b6bf -12.96%, #007079 109.16%);
  opacity: 0;
  transition: opacity ease-in-out 0.3s;
}

.btn-second .text {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
  text-align: center;
  margin: 0 24px;
  color: #ffffff;
}

.btn-second .special {
  justify-self: flex-end;
  width: 40px;
  height: 40px;
  background: #1a858f;
  border-radius: 4px;
  position: relative;
}

.btn-second .special::after,
.btn-second .special::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: opacity ease-in-out 0.3s;
}

.btn-second .special::after {
  background: url("../images/icons/common/alarm-default.svg") center/cover no-repeat;
}

.btn-second .special::before {
  background: url("../images/icons/common/alarm-hover.svg") center/cover no-repeat;
  opacity: 0;
}

.btn-hover {
  overflow: hidden;
  position: relative;
}

.btn-hover span {
  z-index: 20;
}

.btn-hover:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
}

.action {
  width: 230px;
  height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.action__glass {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
}

.action__glass::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  border-radius: 50%;
  border: 15px solid rgba(226, 226, 226, 0.6);
  pointer-events: none;
  z-index: 1;
  box-shadow: 0px 0px 13.6px 0px rgba(0, 0, 0, 0.102);
  transition:
    border ease-in-out 0.3s,
    box-shadow ease-in 0.3s;
}

.action__glass::after {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  top: 0px;
  left: 0px;
}

.action__btn {
  border-radius: 100px;
  width: 170px;
  height: 170px;
  border: 2.55px solid #ffffff;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.502);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 27px;
  z-index: 10;
  transition: background ease-in 0.3s;
  position: relative;
}

.action__btn::after {
  position: absolute;
  background: linear-gradient(243.37deg, #01b6bf -12.96%, #007079 109.16%);
  opacity: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: opacity linear 0.3s;
  z-index: -1;
  border-radius: 50%;
}

.action__btn::before {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(243.37deg, #f2b926 -12.96%, #ca910a 109.16%);
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: opacity linear 0.3s;
  z-index: -1;
}

.action__text {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  margin-top: auto;
}

.action__icons {
  display: block;
  margin-top: 6px;
}

.action__icons .arrow {
  animation: blink 1.2s infinite ease-in-out;
  opacity: 0.3;
}

.action__icons .arrow-1 {
  animation-delay: 0s;
}

.action__icons .arrow-2 {
  animation-delay: 0.2s;
}

.action__icons .arrow-3 {
  animation-delay: 0.4s;
}

@keyframes blink {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}

@media (max-width: 1200px) {
  .btn-simple-menu {
    border: 2px solid #14848d;
    border-radius: 8px;
    position: relative;
  }

  .btn-simple-menu .icon-path {
    fill: #14848d;
  }

  .btn-simple-menu::before {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
    opacity: 0;
    transition: opacity ease-in-out 0.3s;
  }

  .btn-main-menu:hover::before {
    opacity: 1;
  }

  .btn-main-menu:hover .text {
    color: #ffffff;
    background: #ffffff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .btn-main-menu {
    border: 2px solid #14848d;
    padding: 2px;
    transition: background ease-in-out 0.3s;
    position: relative;
  }

  .btn-main-menu::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
    opacity: 0;
    transition: opacity linear 0.3s;
  }

  .btn-main-menu .text {
    background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

@media (max-width: 575px) {
  .action {
    width: 150px;
    height: 150px;
  }

  .action__glass::before {
    top: -10px;
    left: -10px;
    border-width: 10px;
  }

  .action__btn {
    width: 110px;
    height: 110px;
  }

  .action__text {
    font-size: 8px;
  }

  .action__icon {
    width: 17px;
    height: 19px;
  }
}

@media (max-width: 375px) {
  .btn-second,
  .btn-main {
    width: 100%;
  }

  .btn-second .text,
  .btn-main .text {
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .services-card:hover .services-card__visual img {
    transform: scale(1.06);
  }

  .services-card:hover .card__icon .circle {
    transform: rotate(360deg);
  }

  .services-card:hover .services-card__bottom {
    color: #ffffff;
  }

  .services-card:hover .services-card__bottom::before {
    opacity: 1;
  }
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.services--w50 .services-card {
  width: calc((100% - 20px) / 2);
}

.services-card {
  display: flex;
  flex-direction: column;
  position: relative;
  width: calc((100% - 60px) / 4);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1019607843);
}

.services-card .card__icon {
  position: absolute;
  top: 20px;
  right: 24px;
}

.services-card .card__icon .circle {
  transition: transform ease-in-out 0.6s;
  width: 36px;
  height: 36px;
}

.services-card__visual {
  height: 350px;
  width: 100%;
  overflow: hidden;
}

.services-card__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform ease-in 0.3s;
}

.services-card__bottom {
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  position: relative;
}

.services-card__bottom::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  opacity: 0;
  z-index: -1;
  transition: opacity linear 0.3s;
}

.services-card__name {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .services-card__name {
    font-size: 14px;
  }
}

.services-card__name {
  text-align: center;
  display: inline-block;
  position: relative;
}

.services-card__name span {
  display: inline;
  font-family: inherit;
}

.services-card__name span::before {
  content: attr(data-title);
  display: inline;
}

@media (max-width: 992px) {
  .services-card {
    width: calc((100% - 40px) / 3);
  }

  .services-card__visual {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .services-card {
    width: calc((100% - 20px) / 2);
  }

  .services-card__visual {
    height: 250px;
  }
}

@media (max-width: 575px) {
  .services-card__visual {
    height: 150px;
  }

  .services-card__bottom {
    padding: 8px 10px;
  }

  .services-card__name {
    font-size: 10px;
  }

  .services-card .card__icon {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 425px) {
  .services-card__name {
    font-size: 9px;
  }
}

.advantages {
  border-radius: 40px;
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  padding-top: 110px;
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .advantages {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.advantages h2 {
  color: #ffffff;
}

.advantages p {
  color: #ffffff;
}

.advantages__inner {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.advantages__item {
  width: calc((100% - 40px) / 3);
  display: flex;
  padding: 30px;
  gap: 20px;
  border: 3px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
}

.advantages__title {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .advantages__title {
    font-size: 14px;
  }
}

.advantages__title {
  margin-bottom: 10px;
}

.advantages__visual {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
}

.advantages__content p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1180px) {
  .advantages__item {
    width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 767px) {
  .advantages__item {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .advantages__item {
    padding: 20px;
    width: 100%;
    flex-direction: row;
  }

  .advantages__visual {
    min-width: 48px;
    max-width: 48px;
    height: 48px;
  }

  .advantages__visual img {
    width: 100%;
    height: 100%;
  }
}

.about {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about h3 {
  margin-bottom: 10px;
}

.about__wrapper:nth-child(even) img {
  float: right;
  margin: 0 0 10px 30px;
}

.about__wrapper:nth-child(odd) img {
  float: left;
  margin: 0 30px 10px 0;
}

.about__wrapper a {
  text-decoration: underline;
  color: #0e6269;
  /* text-shadow: 0px 0px 20px #0e6269 */
  font-weight: 500;
}

.about__item::after {
  content: "";
  display: block;
  clear: both;
}

.about__item h2,
.about__item h3,
.about__item h4 {
  margin-top: 40px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .about__item h2,
  .about__item h3,
  .about__item h4 {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
.about img {
  width: 50%;
  height: 400px;
  overflow: hidden;
  border-radius: 30px;
  float: left;
  -o-object-fit: cover;
  object-fit: cover;
}

.about img.h-500 {
  height: 500px;
}

.about__desc p:last-child {
  margin-bottom: 0;
}

.about__item--images {
  display: flex;
  gap: 20px;
}

.about-promotion {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}



.about-promotion__cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 35%;
}

.about-promotion__card {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 10px;
  padding: 17px 20px;
  border-radius: 30px;
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  color: #ffffff;
  width: calc(50% - 10px);
}

.about-promotion__card p {
  color: #ffffff;
}

.about-promotion__title {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 130%;
  text-transform: uppercase;
}
@media (min-width:992px) and (max-width:1440px) {
  .about-promotion{
    flex-wrap: wrap;
  }
  .about-promotion__cards{
    flex-wrap: nowrap;
    max-width: 100%;
    width: 100%;
  }
  .about-promotion__card{
    width: 50%;
  }
}
@media (max-width: 992px) {
  .about-promotion {
    flex-wrap: wrap;
  }

  .about-promotion__cards {
    width: 100%;
    max-width: 100%;
  }

  .about {
    gap: 30px;
  }

  .about__item img {
    width: 100%;
  }

  .about__wrapper:nth-child(even) img {
    margin: 0 0 10px 0px;
  }

  .about__wrapper:nth-child(odd) img {
    margin: 0 0px 10px 0;
  }
}

@media (max-width: 575px) {
  .about {
    gap: 20px;
  }

  .about__item img {
    height: 200px;
  }

  .about__item img.h-500 {
    height: 235px;
  }

  .about-promotion__title {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .truck-card:hover .card__icon .circle {
    transform: rotate(360deg);
  }
}

.trucks {
  width: 100%;
}

.trucks--page {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.truck-card {
  padding: 20px;
  border-radius: 30px;
  background: #f3f3f3;
  width: calc((100% - 60px) / 4);
  display: flex;
  flex-direction: column;
  position: relative;
  height: auto;
}

.truck-card .card__icon {
  position: absolute;
  top: 40px;
  right: 40px;
}

.truck-card .card__icon .circle {
  width: 36px;
  height: 36px;
  transition: transform ease-in-out 0.6s;
}

.truck-card .card__icon:hover .circle {
  transform: rotate(360deg);
}

.truck-card .card__icon {
  z-index: 5;
}

.truck-card__visual {
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.truck-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.6s ease;
}

.truck-card__img--default {
  opacity: 1;
  z-index: 2;
}

.truck-card__img--hover {
  opacity: 0;
  z-index: 1;
}

.truck-card__name {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 900;
  color: #3c3c3c;
  font-size: 22px;
  line-height: 130%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .truck-card__name {
    font-size: 16px;
  }
}

.truck-card__name {
  margin-bottom: 10px;
  min-height: 2.6em;
  word-break: break-word;
}

.truck-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section .truck-card__content ul {
  margin-bottom: 20px;
}

.truck-card__content .btn-second {
  width: 100%;
  margin-top: auto;
}

.truck-card__content .btn-second .text {
  margin: 0 auto;
}

.truck-card__content ul {
  margin-bottom: 20px;
}

.truck-card ul {
  margin-bottom: 20px;
}

.truck-card:not(.hover-off):hover .truck-card__img--default {
  opacity: 0;
}

.truck-card:not(.hover-off):hover .truck-card__img--hover {
  opacity: 1;
}

@media (max-width: 1280px) {
  .trucks--page .truck-card {
    width: calc((100% - 40px) / 3);
  }
}

@media (max-width: 1180px) {
  .trucks--page .truck-card {
    width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 575px) {
  .truck-card__visual {
    height: 200px;
  }

  .trucks--page .truck-card {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .pricing-table__row:hover {
    background: #f9f9f9;
  }
}

.pricing {
  display: flex;
  gap: 20px;
  width: 100%;
}

.pricing__form {
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 30px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  width: 41%;
}

.pricing__form h4 {
  margin-bottom: 10px;
}

.pricing__form .btn-second {
  margin-top: auto;
  width: 100%;
  justify-content: space-between;
}

.pricing__form .btn-second .text {
  margin: 0 auto;
}

.pricing__title {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .pricing__title {
    font-size: 14px;
  }
}

.pricing__title {
  margin-bottom: 10px;
}

.pricing-tabs {
  width: 58%;
}

.pricing-tabs__header {
  display: flex;
  justify-content: center;
  padding-bottom: 12px;
}

.pricing-tabs__btn {
  color: #222222;
  width: 33%;
  position: relative;
}

.pricing-tabs__btn::before {
  width: 100%;
  height: 4px;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background: #c5c5c5;
}

.pricing-tabs__btn.active {
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-tabs__btn.active::before {
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
}

.pricing-tabs__weight {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .pricing-tabs__weight {
    font-size: 12px;
  }
}

.pricing-tabs__weight {
  display: block;
  margin-bottom: 12px;
}

.pricing-tabs__desc {
  padding: 26px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #f3f3f3;
}

.pricing-tabs__content {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  border: 1px solid #dfdfdf;
}

.pricing-tabs__cell {
  color: #323232;
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .pricing-tabs__cell {
    font-size: 12px;
  }
}

.pricing-tabs__cell {
  display: flex;
  align-items: center;
}

.pricing-tabs__tab {
  display: none;
  animation: fadeIn 0.3s ease;
}

.pricing-tabs__tab.active {
  display: block;
}

.pricing-table {
  width: 100%;
}

.pricing-table__row {
  padding: 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #dfdfdf;
  transition: background 0.2s ease;
}

.pricing-table__row:last-child {
  border-bottom: none;
}

.pricing-table__cell {
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

@media (max-width: 575px) {
  .pricing-table__cell {
    font-size: 14px;
  }
}

.pricing-table__cell {
  color: #505050;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .pricing {
    flex-wrap: wrap;
  }

  .pricing__form {
    width: 100%;
  }
}

.pricing-tabs {
  width: 100%;
}

@media (max-width: 575px) {
  .pricing-tabs__desc {
    padding: 14px 10px;
  }

  .pricing-tabs__cell {
    font-size: 10px;
  }

  .pricing-tabs__weight {
    font-size: 10px;
  }

  .pricing-table__row {
    padding: 8px 10px;
    gap: 10px;
  }

  .pricing__form {
    padding: 20px;
  }
}

.cooperation {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cooperation__item {
  width: calc((100% - 60px) / 4);
  padding: 30px;
  border-radius: 30px;
  background: #f3f3f3;
}

.cooperation__title {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .cooperation__title {
    font-size: 14px;
  }
}

.cooperation__title {
  margin-bottom: 10px;
}

.cooperation__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.cooperation__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1420px) {
  .cooperation__item {
    width: calc((100% - 40px) / 3);
  }
}

@media (max-width: 1180px) {
  .cooperation__item {
    width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 575px) {
  .cooperation__item {
    width: 100%;
  }
}

.banner {
  overflow: hidden;
  position: relative;
  padding-bottom: 95px;
}

.banner__truck {
  width: 100%;
  min-height: 336px;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.banner__truck img {
  z-index: 2;
  position: absolute;
  bottom: -95px;
}

.banner__content {
  width: 50%;
  padding: 30px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  text-align: center;
  position: relative;
  margin-right: 2%;
  align-self: flex-end;
}

.banner__content h3 {
  margin-bottom: 10px;
  color: #ffffff;
}

.banner__content p {
  color: #ffffff;
}

.banner__content .btn-main {
  margin: 0 auto;
}

.trailer-block {
  overflow: hidden;
}

.trailer-block__inner {
  transform: translateX(100%);
  opacity: 0;
  transition:
    transform 1.5s ease-out,
    opacity 1s ease-out;
}

.trailer-block__inner.animate {
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .banner {
    padding-bottom: 100px;
  }

  .banner__truck {
    min-height: auto;
  }

  .banner__content {
    width: 70%;
  }
}

@media (max-width: 575px) {
  .banner__content {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .banner__content {
    margin-right: 9%;
  }
}

.on-way {
  width: 100%;
  display: flex;
  gap: 20px;
}

.on-way__desc {
  max-width: 32%;
}

.on-way__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.long-card {
  display: flex;
  gap: 20px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1019607843);
}

.long-card__visual {
  width: 400px;
  min-height: 388px;
  position: relative;
}

.long-card__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.long-card__date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffffff;
  border-radius: 40px;
  padding: 10px 20px;
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

.long-card__link {
  text-decoration: underline;
  /* color: #14848d; */
  font-weight: 500;
}

@media (max-width: 575px) {
  .long-card__date {
    font-size: 14px;
  }
}

.long-card__content {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 20px 10px;
  flex: 1;
}

.long-card__content h4 {
  margin-bottom: 10px;
}

.long-card__title {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .long-card__title {
    font-size: 14px;
  }
}

.long-card__title {
  margin-bottom: 10px;
}

.long-card__btn {
  margin-top: auto;
}

@media (max-width: 1280px) {
  .on-way {
    flex-wrap: wrap;
  }

  .on-way__desc {
    max-width: 100%;
  }

  .on-way__cards {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .long-card {
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .long-card {
    display: flex;
    flex-direction: column;
  }

  .long-card__visual {
    width: 100%;
    min-height: 200px;
    height: 200px;
  }

  .long-card__content {
    padding: 0 10px 10px 10px;
  }
}

.steps {
  margin-top: 40px;
}

.steps__top {
  display: flex;
  justify-content: space-around;
  margin-bottom: -76px;
}

.steps__middle {
  height: 78px;
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  position: relative;
  z-index: -1;
}

.steps__middle::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(243.37deg, #01b6bf -12.96%, #007079 109.16%);
  content: "";
  z-index: 0;
}

.steps__middle_wrapper {
  position: relative;
  overflow: visible;
}

.steps__truck {
  position: absolute;
  left: 0;
  top: 50%;
  will-change: transform;
  z-index: 10;
  transition: opacity linear 0.3s;
}

.steps__truck.opacity {
  opacity: 0;
}

.steps__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: -76px;
}

.steps__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.steps__card--tablet {
  display: none;
}

.steps__card.hover .steps__wrapper::after {
  opacity: 1;
}

.steps__card.hover .steps__wrapper .steps__card_title {
  color: #ffffff;
}

.steps__card.hover .steps__wrapper h5 {
  color: #ffffff;
}

.steps__card.hover .steps__wrapper span {
  background: rgba(255, 255, 255, 0.4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.steps__card.hover .ellipse__number {
  background: #fff;
}

.steps__card.hover .ellipse__number span {
  background: linear-gradient(243.37deg, #01b6bf -12.96%, #007079 109.16%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.steps__card.hover .ellipse__icon {
  top: -90px;
  opacity: 1;
}

.steps__card.hover .ellipse__icon--top {
  top: 90px;
}

.steps__wrapper {
  height: 200px;
  width: 350px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  position: relative;
}

.steps__wrapper::after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity ease-in-out 0.5s;
  z-index: -1;
  border-radius: 30px;
}

.steps__wrapper::before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  background: #f3f3f3;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity ease-in-out 0.5s;
  z-index: -1;
  border-radius: 30px;
}

.steps__wrapper span {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 130%;
  text-align: right;
  text-transform: uppercase;
  background: linear-gradient(243.37deg, #01b6bf -12.96%, #007079 109.16%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background ease-in-out 0.3s;
}

.steps__wrapper h5 {
  margin-top: auto;
  color: #323232;
  transition: color ease-in-out 0.3s;
}

.steps__wrapper .steps__card_title {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .steps__wrapper .steps__card_title {
    font-size: 14px;
  }
}

.steps__wrapper .steps__card_title {
  margin-top: auto;
  color: #323232;
  transition: color ease-in-out 0.3s;
}

.steps__line {
  height: 76px;
  width: 2px;
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0 auto;
}

.steps__line--left {
  margin: 0 35px;
}

.steps__line--right {
  margin: 0 35px 0 auto;
}

.steps__line-circle {
  width: 16px;
  height: 16px;
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1019607843);
  border: 4px solid #ffffff;
  border-radius: 50px;
}

.steps .ellipse {
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  z-index: 5;
}

.steps .ellipse--right {
  margin: 0 0 0 auto;
}

.steps .ellipse--center {
  margin: 0 auto;
}

.steps .ellipse__icon {
  width: 80px;
  height: 80px;
  z-index: 2;
  position: absolute;
  top: 0px;
  opacity: 0;
  transition:
    top ease-in-out 0.8s,
    opacity ease-in 0.3s;
}

.steps .ellipse__glass {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
}

.steps .ellipse__glass::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 50%;
  border: 10px solid rgba(226, 226, 226, 0.6);
  pointer-events: none;
  z-index: 1;
  box-shadow: 0px 0px 13.6px 0px rgba(0, 0, 0, 0.102);
  transition:
    border ease-in-out 0.3s,
    box-shadow ease-in 0.3s;
}

.steps .ellipse__glass::after {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  top: 0px;
  left: 0px;
}

.steps .ellipse__number {
  width: 37px;
  height: 37px;
  position: relative;
  border: 2px solid rgba(1, 181, 191, 0.349);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.steps .ellipse__number::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(243.37deg, #01b6bf -12.96%, #007079 109.16%);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 50%;
}

.steps .ellipse__number span {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

@media (max-width: 1200px) {
  .steps {
    overflow: hidden;
    position: relative;
    transition: transform ease-in-out 0.3s;
  }

  .steps-move {
    transform: translateX(0);
  }

  .steps__top,
  .steps__bottom {
    width: 1600px;
    will-change: transform;
    transition: transform 0.3s linear;
  }

  .steps__wrapper {
    width: 300px;
    height: 180px;
  }
}

.faq {
  display: flex;
  gap: 20px;
  width: 100%;
}

.faq__visual {
  max-width: 32.5%;
  width: 100%;
  align-self: flex-start;
  border-radius: 30px;
  overflow: hidden;
}

.faq__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.faq__content {
  width: 100%;
  z-index: 5;
  position: relative;
}

.section .faq__content ol li {
  color: #fff;
}

.section .faq__content a {
  font-weight: 500;
  position: relative;
}

.section .faq__content a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #fff;
  content: "";
  transition:
    width ease-in-out 0.3s,
    opacity ease-in 0.3s;
  opacity: 1;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .section .faq__content a:hover::after {
    width: 0%;
    opacity: 0;
    left: 50%;
  }
}

.faq__content strong {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .faq__content strong {
    font-size: 14px;
  }
}

.faq__content strong {
  color: #ffffff;
  margin-bottom: 10px;
  display: block;
}

.faq__title {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .faq__title {
    font-size: 16px;
  }
}

/* .faq__title {
  margin-bottom: 10px;
} */
.faq__accordion {
  border: 2px solid #ffffff;
  border-radius: 20px;
  background: rgb(255, 255, 255);
  padding: 16px 20px;
  transition: background ease-in-out 0.3s;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1019607843);
}
@media (max-width: 375px) {
  .faq__accordion {
    padding: 16px 10px;
  }
}
.faq__accordion::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  opacity: 0;
  z-index: 1;
  border-radius: 20px;
  transition: opacity ease-in-out 0.3s;
}

.faq__accordion .faq__bottom {
  margin-top: 40px;
}

.faq__accordion .btn-main {
  z-index: 2;
}

@media (max-width: 575px) {
  .faq__accordion .faq__bottom {
    margin-top: 20px;
  }
}

.faq__accordion:last-child {
  margin-bottom: 0;
}

.faq__accordion:hover {
  background: rgb(239, 239, 239);
}

.faq__accordion[open]::after {
  opacity: 1;
}

.faq__accordion[open] .faq__title,
.faq__accordion[open] p,
.faq__accordion[open] ul li {
  color: #ffffff;
}

.faq__accordion[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(180deg);
  background: url("../images/icons/common/plus-active.svg") center/cover no-repeat;
}

.faq__accordion[open] .faq__icon::before {
  background: #ffffff;
}

.faq__accordion p {
  margin-bottom: 10px;
}

.faq__summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  z-index: 5;
  position: relative;
}

.faq__summary::marker {
  content: "";
}

.faq__summary:hover .faq__icon {
  background: #fff;
}

.faq__icon {
  min-width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgb(239, 239, 239);
  position: relative;
  transition: background ease-in-out 0.3s;
}

.faq__icon::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  z-index: 1;
  border-radius: 10px;
}

.faq__icon::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  background: url("../images/icons/common/plus.svg") center/cover no-repeat;
  width: 16px;
  height: 16px;
  z-index: 5;
  transition: transform ease-in-out 0.3s;
}

@media (max-width: 768px) {
  .faq {
    flex-wrap: wrap;
  }

  .faq__visual {
    max-width: 100%;
    height: 400px;
  }
}

@media (max-width: 575px) {
  .faq__visual {
    height: 200px;
  }

  .faq__icon {
    min-width: 32px;
    height: 32px;
  }

  .faq__icon::after {
    width: 12px;
    height: 12px;
  }

  .faq__summary {
    gap: 10px;
  }
}

.request {
  display: flex;
  border-radius: 30px;
  overflow: hidden;
}

.request__visual {
  position: relative;
  height: 100%;
  width: 68%;
}

.request__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.request__visual .action {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.request__form {
  padding: 30px;
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  color: #ffffff;
  width: 32%;
}

.request__form p {
  color: inherit;
}

.request__form .inputs {
  margin-bottom: 20px;
}

.request__title {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .request__title {
    font-size: 14px;
  }
}

.request__title {
  margin-bottom: 10px;
}

.request__bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.request__bottom .btn-main .text {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .request {
    flex-wrap: wrap;
  }

  .request__visual {
    width: 100%;
    height: 400px;
  }

  .request__form {
    width: 100%;
  }

  .request__form .inputs__container {
    width: calc(50% - 10px);
  }

  .request__bottom {
    flex-direction: row;
  }

  .request__bottom .btn-main,
  .request__bottom .form__police {
    width: 50%;
    align-self: flex-start;
  }
}

@media (max-width: 575px) {
  .request__form {
    padding: 20px 10px;
  }

  .request__form .inputs__container {
    width: 100%;
  }

  .request__bottom {
    flex-wrap: wrap;
  }

  .request__bottom .btn-main,
  .request__bottom .form__police {
    width: 100%;
  }
}

.txt-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.txt-cards__item {
  width: calc((100% - 40px) / 3);
  background: #f3f3f3;
  padding: 30px;
  border-radius: 30px;
}

.txt-cards__title {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .txt-cards__title {
    font-size: 14px;
  }
}

.txt-cards__title {
  margin-bottom: 20px;
}

@media (max-width: 1180px) {
  .txt-cards__item {
    width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 575px) {
  .txt-cards__item {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .btn-simple.tg-green svg path {
    fill: url(#gradTurquoise);
  }
}

.descr-contacts {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.descr-contacts .left * {
  font-weight: 300;
  color: #505050;
  font-family: "Montserrat";
}

.descr-contacts .right {
  display: flex;
  gap: 10px;
}

.tg-green {
  border: 2px solid #14848d;
  position: relative;
  width: 47px;
  min-width: 47px;
  height: 47px;
  overflow: hidden;
}

.tg-green::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  opacity: 0;
  transition: opacity linear 0.3s;
}

.tg-green:hover::before {
  opacity: 1;
}

.btn-simple.tg-green:hover svg path {
  fill: #ffffff;
}

.btn-simple.tg-green:hover svg {
  position: relative;
}

.btn-simple.tg-green svg {
  min-width: 20px;
  width: 20px;
  height: 17px;
}

.section-contacts h1 {
  margin-bottom: 30px;
}

.descr-contacts .left {
  width: 75%;
}

.descr-contacts .btn-main .text {
  width: 100%;
}

.descr-contacts .btn-main .special {
  min-width: 39px;
  width: 39px;
}

.descr-contacts .btn-main .special::after {
  width: 38px;
  min-width: 38px;
  height: 32px;
}

.descr-contacts .btn-main--accent {
  height: 47px;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacts-item a,
.contacts-item p {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
  color: #323232;
}

.contacts-item.mail b {
  font-family: "Montserrat";
  font-weight: 800;
}

.contacts-item span {
  color: #505050;
  font-family: "Montserrat";
  margin-bottom: 10px;
  display: inline-block;
}

.contacts-block .left .intro-text * {
  font-family: "Montserrat";
  font-weight: 300;
}

.contacts-block .left .intro-text {
  margin-bottom: 20px;
}

.contacts-block .left h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.contacts-block .left {
  border-radius: 30px;
  padding: 30px;
  width: 34%;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
}

.flex-contacts {
  display: flex;
  gap: 20px;
}

#map {
  width: 70%;
  height: 497px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #ffffff;
}

.contacts-item b {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-size: 14px;
}

.contacts-item.mail b {
  font-size: 16px;
}

@media (max-width: 1600px) {
  .contacts-block .left {
    width: 48%;
  }

  .descr-contacts .left {
    width: 60%;
  }
}

@media (max-width: 1200px) {
  .flex-contacts {
    flex-direction: column;
  }

  .contacts-block .left {
    width: 100%;
  }

  #map {
    width: 100%;
  }

  .contacts-list {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
  }

  .contacts-list .contacts-item {
    width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 768px) {
  .descr-contacts {
    flex-direction: column;
  }

  .descr-contacts .left {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .contacts-list {
    flex-direction: column;
  }

  .contacts-list .contacts-item {
    width: 100%;
  }

  .contacts-block .left {
    padding: 20px;
  }
}

@media (max-width: 375px) {
  .contacts-block .left h2 {
    font-size: 16px;
  }

  .contacts-item span {
    font-size: 14px;
  }

  .contacts-item b {
    font-size: 12px;
  }

  .contacts-item.mail b {
    font-size: 12px;
  }

  .flex-contacts {
    flex-direction: column-reverse;
  }

  #map {
    height: 300px;
  }

  .descr-contacts .right {
    gap: 4px;
  }
}

@media (min-width: 768px) {
  .footer__info:hover .phone {
    animation: phoneRing 0.6s ease-in-out infinite;
  }

  .footer__info:hover .email {
    animation: mailBounce 0.6s ease-in-out infinite;
  }
}

.footer {
  border-radius: 40px 40px 0 0;
  overflow: hidden;
  color: #ffffff;
}

.footer__top {
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
}

.footer__bottom {
  background: #f3f3f3;
  padding: 20px 0 30px 0;
}

.footer__nav {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}

.footer__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__item--last {
  gap: 20px;
  align-items: flex-end;
}

.footer__link {
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  transition: color ease-in-out 0.3s;
  display: inline-flex;
}

.footer__link--title {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .footer__link--title {
    font-size: 14px;
  }
}

.footer__link:hover:not(span) {
  color: #ca910a;
}

.footer__text {
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
}

.footer__info {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .footer__info {
    font-size: 14px;
  }
}

.footer__info--second {
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 1px;
}

.footer__info .email--white {
  align-self: center;
}

.footer__copy {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__copy_item {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__copy_item--right {
  text-align: right;
}

.footer__txt {
  color: #323232;
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

@media (max-width: 575px) {
  .footer__txt {
    font-size: 14px;
  }
}

.footer__txt {
  transition: color ease-out 0.3s;
}

.footer__txt:hover:not(span) {
  color: #007079;
}

.footer__txt--btn {
  text-align: left;
}

@media (max-width: 1024px) {
  .footer__nav {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer__item:nth-child(1) {
    order: 1;
    width: calc(50% - 10px);
  }

  .footer__item:nth-child(2) {
    order: 3;
  }

  .footer__item:nth-child(3) {
    order: 4;
  }

  .footer__item:nth-child(4) {
    order: 2;
    width: calc(50% - 10px);
    align-items: flex-end;
  }
}

@media (max-width: 768px) {
  .footer__item .logo__img {
    width: 130px;
    height: 70px;
  }

  .footer__item .logo__text {
    width: 191px;
    height: 20px;
  }
}

@media (max-width: 575px) {
  .footer__item:nth-child(1) {
    width: 100%;
    align-items: center;
  }

  .footer__item:nth-child(2) {
    order: 2;
  }

  .footer__item:nth-child(3) {
    order: 2;
  }

  .footer__item:nth-child(4) {
    order: 4;
    width: 100%;
    align-items: flex-start;
  }

  .footer__item .logo__img {
    width: 78px;
    height: 47px;
  }

  .footer__item .logo__text {
    width: 117px;
    height: 37px;
  }

  .footer__item .header__actions {
    width: 100%;
  }

  .footer__copy {
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer__copy_item {
    width: 100%;
    gap: 10px;
  }

  .footer__copy_item--right {
    text-align: left;
  }

  .footer__info--second {
    font-size: 14px;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5019607843);
}

.modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  color: rgb(0, 0, 0);
  transform-origin: center;
  transition: transform ease-in-out 0.3s;
}

.modal__close svg {
  display: block;
  transition: transform 0.3s ease-in-out;
  transform-origin: center;
}

.modal__close:hover svg {
  transform: rotate(180deg);
}

.modal__title {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .modal__title {
    font-size: 16px;
  }
}

.modal__title {
  color: #323232;
}

.modal__content {
  background: #ffffff;
  padding: 50px 30px 30px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  z-index: 100;
  position: relative;
  max-width: 520px;
  max-height: 100vh;
  min-height: 200px;
  overflow-y: auto;
}

.modal__content::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.modal__content::-webkit-scrollbar-button {
  display: none;
}

.modal__content::-webkit-scrollbar-track {
  background: transparent;
}

.modal__content--calc {
  max-width: 1330px;
  overflow: visible;
  width: 100%;
}

.modal__content .btn-second .text {
  margin: 0 auto;
}

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

.modal__content .inputs__container label {
  text-align: left;
}

.modal__content p {
  font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

@media (max-width: 575px) {
  .modal__content p {
    font-size: 14px;
  }
}

.modal__content p {
  color: #323232;
}

.modal__success .modal__title {
  margin-bottom: 10px;
}

.modal__inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 0;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.modal__form .form__police span {
  color: inherit;
}

.modal__form textarea {
  height: 120px;
}

.modal .form__police {
  display: flex;
  position: relative;
  cursor: pointer;
}

.modal .form__police.input-error input[type="checkbox"] {
  border: 1px solid #ad5451;
}

.modal .form__police span {
  text-align: left;
}

.modal .form__police span a {
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}

.modal .form__police input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  cursor: pointer;
  min-width: 20px;
  height: 20px;
  border: 1px solid #003e47;
  margin-right: 8px;
  transition: box-shadow ease-in-out 0.3s;
  border-radius: 4px;
}

.modal .form__police input[type="checkbox"]:checked {
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
}

.modal .form__police input[type="checkbox"]:checked::after {
  background: url("data:image/svg+xml;utf8,%3Csvg%20width%3D%2216%22%20height%3D%2212%22%20viewBox%3D%220%200%2016%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M2%205.78947L6.13793%2010L14%202%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22square%22%2F%3E%0A%3C%2Fsvg%3E%0A")
    center/cover no-repeat;
  width: 15px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

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

@media (max-width: 1330px) {
  .modal__content--calc {
    overflow-y: auto;
  }
}

@media (max-width: 575px) {
  .modal__content {
    max-width: 340px;
    padding: 50px 20px 20px;
    gap: 10px;
  }

  .modal__content--calc {
    max-width: 95%;
    width: 100%;
  }

  .modal__content--calc.calc {
    margin-bottom: 0;
  }
}

.mini-gallery__wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 20px;
  max-height: 670px;
}

.mini-gallery__page {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mini-gallery__page .mini-gallery__wrapper:nth-child(2) {
  direction: rtl;
}

.mini-gallery__item {
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.mini-gallery__item:hover .zoom {
  opacity: 1;
}

.mini-gallery__item:hover .zoom::before,
.mini-gallery__item:hover .zoom::after {
  opacity: 1;
}

.mini-gallery__item:hover img {
  transform: scale(1.009);
}

.mini-gallery__item .zoom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 87, 96, 0.2);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: opacity ease-in-out 0.6s;
}

.mini-gallery__item .zoom::after {
  position: absolute;
  top: 20px;
  right: 20px;
  content: "";
  width: 110px;
  height: 110px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  border-radius: 0 30px 0 0;
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0));
  mask-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0));
  z-index: 1;
  opacity: 0;
  transition: opacity ease-in 0.3s;
}

.mini-gallery__item .zoom::before {
  position: absolute;
  bottom: 20px;
  left: 20px;
  content: "";
  width: 110px;
  height: 110px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-radius: 0 0 0 30px;
  -webkit-mask-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.5));
  mask-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.5));
  z-index: 1;
  opacity: 0;
  transition: opacity ease-in 0.3s;
}

.mini-gallery__item .zoom span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0px 9.04px 9.04px 0px rgba(0, 0, 0, 0.2509803922);
  background: linear-gradient(46.27deg, rgba(255, 255, 255, 0.2) -12.56%, rgba(255, 255, 255, 0.5) 100%);
  position: relative;
  overflow: hidden;
  z-index: 5;
}

.mini-gallery__item .zoom span::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  background: url("../images/icons/common/plus.svg") center/cover no-repeat;
  width: 16px;
  height: 16px;
}

.mini-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform linear 0.3s;
}

.mini-gallery__item--1 {
  grid-column: span 3 / span 3;
  grid-row: span 3 / span 3;
}

.mini-gallery__item--2 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 4;
}

.mini-gallery__item--3 {
  grid-row: span 2 / span 2;
  grid-column-start: 1;
  grid-row-start: 4;
}

.mini-gallery__item--4 {
  grid-row: span 2 / span 2;
  grid-column-start: 2;
  grid-row-start: 4;
}

.mini-gallery__item--5 {
  grid-row: span 2 / span 2;
  grid-column-start: 3;
  grid-row-start: 4;
}

.mini-gallery__item--6 {
  grid-column: span 2 / span 2;
  grid-row: span 3 / span 3;
  grid-column-start: 4;
  grid-row-start: 3;
}

@media (max-width: 992px) {
  .mini-gallery__wrapper {
    display: flex;
    flex-wrap: wrap;
    max-height: 100%;
    gap: 10px;
  }

  .mini-gallery__item {
    width: calc((100% - 20px) / 3);
    height: 200px;
  }
}

@media (max-width: 575px) {
  .mini-gallery__page .mini-gallery__item {
    width: calc((100% - 20px) / 2);
    height: 159px;
  }

  .mini-gallery__item {
    width: 100%;
    height: 300px;
  }

  .mini-gallery + .section__btn-center {
    display: none;
  }
}

@media (max-width: 375px) {
  .mini-gallery__item {
    height: 200px;
  }
}

.email {
  width: 20px;
  height: 17px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20width%3D%2220%22%20height%3D%2217%22%20viewBox%3D%220%200%2020%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M15%200H5C2%200%200%201.5%200%205V12C0%2015.5%202%2017%205%2017H15C18%2017%2020%2015.5%2020%2012V5C20%201.5%2018%200%2015%200ZM15.47%206.09L12.34%208.59C11.68%209.12%2010.84%209.38%2010%209.38C9.16%209.38%208.31%209.12%207.66%208.59L4.53%206.09C4.21%205.83%204.16%205.35%204.41%205.03C4.67%204.71%205.14%204.65%205.46%204.91L8.59%207.41C9.35%208.02%2010.64%208.02%2011.4%207.41L14.53%204.91C14.85%204.65%2015.33%204.7%2015.58%205.03C15.84%205.35%2015.79%205.83%2015.47%206.09Z%22%20fill%3D%22url%28%23paint0_linear_554_2642%29%22%2F%3E%0A%3Cdefs%3E%0A%3ClinearGradient%20id%3D%22paint0_linear_554_2642%22%20x1%3D%2222.3861%22%20y1%3D%22-2.55%22%20x2%3D%22-4.81758%22%20y2%3D%2213.4951%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0A%3Cstop%20stop-color%3D%22%2314848D%22%2F%3E%0A%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23003E47%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
}

.email--white {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20width%3D%2220%22%20height%3D%2217%22%20viewBox%3D%220%200%2020%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M15%200H5C2%200%200%201.5%200%205V12C0%2015.5%202%2017%205%2017H15C18%2017%2020%2015.5%2020%2012V5C20%201.5%2018%200%2015%200ZM15.47%206.09L12.34%208.59C11.68%209.12%2010.84%209.38%2010%209.38C9.16%209.38%208.31%209.12%207.66%208.59L4.53%206.09C4.21%205.83%204.16%205.35%204.41%205.03C4.67%204.71%205.14%204.65%205.46%204.91L8.59%207.41C9.35%208.02%2010.64%208.02%2011.4%207.41L14.53%204.91C14.85%204.65%2015.33%204.7%2015.58%205.03C15.84%205.35%2015.79%205.83%2015.47%206.09Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}

.phone {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M19.8881%2014.9201V17.9201C19.8892%2018.1986%2019.8322%2018.4743%2019.7206%2018.7294C19.6091%2018.9846%2019.4454%2019.2137%2019.2402%2019.402C19.035%2019.5902%2018.7927%2019.7336%2018.5289%2019.8228C18.265%2019.912%2017.9855%2019.9452%2017.7081%2019.9201C14.631%2019.5857%2011.6751%2018.5342%209.07812%2016.8501C6.66194%2015.3148%204.61345%2013.2663%203.07812%2010.8501C1.38809%208.2413%200.33636%205.27109%200.00811671%202.1801C-0.0168728%201.90356%200.0159916%201.62486%200.104617%201.36172C0.193243%201.09859%200.335688%200.856786%200.522883%200.651718C0.710078%200.44665%200.937922%200.282806%201.19191%200.170619C1.44589%200.0584315%201.72046%200.000358432%201.99812%209.69524e-05H4.99812C5.48342%20-0.00467949%205.95391%200.167176%206.32188%200.48363C6.68985%200.800084%206.93019%201.23954%206.99812%201.7201C7.12474%202.68016%207.35957%203.62282%207.69812%204.5301C7.83266%204.88802%207.86178%205.27701%207.78202%205.65098C7.70227%206.02494%207.51698%206.36821%207.24812%206.6401L5.97812%207.9101C7.40167%2010.4136%209.47457%2012.4865%2011.9781%2013.9101L13.2481%2012.6401C13.52%2012.3712%2013.8633%2012.1859%2014.2372%2012.1062C14.6112%2012.0264%2015.0002%2012.0556%2015.3581%2012.1901C16.2654%2012.5286%2017.2081%2012.7635%2018.1681%2012.8901C18.6539%2012.9586%2019.0975%2013.2033%2019.4146%2013.5776C19.7318%2013.9519%2019.9003%2014.4297%2019.8881%2014.9201Z%22%20fill%3D%22url%28%23paint0_linear_554_2651%29%22%2F%3E%0A%3Cdefs%3E%0A%3ClinearGradient%20id%3D%22paint0_linear_554_2651%22%20x1%3D%2222.2615%22%20y1%3D%22-2.98924%22%20x2%3D%22-6.90097%22%20y2%3D%2211.6022%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0A%3Cstop%20stop-color%3D%22%2314848D%22%2F%3E%0A%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23003E47%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
}

.phone--white {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M19.8881%2014.9201V17.9201C19.8892%2018.1986%2019.8322%2018.4743%2019.7206%2018.7294C19.6091%2018.9846%2019.4454%2019.2137%2019.2402%2019.402C19.035%2019.5902%2018.7927%2019.7336%2018.5289%2019.8228C18.265%2019.912%2017.9855%2019.9452%2017.7081%2019.9201C14.631%2019.5857%2011.6751%2018.5342%209.07812%2016.8501C6.66194%2015.3148%204.61345%2013.2663%203.07812%2010.8501C1.38809%208.2413%200.33636%205.27109%200.00811671%202.1801C-0.0168728%201.90356%200.0159916%201.62486%200.104617%201.36172C0.193243%201.09859%200.335688%200.856786%200.522883%200.651718C0.710078%200.44665%200.937922%200.282806%201.19191%200.170619C1.44589%200.0584315%201.72046%200.000358432%201.99812%209.69524e-05H4.99812C5.48342%20-0.00467949%205.95391%200.167176%206.32188%200.48363C6.68985%200.800084%206.93019%201.23954%206.99812%201.7201C7.12474%202.68016%207.35957%203.62282%207.69812%204.5301C7.83266%204.88802%207.86178%205.27701%207.78202%205.65098C7.70227%206.02494%207.51698%206.36821%207.24812%206.6401L5.97812%207.9101C7.40167%2010.4136%209.47457%2012.4865%2011.9781%2013.9101L13.2481%2012.6401C13.52%2012.3712%2013.8633%2012.1859%2014.2372%2012.1062C14.6112%2012.0264%2015.0002%2012.0556%2015.3581%2012.1901C16.2654%2012.5286%2017.2081%2012.7635%2018.1681%2012.8901C18.6539%2012.9586%2019.0975%2013.2033%2019.4146%2013.5776C19.7318%2013.9519%2019.9003%2014.4297%2019.8881%2014.9201Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}

.circle {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../images/icons/common/circle.svg") center/contain no-repeat;
  top: 0;
  left: 0;
}

.location {
  display: inline-block;
  width: 17px;
  height: 21px;
  background: url("../images/icons/common/location.svg") center/contain no-repeat;
}

.time {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../images/icons/common/time.svg") center/contain no-repeat;
}

.error {
  display: flex;
  flex-direction: column;
  margin-top: 45px;
}

.error__visual {
  width: 100%;
  max-height: 336px;
}

.error__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.error__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1019607843);
  background: #ffffff;
  padding: 50px 30px;
  border-radius: 30px;
}

.error__content h1 {
  margin-bottom: 10px;
}

.error__content .btn-second {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .error__content {
    padding: 40px 30px;
  }
}

@media (max-width: 575px) {
  .error__content {
    padding: 20px 10px;
  }

  .error__content .btn-second {
    margin-top: 10px;
  }
}

.loader {
  max-width: 770px;
  width: 100%;
  height: 300px;
  z-index: 100;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  border-radius: 30px;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
}

.loader__inner {
  display: flex;
  flex-direction: column;
  z-index: 100;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.loader__track {
  position: absolute;
  background: #d9d9d9;
  width: 100%;
  bottom: 50%;
  left: 0;
  height: 8px;
  border-radius: 20px;
  z-index: 1;
  transform: translateY(50%);
}

.loader__progress {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  left: 0;
  height: 8px;
  border-radius: 20px;
  z-index: 2;
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  animation: progressFill 2s linear infinite;
}

.loader__truck {
  position: relative;
  position: absolute;
  top: 37%;
  transform: translate(-100%, -50%);
  left: 0px;
  animation: move 2s linear infinite;
}

@keyframes move {
  from {
    left: 0%;
  }

  to {
    left: 100%;
  }
}

@keyframes progressFill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes l13 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 575px) {
  .loader {
    padding: 0 10px;
  }
}

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 369.875px;
  box-sizing: border-box;
  touch-action: manipulation;
  background: #f3f3f3;
  border-radius: 14px;
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n + 1) .flatpickr-day.inRange:nth-child(7n + 7) {
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n + 2) .flatpickr-day.inRange:nth-child(7n + 1) {
  box-shadow:
    -2px 0 0 #e6e6e6,
    5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #f3f3f3;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #f3f3f3;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  /* height: 34px; */
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: hidden;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  /* position: absolute; */
  /* top: 0; */
  position: static;
  height: 40px;
  width: 40px;
  /* padding: 10px; */
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  background: #ffffff;
}

.flatpickr-months .flatpickr-prev-month:hover {
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
}

.flatpickr-months .flatpickr-next-month:hover {
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  box-shadow: 0px 0.87px 0.87px 0px rgba(0, 14, 51, 0.0509803922);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  /*
      /*rtl:begin:ignore*/
  left: 20px;
  top: 20px;
  /*
/*rtl:end:ignore*/
}

/*
    /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
      /*rtl:begin:ignore*/
  right: 20px;
  top: 20px;
  /*
/*rtl:end:ignore*/
}

/*
    /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #ffffff;
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  /* fill: #f64747; */
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 16px;
  height: 16px;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  transition: fill 0.1s;
  /* fill: #003e47; */
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  box-sizing: border-box;
  transition: opacity ease-in-out 0.3s;
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
  transition: transform ease-in-out 0.3s;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  width: 9px;
  height: 9px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSI3IiB2aWV3Qm94PSIwIDAgNyA3IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNNC45MTY0MSAwLjE5MjEwNEwwLjE5MjEwMiA0LjkxNjQxQy0wLjIxODI2MyA1LjMyNjc4IDAuMDcyMzcyNCA2LjAyODQzIDAuNjUyNzE1IDYuMDI4NDNINC43MjU2MkM1LjQ0NTE0IDYuMDI4NDMgNi4wMjg0MyA1LjQ0NTE1IDYuMDI4NDMgNC43MjU2MlYwLjY1MjcxN0M2LjAyODQzIDAuMDcyMzc0MyA1LjMyNjc3IC0wLjIxODI2MSA0LjkxNjQxIDAuMTkyMTA0WiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzEyNjhfOTQ2NDQpIi8+CjxkZWZzPgo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXJfMTI2OF85NDY0NCIgeDE9IjYuODU3MzkiIHkxPSItMS45NjIxOCIgeDI9Ii0zLjMyMjc1IiB5Mj0iMy4xNDE1OCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTQ4NDhEIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwM0U0NyIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=")
    center/cover no-repeat;
  transform: rotate(-90deg);
  top: 26%;
  transition: transform ease-in-out 0.3s;
}

.arrowDown:hover::after {
  transform: rotate(45deg);
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  width: 9px;
  height: 9px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSI3IiB2aWV3Qm94PSIwIDAgNyA3IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNNC45MTY0MSAwLjE5MjEwNEwwLjE5MjEwMiA0LjkxNjQxQy0wLjIxODI2MyA1LjMyNjc4IDAuMDcyMzcyNCA2LjAyODQzIDAuNjUyNzE1IDYuMDI4NDNINC43MjU2MkM1LjQ0NTE0IDYuMDI4NDMgNi4wMjg0MyA1LjQ0NTE1IDYuMDI4NDMgNC43MjU2MlYwLjY1MjcxN0M2LjAyODQzIDAuMDcyMzc0MyA1LjMyNjc3IC0wLjIxODI2MSA0LjkxNjQxIDAuMTkyMTA0WiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzEyNjhfOTQ2NDQpIi8+CjxkZWZzPgo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXJfMTI2OF85NDY0NCIgeDE9IjYuODU3MzkiIHkxPSItMS45NjIxOCIgeDI9Ii0zLjMyMjc1IiB5Mj0iMy4xNDE1OCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTQ4NDhEIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwM0U0NyIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=")
    center/cover no-repeat;
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  display: inline-flex;
  gap: 5px;
  text-align: center;
  transform: translate3d(0, 0, 0);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  padding: 10px;
  border-radius: 5px;
  background: #fff;
  width: 80px;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: #003e47;
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: #003e47;
}

.numInputWrapper span.arrowUp:hover::after {
  transform: rotate(-135deg);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  font-size: 14px;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  border: none;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-family: "AR ZOZH";
  font-size: 14px;
  height: auto;
  width: auto;
  padding: 10px;
  position: relative;
  border-radius: 5px;
  background: #fff;
  min-width: 130px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSI3IiB2aWV3Qm94PSIwIDAgNyA3IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNNC45MTY0MSAwLjE5MjEwNEwwLjE5MjEwMiA0LjkxNjQxQy0wLjIxODI2MyA1LjMyNjc4IDAuMDcyMzcyNCA2LjAyODQzIDAuNjUyNzE1IDYuMDI4NDNINC43MjU2MkM1LjQ0NTE0IDYuMDI4NDMgNi4wMjg0MyA1LjQ0NTE1IDYuMDI4NDMgNC43MjU2MlYwLjY1MjcxN0M2LjAyODQzIDAuMDcyMzc0MyA1LjMyNjc3IC0wLjIxODI2MSA0LjkxNjQxIDAuMTkyMTA0WiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzEyNjhfOTQ2NDQpIi8+CjxkZWZzPgo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXJfMTI2OF85NDY0NCIgeDE9IjYuODU3MzkiIHkxPSItMS45NjIxOCIgeDI9Ii0zLjMyMjc1IiB5Mj0iMy4xNDE1OCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTQ4NDhEIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwM0U0NyIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=");
  background-position: center right 10px;
  background-repeat: no-repeat;
  background-size: 9px 9px;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSI3IiB2aWV3Qm94PSIwIDAgNyA3IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNNC45MTY0MSAwLjE5MjEwNEwwLjE5MjEwMiA0LjkxNjQxQy0wLjIxODI2MyA1LjMyNjc4IDAuMDcyMzcyNCA2LjAyODQzIDAuNjUyNzE1IDYuMDI4NDNINC43MjU2MkM1LjQ0NTE0IDYuMDI4NDMgNi4wMjg0MyA1LjQ0NTE1IDYuMDI4NDMgNC43MjU2MlYwLjY1MjcxN0M2LjAyODQzIDAuMDcyMzc0MyA1LjMyNjc3IC0wLjIxODI2MSA0LjkxNjQxIDAuMTkyMTA0WiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzEyNjhfOTQ2NDQpIi8+CjxkZWZzPgo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXJfMTI2OF85NDY0NCIgeDE9IjYuODU3MzkiIHkxPSItMS45NjIxOCIgeDI9Ii0zLjMyMjc1IiB5Mj0iMy4xNDE1OCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjMTQ4NDhEIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwM0U0NyIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=");
  background-position: center right 10px;
  background-repeat: no-repeat;
  background-size: 9px 9px;
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: flex;
  flex: 1;
  margin-bottom: 10px;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 13.9px;
  background: transparent;
  color: #323232;
  margin: 0;
  text-align: center;
  display: block;
  flex: 1;
}

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  box-sizing: border-box;
  display: inline-block;
  display: -webkit-flex;
  gap: 4px;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-around;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.dayContainer + .dayContainer {
  /* -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6; */
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  box-sizing: border-box;
  color: #323232;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  position: relative;
  justify-content: center;
  text-align: center;
  box-shadow: 0px 0.87px 0.87px 0px rgba(0, 14, 51, 0.0509803922);
  border-radius: 5px;
  font-family: "AR ZOZH";
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  background: #ffffff;
  transition:
    background ease-in 0.3s,
    color linear 0.3s;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #14848d;
  color: #fff;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  color: #fff;
  border: none;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n + 1)) {
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  box-shadow:
    -5px 0 0 #e6e6e6,
    5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow:
    -5px 0 0 #569ff7,
    5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

@keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.flatpickr-calendar {
  padding: 20px;
  box-shadow: 0px 0.87px 1.74px 0px rgba(0, 14, 51, 0.2509803922);
}

.flatpickr-next-month {
  width: 40px;
  height: 40px;
  box-shadow: 0px 0.87px 0.87px 0px rgba(0, 14, 51, 0.0509803922);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  width: 6px;
  height: 12px;
} */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: linear-gradient(243.37deg, #14848d -12.96%, #003e47 109.16%);
  color: #fff;
  border-radius: 5px;
  border: none;
}

@media (max-width: 575px) {
  .flatpickr-calendar.open,
  .flatpickr-calendar.inline {
    max-width: 100%;
  }
}

.h2__title {
  font-family: "AR ZOZH", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .h2__title {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .h2__title {
    font-size: 20px;
  }
}
