@font-face {
  font-family: 'Arial';
  src: url('/src/fonts/ArialRegular.ttf');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Arial';
  src: url('/src/fonts/ArialBold.ttf');
  font-weight: 700;
  font-style: normal;
}

body {
  background: #fff;
  font-family: "Onest", sans-serif;
}

h1,
h2,
h3,
h4 {
  font-family: "Days One", sans-serif;
}

.ff1 {
  font-family: "Onest", sans-serif;
}
.ff2 {
  font-family: "Days One", sans-serif;
}
.ff3 {
  font-family: "Arial", sans-serif;
}


.container {
  width: 100%;
}


@media screen and (min-width: 992px) {
  .container {
    padding: 0 calc(5vw - 15px);
  }
}

@media screen and (min-width: 1400px) {
  .container {
    padding: 0;
    max-width: 1242px;
    margin: 0 auto;
  }
}


.btn {
  width: 290px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #454545;
  border-radius: 100px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
  font-family: "Arial", sans-serif;
  transition: .5s;
}

.btn:hover {
  background: #686868;
}

.btn-stroke {
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 100px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.03em;
  color: #000;
  background: transparent;
  font-family: "Arial", sans-serif;
  transition: .5s;
}

.btn-stroke:hover {
  background: #454545;
  color: #fff;
}

.header {
  position: fixed;
  width: 100%;
  top: 20px;
  left: 0;
  right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 15px 0 30px;
  z-index: 100;
}

.header-navigation {
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(3px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  padding: 0 30px;
}


.lang-btn {
  font-weight: 300;
  font-size: 16px;
  line-height: 121%;
  color: #5a5a5a;
}
.lang-btn.active {
  font-weight: 600;
  color: #454545;
}



.burger-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 76px;
  backdrop-filter: blur(3px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
}

.burger {
  position: relative;
  display: block;
  width: 50px;
  height: 6px;
  border-radius: 50px;
  background: #454545;
  transition: 0.5s ease;
  flex-shrink: 0;
}

.burger::after,
.burger::before {
  content: "";
  display: block;
  border-radius: 50px;
  width: 50px;
  height: 5.5px;
  background: #454545;
  position: absolute;
  left: 0;
  right: 0;
  will-change: transform;
  transition: transform 0.3s ease-in;
}

.burger::before {
  bottom: 14px;
}

.burger::after {
  top: 14px;
}

.burger-btn-x.burger-btn .burger::after {
  transform: translateY(-14px) rotate(45deg);
  top: 14px;
}

.burger-btn-x.burger-btn .burger::before {
  transform: translateY(14px) rotate(135deg);
  bottom: 14px;
}
.burger-btn-x.burger-btn .burger {
  background: transparent;
}

.menu {
  position: fixed;
  top: 96px;
  left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
  height: 290px;
  width: 250px;
  background-color: #fff;
  padding: 30px;
  border-radius: 6px;
  z-index: 90;
  opacity: 0;
  transform: translateX(-280px);
  transition: .3s;
}

.menu.open {
  opacity: 1;
  transform: translateX(0px);
}

@media screen and (min-width: 992px) {
  .header {
    top: 30px;
    padding: 0 calc(5vw) 0 calc(5vw + 15px) ;
    height: 100px;
  }

  .header-navigation {
    height: 60px;
    justify-content: space-between;
    padding: 0 20px;
  }
  .header-inner {
    padding-right: 0;
  }
  .menu {
    display: none;
  }
}
@media screen and (min-width: 1400px) {
  .header {
    max-width: 1242px;
    margin: 0 auto;
    padding: 0 15px 0 45px;
  }
}




/* hero-section============================= */
/* hero-section============================= */

.hero-section {
  padding: 20px 0 40px;
  width: 100%;
  height: 900px;
  position: relative;
}

.hero-section-clip {
  position: absolute;
  right: 0;
  top: 0;
  width: 92px;
  height: 76px;
  background-color: #fff;
  border-radius: 0;
  border-bottom-left-radius: 25px;
}


.hero-section-clip::before,
.hero-section-clip::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  box-shadow: 20px -20px #fff;
  border-radius: 50%;
}
.hero-section-clip::before {
  right: 100%;
  top: 0;
}
.hero-section-clip::after {
  right: 0;
  top: 100%;
}

.hero-section-inner {
  height: 750px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 90px;
  border-radius: 25px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  overflow: hidden;
}

.hero-section-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #171918 70%, #171918 100%);
  border-radius: 0 0 25px 25px;
}

.hero-section-image {
  position: absolute;
  right: 70px;
  bottom: 110px;
  width: 380px;
}

.hero-section-decor1 {
  position: absolute;
  top: 100px;
  left: 5px;
  width: 60px;
  height: 60px;
  z-index: 1;
  animation: translate1 20s infinite;
}
.hero-section-decor2 {
  position: absolute;
  top: 270px;
  right: -15px;
  width: 64px;
  height: 64px;
  z-index: 1;
  animation: translate2 30s infinite;
}

@keyframes translate1 {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes translate2 {
  0% {
    transform: translate(100%, 50%);
  }
  50% {
    transform: translate(-20%, -50%);
  }
  100% {
    transform: translate(100%, 50%);
  }
}

@media screen and (min-width: 992px) {
  .hero-section {
    padding: 30px 0 50px;
    height: 800px;
  }

  .hero-section-inner {
    height: 720px;
    padding-bottom: 100px;
    overflow: initial;
  }

  .hero-section-inner::after {
    height: 420px;
    background: linear-gradient(180deg, rgba(10, 13, 9, 0) 0%, #0a0d09 100%);
  }
  .hero-section-image {
    width: 460px;
    left: 0;
    bottom: 0;
  }

  .hero-section-decor1 {
    top: 226px;
    left: 7.2%;
    width: 110px;
    height: 110px;
  }
  .hero-section-decor2 {
    top: 320px;
    right: 5.2%;
    width: 145px;
    height: 145px;
  }

  .hero-section-clip {
    height: 100px;
    width: 310px;
  }
}

/* hero-section============================= */
/* hero-section============================= */


/* tariff======================== */
/* tariff======================== */
.tariff-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  border-radius: 25px;
}
.tariff-card {
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 4px 4px 0 rgba(42, 11, 11, 0.25);
  padding-bottom: 20px;
}
.tariff-card-head {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 109%;
  letter-spacing: -0.03em;
  border-radius: 25px 25px 15px 15px;
  text-align: center;
  padding: 0 35px;
}

.tariff-section-decor1 {
  position: absolute;
  top: -5px;
  left: -150px;
  width: 725px;
  filter: blur(220px);
}

.tariff-section-decor2 {
  position: absolute;
  top: 545px;
  left: -40px;
  width: 754px;
  filter: blur(300px);
}
.tariff-section-decor3 {
  position: absolute;
  bottom: -100px;
  left: -90px;
  width: 764px;
  filter: blur(200px);
  transform: rotate(-62deg);
}


.tariff-section-decor4-5 {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
  width: 164px;
}
.tariff-section-decor4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 93px;
  height: 93px; 
}
.tariff-section-decor5 {
  position: absolute;
  top: -5px;
  right: 0;
  width: 100px;
  height: 100px; 
  transform: rotate(-15deg);
}

.tariff-section-decor6 {
  position: absolute;
  top: -140px;
  left: -190px;
  width: 324px;
  transform: rotate(40deg);
  filter: blur(4px);
  animation: tariff-section-decor6 20s infinite;
}
.tariff-section-decor7 {
  position: absolute;
  bottom: -74px;
  right: -145px;
  width: 324px;
  transform: rotate(40deg);
  filter: blur(4px);
  animation: tariff-section-decor7 20s infinite;
}

@keyframes tariff-section-decor6 {
  0% {
    transform: translate(10%, 10%) rotate(40deg);
  }
  50% {
    transform: translate(-10%, -10%) rotate(20deg);
  }
  100% {
    transform: translate(10%, 10%) rotate(40deg);
  }
}

@keyframes tariff-section-decor7 {
  0% {
    transform: translate(-10%, -10%) rotate(40deg);
  }
  50% {
    transform: translate(10%, 10%) rotate(0deg);
  }
  100% {
    transform: translate(-10%, -10%) rotate(40deg);
  }
}
@media screen and (min-width: 992px) {
  .tariff-section { 
    border-radius: 50px 50px 0 0;
  }

  .tariff-section-decor2 {
    top: initial;
    bottom: -170px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .tariff-section-decor3 {
    bottom: initial;
    left: initial;
    top: -174px;
    right: -214px;
    transform: rotate(-62deg);
  }


  .tariff-section-decor6 {
    top: initial;
    bottom: -140px;
    left: -200px;
    width: 463px;
  }
  .tariff-section-decor7 {
    display: none;
  }


}
/* tariff======================== */
/* tariff======================== */



/* about======================== */
/* about======================== */



.about-section-decor1 {
  display: none;
}

.about-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f8f8f8;
  border-radius: 25px;
  overflow: hidden;
}

.about-content-image {
  width: 100%;
  height: 160px;
  border-radius: 102px 78px 0 0;
}

.about-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: space-between;
  border: 3px solid #e50f24;
  border-radius: 18px 91px 18px 18px;
  padding: 55px 20px;
}

.callback-decor {
  position: absolute;
  left: -137px;
  top: -148px;
  width: 243px;
  height: 243px;
  border-radius: 50%;
  background-color: #48C119;
}
.callback-decor svg {
  position: absolute;
  right: 47px;
  bottom: 36px;
}
.callback-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid #b9b9b9;
}

.form-field {
  width: 310px;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 100px;
  border: 1px solid rgba(71, 71, 71, 0.45);
  outline: none;
  background-color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: #000;
}
.form-field::placeholder {
  color: #808080;
}

.tg-btn {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.16);
  background: #338af3;
  transition: .3s;
   opacity: .9;
}
.inst-btn {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.16);
  background: linear-gradient(90deg, #7e1df8 0%, #ff3b3d 100%);
  transition: .3s;
   opacity: .9;
}
.btn:hover.tg-btn {
   background: #338af3;
   opacity: 1;
}
.btn:hover.inst-btn {
   background: linear-gradient(90deg, #7e1df8 0%, #ff3b3d 100%);
   opacity: 1;
}

.about-advantages-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  right: 15px;
  display: block;
  height: 100%;
  border-radius: 25px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  overflow: hidden;
}
  .about-advantages-decor {
    position: absolute;
    top: -232px;
    left: -124px;
    width: 290px;
    height: 290px;
    background: #2b2b2b;
    transform: rotate(23deg);
    border-radius: 36px;
    animation: about-advantages-decor 20s infinite;
  }


  @keyframes about-advantages-decor {
    0% {
      transform: translate(-5%, -5%) rotate(90deg);
    }
    50% {
      transform: translate(10%, 120%) rotate(23deg);
    }
    100% {
      transform: translate(-5%, -5%) rotate(90deg);
    }
  }


@media screen and (min-width: 992px) {
  .about-section-decor1 {
    position: absolute;
    right: -150px;
    top: -75px;
    width: 413px;
    display: block;
    animation: about-section-decor1 30s infinite;
  }

  
  @keyframes about-section-decor1 {
    0% {
      transform: translate(-20%, -20%) rotate(0deg);
    }
    50% {
      transform: translate(20%, 20%) rotate(40deg);
    }
    100% {
      transform: translate(-20%, -20%) rotate(0deg);
    }
  }


  .about-content {
    border-radius: 130px 25px 25px 25px;
  }
  .about-content-image {
    height: 340px;
    border-radius: 102px 25px 0 0;
  }

  .about-inner {
    gap: 80px;
    border: 3px solid #454545;
    border-radius: 25px 130px 25px 25px;
    padding: 80px 40px;
  }

  .callback-form {
    flex-direction: row;
    gap: 30px;
    padding-left: 15.7%;
    padding-right: 5.7%;
  }
  .callback-decor {
    position: absolute;
    left: -129px;
    top: -88px;
  }
  .callback-decor svg {
    right: 37px;
    bottom: 66px;
  }

  .about-advantages-cover {
    width: 100%;
    inset: 0;
    border-radius: 50px 50px 0 0;
    background-position: left top;
  }


}
/* about======================== */
/* about======================== */


.reviews-section-decor1 {
  position: absolute;
  top: 20px;
  left: -80px;
  width: 116px;
  height: 194px;
  filter: blur(10px);
  background: linear-gradient(5deg, #000 0%, #111 41.35%, #666 100%);
  transform: rotate(23deg);
  border-radius: 36px;
  animation: reviews-section-decor1 10s infinite;
}

.reviews-section-decor2 {
  position: absolute;
  bottom: 170px;
  right: -170px;
  width: 208px;
  height: 208px;
  background: linear-gradient(142deg, #000 0%, #666 100%);
  transform: rotate(23deg);
  border-radius: 36px;
  animation: reviews-section-decor2 20s infinite;
}

  @keyframes reviews-section-decor1 {
    0% {
      transform: translate(-20%, -20%) rotate(23deg);
    }
    50% {
      transform: translate(20%, 20%) rotate(0deg);
    }
    100% {
      transform: translate(-20%, -20%) rotate(23deg);
    }
  }
  @keyframes reviews-section-decor2 {
    0% {
      transform: translate(-10%, -10%) rotate(0deg);
    }
    50% {
      transform: translate(10%, 10%) rotate(23deg);
    }
    100% {
      transform: translate(-10%, -10%) rotate(0deg);
    }
  }


.footer {
  height: 265px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(174deg, #000 0%, #2f2f2f 56.58%, #4b4b4b 100%);
}


@media screen and (min-width: 992px) {
  .reviews-section-decor1 {
    top: initial;
    bottom: 290px;
    left: -130px;
    width: 210px;
    height: 350px;
  }

  .reviews-section-decor2 {
    position: absolute;
    bottom: initial;
    top: 135px;
    right: -125px;
  }

  .footer {
    height: 350px;
  }

}







.succes-result-form {
  background-color: #fff;
  color: #2b2b2b;
  padding: 30px 20px;
  font-size: 32px;
  text-align: center;
}


.form-message {
  padding: 40px;
  background-color: #fff;
  color: #404040;
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
}




.z1 {
  z-index: 1;
}
.ls-03 {
  letter-spacing: -0.03em;
}
.ls-04 {
  letter-spacing: 0.04em;
}
.ls-07 {
  letter-spacing: 0.07em;
}
.white {
  color: #fff;
}
.black {
  color: #000;
}
.grey {
  color: #505050;
}
.light-grey {
  color: #676767;
}
.dark {
  color: #404040;
}
.linear-text {
  background: linear-gradient(151deg, #a92431 0%, #474747 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.linear-text2 {
  background: linear-gradient(124deg, #404040 0%, #982631 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.red {
  color: #E50F24;
}

.bg-white {
  background-color: #fff;
}
.bg-light {
  background-color: #f8f8f8;
}
.bg-black {
  background-color: #000;
}
.bg-dark {
  background-color: #2e2e2e;
}
.bg-red {
  background-color: #D80027;
}
.bg-dark-grey {
  background-color: #626262;
}