:root {
  --color-main-titles: #9D0208;
  --color-btn-hover: #9D0208;
  --color-darkbackground: #ffffff;
  --color-menu: #03071E;
  --color-menu-text: #262626;
  --fonts-main: "Play", sans-serif;
  --fonts-footer-menu: "Roboto", sans-serif;
}

.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

.preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 50;
  background-color: #f2f2f2;
}
.preloader__spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top-color: var(--color-main-titles);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  margin-bottom: 0;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

body {
  font-family: var(--fonts-main);
  line-height: normal;
  font-weight: 400;
  color: var(--color-menu-text);
  background: #f2f2f2;
}

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

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

button {
  padding: 0;
  line-height: 0;
  background-color: transparent;
}

.section {
  padding: 16px 0;
}
@media screen and (min-width: 768px) {
  .section {
    padding: 32px 0;
  }
}
@media screen and (min-width: 1280px) {
  .section {
    padding: 60px 0;
  }
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .container {
    max-width: 994px;
  }
}
@media screen and (min-width: 1280px) {
  .container {
    max-width: 1181px;
  }
}
@media screen and (min-width: 1680px) {
  .container {
    max-width: 1650px;
  }
}

.fixed {
  overflow-y: hidden;
}

.show-error {
  display: block !important;
}

.header {
  padding: 16px 0;
}
.header__wraper {
  display: flex;
  align-items: center;
  max-width: 1440px;
}
@media screen and (max-width: 1280px) {
  .header__wraper {
    justify-content: space-between;
  }
}

.logo {
  margin-right: 30px;
  flex-shrink: 0;
}
.logo__container {
  position: relative;
}
.logo__svg {
  display: block;
  width: 156px;
  height: 51px;
}
.logo__title {
  font-family: var(--fonts-main);
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--color-btn-hover);
}
.logo__sub-title {
  color: #515151;
  font-family: var(--fonts-main);
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .logo__svg {
    width: 189px;
    height: 62px;
  }
}
@media screen and (min-width: 1280px) {
  .logo__svg {
    width: 134px;
    height: 44px;
  }
}
@media screen and (min-width: 1680px) {
  .logo__svg {
    width: 189px;
    height: 62px;
  }
}

.burger-button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  border: none;
}
.burger-button__line {
  height: 4px;
  width: 100%;
  background-color: var(--color-btn-hover);
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .burger-button {
    width: 35px;
    height: 26px;
  }
}
@media screen and (min-width: 1280px) {
  .burger-button {
    display: none;
  }
}

.nav-menu {
  margin-bottom: 20px;
}
.nav-menu__item {
  font-size: 16px;
  color: var(--color-menu);
}
.nav-menu__item:not(:last-child) {
  margin-bottom: 20px;
}
.desktop .nav-menu {
  display: flex;
  margin-right: 55px;
  align-items: center;
  text-align: center;
  margin-bottom: 0;
}
.desktop .nav-menu__item {
  margin-bottom: 0;
}
.desktop .nav-menu__item.active .nav-menu__link {
  color: var(--color-btn-hover);
}
.mob-backdrop .nav-menu {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-darkbackground);
}
.mob-backdrop .nav-menu__item {
  color: var(--color-darkbackground);
}
.desktop .nav-menu__item:not(:last-child) {
  margin-right: 21px;
}
.desktop .nav-menu__link {
  transition: color 250ms linear;
}
.desktop .nav-menu__link:hover {
  color: var(--color-btn-hover);
}
@media screen and (min-width: 1280px) {
  .nav-menu__item {
    font-size: calc(
    14px + 2 *
      ((100vw - 1280px) / 640)
  );
  }
}
@media screen and (min-width: 1280px) and (max-width: 1680px) {
  .desktop .nav-menu {
    margin-right: 46px;
  }
}
@media screen and (min-width: 1680px) {
  .desktop .nav-menu {
    margin-right: 55px;
  }
  .desktop .nav-menu__item:not(:last-child) {
    margin-right: 30px;
  }
}
@media screen and (min-width: 1920px) {
  .nav-menu__item {
    font-size: 16px;
  }
}

.nav-authorization {
  display: none;
}

.authorization {
  display: block;
  font-size: 16px;
  transition: color 250ms linear;
  color: var(--color-menu);
}
.authorization:hover, .authorization:focus {
  color: var(--color-btn-hover);
}
@media screen and (min-width: 1280px) {
  .authorization {
    font-size: calc(
    14px + 2 *
      ((100vw - 1280px) / 640)
  );
  }
}
@media screen and (min-width: 1920px) {
  .authorization {
    font-size: 16px;
  }
}

.messengers {
  display: flex;
}
.messengers.mob-menu {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-darkbackground);
}
.messengers__item:not(:last-child) {
  margin-right: 16px;
}
.messengers__item, .messengers__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.messengers__icon {
  color: var(--color-main-titles);
}
.messengers.mob-menu .messengers__icon {
  color: var(--color-darkbackground);
}
.desktop .messengers {
  margin-bottom: 0;
  margin-right: 61px;
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .messengers__item:not(:last-child) {
    margin-right: 22px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1680px) {
  .desktop .messengers {
    margin-right: 45px;
  }
  .messengers__link {
    font-size: 17px;
  }
}

.languages {
  margin-bottom: 20px;
  position: relative;
}
.languages__btn,
.languages .languages-list__link {
  font-size: 16px;
}
.languages__btn {
  border: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 250ms linear;
  cursor: pointer;
  text-transform: uppercase;
  color: var(--color-menu);
}
.languages__btn::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url("../images/header/arrow.svg");
  background-repeat: no-repeat;
  transform: rotate(180deg);
  transition: transform 250ms linear, border 250ms linear;
}
.languages__btn.active-lng::after {
  transform: rotate(0deg);
}
.desktop .languages__btn:focus::after, .desktop .languages__btn:hover::after {
  border-color: var(--color-btn-hover);
}
.desktop .languages__btn:focus, .desktop .languages__btn:hover {
  color: var(--color-btn-hover);
}
.mob-backdrop .languages__btn {
  color: var(--color-darkbackground);
}
.mob-backdrop .languages__btn::after {
  background-image: url("../images/header/arrow-mob.svg");
}
.desktop .languages {
  margin-bottom: 0;
}
@media screen and (min-width: 1280px) {
  .languages__btn,
  .languages .languages-list__link {
    font-size: calc(
    14px + 2 *
      ((100vw - 1280px) / 640)
  );
  }
}
@media screen and (min-width: 1920px) {
  .languages__btn,
  .languages .languages-list__link {
    font-size: 16px;
  }
}

.languages-list {
  position: absolute;
  height: 0;
  left: -15px;
  top: 20px;
  overflow: hidden;
  z-index: 100;
  transition: height 250ms linear;
}
.languages-list.show-lngs {
  height: 76px;
}
.languages-list__item {
  background-color: var(--color-darkbackground);
  width: 46px;
  height: 25px;
  transition: color 250ms linear, background-color 250ms linear;
  cursor: pointer;
  color: var(--color-menu);
}
.languages-list__item:nth-child(1) {
  border-top: 1px solid var(--color-btn-hover);
  border-left: 1px solid var(--color-btn-hover);
  border-right: 1px solid var(--color-btn-hover);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.languages-list__item:nth-child(2) {
  border-left: 1px solid var(--color-btn-hover);
  border-right: 1px solid var(--color-btn-hover);
}
.languages-list__item:nth-child(3) {
  border-bottom: 1px solid var(--color-btn-hover);
  border-left: 1px solid var(--color-btn-hover);
  border-right: 1px solid var(--color-btn-hover);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.languages-list__item:hover, .languages-list__item:focus {
  background-color: var(--color-btn-hover);
  color: var(--color-darkbackground);
}
.languages-list__link {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 3px 0;
}
@media screen and (max-width: 1366px) {
  .desktop .languages-list__link {
    padding: 5px 0;
  }
}

.mob-backdrop {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(157, 2, 8, 0.3);
  overflow: auto;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s;
}
.mob-backdrop__container {
  position: absolute;
  background-color: var(--color-btn-hover);
  padding: 60px 20px;
  height: 100vh;
  width: 250px;
  right: 0;
  top: 0;
  transform: translateX(100%);
  overflow-x: auto;
  transition: transform 0.25s;
  z-index: 20;
}
.mob-backdrop.is-open .mob-backdrop__container {
  transform: translateX(0);
}

.close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 28px;
  top: 23px;
  width: 20px;
  height: 20px;
  border: none;
}
.close-btn__icon {
  font-size: 20px;
  color: var(--color-darkbackground);
}

.desktop {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media screen and (max-width: 1280px) {
  .desktop {
    display: none;
  }
}

.title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-main-titles);
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .title {
    font-size: 43px;
  }
}

.section.hero {
  background-repeat: repeat;
  background-position: 0 105px;
  background-size: auto auto;
}
@media screen and (min-width: 360px) {
  .section.hero {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .section.hero {
    background-image: url("../images/hero/squares_back.png");
    padding-bottom: 67px;
  }
}
.section.hero .container {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1280px) {
  .section.hero .container {
    justify-content: center;
  }
}
@media screen and (min-width: 1280px) {
  .section.hero {
    display: flex;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.hero__content {
  flex: 0 0 100%;
  display: flex;
}

.title-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 32px;
  padding: 0 0 18px 0;
}
@media screen and (min-width: 768px) {
  .title-container {
    padding: 0 0 50px 0;
  }
}
@media screen and (max-width: 1280px) {
  .title-container {
    justify-content: center;
  }
}
@media screen and (min-width: 1280px) {
  .title-container {
    width: 50%;
    position: relative;
    height: 90%;
    padding: 38px 76px 38px 0;
  }
}
@media screen and (min-width: 1680px) {
  .title-container {
    padding-right: 131px;
  }
}

.boxes-wraper {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.boxes-wraper__img:first-child {
  margin-right: 16px;
}
@media screen and (max-width: 1280px) {
  .boxes-wraper {
    display: none;
  }
}

.wrapper-hero {
  display: flex;
}

.title-hero {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 400;
  color: var(--color-menu);
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .title-hero {
    font-size: 23px;
  }
}

.text-hero {
  font-size: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .text-hero {
    font-size: 53px;
  }
}

.hero-img {
  position: relative;
}
@media screen and (max-width: 1280px) {
  .hero-img__nature, .hero-img__background {
    width: 97%;
  }
  .hero-img__background {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
  }
}
@media screen and (min-width: 1280px) {
  .hero-img {
    flex: 0 0 50%;
    transform: translate(-100%, 0px);
    padding: 0 0 31.72% 0;
  }
  .hero-img__nature, .hero-img__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero-img__nature {
  margin-left: auto;
}
.hero-img__car {
  position: absolute;
  width: 100%;
  top: 0;
  pointer-events: none;
}
@media screen and (min-width: 1280px) {
  .hero-img__car {
    width: 95%;
    top: 15px;
  }
}

.info-hero {
  color: var(--color-menu-text);
  font-size: 14px;
  line-height: 1.6428571429;
  letter-spacing: 0.42px;
  margin-top: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .info-hero {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.48px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1680px) {
  .info-hero {
    max-width: 437px;
  }
}

.leave-phone-hero {
  position: absolute;
  top: 14vw;
  right: -12vw;
  border-radius: 10px;
  background: #fff;
  transform: rotate(9.995deg);
  font-size: 14px;
  line-height: 1.4;
  padding: 28px 48px;
  z-index: 3;
}
.leave-phone-hero::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 19px;
  background-color: var(--color-darkbackground);
  z-index: 2;
  width: 22px;
  height: 22px;
  transform: translateY(50%) rotate(45deg);
  border-bottom-right-radius: 8px;
}
@media screen and (max-width: 1280px) {
  .leave-phone-hero {
    display: none;
  }
}
@media screen and (min-width: 1680px) {
  .leave-phone-hero {
    top: 16vw;
    right: -6vw;
    font-size: 16px;
    padding: 30px 49px;
  }
}

.leave-phone-time {
  color: var(--color-main-titles);
}

.wrap-form-phone {
  position: relative;
}

.leave-phone-hero-mob {
  display: none;
  position: absolute;
  top: -85px;
  right: 3vw;
  border-radius: 9px;
  background: #fff;
  transform: rotate(-0.737deg);
  font-size: 14px;
  line-height: 1.4;
  padding: 26px 47px 26px 47px;
  z-index: 3;
}
.leave-phone-hero-mob::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  right: 18px;
  background-color: var(--color-darkbackground);
  z-index: 2;
  width: 22px;
  height: 22px;
  transform: translateY(50%) rotate(45deg);
  border-bottom-right-radius: 8px;
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .leave-phone-hero-mob {
    display: block;
  }
}

.form-phone {
  width: 100%;
  position: relative;
}
.form-phone--mob {
  display: none;
}
.form-phone__label {
  font-size: 14px;
  line-height: 140%;
  display: block;
  text-align: left;
  margin-bottom: 7px;
}
.form-phone__wraper {
  display: flex;
  align-items: center;
}
.form-phone__field {
  box-sizing: border-box;
  border-radius: 10px;
  width: 100%;
  height: 43px;
  border: none;
  padding: 0 40px;
  transition: outline 250ms linear;
}
.form-phone__field::-moz-placeholder {
  font-size: 14px;
  line-height: 140%;
  color: #7a7373;
}
.form-phone__field::placeholder {
  font-size: 14px;
  line-height: 140%;
  color: #7a7373;
}
.form-phone__field:focus {
  outline: none;
}
.form-phone__submit {
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 42px;
  border-radius: 10px;
  background: var(--color-btn-hover);
  color: var(--color-darkbackground);
  border: none;
  box-shadow: 0px 35px 25px -25px rgba(157, 2, 8, 0.5);
  transition: background 250ms linear;
  cursor: pointer;
  margin-left: -105px;
  flex-shrink: 0;
}
.form-phone__submit:hover, .form-phone__submit:focus {
  background: rgba(157, 2, 8, 0.8);
}
.form-phone__icon {
  font-size: 21px;
}
.form-phone__error {
  display: none;
}
.form-phone__error.show-error {
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .form-phone__field::-moz-placeholder {
    font-size: 16px;
  }
  .form-phone__label, .form-phone__field::placeholder, .form-phone__submit {
    font-size: 16px;
  }
  .form-phone__icon {
    font-size: 24px;
  }
  .form-phone__field {
    height: 80px;
  }
  .form-phone__submit {
    max-width: 265px;
    height: 60px;
    gap: 16px;
    margin-left: -145px;
  }
}
@media screen and (min-width: 768px) {
  .form-phone__error {
    position: absolute;
    left: 0;
    bottom: -20px;
    font-size: 14px;
    color: var(--color-main-titles);
  }
}
@media screen and (max-width: 1280px) {
  .form-phone {
    margin: 0 auto;
  }
  .form-phone--desktop {
    display: none;
  }
  .form-phone--mob {
    display: block;
  }
  .form-phone__field {
    max-width: none;
    width: 100%;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1680px) {
  .form-phone__field {
    max-width: 350px;
    height: 72px;
  }
  .form-phone__submit {
    max-width: 238px;
    height: 54px;
  }
}
@media screen and (min-width: 1680px) {
  .form-phone__field {
    max-width: 529px;
  }
}
@media screen and (max-width: 768px) {
  .form-phone {
    width: 100%;
  }
  .form-phone__wraper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .form-phone__submit {
    margin-left: 0;
  }
}

.section.services {
  padding-bottom: 0;
  padding-top: 42px;
}
@media screen and (min-width: 498px) {
  .section.services {
    padding-top: 64px;
  }
}
@media screen and (min-width: 1280px) {
  .section.services {
    padding-top: 20px;
  }
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -16px;
  margin-right: -20px;
  padding: 5px 0 32px;
  position: relative;
  z-index: 1;
}
.services-list__item {
  display: flex;
  align-items: center;
  margin-top: 16px;
  margin-right: 20px;
  border-radius: 10px;
  background-color: var(--color-darkbackground);
  height: 189px;
  padding: 0 10px 0 19px;
  width: 100%;
  max-width: 526px;
}
.services-list__icon {
  color: var(--color-main-titles);
  font-size: 40px;
}
.services-list__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.services-list__title {
  font-size: 20px;
  line-height: 1.14;
  letter-spacing: 0.6px;
  color: var(--color-main-titles);
}
.services-list__text {
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.28px;
  color: var(--color-menu-text);
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .services-list {
    padding: 15px 0 0;
  }
  .services-list__item {
    flex-basis: calc((100% - 40px) / 2);
    height: 256px;
    padding: 0 16px 0 26px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .services-list__icon {
    font-size: 60px;
  }
  .services-list__title {
    font-size: 24px;
    letter-spacing: 0.72px;
  }
  .services-list__text {
    font-size: 16px;
    letter-spacing: 0.32px;
  }
}
@media screen and (min-width: 1280px) {
  .services-list {
    margin-top: -22px;
    margin-right: -14px;
  }
  .services-list__item {
    flex-basis: calc((100% - 42px) / 3);
    height: 182px;
    padding: 0 24px;
    margin-top: 22px;
    margin-right: 14px;
  }
  .services-list__container {
    flex-direction: row;
  }
}
@media screen and (min-width: 1680px) {
  .services-list {
    padding: 45px 0 0;
    margin-top: -32px;
    margin-right: -20px;
  }
  .services-list__item {
    flex-basis: calc((100% - 60px) / 3);
    height: 256px;
    padding: 0 50px;
    margin-top: 32px;
    margin-right: 20px;
  }
  .services-list__container {
    gap: 16px;
  }
  .services-list__text {
    margin-top: 16px;
  }
}

.services .marquee {
  font-size: 28px;
  color: var(--color-darkbackground);
  background-color: var(--color-menu);
  white-space: nowrap;
  overflow-x: hidden;
  position: relative;
  height: 54px;
  padding: 10px 0 11px;
  transform: rotate(-4.3deg);
}
.services .marquee__name {
  position: relative;
  margin-right: 10px;
  margin-left: 20px;
}
.services .marquee__icon {
  font-size: 17px;
  color: #F2D53C;
}
.services .marquee__icon::before {
  display: inline-block;
}

.section.about {
  background-image: url("../images/about/squares-back.png");
  background-position: -65px 0px;
  background-repeat: no-repeat;
  padding-top: 32px;
  overflow-x: hidden;
}
@media screen and (min-width: 360px) {
  .section.about {
    background-image: url("../images/about/squares-back.png");
  }
}
@media screen and (min-width: 768px) {
  .section.about {
    background-image: url("../images/about/squares-back.png");
    background-position: 25px -60px;
    padding-top: 37px;
  }
}
@media screen and (min-width: 1280px) {
  .section.about {
    padding-top: 120px;
  }
}
@media screen and (max-width: 1280px) {
  .section.about .container {
    max-width: none;
  }
}

.about__title {
  margin-bottom: 16px;
}
.about__body {
  font-size: 16px;
  line-height: 160%;
  font-family: var(--fonts-footer-menu);
  letter-spacing: 0.48px;
  margin-bottom: 17px;
}
.about__container-blocks {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.about__container-text {
  background-color: var(--color-darkbackground);
  padding: 16px 18px;
  flex-basis: 50%;
  border-radius: 12px;
}
.about__title-text {
  color: var(--color-main-titles);
  font-size: 24px;
  line-height: 140%;
  margin-bottom: 16px;
}
.about__wraper-img {
  position: relative;
  margin-bottom: 38px;
}
.about__wraper-img::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 27, 27, 0.46);
  border-radius: 8px;
}
.about__img {
  width: 100%;
  border-radius: 8px;
}
.about__content {
  position: relative;
  z-index: 1;
}
.about__wraper {
  position: absolute;
  bottom: -9%;
  right: -2%;
  z-index: 5;
  width: 54%;
  height: calc(
    71px + 60 *
      ((100vw - 360px) / 408)
  );
}
.about__wraper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(157, 2, 8, 0.53);
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
  -webkit-clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
  background-image: url("../images/about/road.svg");
  background-position-y: 50%;
  background-repeat: repeat-x;
  background-size: 18vw 0.5vw;
  animation: aboutRoad 8s linear infinite;
}
.about__in-wraper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
}
.about__in-wraper::before, .about__in-wraper::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-repeat: repeat-x;
  background-size: auto 37%;
}
.about__in-wraper::before {
  content: "";
  background-image: url("../images/about/carNew.svg");
  background-position: 0 0;
  animation: aboutHigherCars 300s linear infinite;
}
.about__in-wraper::after {
  content: attr(data-car);
  background-image: url("../images/about/carNew.svg");
  background-position: 0 90%;
  animation: aboutHigherCars 300s linear infinite;
  transform: scaleX(-1);
}
@media screen and (min-width: 360px) {
  .about__body {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 498px) {
  .about__body {
    margin-bottom: 110px;
  }
}
@media screen and (max-width: 768px) {
  .about__container-blocks {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .about__wraper {
    width: 47%;
    bottom: -6%;
  }
  .about__wraper-img {
    margin-bottom: 60px;
  }
  .about__wraper-img::after, .about__img {
    border-radius: 23px;
  }
  .about__container-text {
    padding: 40px 16px;
  }
  .about__container-text--last {
    padding: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .about__title {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 1280px) {
  .about__content {
    margin: 0 auto;
  }
  .about__body {
    max-width: 994px;
    margin: 0 auto;
  }
  .about__wraper-big-img {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .about__img {
    display: none;
  }
  .about__container-content {
    display: flex;
  }
  .about__content {
    flex: 0 0 100%;
  }
  .about__title, .about__body {
    width: 50%;
  }
  .about__title {
    text-align: left;
    margin-bottom: 32px;
  }
  .about__body {
    max-width: 800px;
    margin-bottom: 0;
  }
  .about__container-text {
    padding: 10px 21px;
  }
  .about__content .about__wraper {
    display: none;
  }
  .about__wraper-big-img {
    position: relative;
    flex: 0 0 50%;
    transform: translate(-100%, 0px);
  }
  .about__wraper-img {
    margin-bottom: 0;
  }
  .about__img-big {
    position: absolute;
    width: 84.5%;
    height: 97.8%;
    top: 0;
    right: 0;
    max-width: 100%;
    margin-left: auto;
  }
  .about__img-big::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 27, 27, 0.46);
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
  }
  .about__img-big img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
  }
  .about__wraper {
    bottom: -2%;
    max-width: 510px;
    width: 53%;
    height: 140px;
    right: 0%;
    overflow-x: hidden;
  }
  .about__wraper::before {
    background-size: 167px 5px;
    animation: aboutRoad1280 8s linear infinite;
  }
  .about__in-wraper::before, .about__in-wraper::after {
    animation: aboutCar1280 3s linear infinite;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1680px) {
  .about__title-text {
    font-size: 20px;
  }
  .about__body {
    font-size: 14px;
    letter-spacing: 0.42px;
  }
  .about__container-blocks {
    gap: 16px;
  }
}
@media screen and (min-width: 1680px) {
  .about__wraper {
    height: 170px;
  }
  .about__in-wraper::before, .about__in-wraper::after {
    animation: aboutCar1680 3s linear infinite;
  }
  .about__container-text {
    padding: 40px 30px;
  }
}

@keyframes aboutRoad {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -18vw;
  }
}
@keyframes aboutRoad1280 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -168px;
  }
}
@keyframes aboutCar1280 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -96px;
  }
}
@keyframes aboutCar1680 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -116px;
  }
}
@keyframes aboutHigherCars {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -2000%;
  }
}
@media screen and (min-width: 1280px) {
  .wraper-sections {
    background-image: url(../images/cost/box-blue-laptop.png), url(../images/cost/box-yellow-laptop.png);
    background-position: 0 74%, 100% 37%;
    background-repeat: no-repeat, no-repeat;
  }
}
@media screen and (min-width: 1680px) {
  .wraper-sections {
    background-image: url(../images/cost/box-blue.png), url(../images/cost/box-yellow.png);
    background-position: 0 76%, 100% 35%;
  }
}

.cost__title {
  text-align: center;
  margin-bottom: 32px;
}
.cost__wraper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 7px;
  width: 100%;
}
.cost__icon {
  font-size: calc(
    24px + 29 *
      ((100vw - 360px) / 408)
  );
  margin-right: 7px;
}
.cost__price {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.353px;
  color: var(--color-darkbackground);
}
.cost__number {
  color: #219653;
}
@media screen and (min-width: 687px) {
  .cost__icon {
    margin-right: 16px;
  }
}
@media screen and (min-width: 768px) {
  .cost__icon {
    font-size: 53px;
    margin-right: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .cost__wraper {
    margin-top: 10px;
  }
  .cost__price {
    font-size: 23px;
    letter-spacing: 0.496px;
  }
}
@media screen and (min-width: 1280px) {
  .cost__title {
    margin-bottom: 60px;
    text-align: left;
  }
  .cost__wraper {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1280px) and (max-width: 1680px) {
  .cost__wraper {
    bottom: -24px;
  }
}

.calc {
  max-width: 957px;
  margin: 0 auto;
  border-radius: 27px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.calc::before {
  content: "";
  background-image: linear-gradient(rgba(27, 27, 27, 0.77), rgba(27, 27, 27, 0.77)), url(../images/cost/cost-mob.jpg);
  filter: blur(4.5px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 27px;
}
.calc__title {
  font-size: 30px;
  letter-spacing: 0.179px;
  color: var(--color-darkbackground);
  margin-bottom: 10px;
}
.calc__note {
  font-size: 14px;
  color: #fff;
  margin-bottom: 32px;
}
.calc__star {
  color: var(--color-main-titles);
  font-weight: 700;
}
.calc__label {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.calc__wraper-label {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.calc__icon {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-darkbackground);
}
.calc__icon-btn {
  font-size: 13.5px;
  color: var(--color-darkbackground);
}
.calc__name {
  font-size: 20px;
  letter-spacing: 0.253px;
  color: var(--color-darkbackground);
}
.calc__input {
  padding: 11.85px 14px;
  border-radius: 7px;
  font-size: 14px;
  color: #000000;
  width: 100%;
}
.calc__btn {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  background: var(--color-btn-hover);
  border-radius: 10px;
  padding: 14.75px 18px;
  border: none;
  color: var(--color-darkbackground);
  cursor: pointer;
  transition: background-color 250ms linear;
}
.calc__btn:hover, .calc__btn:focus {
  background-color: rgba(157, 2, 8, 0.8);
}
.calc__btn.calc-disabled {
   background-color: #c2c2c2;
 }
 .calc__btn-spinner.active {
   width: 19px;
   height: 19px;
   border: 3px solid #ccc;
   border-top-color: var(--color-main-titles);
   border-radius: 50%;
   animation: spin 1s infinite linear;
 }
.calc__container-error {
  display: none;
  color: var(--color-darkbackground);
  font-size: calc(
    12px + 4 *
      ((100vw - 360px) / 920)
  );
  margin-left: 16px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .calc {
    padding: 32px;
  }
  .calc::before {
    background-image: linear-gradient(rgba(27, 27, 27, 0.77), rgba(27, 27, 27, 0.77)), url(../images/cost/cost-tablet.jpg);
  }
  .calc__wraper-label {
    margin-bottom: 0;
    margin-right: 22px;
  }
  .calc__label {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
  }
  .calc__name {
    white-space: nowrap;
  }
  .calc__input {
    max-width: 62.75%;
  }
  .calc__container-error {
    margin-left: 40%;
    margin-bottom: 36px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .calc__title {
    font-size: 43px;
    letter-spacing: 0.252px;
  }
  .calc__note {
    font-size: 16px;
  }
  .calc__icon {
    font-size: 28px;
    margin-right: 11px;
  }
  .calc__name {
    font-size: 24px;
    letter-spacing: 0.356px;
  }
  .calc__input {
    font-size: 16px;
    border-radius: 10px;
    padding: 14.2px 20px;
  }
  .calc__icon-btn {
    font-size: 19px;
  }
  .calc__btn {
    font-size: 16px;
    gap: 10px;
    padding: 20.5px 18px;
  }
}
@media screen and (min-width: 1280px) {
  .calc {
    padding: 39px 57px 35px;
  }
  .calc::before {
    background-image: linear-gradient(rgba(27, 27, 27, 0.77), rgba(27, 27, 27, 0.77)), url(../images/cost/cost-desktop.jpg);
  }
  .calc__form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }
  .calc__container-label {
    max-width: 753px;
    width: 100%;
  }
  .calc__label {
    margin-bottom: 23px;
  }
  .calc__label:last-of-type {
    margin-bottom: 0;
  }
  .calc__input {
    max-width: 362px;
  }
  .calc__container-error {
    font-size: 16px;
    margin-left: 185px;
  }
  .calc__container-error:last-of-type {
    margin-bottom: 0;
  }
  .calc__container-btn-price {
    position: relative;
    max-width: 276px;
    width: 100%;
  }
  .calc__btn {
    white-space: nowrap;
    margin-left: auto;
  }
}
@media screen and (min-width: 1680px) {
  .calc {
    max-width: 1345px;
    padding: 54px 80px 50px;
  }
  .calc__label {
    margin-bottom: 32px;
  }
  .calc__input {
    max-width: 544px;
    padding: 19.2px 20px;
  }
  .calc__container-btn-price {
    max-width: 388px;
  }
  .calc__container-error {
    margin-left: 225px;
  }
}

.reset-margin {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 768px) {
  .error-pl {
    margin-left: 39%;
  }
}
@media screen and (min-width: 1280px) {
  .error-pl {
    margin-left: 215px;
  }
}
@media screen and (min-width: 1680px) {
  .error-pl {
    margin-left: 255px;
  }
}

.section.questions {
  padding-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .section.questions {
    padding-bottom: 34px;
  }
}
@media screen and (min-width: 1280px) {
  .section.questions {
    padding-bottom: 72px;
  }
}
@media screen and (min-width: 1680px) {
  .section.questions {
    padding-bottom: 120px;
  }
}

.questions__title {
  margin-bottom: 14px;
}
.questions__inform {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-menu);
  margin: 0 auto 16px;
  max-width: 957px;
}
.questions__btn {
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  height: 43px;
  background: var(--color-btn-hover);
  border-radius: 10px;
  border: none;
  color: var(--color-darkbackground);
  margin: 0 auto;
  display: block;
  cursor: pointer;
  transition: background-color 250ms linear;
}
.questions__btn:hover, .questions__btn:focus {
  background-color: rgba(157, 2, 8, 0.8);
}
@media screen and (min-width: 768px) {
  .questions__inform {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .questions__title {
    margin-bottom: 32px;
  }
  .questions__inform {
    margin-bottom: 20px;
  }
  .questions__btn {
    font-size: 16px;
    height: 60px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1680px) {
  .questions__title {
    margin-bottom: 23px;
  }
  .questions__btn {
    max-width: 374px;
  }
}
@media screen and (min-width: 1680px) {
  .questions__inform {
    max-width: 1346px;
  }
  .questions__btn {
    max-width: 525px;
  }
}

.accordion-container {
  max-width: 957px;
  border-top: 2px solid #c6c6c6;
  margin: 0 auto 32px;
}
@media screen and (min-width: 1280px) {
  .accordion-container {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1680px) {
  .accordion-container {
    max-width: 1346px;
    margin-bottom: 20px;
  }
}

.ac {
  border: none;
  margin: 0;
  border-bottom: 2px solid #c6c6c6;
  background-color: transparent;
}

.ac .ac-trigger {
  font-size: 20px;
  font-weight: 700;
  padding: 20px 46px 16px 0;
  font-family: inherit;
  color: var(--color-menu);
}
.ac .ac-trigger::after {
  font-size: 40px;
  color: var(--color-menu);
}
@media screen and (min-width: 768px) {
  .ac .ac-trigger {
    padding-right: 71px;
    padding-bottom: 18px;
  }
  .ac .ac-trigger::after {
    font-size: 70px;
    right: 23px;
  }
}
@media screen and (min-width: 1280px) {
  .ac .ac-trigger {
    padding-right: 135px;
    padding-bottom: 15px;
  }
  .ac .ac-trigger::after {
    font-size: 42px;
    right: 15px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1680px) {
  .ac .ac-trigger {
    padding-top: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .ac .ac-trigger {
    font-size: 28px;
  }
}
@media screen and (min-width: 1680px) {
  .ac .ac-trigger {
    padding-bottom: 21px;
  }
}

.ac .ac-panel .ac-text {
  color: #444054;
  font-size: 14px;
  padding: 0 0 16px 0;
  font-family: inherit;
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .ac .ac-panel .ac-text {
    font-size: 16px;
    padding: 0 0 20px 0;
  }
}

.ac .ac-trigger:focus,
.ac .ac-trigger:hover,
.is-active .ac-trigger {
  color: var(--color-btn-hover);
}

.section.feedback {
  position: relative;
  padding: 32px 0;
}
.section.feedback::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(rgba(27, 27, 27, 0.77), rgba(27, 27, 27, 0.77)), url(../images/feedback/background-mob.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-backdrop-filter: blur(4.5px);
          backdrop-filter: blur(4.5px);
}
@media screen and (min-width: 768px) {
  .section.feedback::before {
    background-image: linear-gradient(rgba(27, 27, 27, 0.77), rgba(27, 27, 27, 0.77)), url(../images/feedback/background-tablet.jpg);
  }
}
@media screen and (min-width: 1280px) {
  .section.feedback {
    padding: 48px 0;
  }
  .section.feedback::before {
    background-image: linear-gradient(rgba(27, 27, 27, 0.77), rgba(27, 27, 27, 0.77)), url(../images/feedback/background-desktop.jpg);
  }
}
@media screen and (min-width: 1680px) {
  .section.feedback {
    padding: 68px 0;
  }
}

.feedback__title {
  text-align: center;
  color: var(--color-darkbackground);
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .feedback__title {
    font-size: 52px;
  }
}
@media screen and (min-width: 1280px) {
  .feedback__title {
    text-align: left;
    margin-bottom: 23px;
    font-size: 30px;
  }
}
@media screen and (min-width: 1680px) {
  .feedback__title {
    font-size: 43px;
    margin-bottom: 32px;
  }
}

.form-feedback {
  display: flex;
  flex-direction: column;
  max-width: 462px;
  margin: 0 auto;
}
.form-feedback__wraper_phone {
  position: relative;
}
.form-feedback__input, .form-feedback__select {
  color: #1b1b1b;
  width: 100%;
  border: 1.4px solid #c4c4c4;
  border-radius: 7px;
  font-size: 14px;
  padding: 12.65px 14px;
}
.form-feedback__input::-moz-placeholder {
  color: #8b8b8b;
}
.form-feedback__input::placeholder {
  color: #8b8b8b;
}
.form-feedback__error {
  display: none;
  color: var(--color-darkbackground);
  margin-left: 15px;
  font-size: calc(
    12px + 2 *
      ((100vw - 360px) / 920)
  );
}
.form-feedback__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  max-height: 60px;
  background: var(--color-btn-hover);
  border-radius: 7px;
  border: none;
  color: var(--color-darkbackground);
  cursor: pointer;
  padding: 11.5px 20px;
  transition: background-color 250ms linear;
}
.form-feedback__btn:hover, .form-feedback__btn:focus {
  background-color: rgba(157, 2, 8, 0.8);
}
.form-feedback__icon {
  font-size: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .form-feedback__input, .form-feedback__select {
    font-size: 16px;
    border-radius: 10px;
    padding: 15px 20px;
  }
  .form-feedback__btn {
    padding: 18px 20px;
    gap: 16px;
    border-radius: 10px;
    font-size: 16px;
  }
  .form-feedback__icon {
    font-size: 24px;
  }
}
@media screen and (max-width: 1280px) {
  .form-feedback__wraper {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .form-feedback {
    flex-direction: row;
    max-width: 1619px;
  }
  .form-feedback__wraper {
    margin-right: 16px;
  }
  .form-feedback__wraper_name {
    flex-basis: 33.7%;
  }
  .form-feedback__wraper_phone {
    flex-basis: 16.2%;
  }
  .form-feedback__error {
    font-size: 14px;
  }
  .form-feedback__btn {
    flex-basis: 25%;
  }
}
@media screen and (min-width: 1680px) {
  .form-feedback__wraper {
    margin-right: 20px;
  }
  .form-feedback__input, .form-feedback__select {
    padding: 20px;
  }
}

.iti--allow-dropdown {
  width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

.iti--allow-dropdown .iti__flag-container {
  left: 9px;
}

.iti__selected-dial-code {
  font-size: 14px;
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .iti__selected-dial-code {
    font-size: 16px;
  }
}

.iti-mobile .iti--container {
  position: absolute;
  height: 200px;
  top: 44px !important;
  width: 100%;
  left: 0 !important;
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .iti-mobile .iti--container {
    top: 50px !important;
  }
}
@media screen and (min-width: 1680px) {
  .iti-mobile .iti--container {
    top: 60px !important;
  }
}

.iti .iti__country-list {
  border-radius: 7px;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .iti .iti__country-list {
    border-radius: 10px;
  }
}

.iti .iti__country-list::-webkit-scrollbar {
  width: 0 !important;
}

.select {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  color: #1b1b1b;
  border-radius: 7px;
  border: 1.4px solid #c4c4c4;
  padding: 12.7px 14px;
  outline: none;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.4s;
  outline: none !important;
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .select {
    padding: 15px 20px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 1280px) {
  .select {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .select {
    margin-right: 20px;
    flex-basis: 25%;
  }
}
@media screen and (min-width: 1680px) {
  .select {
    padding: 20px;
  }
}

option {
  outline: none !important;
}

.new-select {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .new-select {
    font-size: 16px;
  }
}

.new-select__list {
  position: absolute;
  top: 43px;
  left: 0;
  cursor: pointer;
  width: 100%;
  z-index: 100;
  background: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border-radius: 10px;
  border: none;
  padding-left: 10px;
  font-size: 14px;
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .new-select__list {
    font-size: 16px;
    top: 50px;
  }
}
@media screen and (min-width: 1680px) {
  .new-select__list {
    top: 60px;
  }
}

.new-select__list.on {
  display: block;
}

.new-select__item span {
  display: block;
  padding: 10px 15px;
}

.new-select__item span:hover {
  color: red;
}

.new-select:after {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  position: absolute;
  right: 0px;
  top: 0px;
  background: url("../images/feedback/arrow.svg") no-repeat right center/cover;
  transition: all 0.27s ease-in-out;
  transform: rotate(0deg);
}

.new-select.on:after {
  transform: rotate(180deg);
}

.section.connect {
  position: relative;
  padding: 0;
  height: calc(
    400px + 226 *
      ((100vw - 360px) / 408)
  );
}
@media screen and (min-width: 768px) {
  .section.connect {
    height: 626px;
  }
}
@media screen and (min-width: 1280px) {
  .section.connect {
    height: calc(
    414px + 168 *
      ((100vw - 1280px) / 640)
  );
  }
}
@media screen and (min-width: 1920px) {
  .section.connect {
    height: 582px;
  }
}

.connect iframe {
  width: 100%;
  height: 676px;
}
.connect .container {
  position: absolute;
  bottom: 84px;
  z-index: 1;
}
.connect .contacts {
  margin-bottom: 16px;
}
.connect__map {
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 80%;
     object-position: 50% 80%;
  width: 100%;
  height: 100%;
}
.connect .messengers__link {
  font-size: 24px;
}
.connect .messengers__icon {
  color: var(--color-darkbackground);
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .connect .container {
    bottom: 32px;
  }
  .connect iframe {
    height: 626px;
  }
  .connect .contacts {
    margin-bottom: 32px;
  }
  .connect .messengers__link {
    font-size: 33px;
  }
}
@media screen and (min-width: 1280px) {
  .connect .container {
    bottom: 82px;
    left: -20%;
  }
  .connect iframe {
    height: 582px;
  }
}

.contacts-wraper {
  max-width: 249px;
  margin: 0 auto;
  padding: 29px;
  position: relative;
}
.contacts-wraper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 27px;
  background-image: linear-gradient(rgba(27, 27, 27, 0.77), rgba(27, 27, 27, 0.77));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-backdrop-filter: blur(4.5px);
          backdrop-filter: blur(4.5px);
}
.contacts-wraper__title {
  font-size: 20px;
  color: var(--color-darkbackground);
  margin-bottom: 10px;
}
.contacts-wraper__title_messengers {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .contacts-wraper {
    max-width: 327px;
    padding: 40px;
  }
  .contacts-wraper__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .contacts-wraper__title_messengers {
    margin-bottom: 20px;
  }
}

.contacts__item {
  display: flex;
  align-items: center;
}
.contacts__item:not(:last-child) {
  margin-bottom: 11px;
}
.contacts__item_wraper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contacts__link {
  font-size: 14px;
  white-space: nowrap;
  color: var(--color-darkbackground);
}
.contacts__link_email {
  text-decoration: underline;
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .contacts__item:not(:last-child) {
    margin-bottom: 16px;
  }
  .contacts__link {
    font-size: 16px;
  }
  .contacts__link:not(:last-child) {
    margin-bottom: 0;
  }
  .contacts__item_wraper {
    gap: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .contacts {
    margin-bottom: 26px;
  }
}

.section.footer {
  background-color: #1b1b1b;
}
@media screen and (max-width: 768px) {
  .section.footer {
    padding: 32px 0;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1680px) {
  .section.footer {
    padding: 43px 0;
  }
}

.footer__logo {
  display: block;
  margin-bottom: 32px;
}
.footer__img {
  margin: 0 auto;
}
.footer__wraper {
  display: flex;
  flex-direction: column;
}
.footer__wraper_policy {
  max-width: -moz-min-content;
  max-width: min-content;
}
.footer__title {
  font-size: 20px;
  color: var(--color-darkbackground);
  margin-bottom: 15px;
}
.footer .footer__title_policy {
  margin-bottom: 10px;
}
.footer .contacts {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-darkbackground);
}
.footer .messengers {
  justify-content: center;
}
.footer .messengers__link {
  font-size: 24px;
}
.footer .messengers__icon {
  color: var(--color-darkbackground);
}
@media screen and (max-width: 768px) {
  .footer .container {
    display: flex;
    flex-direction: column;
    max-width: 206px;
  }
  .footer .contacts__link {
    display: flex;
    flex-direction: column;
  }
  .footer .contacts__space {
    display: none;
  }
  .footer__wraper {
    gap: 20px;
  }
  .footer__wraper_contacts {
    padding: 16px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .footer__links-wraper {
    display: flex;
    justify-content: center;
    justify-content: space-between;
  }
  .footer__wraper {
    flex-grow: 1;
    flex-direction: row;
  }
  .footer__wraper_policy {
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .footer .container {
    max-width: 705px;
  }
  .footer__title {
    text-align: center;
  }
  .footer .contacts__item {
    justify-content: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .footer__title {
    font-size: 24px;
  }
  .footer .contacts {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .footer .messengers__link {
    font-size: 33px;
  }
}
@media screen and (min-width: 1280px) {
  .footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 65px;
  }
  .footer__logo {
    margin-bottom: 0;
  }
  .footer__img {
    width: auto;
    height: auto;
  }
  .footer__wraper {
    gap: 70px;
    margin-right: 110px;
  }
  .footer__title {
    margin-bottom: 31px;
  }
  .footer__wraper_contacts {
    padding-top: 0;
    width: 253px;
  }
  .footer__title_contacts {
    text-align: left;
  }
  .footer .contacts {
    padding-left: 0;
  }
  .footer .messengers {
    margin-left: auto;
    justify-content: flex-start;
  }
  .footer .messengers__link {
    font-size: 18.5px;
  }
}
@media screen and (min-width: 1680px) {
  .footer .container {
    max-width: 1345px;
  }
  .footer .messengers__link {
    font-size: 26px;
  }
  .footer__wraper {
    gap: 140px;
    margin-right: 200px;
  }
}

.policy-en {
   white-space: nowrap;
 }

.footer-menu__link {
  font-size: 14px;
  line-height: 2;
  color: var(--color-darkbackground);
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .footer-menu__item {
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .footer-menu__link {
    font-size: 16px;
    line-height: 2.4;
  }
}

.policy__link {
  font-size: 14px;
  line-height: 2;
  color: var(--color-darkbackground);
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .policy__item {
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .policy__link {
    font-size: 16px;
    line-height: 2.4;
  }
}

.section.rights {
  padding: 16px 0;
}
@media screen and (min-width: 1376px) {
  .section.rights {
    padding: 21px 0;
  }
}

.rights__text {
  font-family: var(--fonts-footer-menu);
  font-size: 14px;
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .rights__text {
    font-size: 16px;
  }
}

.section.steps {
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  .section.steps {
    height: calc(
    720px + 70 *
      ((100vw - 1280px) / 640)
  );
  }
}
@media screen and (min-width: 1680px) and (max-width: 1920px) {
  .section.steps {
    height: calc(
    920px + 20 *
      ((100vw - 1920px) / 640)
  );
  }
}
@media screen and (min-width: 1920px) and (max-width: 2560px) {
  .section.steps {
    height: calc(
    920px + 90 *
      ((100vw - 1920px) / 640)
  );
  }
}
@media screen and (min-width: 2560px) {
  .section.steps {
    height: 1010px;
  }
}

.steps .title {
  margin-bottom: 32px;
}
.steps__wraper {
  width: 100vw;
  padding: 0 15px;
  margin: 0 auto;
}
.steps__container-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.steps__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 156px;
  height: 60px;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-darkbackground);
  background-color: #c2c2c2;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 250ms linear, color 250ms linear;
  transform: skewX(-15deg);
}
.steps__btn.active {
  background-color: var(--color-btn-hover);
  color: var(--color-darkbackground);
}
.steps__btn-text {
  display: inline-block;
  transform: skewX(15deg);
}
.steps__icon {
  font-size: 24px;
  transform: skewX(15deg);
}
.steps__curve-lines {
  display: none;
}
@media screen and (min-width: 480px) {
  .steps__wraper {
    max-width: 704px;
  }
}
@media screen and (min-width: 768px) {
  .steps__container-btn {
    margin-bottom: 64px;
  }
}
@media screen and (min-width: 1280px) {
  .steps__container-btn {
    justify-content: flex-end;
    margin-bottom: 42px;
  }
  .steps .title {
    text-align: left;
    margin-bottom: 60px;
  }
  .steps__wraper {
    position: relative;
    padding: 0;
    max-width: none;
  }
  .steps__curve-lines {
    display: block;
  }
  .steps__svg {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .steps__btn {
    width: 212.5px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1680px) {
  .steps__btn {
    font-size: 14px;
    width: 151px;
    height: 43px;
    gap: 11px;
    border-radius: 10px;
  }
  .steps__icon {
    font-size: 17px;
  }
}
@media screen and (min-width: 1680px) {
  .steps__container-btn {
    margin-bottom: 59px;
  }
}

.steps-list__item {
  color: var(--color-main-titles);
}
.steps-list__wraper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.steps-list__icon {
  display: inline-block;
  font-size: 40px;
  padding: 17.5px;
  transition: outline 250ms linear;
  background: #ffffff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.11);
  border-radius: 7px;
}
.steps-list__svg {
  display: block;
  width: 40px;
  height: 40px;
}
.steps-list__number {
  font-weight: 700;
  font-size: 40px;
}
.steps-list__title {
  font-weight: 700;
  font-size: 20px;
}
.steps-list__text {
  color: #444054;
  font-size: 14px;
  line-height: 160%;
}
@media screen and (max-width: 480px) {
  .steps-list__item:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 480px) and (max-width: 1280px) {
  .steps-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -20px;
    margin-left: -20px;
  }
  .steps-list__item {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-left: 20px;
    flex-basis: calc((100% - 40px) / 2);
  }
  .steps-list__text {
    flex-grow: 1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .steps-list__wraper {
    gap: 32px;
  }
  .steps-list__icon {
    padding: 22.5px 28px;
  }
  .steps-list__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .steps-list__icon {
    font-size: 60px;
    border-radius: 11px;
  }
  .steps-list__wraper {
    margin-bottom: 29px;
  }
  .steps-list__svg {
    width: 60px;
    height: 60px;
  }
  .steps-list__number {
    font-size: 56px;
  }
  .steps-list__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1280px) {
  .steps-list__title, .steps-list__text {
    background-color: var(--color-darkbackground);
    padding: 16px;
  }
  .steps-list__title {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  .steps-list__text {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .steps-list__item {
    max-width: 16.8%;
    position: absolute;
    z-index: 2;
  }
  .steps-list__item:nth-child(1) {
    top: 15vw;
    left: 5%;
  }
  .steps-list__item:nth-child(2) {
    top: -33px;
    left: 25%;
  }
  .steps-list__item:nth-child(3) {
    top: calc(17.4vw - 65px);
    left: 44%;
  }
  .steps-list__item:nth-child(4) {
    top: calc(5.8vw - 55px);
    right: 24.5%;
  }
  .steps-list__item:nth-child(5) {
    top: calc(22vw - 120px);
    right: 4.5%;
  }
  .steps-list__wraper {
    justify-content: left;
  }
  .steps-list__title {
    margin-bottom: 11px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1680px) {
  .steps-list__item:nth-child(4) {
    max-width: 15.7%;
  }
}
@media screen and (min-width: 1680px) {
  .steps-list__item {
    max-width: 14.7%;
  }
  .steps-list__icon {
    padding: 22.5px;
  }
  .steps-list__wraper {
    gap: 20px;
  }
  .steps-list__title {
    margin-bottom: 16px;
  }
  .steps-list__item:nth-child(2) {
    top: -41px;
  }
  .steps-list__item:nth-child(3) {
    top: calc(16.4vw - 65px);
    left: 43.5%;
  }
  .steps-list__item:nth-child(4) {
    top: calc(4.8vw - 55px);
    right: 25.5%;
  }
  .steps-list__item:nth-child(5) {
    top: calc(19.5vw - 120px);
    right: 7.3%;
  }
}

.parcel-direct__item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.parcel-direct__item:not(:last-child) {
  margin-bottom: 11px;
}
.parcel-direct__icon {
  font-size: 16px;
}
.parcel-direct__text {
  color: #444054;
  font-family: var(--fonts-footer-menu);
  font-size: 14px;
}
@media screen and (max-width: 1280px) {
  .parcel-direct {
    background-color: var(--color-darkbackground);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 0 16px 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px), (min-width: 1680px) {
  .parcel-direct__item {
    gap: 10px;
  }
  .parcel-direct__item:not(:last-child) {
    margin-bottom: 16px;
  }
  .parcel-direct__icon {
    font-size: 19px;
  }
  .parcel-direct__text {
    font-size: 16px;
  }
}

.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}

.hide {
  display: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 50;
  left: 0;
  top: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal__content {
  background-color: #fefefe;
  padding: 25px 40px;
  border: 1px solid #888;
  position: relative;
  border-radius: 5px;
}
.modal__close {
  display: block;
  color: #aaa;
  position: absolute;
  top: 0;
  right: 10px;
  font-size: calc(
    28px + 8 *
      ((100vw - 360px) / 1560)
  );
  font-weight: bold;
  cursor: pointer;
}
.modal__close:hover, .modal__close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal__message {
  font-size: calc(
    18px + 18 *
      ((100vw - 360px) / 1560)
  );
  font-weight: 500;
}

.fade-in {
  animation: fadein 0.5s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}