* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
label {
  width: 100%;
  display: block;
}

body {
  font-style: normal;
  margin: 0;
  font-family: "Karla";
  font-style: normal;
}
main {
  overflow: hidden;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
p {
  margin: 0;
}
a {
  text-decoration: none;
}
h2,
h3 {
  margin: 0;
}
img {
  display: block;
  width: 100%;
}
input {
  outline: none;
  border: none;
}
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 1270px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.banner {
  /* background: url(../img/bgd-banner.png) no-repeat; */
  background-size: cover;
  padding: 70px 0;
  position: relative;
}
.banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-direction: column;
  gap: 70px;
  position: relative;
  z-index: 3;
}
.banner h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: #fff;
  width: 100%;
  max-width: 700px;
  text-transform: uppercase;
}
.banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .banner {
    padding: 35px 0 25px;
  }
  .banner__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
  }
  .banner h2 {
    font-size: 24px;
    line-height: 28px;
    text-align: center;
  }
}
.about {
  padding: 50px 0;
  border-bottom: 1px solid #000;
}
.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 70px;
}
.about__text {
  width: 100%;
  max-width: 560px;
}
.about__text__item {
  margin-bottom: 25px;
}
.about__text__item:last-child {
  margin-bottom: 0;
}
.about__text__item_head {
  text-align: center;
  gap: 35px;
  margin-bottom: 20px;
}
.about__text h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 46px;
  text-transform: uppercase;
  color: #e12;
}
.about__text p {
  font-weight: 500;
  font-size: 30px;
  line-height: 35px;
  text-align: center;
}
.about h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 46px;
  text-align: center;
  color: #000;
  padding-bottom: 10px;
  margin-bottom: 80px;
  position: relative;
  text-transform: uppercase;
}
.about h2::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  max-width: 1000px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}
.about__option {
  position: relative;
}
.about ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  top: -100px;
  left: -20px;
}
.about ul li {
  padding: 20px 10px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background: #fff;
  text-align: center;
  max-width: 160px;
}
.about ul li:nth-child(2) {
  margin-left: 40px;
}
.about ul li:nth-child(3) {
  margin-left: 80px;
}
.about ul li:nth-child(4) {
  margin-left: 120px;
}
.about ul img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.about ul p {
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
}
@media screen and (max-width: 992px) {
  .about h2 {
    margin-bottom: 40px;
  }
  .about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about ul {
    position: static;
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .about ul li:nth-child(2) {
    margin-left: 0px;
  }
  .about ul li:nth-child(3) {
    margin-left: 0px;
  }
  .about ul li:nth-child(4) {
    margin-left: 0px;
  }
}
@media screen and (max-width: 768px) {
  .about {
    padding: 20px 0;
  }
  .about h2 {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 23px;
    padding: 0;
  }
  .about h2::before {
    display: none;
  }
  .about__text p {
    font-size: 16px;
    line-height: 19px;
  }
  .about__text h3 {
    font-size: 20px;
    line-height: 23px;
  }
  .about__text__item_head {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .about ul {
    gap: 15px;
    margin-top: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .about ul li {
    padding: 10px 7px;
  }
  .about ul img {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
  }
  .about ul p {
    font-size: 7px;
    line-height: 8px;
    max-width: 70px;
  }
  .about__inner {
    gap: 20px;
  }
}
.gallery {
  padding: 50px 0;
}
.gallery__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 80px;
}
.gallery h2 {
  font-weight: 700;
  font-size: 45px;
  line-height: 50px;
  color: #000;
  max-width: 470px;
}
.gallery p {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #000;
  text-align: center;
  max-width: 430px;
}
.gallery__list {
  width: 100%;
  position: relative;
}
.gallery__list__item {
  position: relative;
  width: 100%;
}
.gallery__list__item__txt {
  background: #fff;
  padding: 25px;
  position: absolute;
  bottom: 50px;
  right: 100px;
}
.gallery__list p {
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  color: #e12;
  text-align: center;
}
.gallery__list .swiper-pagination {
  bottom: -30px;
  right: 0;
  left: auto !important;
  z-index: 20;
}
.gallery__list .swiper-pagination-bullet-active {
  background: #e12;
}
.gallery .test {
  overflow: hidden;
  padding-bottom: 50px;
  cursor: pointer;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .gallery {
    padding: 20px 0;
  }
  .gallery h2 {
    font-size: 20px;
    line-height: 23px;
    text-align: center;
  }
  .gallery p {
    font-size: 20px;
    line-height: 23px;
  }
  .gallery__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
    gap: 15px;
  }
  .gallery__list .swiper-pagination {
    left: revert-layer !important;
  }
  .gallery__list__item__txt {
    padding: 9px;
    max-width: 160px;
    right: 30px;
    bottom: 15px;
  }
  .gallery__list__item__txt p {
    font-size: 13px;
    line-height: 15px;
  }
}
.clients {
  padding: 50px 0;
  border-bottom: 1px solid #000;
}
.clients h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 55px;
  color: #000;
  margin-bottom: 50px;
  text-align: center;
  text-transform: uppercase;
}
.clients__inner {
  padding-top: 50px;
}
.clients__item {
  padding: 30px 30px 40px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fff9f4),
    to(#ffffff)
  );
  background: linear-gradient(180deg, #fff9f4 0%, #ffffff 100%);
  -webkit-box-shadow: 2px 2px 7.3px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 2px 2px 7.3px 0px rgba(0, 0, 0, 0.2509803922);
  border: 1px solid rgba(168, 12, 13, 0.2);
  height: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.clients__item__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
.clients__item__user img {
  max-width: 80px;
}
.clients__item__user h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #e12;
  margin-bottom: 10px;
}
.clients__item__user p {
  font-size: 16px;
  line-height: 18px;
  color: #000;
}
.clients__item__user span {
  color: #e12;
}
.clients__item__desk {
  font-size: 14px;
  line-height: 16px;
  color: #000;
  text-align: center;
}
.clients__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 70px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 50px;
}
.clients__arrow img {
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.clients__arrow .button-next {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.clients .swiper-slide-active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .clients {
    padding: 20px 0;
  }
  .clients h2 {
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 20px;
  }
  .clients .swiper-slide-active {
    -webkit-transform: scale(1);
    transform: scale(1);
    position: relative;
    z-index: 5;
  }
  .clients__arrow {
    gap: 20px;
    margin-top: 20px;
  }
  .clients__arrow img {
    width: 20px;
    height: 20px;
  }
  .clients__arrow .button-next {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .clients__item__desk {
    font-size: 9px;
    line-height: 12px;
  }
  .clients__inner {
    padding-top: 0px;
  }
  .clients__item {
    padding: 12px 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 17px;
  }
  .clients__item__user {
    gap: 12px;
    margin-bottom: 10px;
  }
  .clients__item__user img {
    max-width: 32px;
    border-radius: 10px;
  }
  .clients__item__user h3 {
    font-size: 8px;
    line-height: 10px;
    margin-bottom: 5px;
  }
  .clients__item__user p {
    font-size: 7px;
    line-height: 8px;
  }
}
.calculate {
  padding: 50px 0;
  border-bottom: 1px solid #000;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ffffff),
    to(#fafafa)
  );
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}
.calculate__title h2 {
  font-weight: 700;
  font-size: 45px;
  line-height: 50px;
  text-align: center;
  color: #e12;
  margin-bottom: 30px;
}
.calculate__title p {
  font-weight: 500;
  font-size: 30px;
  line-height: 35px;
  text-align: center;
}
.calculate__inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 60px;
}
.calculate__sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 80px;
}
.calculate__sum label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 700;
  font-size: 32px;
  line-height: 37px;
  color: #a80c0d;
  width: 100%;
  max-width: 250px;
}
.calculate__sum label:last-child {
  margin-bottom: 0;
}
.calculate__sum input {
  font-weight: 700;
  font-size: 50px;
  line-height: 58px;
  color: #e12;
  max-width: 250px;
  background: rgba(0, 0, 0, 0);
}
.calculate__sum_val {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #e12;
}
.calculate__sum_val span {
  margin-right: 10px;
  font-weight: 700;
  font-size: 50px;
  line-height: 58px;
}
.calculate__range {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#faf4f4),
    to(#ffeded)
  );
  background: linear-gradient(90deg, #faf4f4 0%, #ffeded 100%);
}
.calculate__range img {
  position: absolute;
  bottom: 34px;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  max-width: 1250px;
  padding: 0 30px;
}
.calculate__range input[type="range"] {
  cursor: pointer;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5019607843);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#faf4f4),
    to(#ffeded)
  );
  background: linear-gradient(90deg, #faf4f4 0%, #ffeded 100%);
  border-radius: 60px;
  position: relative;
  overflow: hidden;
}
.calculate__range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  border-radius: 50%;
  height: 30px;
  background-color: #fff;
  border: 1px solid #000;
  z-index: 5;
  position: relative;
}
.calculate__range input[type="range"]::-webkit-slider-thumb::before {
  content: "";
  width: 30px;
  height: 30px;
  background: #000;
  position: absolute;
  top: 0;
}
.calculate__range .range-fill {
  position: absolute;
  display: block;
  left: 3px;
  top: 3px;
  border-radius: 60px;
  height: 30px;
  width: auto;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#be0606),
    to(#ff2536)
  ) !important;
  background: linear-gradient(90deg, #be0606 0%, #ff2536 100%) !important;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .calculate {
    padding: 20px 0;
  }
  .calculate__title h2 {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 23px;
  }
  .calculate__title p {
    font-size: 15px;
    line-height: 18px;
    max-width: 350px;
    margin: 0 auto;
  }
  .calculate__inner {
    margin-top: 15px;
  }
  .calculate__sum {
    margin-bottom: 20px;
  }
  .calculate__sum label {
    font-size: 10px;
    line-height: 12px;
    max-width: 100px;
  }
  .calculate__sum input {
    font-size: 15px;
    line-height: 18px;
  }
  .calculate__sum_val span {
    font-size: 15px;
    line-height: 18px;
    margin-right: 0;
  }
  .calculate__range img {
    bottom: 19px;
  }
  .calculate__range input[type="range"] {
    border-radius: 60px;
  }
  .calculate__range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
  }
  .calculate__range .range-fill {
    left: 3px;
    top: 3px;
    border-radius: 60px;
    height: 15px;
    width: auto;
    z-index: 1;
  }
}
.invite {
  padding: 50px 0;
  border-bottom: 1px solid #000;
}
.invite h2 {
  font-weight: 700;
  font-size: 45px;
  line-height: 52px;
  color: #000;
  margin-bottom: 50px;
  text-align: center;
}
.invite__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}
.invite__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 70px;
  padding-left: 50px;
}
.invite__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  position: relative;
}
.invite__list__item:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.invite__list__item img {
  max-width: 140px;
}
.invite__list__item__txt {
  max-width: 405px;
}
.invite__list span {
  font-weight: 800;
  font-size: 24px;
  line-height: 28px;
  color: #e12;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.invite__list p {
  font-size: 24px;
  line-height: 28px;
  color: #000;
  text-align: center;
  margin-top: 15px;
}
.invite__list .arrow {
  position: absolute;
  top: 113px;
  right: -69px;
}
.invite__list .arrow-twice {
  right: auto;
  left: -84px;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
@media screen and (max-width: 1240px) {
  .invite__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .invite {
    padding: 20px 0;
  }
  .invite h2 {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 23px;
  }
  .invite__list {
    padding: 0;
    gap: 40px;
    padding: 0 20px;
  }
  .invite__list__item {
    gap: 12px;
  }
  .invite__list__item img {
    max-width: 80px;
  }
  .invite__list__item__txt {
    max-width: 250px;
  }
  .invite__list span {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 5px;
  }
  .invite__list p {
    font-size: 14px;
    line-height: 16px;
  }
  .invite__list .arrow {
    top: 65px;
    right: -54px;
  }
  .invite__list .arrow-twice {
    left: -52px;
  }
}
.ola {
  padding-bottom: 50px;
  border-bottom: 1px solid #000;
}
.ola__title {
  margin-bottom: 50px;
}
.ola__title h2 {
  text-align: center;
  font-weight: 700;
  font-size: 45px;
  line-height: 52px;
  color: #e12;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.ola__title p {
  font-weight: 500;
  font-size: 30px;
  line-height: 35px;
  text-align: center;
  max-width: 1140px;
  margin: 0 auto;
}
.ola__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
.ola h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 37px;
  text-transform: uppercase;
  text-align: center;
  color: #a80c0d;
  margin-bottom: 25px;
}
.ola ul img {
  max-width: 37px;
}
.ola ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.ola ul li:last-child {
  margin-bottom: 0;
}
.ola ul span {
  font-weight: 500;
  font-size: 25px;
  line-height: 29px;
}
.ola__inner__sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 50px;
  gap: 30px;
}
.ola__sum__item b {
  font-weight: 700;
  font-size: 40px;
  line-height: 46px;
  color: #e12;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 5px;
}
.ola__sum__item p {
  font-weight: 700;
  font-size: 25px;
  line-height: 29px;
  max-width: 350px;
  text-align: center;
}
.ola video {
  width: 100%;
  max-width: 700px;
}
@media screen and (max-width: 992px) {
  .ola__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .ola {
    padding-bottom: 20px;
  }
  .ola h2 {
    font-size: 20px;
    line-height: 23px;
  }
  .ola__title {
    margin-bottom: 20px;
  }
  .ola__title p {
    font-size: 15px;
    line-height: 17px;
  }
  .ola__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .ola h3 {
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 15px;
  }
  .ola ul img {
    max-width: 26px;
  }
  .ola ul li {
    gap: 11px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 12px;
  }
  .ola ul span {
    font-size: 15px;
    line-height: 17px;
  }
  .ola__inner__sum {
    margin-top: 20px;
  }
  .ola__inner__sum b {
    font-size: 23px;
    line-height: 26px;
  }
  .ola__inner__sum p {
    font-size: 14px;
    line-height: 16px;
    max-width: 200px;
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 3px;
}
.header__logo {
  max-width: 125px;
}
.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.header__list a {
  font-size: 24px;
  line-height: 28px;
  color: #000;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.header__list a:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #e12;
  position: absolute;
  bottom: -37px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__list_mob {
  display: none;
  position: relative;
  z-index: 10;
}
.header__list_mob_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__list_mob_head img {
  max-width: 10px;
  margin-left: 5px;
  margin-top: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__list_mob_head a {
  font-weight: 500;
  font-size: 16px;
  line-height: 11px;
  color: #000;
}
.header__list_mob_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  padding: 15px 7px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(41%, #ffffff),
    to(#e3dede)
  );
  background: linear-gradient(180deg, #ffffff 41%, #e3dede 100%);
  position: absolute;
  bottom: -122px;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__list_mob_body a {
  color: #000;
  font-weight: 500;
  font-size: 16px;
  line-height: 11px;
  white-space: nowrap;
  margin-bottom: 10px;
}
.header__list_mob_body a:last-child {
  margin-bottom: 0;
}
.header .register {
  width: 100%;
  text-align: center;
  max-width: 270px;
  background: #e12;
  padding: 8px;
  border: 2px solid #e12;
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .register:hover {
  background: rgba(0, 0, 0, 0);
  color: #e12;
}
@media screen and (max-width: 1150px) {
  .header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
  }
  .header__list a {
    font-size: 16px;
    line-height: 24px;
  }
  .header__list a:hover::after {
    bottom: -42px;
  }
}
@media screen and (max-width: 992px) {
  .header__list {
    display: none;
  }
  .header__list_mob {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 2px 0;
  }
  .header__inner {
    margin-bottom: 0;
  }
  .header .register {
    max-width: 120px;
    padding: 4px;
    font-size: 12px;
    line-height: 14px;
  }
  .header__logo {
    max-width: 40px;
  }
  .header__list_mob_head a {
    font-size: 10px;
    line-height: 11px;
  }
  .header__list_mob_head img {
    margin-top: 0;
  }
  .header__list_mob_body {
    bottom: -90px;
  }
  .header__list_mob_body a {
    font-size: 10px;
    line-height: 11px;
    color: #000;
  }
}
.footer {
  padding: 40px 0;
  background-image: url("/img/footerback.jpg");
}
.footer .logo {
  max-width: 106px;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer__Con {
  padding-left: 120px;
  padding-right: 120px;
}
.footer__line {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  height: 1px;
  background-color: #fff;
  margin-top: 30px;
}
.footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.footer ul img {
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer ul a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.footer p {
  margin-top: 30px;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 20px 0;
  }
  .footer__Con {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer__line {
    margin-top: 15px;
  }
  .footer .logo {
    max-width: 45px;
  }
  .footer ul {
    gap: 5px;
  }
  .footer ul img {
    width: 20px;
    height: 20px;
  }
  .footer p {
    margin-top: 20px;
    font-size: 13px;
    line-height: 15px;
  }
} /*# sourceMappingURL=main.min.css.map */

.form-wrapper {
  max-width: 420px;
}

.form-button {
  padding: 20px 20px;
  position: relative;
  width: 100%;
  background-color: #be0606;
  color: white;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  max-width: 800px;
  border-radius: 40px;
  transition: background-color 1s ease;

  &:hover {
    background-color: #6b0404;
  }
}
.form-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  box-shadow: 0 0 10px 2px #000000 inset;
  clip-path: inset(0 round 10px);
  animation: electric 1.5s linear infinite;
}
@keyframes electric {
  0% {
    clip-path: inset(0 100% 0 0 round 10px);
  }
  25% {
    clip-path: inset(0 0 100% 0 round 10px);
  }
  50% {
    clip-path: inset(0 0 0 100% round 10px);
  }
  75% {
    clip-path: inset(100% 0 0 0 round 10px);
  }
  100% {
    clip-path: inset(0 100% 0 0 round 10px);
  }
}
