* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  background: #fff;
  color: #000;
}

.header {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  height: 100px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header_container {
  width: 100%;
  max-width: 80vw;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_left {
  display: flex;
  align-items: center;
}

.header_icon {
  width: 12vw;
  object-fit: contain;
}

.header_right {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.small {
  width: 4vw;
}

.small-2 {
  width: 5vw;
}

.rating_block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}

.rating_number {
  font-size: 1.2vw;
  font-weight: 700;
}

.rating_stars {
  font-size: 1vw;
  color: #F7A100;
}

.reviews_block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}

.reviews_count {
  font-size: 1.2vw;
  font-weight: 700;
}

.reviews_label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8vw;
  font-weight: 100;
  padding: 0.3vw 0;
}

.approve_block {
  display: flex;
  align-items: center;
  gap: 0.5vw;
}

.approve_icon {
  width: 1.2vw;
  object-fit: contain;
}

.approve_text {
  font-size: 1vw;
  color: #4CAF50;
}


.header_btn {
  width: 12vw;
  height: 4vw;
  color: #fff;
  font-size: 0.9vw;
  font-weight: 100;
  cursor: pointer;
  background: transparent;
  transition: 0.3s;
  border-radius: 2.5vw;
}

.header_btn:hover {
  opacity: 0.6;
}

.btn_blackwhite {
  background: #000;
  border: 2px solid #fff;
}

.btn_blue {
  background: linear-gradient(#2B00FF, #7c1ad2);
  border: 0px solid #fff;
}


/* HERO */
.hero {
  background: url("../img/first.jpg") no-repeat center center/cover;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  padding: 15vw 5vw;
}

.hero_container {
  width: 100%;
  max-width: 70vw;
  margin: 0 auto;
}

.hero_title {
  font-size: 5vw;
  max-width: 30vw;
  font-style: italic;
  font-weight: 700;
  text-shadow: 1px 0 white, -1px 0 white, 0 1px white, 0 -1px white;
  letter-spacing: 3px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 3vw;
}

.hero_container_2 {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 70vw;
  margin: 0 auto;
  gap: 5vw;
  margin-bottom: 1vw;
}

.gap {
  gap: 0vw;
}

.gap-2 {
  align-items: center;
  justify-content: center;
  gap: 0vw;
}

.gap-3 {
  gap: 3vw;
}

.hero_block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}

.hero_icon {
  width: 1.3vw;
  object-fit: contain;
  margin-bottom: 0.2vw;
}


.hero_title_2 {
  font-size: 2vw;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2vw;
}


.hero_subtitle {
  font-size: 1.3vw;
  color: #DC8EFF;
  margin-bottom: 1vw;
}


.hero_big_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 18vw;
  height: 5vw;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  background-color: #550F8F;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1.5vw;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.her0_big_btn span.text {
  z-index: 2;
}

.hero_big_btn::after {
  content: "";
  position: absolute;

  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: 3vw;
  height: 3vw;
  background: url("../img/icon_install.png") no-repeat center center;
  background-size: contain;
  z-index: 1;
}

.hero_big_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 100%;
  height: 100%;

  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 25%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 75%);

  filter: blur(8px);

  transform: skewX(-20deg);
  animation: shimmer 4s infinite alternate;
  z-index: 2;
}

@keyframes shimmer {
  0% {
    left: -40%;
  }

  100% {
    left: 90%;
  }
}

.hero_approve_block {
  display: flex;
  align-items: center;
  padding: 2vw 1vw;
  gap: 0.5vw;
}


.hero_approve_text {
  font-size: 1.1vw;
  font-weight: 500;
  color: #4DC316;
}

.hero_approve_icon {
  font-size: 1vw;
  color: #4DC316;
  object-fit: contain;
}


@media (max-width: 1400px) {

  .hero_big_btn {
    width: 20vw;
    height: 5vw;
  }
}

/* HERO-2 */
.hero-2 {
  background: url("../img/second.jpg") no-repeat center center/cover;
  width: 100%;
  min-height: 100vh;
  padding: 0vw;
}

.hero_2_container {
  width: 100%;
  max-width: 80vw;
  margin: 0 auto;
  padding-top: 5vw;
}

.hero_2_title {
  font-size: 4.7vw;
  font-style: italic;
  font-weight: 700;
  text-shadow: 1px 0 white, -1px 0 white, 0 1px white, 0 -1px white;
  letter-spacing: 3px;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 2vw;
}

.hero_2_container_2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 90vw;
  margin: 0 auto;
  margin-bottom: 1vw;
  margin-bottom: 4vw;
}

.hero_2_container_22 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3vw;
  width: 100%;
  max-width: 90vw;
  margin: 0 auto;
  margin-bottom: 2vw;
}

.hero_2_container_22_2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3vw;
  width: 100%;
  max-width: 90vw;
  margin: 0 auto;
  margin-bottom: 2vw;
}

.hero_2_block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: justify;
  color: #fff;
}

.hero_2_block_2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
  color: #fff;
}

.hero_2_img {
  width: 21.5vw;
  object-fit: contain;
  margin-bottom: 1vw;
}


.hero_2_title_2 {
  font-size: 2.3vw;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5vw;
}


.hero_2_subtitle {
  font-size: 1.4vw;
  font-weight: 300;
  color: #ffffff;
  max-width: 22vw;
  word-wrap: break-word;
}

.widht {
  max-width: 33vw;
  margin-bottom: 1vw;
}

.wght {
  width: 25vw;
  height: 30vw;
  background-color: #44156c;
  padding: 1vw;
  border-radius: 1vw;
}

.center {
  text-align: center;
  max-width: 15vw;
}

.center-2 {
  text-align: center;
  max-width: 17vw;
}

.hero_2_container_23 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0vw;
  width: 100%;
  max-width: 80vw;
  margin: 0 auto;
  margin-bottom: 1vw;
}

.hero_2_big_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 18vw;
  height: 5vw;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  background: linear-gradient(90deg, #550F8F, #9A05DD);
  border: none;
  border-radius: 3px;
  color: #fff;
  font-size: 1.5vw;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.her0_2_big_btn span.text {
  z-index: 2;
}

.hero_2_big_btn::after {
  content: "";
  position: absolute;

  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: 3vw;
  height: 3vw;
  background: url("../img/icon_install.png") no-repeat center center;
  background-size: contain;
  z-index: 1;
}


.hero_2_img_2 {
  width: 70vw;
  object-fit: contain;
  margin-bottom: 1vw;
}


.carousel {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  background-color: #000;
  margin-bottom: 4vw;
}

.carousel-inner {
  display: flex;
  gap: 0px;
  animation: moveLeftRight 8s ease-in-out infinite alternate;
}

.carousel-inner img {
  width: 17vw;
  height: auto;
  object-fit: cover;
}

@keyframes moveLeftRight {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-480px);
  }
}

.hero_2_container_24 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  width: 100%;
  max-width: 80vw;
  margin: 0 auto;
  margin-bottom: 2vw;
}

.mrg {
  margin-bottom: 7vw;
}

.mrg-2 {
  margin-bottom: 3vw;
}

.mrg-3 {
  margin-bottom: 2vw;
}

.hero_2_block_3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: justify;
  max-width: 35vw;
  color: #fff;
}


.hero_2_title_3 {
  font-size: 4vw;
  max-width: 30vw;
  font-style: italic;
  font-weight: 700;
  text-shadow: 1px 0 white, -1px 0 white, 0 1px white, 0 -1px white;
  letter-spacing: 3px;
  text-align: left;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1vw;
}

.hero_2_title_4 {
  font-size: 4.7vw;
  font-style: italic;
  font-weight: 700;
  text-shadow: 1px 0 white, -1px 0 white, 0 1px white, 0 -1px white;
  letter-spacing: 3px;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0vw;
}

.hero_2_title_5 {
  font-size: 2.2vw;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  padding-top: 1.5vw;
  margin-bottom: 3vw;
}

.hero_2_title_6 {
  font-size: 1.8vw;
  font-weight: 500;
  letter-spacing: 3px;
  text-align: center;
  color: #ffffff;
}

.padding {
  padding-top: 1.5vw;
}


.hero_2_img_3 {
  position: absolute;
  right: 8vw;
  width: 12vw;
  margin-bottom: 1vw;
}

.hero_2_img_4 {
  width: 27vw;
  object-fit: contain;
  margin-bottom: 1vw;
}

.hero_2_img_5 {
  position: absolute;
  right: 12vw;
  width: 6vw;
  margin-bottom: 1vw;
}

.hero_2_gif {
  width: 37vw;
  border-radius: 1vw;
}

.hero_2_block_4 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: left;
  max-width: 33vw;
  color: #fff;
}

.hero_2_container_25 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  width: 100%;
  max-width: 80vw;
  margin: 0 auto;
  margin-bottom: 3vw;
}

.hero_container_end {
  width: 100%;
  max-width: 80vw;
  margin: 0 auto;
  padding: 3vw;
}


.header_container_end {
  width: 100%;
  max-width: 80vw;
  height: 10vw;
  margin: 0 auto;
  padding: 1vw 1vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
}

.header_left_end {
  display: flex;
  align-items: center;
}

.header_icon_end {
  width: 35vw;
  object-fit: contain;
}

.header_icon_end_2 {
  width: 5vw;
  object-fit: contain;
}

.header_icon_end_3 {
  width: 9vw;
  object-fit: contain;
}

.header_right_end {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.end_text {
  font-size: 1vw;
  color: #ffffff;
  letter-spacing: 1px;
}