html,
body {
  overscroll-behavior: none;
  overscroll-behavior-y: none;
  min-height: 100dvh;
  width: 100dvw;
  overflow-x: hidden;
}

body {
  background-color: rgba(240, 242, 253, 1);
}

.request {
  padding-top: 150px;
  padding-bottom: 120px;
}

.request__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 200px;
  width: 100%;
}

.request__card {
  max-width: 800px;
  width: 800px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid white;
  border-radius: 40px;
  padding: 80px 120px 60px 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 28px;
  overflow: hidden;
  position: relative;
}

.request__description {
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
}

.request__button {
  font-weight: 500;
  color: #0862ee;
  font-size: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  gap: 10px;
  align-self: center;
  transition: all 0.3s ease;
}

.request__button span::after {
  height: 2px;
  bottom: -2px;
}

.download-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 17px 25px;
  border-radius: 12px;
}

.download-button svg {
  min-width: 44px;
  min-height: 44px;
}

.download-button__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2px;
}

.download-button__title {
  color: white;
  text-align: start;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  white-space: break-spaces;
}

.download-button__subtitle {
  font-size: 14px;
  font-weight: 100;
  line-height: 20px;
  color: white;
  white-space: break-spaces;
}

.contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 60px;
  width: 100%;
  padding-left: 15px;
}

.contacts__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
}

.contact_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.contact__social-media {
  flex-wrap: wrap;
  gap: 6px;
}

.contact__social-media .socials__item {
  margin: 0;
}

.request__bg-decorations {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 800px;
  width: 800px;
  height: 464px;
  pointer-events: none;
  z-index: -1;
}

.request__bg-star {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 234px;
  height: 234px;
}

.request__bg-blob {
  position: absolute;
  bottom: -120px;
  left: -140px;
  width: 328px;
  height: 289px;
}

.request__bg {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: -150px;
}

.request__timer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: transparent;
}

.request__timer-bar {
  position: absolute;
  top: 0;
  left: -40px;
  height: 100%;
  background-color: #0862ee;
  width: 0;
  transition: width 10s linear;
}

.request__timer-bar.active {
  width: calc(100% + 80px);
}

@media (max-width: 1050px) {
  .contacts__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 62px;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .request__card {
    width: 100%;
    padding: 60px 40px;
  }

  .request__bg-decorations {
    width: 100%;
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .request__bg-decorations {
    height: 537px;
  }
}

@media (max-width: 575px) {
  .request {
    padding-top: 60px;
    padding-bottom: 52px;
  }

  .request__bg {
    margin-top: -60px;
  }

  .request__wrapper {
    gap: 78px;
  }

  .request__card {
    padding: 32px 20px;
    border-radius: 20px;
  }

  .request__bg-decorations {
    padding: 32px 20px;
    height: 335px;
  }

  .request__bg-blob {
    width: 100px;
    bottom: -80px;
    left: 40px;
    height: 100px;
  }

  .download-button {
    gap: 12px;
    flex-direction: row-reverse;
  }

  .request__description {
    font-size: 16px;
  }

  .request__button {
    padding: 0;
    font-size: 14px;
    gap: 4px;
  }

  .request__button svg {
    width: 20px;
    height: 20px;
  }

  .download-button__content {
    gap: 4px;
  }

  .download-button__title {
    font-size: 14px;
    line-height: 130%;
  }

  .download-button__subtitle {
    font-size: 12px;
  }

  .download-button svg {
    min-width: 48px;
    min-height: 48px;
  }

  .download-button svg path {
    stroke-width: 2;
  }

  .contact__icon-media {
    display: none;
  }

  .contact__content-media {
    padding: 16px 20px !important;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid white;
    width: 100%;
  }

  .contacts__row {
    width: 100%;
  }

  .contacts__list {
    gap: 12px;
    flex-direction: column-reverse;
  }

  .contact_item:last-child {
    margin-top: 12px;
  }

  .contacts {
    padding-left: 0;
  }

  .request__timer {
    display: none;
  }
}
