.main-sec {
  position: relative;
  overflow: hidden;
  padding-top: 7vw;
  background-image: url(../imgs/main-bg.png);
  background-position: center;
  background-size: cover;
}

.main-wrapper {
  width: 80vw;
  margin: 0 auto;
}

.main-title {
  font-size: var(--f-3xl);
}

.main-list {
  width: 85vw;
  margin: 5.42vw auto;
  justify-items: end;
  text-align: right;
  display: grid;
}

.main-list-item:nth-child(2) {
  justify-self: start;
  text-align: left;
}

.main-list-item {
  position: relative;
  width: 40vw;
  padding: .834vw 2.64vw;
  border-radius: 100vw;
  background: #171717;
  font-weight: 500;
}

.tv-man {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  transform: translate(-54%, 12%);
  width: 56.95vw;
}

.main-img {
  width: 90%;
  margin: 0 auto;
  object-fit: contain;
  display: block;
}

.video-girl video {
  position: absolute;
  top: 32%;
  left: 50%;
  z-index: -1;
  width: 46%;
  height: 25.5%;
  transform: translateX(-45%);
  object-fit: cover;
  box-shadow:
    inset 0 0 50px rgba(0, 0, 0, 0.8),  /* внутрішнє затемнення */
    0 0 20px rgba(0, 0, 0, 0.6);         /* зовнішня тінь */
}

.main-info-list {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 10vw auto;
  margin-bottom: 0;
  padding: 2vw 3.8vw;
  background: rgb(0, 0, 0, 70%);
  border-radius: .852vw;
  --border: .852vw;
  backdrop-filter: blur(0.2vw);
  gap: 1.82vw;
  display: flex;
}

.main-info {
  text-align: center;
}

.main-info-title {
  font-size: var(--f-2xl);
  font-weight: 500;
}

.main-info-text {
  font-weight: 400;
}

.main-info-stic {
  header: 100%;
  width: .14vw;
  background: linear-gradient(transparent, white, transparent);
  border-radius: 100%;
}

.main-btn {
  position: relative;
  z-index: 1;
  width: 27.57vw;
  height: 4.9vw;
  margin: 2.2vw auto;
  padding: .795vw 2.78vw;
  border-radius: 100vw;
  color: #343434;
  font-size: var(--f-lg);
  font-weight: 700;
  text-transform: uppercase;
  align-items: center;
  justify-content: space-between;
  display: flex;
}

.main-btn-img {
  width: 2.5vw;
}

.main-art {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  transform: translate(60%, 50%);
  width: 36vw;
}

@media (max-width: 431px) {
  .main-title {
    font-size: 6vw;
  }
  .main-list {
    justify-items: center;
    text-align: center;
    gap: 2.8vw;
    display: grid;
  }
  .main-list-item:nth-child(2) {
    justify-self: center;
    text-align: center;
  }
  .tv-man {
    position: absolute;
    top: 17%;
    left: 50%;
    z-index: 1;
    transform: translate(-54%, 0%);
    width: 115vw;
  }
  .main-img {
    width: 100%;
  }
  .main-list-item {
    width: 60vw;
    padding: 4vw 5vw;
    font-size: 3.25vw;
  }
  .main-info-list {
    width: 80vw;
    margin-top: 70vw;
    backdrop-filter: blur(1vw);
    border-radius: 2.85vw;
    --border: 2.85vw;
    justify-content: center;
    grid-template-columns: 2fr 0fr 2fr 0fr;
    display: grid;
  }
  .main-info-title {
    font-size: 6.98vw;
  }
  .main-info-text {
    font-size: 2.79vw;
  }
  .main-btn {
    width: fit-content;
    height: fit-content;
    margin-bottom: 15vw;
    padding: 3vw 7.7vw;
    justify-content: space-between;
    text-wrap: nowrap;
    font-size: 4vw;
    gap: 3vw;
  }
  .main-btn-img {
    width: 5vw;
  }
  .main-art {
    width: 55vw;
  }
}