@charset "UTF-8";

:root {
  --font-family: -apple-system, blinkmacsystemfont, "PT Sans", roboto, oxygen,
    ubuntu, cantarell, "Helvetica Neue", sans-serif;
  --secondary-family: "Futura", sans-serif;
  --primary-color: #e22025;
}

@font-face {
  src: url("../fonts/Futura/Futura-Book.woff2") format("woff2"), url("../fonts/Futura/Futura-Book.woff") format("woff");
  font-family: "Futura";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-height: 500px;
}

.site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

.container {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

button {
  padding: 0;
  border: none;
  cursor: pointer;
  background: transparent;
}

.primary-text {
  color: var(--primary-color) !important;
}

.header {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

@media (min-width: 1140px) {
  .header {
    padding: 0;
  }
}

@media (min-width: 1140px) {
  .header__logo {
    margin-right: 2.25rem;
  }
}

@media (min-width: 1140px) {
  .header__top {
    padding: 0.625rem 0;
    border-bottom: 1px solid #e1e1e1;
  }
}

@media (min-width: 1140px) {
  .header__bottom {
    padding: 0.75rem 0;
  }
}

.header__content {
  display: none;
}

@media (min-width: 1140px) {
  .header__content {
    display: block;
  }
}

.header__socials {
  display: none;
}

@media (min-width: 1140px) {
  .header__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
  }
}

.header__social {
  display: block;
  width: 2rem;
  height: 2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header__social-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1139px) {
  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: calc(100svh - 62px);
    margin-top: 3.875rem;
    padding: 1.25rem 0.9375rem 1.875rem;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    z-index: 101;
  }

  .header__menu.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@media (min-width: 1140px) {
  .header__navs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2.125rem;
  }
}

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

.header__list--submenu.is-active .header__link {
  color: var(--primary-color);
}

.header__list--submenu.is-active .header__link-arrow {
  border-color: var(--primary-color) transparent transparent transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (min-width: 1140px) {
  .header__list--submenu::after {
    content: "";
    position: absolute;
    top: calc(100% + 23px);
    left: -1.1875rem;
    width: 0;
    height: 1px;
    opacity: 0;
    background-color: var(--primary-color);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .has-hover .header__list--submenu:not([disabled]):hover::after {
    opacity: 1;
    width: 4.6875rem;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .has-hover .header__list--submenu:not([disabled]):hover .header__submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .has-hover .header__list--submenu:not([disabled]):hover .header__link {
    color: var(--primary-color);
  }

  .has-hover .header__list--submenu:not([disabled]):hover .header__link-arrow {
    border-color: var(--primary-color) transparent transparent transparent;
  }
}

.header__link {
  padding: 0.625rem 2.4375rem;
  position: relative;
  font-weight: 400;
  font-size: 1.125rem;
  color: #000;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media (min-width: 1140px) {
  .header__link {
    padding: 0;
    font-size: 0.875rem;
  }
}

.has-hover .header__link:not([disabled]):hover {
  color: var(--primary-color);
}

.header__link-arrow {
  display: inline-block;
  margin-left: 5px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 4px 3px 0 3px;
  border-color: #000000 transparent transparent transparent;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.header__submenu {
  display: none;
}

@media (min-width: 1140px) {
  .header__submenu {
	  z-index:100;
    display: block;
    position: absolute;
    top: 100%;
    left: -1.1875rem;
    padding-top: 1.4375rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}

@media (min-width: 1140px) {
  .header__submenu-lists {
    padding: 0.9375rem 0.125rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 300px;
    min-width: 220px;
    -webkit-box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }
}

.header__submenu-link {
  padding-left: 3.375rem;
  color: #000 !important;
}

@media (min-width: 1140px) {
  .header__submenu-link {
    padding: 0.5625rem 0.875rem;
  }

  .has-hover .header__submenu-link:not([disabled]):hover {
    background-color: #f1f1f1;
  }
}

.header__info {
  margin-top: 1.25rem;
  padding: 1.25rem 2.8125rem 0;
  border-top: 1px solid #e1e1e1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 1140px) {
  .header__info {
    display: none;
  }
}

.header__info-lists {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1140px) {
  .header__info-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2.5rem;
  }
}

.header__info-lists:not(:last-child) {
  margin-bottom: 1.4375rem;
}

.header__info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__info-list:not(:last-child) {
  margin-bottom: 1.25rem;
}

@media (min-width: 1140px) {
  .header__info-list:not(:last-child) {
    margin-bottom: 0;
  }
}

.header__info-icon {
  display: block;
  margin-right: 0.375rem;
  width: 1.125rem;
  height: 1.125rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (min-width: 1140px) {
  .header__info-icon {
    width: 1rem;
    height: 1rem;
  }
}

.header__info-text {
  margin: 0;
  font-weight: 400;
  font-size: 1rem;
  color: #000;
  text-decoration: none;
}

@media (min-width: 1140px) {
  .header__info-text {
    font-size: 0.875rem;
  }
}

.header__info-text--large {
  font-size: 1.125rem;
}

.header__info-text--strong {
  font-weight: 700;
}

.header__info-socials {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
}

.header__info-social {
  display: block;
  width: 2.125rem;
  height: 2.125rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__burger {
  width: 2.125rem;
  height: 2.125rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media (min-width: 1140px) {
  .header__burger {
    display: none;
  }
}

.header__burger span {
  position: absolute;
  left: 0;
  right: 0;
  width: 0.875rem;
  height: 2px;
  margin: auto;
  display: block;
  background-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.header__burger span:first-child {
  top: 0.6875rem;
}

.header__burger span:nth-child(2) {
  top: 1rem;
}

.header__burger span:nth-child(3) {
  bottom: 0.6875rem;
}

.header__burger.is-active {
  background-color: #fff;
}

.header__burger.is-active span {
  background-color: var(--primary-color);
}

.header__burger.is-active span:nth-child(1) {
  top: 1.0625rem;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header__burger.is-active span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.header__burger.is-active span:nth-child(3) {
  bottom: 0.9375rem;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header__actions {
  display: none;
}

@media (min-width: 1140px) {
  .header__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.9375rem;
  }
}

.header__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__action-icon {
  display: inline-block;
  margin-right: 0.375rem;
  width: 1rem;
  height: 1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header__action-link {
  font-weight: 700;
  font-size: 1.125rem;
  color: #000;
  text-decoration: none;
}

.p-logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  font-size: 0.75rem;
  color: #000;
  text-decoration: none;
}

@media (min-width: 1140px) {
  .p-logo {
    font-size: 1rem;
  }
}

.p-logo__image {
  display: block;
  margin-right: 0.3125rem;
  width: 2.125rem;
  height: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (min-width: 1140px) {
  .p-logo__image {
    margin-right: 0.75rem;
    width: 2.75rem;
  }
}

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

.btn-primary {
  padding: 0.6875rem 1.875rem;
  font-weight: 400;
  font-size: 0.875rem;
  color: #fff;
  width: 100%;
  background-color: var(--primary-color);
  border: 2px solid transparent;
  border-radius: 0.375rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media (min-width: 1140px) {
  .btn-primary {
    padding: 0.5625rem 1.4375rem;
    width: auto;
  }
}

.has-hover .btn-primary:not([disabled]):hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background-color: transparent;
}

.footer {
  color: #fff;
  padding: 0 !important;
}

.footer__top {
  padding: 1.25rem 0 2.5rem;
  background: #2c2d26;
}

@media (min-width: 1140px) {
  .footer__top {
    padding: 2.1875rem 0 2.5rem;
  }
}

@media (min-width: 1140px) {
  .footer__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 1140px) {
  .footer__left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 3.125rem 7.125rem;
  }
}

.footer__logo {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #fff;
}

.footer__logo .p-logo__image {
  width: 2.375rem;
}

@media (min-width: 1140px) {
  .footer__logo {
    margin-bottom: 1.875rem;
    font-size: 1.125rem;
  }

  .footer__logo .p-logo__image {
    width: 3.125rem;
  }
}

.footer__socials-title {
  margin-bottom: 0.625rem;
  font-weight: 400;
  font-size: 0.75rem;
  color: #fff;
  text-align: center;
}

@media (min-width: 1140px) {
  .footer__socials-title {
    font-size: 0.875rem;
    text-align: left;
  }
}

.footer__socials-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 1140px) {
  .footer__socials-items {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}

.footer__socials-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.footer__socials-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
}

.footer__socials-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.footer__nav {
  margin-top: 2.625rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.1875rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.0625rem 3.1875rem;
}

@media (min-width: 1140px) {
  .footer__nav {
    margin-top: 0.625rem;
    gap: 1.25rem 3.75rem;
  }
}

.footer__link {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  color: #fff;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

@media (min-width: 1140px) {
  .footer__link {
    font-size: 0.875rem;
  }
}

.has-hover .footer__link:not([disabled]):hover {
  color: var(--primary-color);
}

.footer__right {
  margin-top: 2.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 1140px) {
  .footer__right {
    margin-top: 0.3125rem;
  }
}

.footer__number {
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__number-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 0.375rem;
  width: 1rem;
  height: 1rem;
}

.footer__button {
  width: auto;
  padding-block: 0.5rem;
  font-size: 0.75rem;
}

@media (min-width: 1140px) {
  .footer__button {
    padding-inline: 1.75rem;
  }
}

.footer__feedbacks {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
}

.footer__feedback {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 2rem;
  height: 2rem;
}

.footer__feedback-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.footer__bottom {
  padding: 0.625rem 0;
  font-family: var(--secondary-family);
  font-size: 0.75rem;
  text-align: center;
  color: #e9e9db;
  background-color: #242520;
}

@media (min-width: 1140px) {
  .footer__bottom {
    line-height: 217%;
  }

  .footer__bottom br {
    display: none;
  }
}

.footer__map {
  position: relative;
}

.footer__map-block {
  padding: 0.9375rem;
  color: #000;
}

@media (min-width: 1140px) {
  .footer__map-block {
    position: absolute;
    top: 3%;
    bottom: 3%;
    right: 5%;
    padding: 2%;
    margin: auto;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    background: #fff;
    border-radius: 5px;
    z-index: 9;
  }
}

.footer__map-title {
  margin-top: 0;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.4;
}

@media (min-width: 1140px) {
  .footer__map-title {
    margin-bottom: 2.5rem;
    font-size: 1.5625rem;
    line-height: 2.1875rem;
  }
}

.footer__map-title::after {
  content: "";
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  margin: 3% 0;
  background: -webkit-gradient(linear, left top, right top, from(#d31c23), color-stop(80%, #207cca), to(#366be0));
  background: linear-gradient(to right, #d31c23 0%, #207cca 80%, #366be0 100%);
}

.footer__map-text p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer__map-text p:not(:last-child) {
  margin-bottom: 0.75rem;
}

@media (min-width: 1140px) {
  .footer__map-text p {
    font-size: 1rem;
  }
}

.footer__map__iframe {
  display: block;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.footer__map__iframe iframe {
  width: 100%;
  height: 100%;
}