.main-block {
  overflow: hidden;
  padding-bottom: 80px;
}

.main-wrapper {
  position: relative;
  display: flex;
  padding-left: calc((100% - 1170px) / 2);
}

.main-holder {
  padding-top: 82px;
  padding-bottom: 198px;
  max-width: 639px;
  width: 100%;
  flex-shrink: 0;
}

.main-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 125%;
  letter-spacing: -2%;
  color: var(--white-color);
}

.main-title span {
  color: var(--main-color);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-family: inherit;
}

.main-title mark {
  background: transparent;
  display: inline-block;
  border-radius: 10px;
  color: inherit;
  border: 1px solid var(--white-color);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-family: inherit;
  padding: 0 5px;
}

.main-desc {
  margin-top: 15px;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--white-color);
}

.main-btn-wrapper {
  margin-top: 45px;
  max-width: 360px;
  width: 100%;
  position: relative;
}

.main-btn-suptext {
  position: absolute;
  padding: 8px 14px;
  background: var(--white-color);
  border-radius: 5px;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: var(--text-color);
  position: absolute;
  z-index: 1;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(5deg);
}

.main-btn {
  width: 100%;
  padding: 24px 45px;
  border-radius: 105px;
  border: none;
  border-bottom: 3px solid #2222224d;
}

.main-btn:hover {
  border: none;
  border-bottom: 3px solid var(--main-color);
}

.main-btn-subtext {
  margin-top: 10px;
  max-width: 220px;
  width: 100%;
  text-align: center;
  margin-inline: auto;
  color: var(--white-color);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}

.main-right {
  position: relative;
  flex: 1;
}

.main-card {
  position: absolute;
  top: 8%;
  left: 24%;
  max-width: 325px;
  width: 100%;
  background: var(--white-color);
  display: flex;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0px 0px 40px 0px #00000033;
}

.main-card::before {
  content: url("./images/triangle.svg");
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.main-card-icon {
  width: 125px;
  height: 78px;
  flex-shrink: 0;
  border-radius: 10px 0 0 10px;
}

.main-card-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.main-card-desc {
  padding: 14px 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-color);
}

.main-image {
  position: absolute;
  width: 100%;
  height: 100%;
}

.main-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.main-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.main-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 80%;
  filter: blur(34px);
  background: linear-gradient(359.32deg,
      rgba(0, 0, 0, 0.54) 50.11%,
      rgba(0, 0, 0, 0) 99.53%);
}

.main-background img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.main-list-wrapper {
  margin-top: -150px;
  position: relative;
  z-index: 10;
}

.main-list {
  background: var(--white-color);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  box-shadow: 0px 0px 40px 0px #00000033;
  border-radius: 15px;
  list-style: none;
}

.main-list-item {
  margin-bottom: 0;
}

.main-list-item__icon {
  width: 86px;
  height: 86px;
  margin-bottom: 30px;
}

.main-list-item__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.main-list-item__desc {
  color: var(--text-color2);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}

.main-list-item__desc b {
  margin-bottom: 10px;
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  color: var(--text-color);
}

@media (max-width: 1200px) {
  .main-block {
    padding-bottom: 40px;
  }

  .main-wrapper {
    padding: 35px 15px 70px 15px;
    flex-direction: column;
  }

  .main-holder {
    max-width: unset;
    padding: 0;
  }

  .main-right {
    height: 400px;
    width: 100%;
    flex: unset;
  }
}

@media (max-width: 650px) {
  .main-title {
    font-size: 32px;
  }

  .main-desc {
    font-size: 16px;
  }

  .main-btn-wrapper {
    margin-top: 35px;
    max-width: unset;
  }

  .main-btn-subtext {
    max-width: unset;
  }

  .main-list {
    padding: 20px;
    grid-template-columns: 100%;
    gap: 20px;
  }

  .main-list-item {
    display: flex;
    gap: 15px;
  }

  .main-list-item__icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .main-right {
    height: 400px;
    width: 100%;
    flex: unset;
  }

  .main-image {
    width: unset;
    z-index: 5;
  }

  .main-image img {
    width: 140%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .main-card {
    left: 3%;
    top: 14%;
    max-width: 183px;
  }

  .main-card::before {
    content: none;
  }

  .main-card-icon {
    display: none;
  }

  .main-card-desc {
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    text-wrap: balance;
  }

  .main-background::after {
    width: 100%;
    height: 60%;
    filter: unset;
    background: linear-gradient(66.75deg,
        rgba(0, 0, 0, 0.48) 38.37%,
        rgba(0, 0, 0, 0) 107.95%);
  }

  .main-list-wrapper {
    margin-top: -230px;
  }
}

@media (max-width: 400px) {
  .main-title {
    font-size: 22px;
  }

  .main-btn {
    padding: 14px 15px;
  }

  .main-btn-suptext {
    top: -25px;
  }

  .main-right {
    height: 280px;
    margin-top: 10px;
  }

  .main-card {
    top: 0;
  }

  .main-list-wrapper {
    margin-top: -150px;
  }

  .main-list-item {
    flex-direction: column;
  }
}