@charset "UTF-8";
@import url("../css/nullstyle.css");
@font-face {
  font-family: "Gilroy-Bold";
  src: url("../fonts/gilroy-bold.eot");
  /* IE 9 Compatibility Mode */
  src: url("../fonts/gilroy-bold.eot?#iefix") format("embedded-opentype"), url("../fonts/gilroy-bold.woff2") format("woff2"), url("../fonts/gilroy-bold.woff") format("woff"), url("../fonts/gilroy-bold.ttf") format("truetype"), url("../fonts/gilroy-bold.svg#gilroy-bold") format("svg");
  /* Chrome < 4, Legacy iOS */
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-Medium";
  src: url("../fonts/gilroy-medium.eot");
  /* IE 9 Compatibility Mode */
  src: url("../fonts/gilroy-medium.eot?#iefix") format("embedded-opentype"), url("../fonts/gilroy-medium.woff2") format("woff2"), url("../fonts/gilroy-medium.woff") format("woff"), url("../fonts/gilroy-medium.ttf") format("truetype"), url("../fonts/gilroy-medium.svg#gilroy-medium") format("svg");
  /* Chrome < 4, Legacy iOS */
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/gilroy-regular.eot");
  /* IE 9 Compatibility Mode */
  src: url("../fonts/gilroy-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/gilroy-regular.woff2") format("woff2"), url("../fonts/gilroy-regular.woff") format("woff"), url("../fonts/gilroy-regular.ttf") format("truetype"), url("../fonts/gilroy-regular.svg#gilroy-regular") format("svg");
  /* Chrome < 4, Legacy iOS */
  font-weight: 400;
  font-display: swap;
}
:root {
  --clr1: #ffffff;
  --clr2: #2963b0;
  --clr3: #2963b0af;
  --clr4: #000000;
  --clr5: #FBFBFB;
  --clr6: #fdcf00;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Gilroy-Regular", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.45;
}

body.lock {
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.main {
  flex: 1 1 auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
}

.btn {
  color: var(--clr1);
  padding: 16px 32px;
  background-color: var(--clr2);
  min-width: 270px;
  font-size: 24px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  text-align: center;
  position: relative;
  border-radius: 5px;
}
.btn span {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background-color: #2d425c;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}
.btn:hover::before {
  height: 100%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 450px) {
  .btn {
    width: 100%;
    display: inline-block;
  }
}

.img {
  max-width: 100%;
}

.title {
  font-family: "Gilroy-bold", sans-serif;
  font-size: 36px;
  line-height: 1.36;
  color: var(--clr2);
  text-align: left;
  margin-bottom: 44px;
}

.header {
  padding: 20px 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
}
.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr3);
  z-index: 5;
}
@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  max-width: 140px;
  position: relative;
  z-index: 6;
}
.header__burger {
  display: none;
}
@media (max-width: 630px) {
  .header__burger {
    display: block;
    position: relative;
    height: 5px;
    width: 60px;
    z-index: 50;
    transition: all 0.3s ease;
  }
  .header__burger::before, .header__burger::after {
    content: "";
    position: absolute;
    height: 5px;
    background: var(--clr1);
    margin: auto;
    width: 100%;
    transition: all 0.3s ease-in-out;
  }
  .header__burger::before {
    top: 5px;
    right: 0;
    width: 75%;
    transform-origin: right;
  }
  .header__burger::after {
    bottom: 5px;
    right: 0;
    width: 100%;
    transform-origin: right;
  }
  .header__burger.active::after {
    width: 75%;
  }
  .header__burger.active::before {
    width: 100%;
  }
}

.menu {
  position: relative;
  z-index: 6;
}
@media (max-width: 630px) {
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    background: rgba(52, 76, 166, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 100px 15px 0 0;
    overflow: auto;
    transition: all 0.2s ease-in-out;
    z-index: 5;
    margin-left: 0;
  }
}
.menu.active {
  right: 0;
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 34px;
}
@media (max-width: 630px) {
  .menu__list {
    display: block;
    text-align: right;
  }
}
@media (max-width: 630px) {
  .menu__item {
    margin-bottom: 40px;
    display: block;
  }
}
.menu__link {
  font-family: "Gilroy-bold", sans-serif;
  color: var(--clr1);
  position: relative;
  font-size: 18px;
  line-height: 1;
}
.menu__link:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  /*задаём длинну линии до наведения курсора*/
  height: 2px;
  /*задаём ширину линии*/
  background: var(--clr6);
  /*задаём цвет линии*/
  transition: all 0.3s ease-in-out;
}
.menu__link:hover:after, .menu__link:focus:after {
  width: 100%;
  /*устанавливаем значение 100% чтобы ссылка подчёркивалась полностью*/
}
@media (max-width: 630px) {
  .menu__link {
    font-size: 32px;
  }
}
@media (max-width: 570px) {
  .menu__link {
    font-size: 27px;
  }
}

@media (max-width: 630px) {
  .menu__item:nth-child(6) {
    margin-bottom: 70px;
  }
}

.home {
  background-image: url("../img/home.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 190px 0 200px;
  position: relative;
}
@media (max-width: 450px) {
  .home::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4235294118);
    top: 0;
    left: 0;
    z-index: 2;
  }
}
@media (max-width: 450px) {
  .home {
    padding-top: calc(170px + 20 * (100vw - 320px) / 130);
    padding-bottom: calc(130px + 90 * (100vw - 320px) / 130);
  }
}
.home__inner {
  text-align: left;
  max-width: 750px;
  position: relative;
  z-index: 4;
}
@media (max-width: 450px) {
  .home__inner {
    text-align: center;
  }
}
.home__title {
  font-family: "Gilroy-Bold", sans-serif;
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: var(--clr1);
}
.home__title span {
  font-size: 72px;
  color: var(--clr2);
  -webkit-text-stroke: var(--clr1) 0px;
  display: block;
  margin-top: 0;
}
@media (max-width: 768px) {
  .home__title span {
    font-size: calc(40px + 32 * (100vw - 320px) / 448);
  }
}
@media (max-width: 768px) {
  .home__title {
    font-size: calc(38px + 62 * (100vw - 320px) / 448);
  }
}
.home__subtitle {
  font-family: "Gilroy-medium", sans-serif;
  font-size: 24px;
  line-height: 1.5;
  color: var(--clr1);
  margin-bottom: 56px;
}
@media (max-width: 450px) {
  .home__subtitle {
    font-size: calc(18px + 6 * (100vw - 320px) / 130);
  }
}
.home__btn {
  background-color: var(--clr6);
  color: var(--clr4);
  transition: all 0.1s ease-in-out;
}
.home__btn:hover {
  color: var(--clr1);
  transition: all 0.1s ease-in-out;
}
@media (max-width: 450px) {
  .home__btn {
    width: 100%;
    display: inline-block;
  }
}

.service {
  padding: 80px 0;
  position: relative;
  background-image: url("../img/service/ser-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .service {
    padding: 50px 0;
  }
}
.service__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
@media (max-width: 900px) {
  .service__row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 670px) {
  .service__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.service__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-radius: 10px 0 10px 0;
  border-bottom: 1px solid var(--clr6);
  border-left: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
}
.service__item:hover .service__image {
  opacity: 0.5;
}
.service__item:hover .service__item--text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
  color: var(--clr1);
  background-color: rgba(41, 99, 176, 0.8549019608);
  max-height: 157px;
  overflow: auto;
}
.service__item:hover .service__item--title {
  opacity: 0;
}
.service__image {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  max-height: 197px;
}
.service__img {
  transition: all 0.3s ease-in-out;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__item--title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.16;
  color: var(--clr2);
  padding: 10px 0;
  width: 100%;
  background-color: var(--clr1);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1190px) {
  .service__item--title {
    font-size: 18px;
  }
}
@media (max-width: 550px) {
  .service__item--title {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    word-wrap: break-word;
  }
}
@media (max-width: 450px) {
  .service__item--title {
    padding: 0px 5px;
    font-size: 16px;
  }
}
.service__item--text {
  padding: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  position: absolute;
  transition: all 0.3s ease-in-out;
  bottom: 0;
  left: 0;
  font-size: 16px;
}
@media (max-width: 690px) {
  .service__item--text {
    font-size: 15px;
  }
}
@media (max-width: 440px) {
  .service__item--text {
    font-size: 13px;
  }
}
@media (max-width: 380px) {
  .service__item--text {
    font-size: 12px;
    padding: 0;
  }
}
.service__button {
  margin-top: 30px;
  text-align: center;
}

.selection {
  margin: 50px 0;
  position: relative;
}
.selection::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 20px;
  background: url("../img/icon/1.png") 0 0/100% no-repeat;
  width: 20px;
  height: 200px;
  opacity: 0.3;
  transform: rotate(45deg);
}
@media (max-width: 550px) {
  .selection::before {
    bottom: 200px;
  }
}
.selection::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 0px;
  background: url("../img/icon/2.png") 0 0/100% no-repeat;
  width: 30px;
  height: 100px;
  transform: rotate(-45deg);
  opacity: 0.3;
}
@media (max-width: 550px) {
  .selection::after {
    bottom: 200px;
  }
}
.selection__title {
  margin-bottom: 100px;
}
.selection__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 900px) {
  .selection__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 530px) {
  .selection__inner {
    gap: 10px;
  }
}
.selection__item {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 50px;
}
.selection__item span {
  font-family: "Gilroy-bold", sans-serif;
  position: absolute;
  top: -30px;
  right: -30px;
  font-weight: 700;
  font-size: 180px;
  line-height: 0.5;
  color: transparent;
  -webkit-text-stroke: var(--clr6) 1px;
  display: inline-block;
  z-index: 1;
  opacity: 0.5;
}
@media (max-width: 530px) {
  .selection__item span {
    top: -30px;
    right: 0px;
  }
}
.selection__image {
  margin-bottom: 16px;
  z-index: 2;
  text-align: center;
}
.selection__img {
  width: 100px;
  height: 100px;
}
@media (max-width: 530px) {
  .selection__img {
    width: 80px;
    height: 80px;
  }
}
.selection__item--title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: var(--clr2);
  min-height: 40px;
}
@media (max-width: 450px) {
  .selection__item--title {
    font-size: 18px;
  }
}
.selection__text {
  flex: 0 1 auto;
}
@media (max-width: 450px) {
  .selection__text {
    font-size: 14px;
  }
}
.selection__button {
  text-align: center;
}

.about {
  margin: 100px 0;
  background: var(--clr5);
  position: relative;
}
@media (max-width: 775px) {
  .about {
    padding: 50px 0;
    background: url("../img/about/a1.jpg");
    background-position: center;
    background-size: cover;
    margin: 0;
  }
  .about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9529411765);
  }
}
.about__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  position: relative;
}
.about__inner::before {
  content: "";
  position: absolute;
  background-image: url("..//img/icon/decore-star--dark.svg");
  background-repeat: no-repeat;
  width: 116px;
  height: 116px;
  left: -40px;
  bottom: -40px;
  opacity: 0.5;
}
@media (max-width: 775px) {
  .about__inner {
    flex-direction: column;
    position: relative;
    z-index: 2;
  }
}
.about__item {
  flex: 0 1 50%;
}
.about__title {
  font-size: 70px;
  line-height: 1;
  padding-left: 30px;
  position: relative;
}
@media (max-width: 930px) {
  .about__title {
    font-size: calc(50px + 20 * (100vw - 768px) / 162);
    margin-bottom: 20px;
  }
}
@media (max-width: 775px) {
  .about__title {
    font-size: 50px;
  }
}
.about__title::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 10px;
  background-color: var(--clr6);
  top: 0;
  left: 0;
}
.about__image {
  flex: 0 1 50%;
}
@media (max-width: 775px) {
  .about__image {
    display: none;
  }
}
.about__img {
  border-radius: 0 50px 0 0;
}

.stages {
  margin: 100px 0 0;
  position: relative;
}
.stages::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: 20px;
  background: url("../img/icon/3.png") 0 0/100% no-repeat;
  width: 70px;
  height: 210px;
  transform: rotate(-45deg);
  opacity: 0.3;
}
@media (max-width: 768px) {
  .stages::before {
    bottom: -50px;
  }
}
@media (max-width: 450px) {
  .stages::before {
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .stages {
    margin: 50px 0 0;
  }
}
.stages__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 16px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .stages__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .stages__inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.stages__item {
  position: relative;
  margin: 0 auto;
  max-width: 300px;
  border-radius: 20px;
  border-bottom: 1px solid rgba(253, 207, 0, 0.3490196078);
  border-right: 1px solid rgba(253, 207, 0, 0.3490196078);
  padding: 20px;
}
@media (max-width: 768px) {
  .stages__item {
    margin-bottom: 20px;
  }
}
@media (max-width: 460px) {
  .stages__item {
    border-right: none;
    max-width: 100%;
  }
}
.stages__image {
  margin-bottom: 30px;
}
.stages__img {
  width: 100px;
  height: 100px;
}
.stages__item--text {
  font-size: 18px;
  line-height: 1.4;
}
.stages__button {
  text-align: center;
}

.stages__item:nth-child(3)::after {
  display: none;
}

.repair {
  margin: 50px 0;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 50%, rgba(41, 99, 176, 0.7529411765) 0%);
}
@media (max-width: 950px) {
  .repair {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .repair {
    margin: 25px 0 0;
    background-image: linear-gradient(170deg, rgba(255, 255, 255, 0) 50%, rgba(41, 99, 176, 0.7529411765) 0%);
  }
}
@media (max-width: 520px) {
  .repair {
    background-image: linear-gradient(170deg, rgba(255, 255, 255, 0) 56%, rgba(41, 99, 176, 0.7529411765) 0%);
  }
}
.repair__bg {
  position: relative;
}
.repair__bg::before {
  content: "";
  position: absolute;
  background-image: url("../img/repair/repair-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}
.repair__inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media (max-width: 768px) {
  .repair__inner {
    flex-direction: column;
  }
}
.repair__block {
  flex: 0 1 50%;
  padding: 50px 0;
}
@media (max-width: 768px) {
  .repair__block {
    width: 100%;
  }
}
.repair__block:nth-child(2) {
  text-align: right;
}
@media (max-width: 768px) {
  .repair__block:nth-child(2) {
    padding: 0;
  }
}
@media (max-width: 390px) {
  .repair__block:nth-child(2) {
    text-align: left;
  }
}
.repair__title {
  color: var(--clr2);
  text-align: left;
  font-size: 42px;
  line-height: 1;
}
@media (max-width: 768px) {
  .repair__title {
    font-size: calc(34px + 8 * (100vw - 320px) / 448);
    margin-bottom: 25px;
  }
}
.repair__title--color {
  color: var(--clr1);
  text-align: right;
  font-size: 42px;
  line-height: 1;
}
@media (max-width: 768px) {
  .repair__title--color {
    font-size: calc(34px + 8 * (100vw - 320px) / 448);
    margin-bottom: 25px;
  }
}
@media (max-width: 390px) {
  .repair__title--color {
    text-align: left;
  }
}
.repair__list {
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.repair__item {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 30px;
  position: relative;
}
.repair__item::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  background-image: url("../img/icon/check.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 20px;
  height: 20px;
}
.repair__item--color {
  color: var(--clr1);
  position: relative;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 10px;
}
.repair__item--color span {
  font-size: 30px;
  color: var(--clr6);
  font-family: "Gilroy-bold", sans-serif;
}
@media (max-width: 390px) {
  .repair__item--color {
    justify-content: left;
  }
}

.request {
  margin-bottom: 50px;
}
@media (max-width: 950px) {
  .request {
    margin-bottom: 0;
  }
}
.request__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
@media (max-width: 950px) {
  .request__inner {
    flex-direction: column;
  }
}
.request__container {
  padding-right: 0;
  background-color: rgba(41, 99, 176, 0.7529411765);
}
@media (max-width: 950px) {
  .request__container {
    padding: 50px 15px;
    background-image: url("../img/request/request-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .request__container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(94, 138, 195, 0.9725490196);
  }
}
.request__title {
  color: var(--clr1);
  text-align: center;
  line-height: 1;
}
.request__forma {
  flex: 0 1 50%;
  position: relative;
  z-index: 10;
}
.request__input {
  min-width: 350px;
  max-width: 395px;
  margin: 0 auto;
}
.request__input .error {
  border: 1px solid #cc0b0b;
}
.request__input-name {
  position: relative;
}
@media (max-width: 450px) {
  .request__input-name {
    min-width: 100%;
  }
}
.request__input-name::before {
  content: "";
  position: absolute;
  background-image: url("../img/icon/people.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
}
.request__input-tel {
  position: relative;
}
@media (max-width: 450px) {
  .request__input-tel {
    min-width: 100%;
  }
}
.request__input-tel::before {
  content: "";
  position: absolute;
  background-image: url("../img/icon/phone-form.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
}
.request__input-mail {
  position: relative;
}
@media (max-width: 450px) {
  .request__input-mail {
    min-width: 100%;
  }
}
.request__input-mail::before {
  content: "";
  position: absolute;
  background-image: url("../img/icon/mail.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 20px;
  height: 20px;
  top: 25px;
  left: 18px;
  transform: translateY(-50%);
}
.request__btn {
  background-color: var(--clr6);
  max-width: 195px;
  margin-top: 44px;
  color: #444444;
}
.request__btn:hover span {
  color: var(--clr1);
}
.request__image {
  flex: 0 1 50%;
}
@media (max-width: 950px) {
  .request__image {
    display: none;
  }
}

.request-input {
  display: block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #e6e4e4;
  border-radius: 4px;
  width: 100%;
  min-width: 300px;
  max-width: 395px;
  padding: 12px 12px 12px 50px;
  color: var(--clr1);
  font-size: 16px;
  margin: 0 auto 16px;
}
.request-input__text {
  min-height: 100px;
  resize: none;
}
.request-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.request-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 450px) {
  .request-input {
    width: 100%;
  }
}

.question {
  background: #FBFBFB;
  padding: 80px 0;
  position: relative;
}
.question::after {
  content: "";
  position: absolute;
  bottom: 40px;
  right: 50px;
  background: url("../img/icon/4.png") 0 0/100% no-repeat;
  width: 250px;
  height: 135px;
  opacity: 0.3;
  animation: lic 2s infinite alternate;
}
@keyframes lic {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-15deg);
  }
}
@media (max-width: 768px) {
  .question {
    padding: 50px 0;
  }
}
.question__container {
  max-width: 770px;
  margin: 0 auto;
}
@media (max-width: 400px) {
  .question__title {
    font-size: calc(30px + 6 * (100vw - 320px) / 80);
    margin-bottom: 20px;
  }
}
.question__block--item {
  padding: 15px;
  border-bottom: 1px solid #DDDDDD;
}
@media (max-width: 450px) {
  .question__block--item {
    padding: 15px 0;
  }
}
.question__block--title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #000000;
  position: relative;
  cursor: pointer;
  padding-left: 35px;
}
.question__block--title::after, .question__block--title::before {
  content: "";
  width: 16px;
  height: 3px;
  position: absolute;
  top: 10px;
  left: 0;
  background-color: var(--clr6);
  transition: all 0.3s ease-in-out;
}
.question__block--title::after {
  transform: rotate(90deg);
}
.question__block--title.active::before {
  transform: rotate(180deg);
  background-color: var(--clr2);
}
.question__block--title.active::after {
  transform: rotate(180deg);
  background-color: var(--clr2);
}
.question__block--text {
  display: none;
  color: #646464;
  margin-top: 12px;
  padding-left: 35px;
}

.contact {
  margin: 50px 0;
}
@media (max-width: 768px) {
  .contact {
    margin: 10px 0 0;
  }
}
.contact__title {
  margin-bottom: 40px;
}
.contact__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 768px) {
  .contact__inner {
    display: block;
  }
}
.contact__item iframe {
  width: 100%;
  height: 450px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .contact__item iframe {
    height: 200px;
  }
}
.contact__item--map {
  flex: 0 1 60%;
}
.contact__block {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.contact__image {
  margin-right: 12px;
  width: 20px;
  height: 20px;
}
.contact__link {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #000000;
  transition: all 0.3s ease-in-out;
  display: block;
}
.contact__link:hover {
  color: var(--clr6);
}
@media (max-width: 450px) {
  .contact__link {
    font-size: 18px;
  }
}
.contact__location {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #000000;
}
@media (max-width: 450px) {
  .contact__location {
    font-size: 18px;
  }
}

.footer {
  padding: 10px 0;
  background-color: var(--clr2);
}
.footer__inner {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
}
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: repeat(1, 1fr);
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  .footer__inner {
    display: block;
  }
}
.footer__block {
  text-align: center;
}
@media (max-width: 768px) {
  .footer__block {
    margin-bottom: 30px;
  }
  .footer__block:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 500px) {
  .footer__logo {
    display: block;
    text-align: center;
  }
}
.footer__logo-img {
  max-width: 150px;
}
.footer__img {
  width: 25px;
  height: 25px;
  transition: all 0.3s ease-in-out;
}
.footer__button span {
  display: block;
  font-size: 16px;
  color: var(--clr1);
  margin-bottom: 10px;
}
.footer__body-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 390px) {
  .footer__body-link {
    flex-direction: column;
    gap: 0;
  }
}
.footer__phone {
  color: var(--clr1);
  transition: all 0.3s ease-in-out;
  font-family: "Gilroy-Medium", sans-serif;
}
@media (max-width: 1400px) {
  .footer__phone {
    font-size: calc(14px + 6 * (100vw - 900px) / 500);
  }
}
@media (max-width: 768px) {
  .footer__phone {
    font-size: 18px;
  }
}
.footer__phone:hover {
  color: var(--clr6);
}
.footer__title {
  font-family: "Gilroy-Bold", sans-serif;
  font-weight: 700;
  color: var(--clr1);
  margin-bottom: 10px;
  font-size: 20px;
  display: inline-block;
  letter-spacing: 1px;
}
.footer__list--social {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.footer__items {
  margin-top: 20px;
}
.footer__item--c {
  padding-left: 0;
  transition: all 0.3s ease-in-out;
}
.footer__item--c:hover {
  transform: scale(1.1);
}
.footer__item--c::before {
  display: none;
}
.footer__cooper {
  font-size: 10px;
  background-color: #164179;
  padding: 10px 0;
  color: var(--clr1);
  text-align: center;
}
.footer__cooper a {
  color: var(--clr1);
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.footer__cooper a:hover {
  color: var(--clr6);
}

.loading-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}

.loading-icon.active {
  display: flex;
  z-index: 1000;
}

.loading-icon img {
  width: 50px;
  height: 50px;
}

.scroll-up {
  position: fixed;
  right: 30px;
  bottom: -30%;
  display: inline-block;
  z-index: 10;
  transition: all 0.3s ease-in-out;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr3);
  border-radius: 4px;
  animation: scroll 1.5s cubic-bezier(0.075, 0.82, 0.165, 1) alternate infinite;
}
.scroll-up img {
  width: 35px;
  transform: rotate(180deg);
}

.scroll-up:hover {
  transform: translateY(-5px);
  background-color: var(--clr6);
}

.show-scroll {
  bottom: 30px;
}
@media (max-height: 400px) {
  .show-scroll {
    right: 10px;
  }
}

@keyframes scroll {
  0% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.3s ease-in-out;
}

.popup__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px 50px;
  transition: all 0.3s ease-in-out;
}

.popup__content {
  max-width: 600px;
  position: relative;
  transition: all 0.3s ease-in-out;
  width: 100%;
  transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
  opacity: 0;
}

.popup.open .popup__content {
  transform: perspective(600px) translate(0px, 0%) rotateX(0deg);
  opacity: 1;
}

.popup__close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 24px;
  color: var(--clr4);
  z-index: 101;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.popup__close:hover {
  color: var(--clr6);
}

.popup__form {
  display: block;
  background: var(--clr1);
  border-radius: 5px 0 5px 0;
  padding: 50px;
  position: relative;
  text-align: center;
}

@media (max-width: 450px) {
  .popup__form {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.popup__input {
  max-width: 400px;
  margin: 0 auto 10px;
}
.popup__input .popup-input {
  width: 100%;
  font-size: 16px;
  color: #2d425c;
  padding: 10px;
  border: 1px solid #dedede;
}
.popup__input .error {
  border: 1px solid #cc0b0b;
}

.popup-input__text {
  min-height: 100px;
  resize: none;
}

.popup__form h2 {
  font-family: "Gilroy-Bold", sans-serif;
  font-size: 28px;
  line-height: 1.22;
  margin-bottom: 20px;
  color: var(--clr2);
}

@media (max-width: 450px) {
  .popup__form h2 {
    font-size: 24px;
  }
}
.popup__form p {
  font-size: 20px;
  line-height: 1.12;
  margin-bottom: 30px;
}

@media (max-width: 450px) {
  .popup__form p {
    margin-bottom: calc(20px + 10 * (100vw - 320px) / 540);
    font-size: 18px;
  }
}
.popup__btn {
  margin-top: 36px;
}

.popup.open {
  opacity: 1;
  visibility: visible;
}

.thank__main {
  background-color: rgba(27, 27, 29, 0.337254902);
  width: 100%;
  height: 100%;
  position: absolute;
  min-height: 700px;
}
.thank__container {
  background-image: url("../img/home1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  height: 100vh;
  text-align: center;
  min-height: 700px;
}
.thank__title {
  font-size: 80px;
  font-family: "Gilroy-bold", sans-serif;
  max-width: 800px;
  text-align: center;
  margin: 0;
  line-height: 1.1;
  margin-bottom: 50px;
  z-index: 2;
  position: relative;
  color: var(--clr1);
}
@media (max-width: 600px) {
  .thank__title {
    font-size: calc(50px + 30 * (100vw - 320px) / 280);
  }
}
.thank__subtitle {
  font-size: 28px;
  margin-bottom: 70px;
  z-index: 2;
  position: relative;
  color: var(--clr1);
}
@media (max-width: 600px) {
  .thank__subtitle {
    font-size: calc(22px + 6 * (100vw - 320px) / 280);
  }
}
.thank__link {
  background-color: var(--clr6);
  color: var(--clr4);
  transition: all 0.1s ease-in-out;
}
.thank__link:hover {
  color: var(--clr1);
  transition: all 0.1s ease-in-out;
}
@media (max-width: 450px) {
  .thank__link {
    width: 100%;
    display: inline-block;
  }
}