.main-block {
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
  z-index: 10;
}

.main-wrapper {
  max-width: 850px;
  width: 100%;
  padding: 80px 0;
  min-height: clamp(31.25rem, 28.75rem + 12.5vw, 43.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.top__title {
  text-align: center;
  color: var(--card);
  padding-top: 20px;
}

.main-title {
  /*   font-family: var(--first-font); */
  font-weight: 500;
  font-size: clamp(1.5rem, 1.125rem + 1.875vw, 3.375rem);
  line-height: 120%;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--card);
}

.main-title span {
  color: var(--primary);
  font-size: inherit;
  font-weight: inherit;
}

.main-desc-wrapper {
  position: relative;
  display: flex;
  max-width: 530px;
  width: 100%;
  margin-top: 20px;
}

/* .main-desc-wrapper::before {
  content: "";
  position: relative;
  width: 40px;
  height: 5px;
  margin-top: 11px;
  margin-right: 15px;
  flex-shrink: 0;
  background: var(--primary);
} */

.main-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--card);
  border-left: 3px solid var(--card);
  padding: 10px 0 10px 20px;
}

.main-desc b {
  font-size: inherit;
  font-weight: 700;
  font-family: inherit;
  color: inherit;
}

.main-btn-wrapper {
  margin-top: 60px;
  display: flex;
  max-width: 478px;
  width: 100%;
  /*   background: var(--card); */
  border-radius: 10px;
}

.main-btn-desc {
  padding: 22px 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--text2);
}

.main-btn {
  padding: 30px 40px;
  background: var(--primary);
  border-radius: 10px;
  flex-shrink: 0;
  border-color: var(--primary);
  border-bottom: 6px solid #00000033;
  color: var(--card);
  position: relative;
  z-index: 1;
}

.main-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--btn-background);
  border-radius: 10px 010px 0 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.main-btn::before {
  content: url("./images/btn-before.png");
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.main-btn:hover::after {
  opacity: 0;
}

.main-background img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.main-background-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

.main-background-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 46%;
  width: 5%;
  height: 100%;
}

.main-image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 50%;
  z-index: -1;
}

.main-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(29, 29, 29, 1) 50%, rgba(61, 61, 61, 1) 100%);
}

.main-card {
  position: absolute;
  bottom: 27px;
  left: 30%;
  background: #00000033;
  border: 1px solid #ffffff66;
  padding: 20px;
  border-radius: 10px;

  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.main-card-icon {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--card);
  position: absolute;
  top: -20px;
  left: -20px;
}

.main-card-icon img {
  width: 15px;
  height: 15px;
  display: block;
  object-fit: contain;
}

.main-card-image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  height: 100px;
  margin-bottom: 10px;
}

.main-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.main-card-title {
  color: var(--card);
}

.main-card-desc {
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--card);
}

@media (max-width: 992px) {
  .main-wrapper {
    max-width: unset;
  }

  .main-image {
    position: relative;
    z-index: unset;
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
  }

  .main-image::before {
    content: none;
  }

  .main-card {
    bottom: 5px;
    left: 5px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
  }

  .main-card-icon {
    position: relative;
    top: unset;
    left: unset;
    border-color: var(--primary);
  }

  .main-card-image {
    display: none;
  }

  .main-card-desc {
    margin-top: 5px;
  }
}

@media (max-width: 650px) {
  .main-block {
    margin-bottom: 40px;
  }

  .main-wrapper {
    padding: 30px 0 0;
  }

  .main-desc {
    font-size: 16px;
  }

  .main-btn-wrapper {
    max-width: unset;
    margin-top: 40px;
    flex-direction: column;
    background: var(--bgGrey);
  }

  .main-btn {
    width: 100%;
  }

  .main-btn-desc {
    padding: 10px 15px;
    text-align: center;
  }

  .main-image {
    height: 256px;
  }
}

@media (max-width: 400px) {
}

.modal-call__btn {
  border: 1px solid var(--primary);
  margin-bottom: 10px;
}

.policy-checkbox {
  display: flex;
  gap: 10px;
  max-width: 420px;
  text-align: start;
}

.policy-checkbox label a {
  transition: color 0.3s ease-in;
}

.policy-checkbox label a:hover {
  color: var(--primary);
}

.policy-checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 1px solid var(--primary);
  border-radius: 3px;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  transition: all 0.3s ease-in;
}

.policy-checkbox input[type="checkbox"]::after {
  content: "✔";
  position: absolute;
  color: #fff;
  font-size: 12px;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease-in;
}

.policy-checkbox input[type="checkbox"]:checked::after {
  opacity: 1;
}

.policy-checkbox input[type="checkbox"]:hover {
  border-color: var(--primary);
}

.policy-checkbox input[type="checkbox"]:checked {
  background-color: var(--primary);
}