html {
  box-sizing: border-box;
  font-size: 10px;

  scroll-behavior: smooth;
}

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

@font-face {
  font-family: "Arial";
  font-weight: 700;
  font-style: normal;

  src: local("Arial_Bold"), url("../fonts/Arial_Bold.woff") format("woff"), url("../fonts/Arial_Bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  font-weight: 400;
  font-style: normal;

  src: local("Arial"), url("../fonts/Arial.woff") format("woff"), url("../fonts/Arial.woff2") format("woff2");
  font-display: swap;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 360px;
  min-height: 100vh;
  font-family: "Arial", "Open Sans", sans-serif;
  background-color: #000000;
}

section {
  max-width: 1920px;
  margin: 0 auto;
}

main {
  flex-grow: 1;
}

footer {
  flex-shrink: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

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

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

input {
  border: none;
  outline: none;
  background-color: transparent;
}

address {
  font-style: normal;
}

select {
  outline: none;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.container {
  padding-right: 8.1vw;
  padding-left: 8.1vw;
}

.header {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .75);
}

.header__container {
  align-items: center;
  justify-content: space-between;
  padding-top: 1vw;
  padding-bottom: 1vw;

  -moz-column-gap: .5vw;
       column-gap: .5vw;
}

.header__logo {
  width: 26.25vw;
  height: 2.7vw;
}

.header__navList {
  flex-wrap: wrap;

  -moz-column-gap: 3.6vw;
       column-gap: 3.6vw;
}

.header__link {
  font-size: .9vw;
  font-weight: 700;
  line-height: 1.4vw;
  color: #ffffff;
  transition: color .3s ease-in-out;
}

.header__btn {
  align-items: center;
  justify-content: center;
  width: 20vw;
  padding: .8vw 2.5vw;
  border-radius: 4.7vw;
  font-size: .8vw;
  font-weight: 700;
  line-height: .8vw;
  color: #ffffff;
  background-color: #e60020;
}

.hero {
  /* height: calc(100vh - 4.8vw); */
  margin-top: 4.8vw;
}

.hero__main {
  height: calc(100vh - 4.8vw);
  padding-top: 12px;
  background-image: url(../img/banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: flex-start;
}

.hero__container {background: rgba(255, 255, 255, 0.8);max-width: calc( 100% - 30px );border: 1px solid white;border-radius: 32px;padding: 20px 40px;box-sizing: border-box;text-align: center;line-height: 100%;backdrop-filter: blur(4px);}

.hero__descrTop {
  display: block;
  margin-bottom: .2vw;
  font-size: 36px;
  font-weight: 700;
  line-height: 110%;
  color: #000000;
  margin-bottom: 10px;
}

.hero__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 110%;
  color: rgb(230, 0, 32);
}

.hero__descrBottom {
  display: block;
  margin-bottom: 1.6vw;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2vw;
  color: #000000;
}

.hero__descrBottom span {
  color: rgb(230, 0, 32);
}

.hero__btn {
  align-items: center;
  justify-content: center;
  max-width: 20vw;
  min-height: 2.4vw;
  padding: .8vw 6.35vw;
  border-radius: 4.2vw;
  font-size: .8vw;
  font-weight: 700;
  line-height: .8vw;
  color: #ffffff;
  background-color: rgb(230, 0, 32);
}

.hero__profitBlock {
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
  margin-bottom: 12px;
}

.hero__profitTime {
  font-size: min(1.2vw, 23px);
  font-weight: 700;
  line-height: min(1.2vw, 23px);
  color: rgba(0, 0, 0, 1);
}

.hero__profitTime span {
  color: rgba(230, 0, 32, 1);
}

.hero__profitDescr {
  font-size: min(.7vw, 14px);
  font-weight: 400;
  line-height: min(.8vw, 16px);
  color: white;
}

.hero__profitList {
  column-gap: 19px;
  width: 100%;
  justify-content: center;
}

.hero__profitItem {
  position: relative;
  align-items: center;
  display: flex;
  align-items: center;
  text-align: right;
  justify-content: flex-end;
}

.hero__profitItem:nth-child(2) {
  justify-content: flex-start;
}

.hero__profitItem::after {
  content: "";
  top: min(.8vw, 15px);
  width: min(2.5vw, 50px);
  height: min(2.5vw, 50px);
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
    margin-right: 8px;
}

.hero__profitItem:nth-child(odd)::after {
  background-image: url(../img/hero_profit_1.png);
}

.hero__profitItem:nth-child(even)::after {
  background-image: url(../img/hero_profit_2.png);
}

.hero__profitItem span:nth-child(odd) {
  font-size: min(1vw, 20px);
  font-weight: 700;
  line-height: min(1.2vw, 23px);
  /* color: rgba(230, 0, 32, 1); */
  text-align: center;
  /* text-transform: uppercase; */
  order: 2;
  padding-top: 4px;
}

.hero__profitItem span:nth-child(even) {
  font-family: Arial;
  font-size: min(.6vw, 11px);
  font-weight: 700;
  line-height: min(.6vw, 12px);
  color: black;
  text-align: center;
}

.heroBlock {
  align-items: center;
  padding-top: 1.6vw;
  padding-bottom: 1.6vw;
  background: black;
}

.heroBlock__formBlock {
  margin-left: auto;
}

.heroBlock__descr {
  display: block;
  min-width: 11.3vw;
  max-width: 11.3vw;
  margin-right: 2.6vw;
  font-size: 1.4vw;
  font-weight: 700;
  line-height: 1.4vw;
  color: #ffffff;
}

.heroBlock__formTitle {
  display: block;
  margin-bottom: .8vw;
  font-size: 1.4vw;
  font-weight: 400;
  line-height: 1.4vw;
  color: #ffffff;
}

.heroBlock__main {
  margin-right: 5.6vw;
}

.heroBlock__form {
  flex-direction: column;
  row-gap: .6vw;
  align-items: center;
}
.heroBlock__form .form__tel {
  background:white;
  border: 1px solid #C4C4C4;
}








.timerBlock {
  align-items: center;
  padding-top: 1.6vw;
  padding-bottom: 1.6vw;
  background: black;
}

.timerBlock__formBlock {
  margin-left: auto;
}

.timerBlock__descr {
  display: block;
  min-width: 11.3vw;
  max-width: 11.3vw;
  margin-right: 2.6vw;
  font-size: 1.4vw;
  font-weight: 700;
  line-height: 1.4vw;
  color: #ffffff;
}

.timerBlock__formTitle {
  display: block;
  margin-bottom: .8vw;
  font-size: 1.4vw;
  font-weight: 400;
  line-height: 1.4vw;
  color: #ffffff;
}

.timerBlock__main {
  margin-right: 5.6vw;
}

.timerBlock__form {
  flex-direction: column;
  row-gap: .6vw;
}

.form__inputBlock {
  row-gap: 1.5rem;
  -moz-column-gap: .9vw;
       column-gap: .9vw;
}

.form__tel {
  width: 16.6vw;
  padding: .5vw .8vw;
  border-radius: 4.2vw;
  font-size: .9vw;
  font-weight: 400;
  line-height: 1.4vw;
  color: black;
  background-color: #e6e6e6;
}

.form__tel_trade {
  max-width: 13vw;
}

.form__tel::-moz-placeholder {
  font-size: .9vw;
  font-weight: 400;
  line-height: 1.4vw;
  color: #7f7f7f;
}

.form__tel::placeholder {
  font-size: .9vw;
  font-weight: 400;
  line-height: 1.4vw;
  color: #7f7f7f;
}

.form__btn {
  justify-content: center;
  width: 16.6vw;
  padding: .5vw .8vw;
  border-radius: 4.2vw;
  font-size: .9vw;
  font-weight: 400;
  line-height: 1.4vw;
  color: #ffffff;
  background-color: #e60020;
}

.form__btn_trade {
  max-width: 13vw;
}

.checkBlock {
  position: relative;
  align-items: center;
  padding-left: 16px;
  cursor: pointer;
}

.checkBlock__check {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.checkBlock__checkVis {
  position: absolute;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  outline: 1px solid #7f7f7f;
  outline-offset: -2px;
}

.checkBlock__checkVis::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-image: url(../img/check.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: opacity .3s ease-in-out;
}

.checkBlock__descr {
  font-size: .6vw;
  font-weight: 400;
  line-height: .6vw;
  color: #7f7f7f;
  text-align: left;
}

.checkBlock__descr a {
  color: #7f7f7f;
  text-decoration: underline;
}

.checkBlock__check:checked + .checkBlock__checkVis::after {
  opacity: 1;
}

#timerb66738280a0a17d907da0d8906ca7db7 .timer-slide-bounding,
#timerb66738280a0a17d907da0d8906ca7db7 .timer-slide-new,
#timerb66738280a0a17d907da0d8906ca7db7 .timer-slide-old {
  width: 2.86vw;
  height: 3.7vw;
  padding: .9vw !important;
}

#timerb66738280a0a17d907da0d8906ca7db7 .timer-slide-inner {
  font-size: 1.8vw !important;
  font-weight: 400;
  line-height: 1.8vw;
}

.hero #timerb66738280a0a17d907da0d8906ca7db7 .timer-separator {
  position: relative;
  top: -.6vw;
  padding-top: .9vw !important;
  padding-right: .57vw !important;
  padding-bottom: .9vw !important;
  padding-left: .57vw !important;
  font-size: 1.8vw !important;
}

#timerb66738280a0a17d907da0d8906ca7db7 {
  min-width: -moz-max-content !important;
  min-width:      max-content !important;
}

#timer-text-b66738280a0a17d907da0d8906ca7db7-minutes,
#timer-text-b66738280a0a17d907da0d8906ca7db7-secundes,
#timer-text-b66738280a0a17d907da0d8906ca7db7-hours,
#timer-text-b66738280a0a17d907da0d8906ca7db7-days {
  font-size: .8vw !important;
  font-weight: 400;
  line-height: .8vw;
}

#timerb66738280a0a17d907da0d8906ca7db7 {
  display: flex;
  align-items: center;
}

.card {
  padding-top: 5.7vw;
  padding-bottom: 6.7vw;
  background-color: #ffffff;
}

.card__container {
  flex-wrap: wrap;
  justify-content: space-between;

  row-gap: 4.4vw;
}

.card__autoCard {
  flex-direction: column;
  width: 48%;
}

.card__titleBlockMain {
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1.6vw;
}

.card__autoName {
  margin-bottom: 1vw;
  font-size: 2vw;
  font-weight: 700;
  line-height: 2vw;
  color: #000000;
}

.card__autoName span {
  color: rgb(230, 0, 32);
  text-transform: uppercase;
}

.card__titleGaranty {
  position: relative;
  align-items: center;
  padding-left: 1.6vw;
  font-size: 1.2vw;
  font-weight: 700;
  line-height: 1.2vw;
  color: #000000;
}

.card__titleGaranty::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.2vw;
  height: 1.2vw;
  background-image: url(../img/card_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.card__titleDescr {
  display: block;
  margin-top: .6vw;
  font-size: 1.4vw;
  font-weight: 400;
  line-height: 1.4vw;
  color: rgb(153, 153, 153);
}

.card__imgBlock {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 26.8vw;
  margin-bottom: .8vw;
}

.card__imgBlock::after {
  content: "";
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: min(6.77vw, 130px);
  height: min(5.31vw, 102px);
  background-image: url(../img/img_1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.card__imgBlock_order::after {
  background-image: url(../img/img_2.png);
}

.card__imageAuto {
  width: 100%;
  height: 100%;
  border-radius: 2.5vw;
}

.card__hiddenImg {
  display: none;
  max-width: 50vw;
  max-height: 50vw;
}

.card__charBlock {
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2.4vw;

  -moz-column-gap: 5px;
       column-gap: 5px;
}

.card__char {
  align-items: flex-start;
  flex-direction: column;

  row-gap: .2vw;
}

.card__charMain {
  margin-top: 20px;
  font-size: 1.4vw;
  font-weight: 700;
  line-height: 1.4vw;
  color: #000000;
}

.card__charDescr {
  font-size: .7vw;
  font-weight: 400;
  line-height: 1.1vw;
  color: rgb(102, 102, 102);
}

.card__btnBlock {
  justify-content: space-between;
  width: 100%;

  -moz-column-gap: 1.2vw;
       column-gap: 1.2vw;
}

.card__btn {
  align-items: center;
  justify-content: center;
  padding: .8vw 4vw;
  border: 1px solid rgb(230, 0, 32);
  border-radius: 4vw;
  font-size: .8vw;
  font-weight: 700;
  line-height: .8vw;
}

.card__btn_price {
  color: white;
  background-color: rgb(230, 0, 32);
}

.card__btn_cred {
  color: rgb(230, 0, 32);
  background-color: transparent;
}

.card__btnItem {
  width: 50%;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination-bullet-active {
  width: 3.2vw;
  border-radius: 5vw;
  background-color: white;
  cursor: pointer;
}

.swiper-pagination-bullet {
  opacity: 1;
  background-color: white;
  cursor: pointer;
}

.trade {
  padding-top: 6.7vw;
  padding-bottom: 5vw;
  background-color: rgb(209, 215, 218);
}

.trade__imageAuto {
  max-width: 53vw;
  max-height: 26vw;
  border-radius: 2.5vw;
}

.trade__form {
  flex-direction: column;

  row-gap: .6vw;
}

.trade__container {
  align-items: center;
  justify-content: space-between;

  -moz-column-gap: 3.2vw;
       column-gap: 3.2vw;
}

.trade__title {
  margin-bottom: 1.2vw;
  font-size: 2vw;
  font-weight: 700;
  line-height: 2vw;
}

.trade__descr {
  display: block;
  margin-bottom: 3.8vw;
  font-size: 1.4vw;
  font-weight: 400;
  line-height: 1.4vw;
}

.trade__formBlock {
  max-width: 27vw;
}

.cred {
  padding-bottom: 5vw;
  background-color: rgb(209, 215, 218);
}

.cred__imageAuto {
  max-width: 53vw;
  max-height: 26vw;
  border-radius: 2.5vw;
}

.cred__form {
  flex-direction: column;

  row-gap: .6vw;
}

.cred__container {
  align-items: center;
  justify-content: space-between;

  -moz-column-gap: 3.2vw;
       column-gap: 3.2vw;
}

.cred__title {
  margin-bottom: 1.2vw;
  font-size: 2vw;
  font-weight: 700;
  line-height: 2vw;
}

.cred__descr {
  display: block;
  margin-bottom: 3.8vw;
  font-size: 1.4vw;
  font-weight: 400;
  line-height: 1.4vw;
}

.cred__formBlock {
  max-width: 27vw;
}

.why {
  padding-bottom: 9vw;
  background-color: rgb(209, 215, 218);
}

.why__container {
  min-height: 25vw;
}

.why__img {
  width: 56%;
  border-radius: 2.5vw 0 0 2.5vw;
  background-image: url(../img/why.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.why__mainBlock {
  flex-direction: column;
  justify-content: center;
  width: 44%;
  padding: 3.2vw;
  border-radius: 0 2.5vw 2.5vw 0;
  background-color: #ffffff;
}

.why__title {
  margin-bottom: 1vw;
  font-size: 2vw;
  font-weight: 700;
  line-height: 2vw;
  color: #000000;
}

.why__link {
  flex-direction: column;
}

.why__listTitle {
  position: relative;
  align-items: center;
  padding-left: 1.4vw;
  font-size: .9vw;
  font-weight: 700;
  line-height: 1.4vw;
  color: #000000;
}

.why__listTitle::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1vw;
  height: 1vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.why__listTitle_1::after {
  background-image: url(../img/why_icon_1.png);
}

.why__listTitle_2::after {
  background-image: url(../img/why_icon_2.png);
}

.why__listTitle_3::after {
  background-image: url(../img/why_icon_3.png);
}

.why__listTitle_4::after {
  background-image: url(../img/why_icon_4.png);
}

.why__listTitle_5::after {
  background-image: url(../img/why_icon_5.png);
}

.why__listDescr {
  font-size: .7vw;
  font-weight: 400;
  line-height: 1vw;
  color: #000000;
  text-align: left;
}

.why__list {
  flex-direction: column;

  row-gap: .4vw;
}

.quest {
  padding-top: 1.6vw;
  padding-bottom: 1.6vw;
}

.quest__title {
  margin-bottom: 1vw;
  font-size: 2vw;
  font-weight: 700;
  line-height: 2vw;
  color: #ffffff;
}

.quest__titleDescr {
  font-size: .9vw;
  font-weight: 400;
  line-height: 1.4vw;
  color: white;
}

.quest__titleBlock {
  max-width: 21vw;
  margin-right: 1.2vw;
}

.quest__container {
  position: relative;
  align-items: flex-end;
}

.quest__form {
  flex-direction: column;

  row-gap: .6vw;
}

.quest__img {
  position: absolute;
  right: 8.1vw;
  bottom: -1.6vw;
  width: 23vw;
  height: 18vw;
  background-image: url(../img/quest.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.map {
  min-height: 30vw;
  max-height: -moz-max-content;
  max-height:      max-content;
}

.map__descr {
  flex-direction: column;
  justify-content: center;
  width: 31.5%;
  min-height: 100%;
  padding-right: 3.2vw;
  padding-left: 8.1vw;
  background-color: white;
}

.map__map {
  width: 68.5%;
  min-height: 100%;
  background-image: url(../img/Map.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.map__img {
  width: 20vw;
  height: 1.6vw;
  margin-bottom: 1.6vw;

  -o-object-fit: cover;
     object-fit: cover;
}

.map__title {
  margin-bottom: 1vw;
  font-size: 2vw;
  font-weight: 700;
  line-height: 2vw;
  color: #000000;
}

.map__btn {
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .8vw;
  border-radius: 4vw;
  font-size: .8vw;
  font-weight: 700;
  line-height: .8vw;
  color: white;
  background-color: rgb(230, 0, 32);
}

.map__icon {
  width: .9vw;
  height: .9vw;

  stroke: #4d4d4d;
}

.select__title {
  display: block;
  margin-bottom: 1vw;
  font-size: 1.2vw;
  font-weight: 700;
  line-height: 1.2vw;
  color: #000000;
}

.select__choiceBlock {
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 1.6vw;

  row-gap: 1.5vw;
}

.select__choice {
  align-items: center;
  margin-bottom: 1vw;
  font-size: .9vw;
  font-weight: 400;
  line-height: 1vw;
  color: rgb(102, 102, 102);

  -moz-column-gap: .5vw;
       column-gap: .5vw;
}

.select__telName {
  font-size: .8vw;
  font-weight: 400;
  line-height: 1vw;
  color: rgb(102, 102, 102);
}

.select__telNumb {
  font-size: .9vw;
  font-weight: 400;
  line-height: 1.4vw;
  color: rgb(102, 102, 102);
}

.select__telBlock {
  flex-direction: column;

  row-gap: .25vw;
}

.mapActive {
  color: #000000;
}

.iconMapActive {
  stroke: rgb(230, 0, 32);
}

.footer {
  padding-top: 1.7vw;
  padding-bottom: 1.7vw;
}

.footer__container {
  justify-content: space-between;

  -moz-column-gap: .5vw;
       column-gap: .5vw;
}

.footer__link {
  font-size: .7vw;
  font-weight: 400;
  line-height: 1vw;
  color: rgb(153, 153, 153);
}

.footer .disclamer {
  display: none;
  padding-top: 20px;
  font-size: 14px;
  color: rgb(153, 153, 153);
}

.modal {
  display: none;
  width: 30%;
  max-width: 430px;
}

.modal__formTel {
  width: 100%;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  border: 1px solid #231f20;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: normal;
  color: rgba(35, 31, 32, .6);
  text-align: center;
}

.modal__select {
  width: 100%;
  padding-top: 1.4rem;
  padding-right: 5px;
  padding-bottom: 1.4rem;
  padding-left: 5px;
  border: 1px solid #231f20;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: normal;
  color: rgba(35, 31, 32, .6);
  background: transparent;
  cursor: pointer;

  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-group:has(.modal__select) {
  position: relative;
  display: flex;
  align-items: center;
}

.form-group:has(.modal__select)::after {
  content: "";
  position: absolute;
  right: 0;
  width: 10px;
  height: 10px;
  margin-right: 15px;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  background-color: transparent;
  transform: rotate(45deg) translateY( -4px);
}

.select-sort {
  display: none;
}

.modal__form {
  flex-direction: column;
  width: 420px;
  max-width: 100%;

  row-gap: 1rem;
}

.modal__btn {
  display: block;
  width: 100%;
  margin-bottom: .4rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
  color: white;
  text-align: center;
  background-color: rgb(230, 0, 32);
  transition: background-color .3s ease-in-out, color .3s ease-in-out, color .3s ease-in-out;
}

.modal__checkInput {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.modal__checkBlock {
  position: relative;
  display: flex !important;
  align-items: center;
  width: -moz-max-content;
  width:      max-content;
  padding-left: 1.5rem !important;
  cursor: pointer;
}

.modal__check {
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #8a8d8f;
  border-radius: 100%;
}

.modal__check::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  border-radius: 100%;
  opacity: 0;
  background-color: #8a8d8f;
  transition: opacity .3s ease-in-out;
}

.modal__title {
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: black;
  text-align: center;
}

.burger {
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 25px;
  transition: transform .5s ease-in-out;
}

.burger__line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: rgb(230, 0, 32);
  transition-duration: .25s;
}

.burger__line::after,
.burger__line::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background-color: rgb(230, 0, 32);
  transition-duration: .25s;
}

.burger__line::after {
  top: 0;
}

.burger__line::before {
  bottom: 0;
}

.header__btn,
.hero__btn,
.form__btn,
.form__btn,
.map__btn,
.modal__btn,
.swiper-pagination-bullet {
  transition: background-color .3s ease-in-out;
}

.card__btn {
  transition: color .3s ease-in-out, background-color .3s ease-in-out, border-color .3s ease-in-out;
}

.why__listTitle,
.why__listDescr,
.card__titleGaranty,
.select__choice {
  transition: color .3s ease-in-out;
}

@media (any-hover: hover) {
  .header__btn:hover,
  .hero__btn:hover,
  .form__btn:hover,
  .card__btn_price:hover,
  .form__btn:hover,
  .map__btn:hover,
  .modal__btn:hover {
    background-color: rgb(77, 73, 72);
  }

  .select__choice:hover {
    color: rgb(230, 0, 32);
  }

  .select__choice:hover .map__icon {
    stroke: rgb(230, 0, 32);
  }

  .swiper-pagination-bullet:hover {
    background-color: rgb(230, 0, 32);
  }

  .card__btn:hover {
    border-color: rgb(77, 73, 72);
    color: white;
    background-color: rgb(77, 73, 72);
  }

  .footer__link:hover {
    text-decoration: underline;
  }

  .header__link:hover,
  .card__titleGaranty:hover {
    color: rgb(230, 0, 32);
  }

  .why__link:hover .why__listTitle {
    color: rgb(230, 0, 32);
  }

  .why__link:hover .why__listDescr {
    color: rgb(230, 0, 32);
  }
}

.has-danger input,
.has-danger select,
.has-danger textarea {
  border-width: 2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #eba5a3;
}

#form_popup,
#form_popup2 {
  display: none;
}

.popup_container .agree_field {
  font-size: 10px;
  color: black;
  text-align: left;
}

.popup_container .agree_field a {
  color: black;
}

.popup_container .form_comment {
  padding-bottom: 15px;
  font-size: 20px;
  color: #d6001c;
  text-align: center;
}

.popup_container .form_comment a {
  display: block;
  color: #414141;
  text-decoration: none;
}

.popup_container .close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  cursor: pointer;

/* Aey IE */
  /* Aey Firefox */
  /* Aey Safari, Chrome, iOS */
  /* Aey Opera */
  transform: rotate(45deg);
}

.popup_container .close:before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  display: block;
  width: 34px;
  height: 1px;
  background-color: #a8a8a8;
}

.popup_container .close:after {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  display: block;
  width: 1px;
  height: 34px;
  background-color: #a8a8a8;
}

.popup_container .form-group input[type=text] {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 56px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #f3f3f3;
  line-height: 56px;
  color: black;
  text-align: left;
  text-decoration: none;
  outline: none;
  background: #f3f3f3;
}

.popup_container .form-group textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #c0c6c9;
  font-family: "Montserrat";
  font-size: 16px;
  color: black;
  text-align: left;
  text-decoration: none;
  outline: none;
  background: none;
  resize: none;
}

/* .popup_container .form-group select {
  width: 100%;
  height: 50px;
  height: 38px;
  padding-left: 10px;
  border: 1px solid white;
  border: 1px solid #c0c6c9;
  border-radius: 5px;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 300;
  color: #1d1f20;
  background-color: white;
} */

.popup_container .form-group button {
  height: 38px;
  height: 60px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.popup_container .form-group button:before {
  display: none;
}

.popup_container .form-group button:after {
  display: none;
}

.not_agree button {
  color: white !important;
  background-color: #cccccc !important;
  cursor: auto !important;
}

.agree_field {
  position: relative;
  top: 0;
  display: inline-block;
  padding-left: 20px;
  font-size: 10px;
  line-height: 100%;
}

.agree_field input {
  position: absolute;
  top: -1px;
  left: 0;
  margin: 0;
}

.popup_container .form-disclamer {
  padding-top: 10px;
  font-size: 10px;
  color: #b8b8b8;
  text-align: center;
}

.form_tel {
  margin-bottom: 20px;
}

.form_tel a {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */
































