.hero {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.hero__content {
  display: flex;
  width: 100%;
  background: linear-gradient(120deg, #1b9798 0%, rgba(24, 225, 227, 0) 100%), radial-gradient(54.09% 100% at 52.5% 100%, rgb(24, 225, 227) 0%, rgb(27, 151, 152) 100%);
  border-radius: 0 0 70px 0;
  overflow: hidden;
}
.hero__pic {
  min-width: 300px;
  width: 300px;
  height: fit-content;
}
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  height: 100%;
  text-transform: uppercase;
}
.hero__text h1 {
  font-size: 28px;
  font-weight: 300;
  line-height: 120%;
  color: white;
  margin: 0;
}
.hero__text h1 span {
  font-size: 48px;
  line-height: 100%;
  margin-bottom: 10px;
}

.desc {
  margin-bottom: 100px;
}
.desc__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.desc__name {
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  color: #1B9798;
  margin: 0;
}

.block {
  border: 1px solid #4791e2;
  border-radius: 10px;
  background: #e8fcfc;
  overflow: hidden;
  position: relative;
}
.block__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 24px;
}
.block__header {
  padding: 28px 24px;
  background: linear-gradient(120deg, #1b9798 0%, rgba(24, 225, 227, 0) 100%), radial-gradient(54.09% 100% at 52.5% 100%, rgb(24, 225, 227) 0%, rgb(27, 151, 152) 100%);
  border-radius: 10px;
}
.block__header span {
  font-weight: 700;
  font-size: 24px;
  color: white;
  margin: 0;
}
.block__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.block__text p {
  font-weight: 400;
  font-size: 20px;
  color: #7A7A7A;
  margin: 0;
}
.block__text p span {
  font-weight: 700;
  background: linear-gradient(142deg, #8ca3d1 0%, #18e1e3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.block__text-pic {
  float: right;
  width: 260px;
}
.block__colored {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, #0f9fa1 63.5%, #25b3c7 79%, #bcd2fe 99.5%);
  border-radius: 6px;
  padding: 28px 24px;
}
.block__colored-pic {
  width: 250px;
}
.block__colored h2 {
  font-weight: 700;
  font-size: 28px;
  color: white;
  margin: 0;
}
.block__colored p, .block__colored li {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: white;
}
.block__colored li {
  margin: 7px 0;
}
.block__test {
  flex-direction: row;
}
.block__choices {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.block__holisal {
  float: right;
  width: 50%;
  margin: -5% -48px -8% 0;
}

.answer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: none;
}
.answer.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.answer__block {
  position: relative;
  background: white;
  padding: 28px 24px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.answer__name {
  font-weight: 700;
  font-size: 24px;
  color: #1B9798;
  margin: 0;
}
.answer__desc {
  font-weight: 400;
  font-size: 20px;
  color: black;
  margin: 0;
}
.answer__icon {
  font-family: Helvetica, sans-serif;
  position: absolute;
  top: -35px;
  left: -35px;
  width: 70px;
  height: 70px;
  font-weight: 700;
  font-size: 42px;
  color: #1B9798;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: white;
  border-radius: 50%;
}

.action-btn {
  background: linear-gradient(197deg, #bcd2fe 0%, #88a7e7 100%);
  font-weight: 700;
  font-size: 18px;
  color: white;
  border-radius: 6px;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  border: none;
  gap: 20px;
  cursor: pointer;
  margin-left: auto;
  margin-right: 20px;
  outline: none;
}
.action-btn__icon {
  position: relative;
  margin-right: -60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
  right: 0;
}
.action-btn:hover {
  background: linear-gradient(197deg, #bcd2fe 0%, #88a7e7 50%, #88a7e7 100%);
}
.action-btn:hover .action-btn__icon {
  right: -5px;
}
.action-btn:focus {
  outline: none;
}

.choice {
  display: block;
  position: relative;
  padding-left: 36px;
  cursor: pointer;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.choice__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: white;
}
.choice .checkmark {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.choice .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1B9798;
}
.choice input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.choice input:checked ~ .checkmark:after {
  display: block;
}
.choice:hover input ~ .checkmark:after {
  display: block;
}

.action-block {
  max-height: 0;
  height: 0;
  opacity: 0;
  transition: all 1s ease;
  transform: translateX(-100%);
}
.action-block.active {
  max-height: unset;
  height: unset;
  opacity: 1;
  transform: translateX(0);
}

@media screen and (min-width: 1400px) {
  .hero__content {
    max-width: 1400px;
  }
}
@media (max-width: 768px) {
  .hero__content {
    flex-direction: column-reverse;
  }
  .hero__text {
    padding: 12px;
  }
  .hero__text h1 {
    font-size: 24px;
  }
  .hero__text h1 span {
    font-size: 40px;
  }
  .desc__content {
    gap: 20px;
  }
  .desc__name {
    font-size: 24px;
  }
  .block__header {
    padding: 20px 12px;
  }
  .block__header span {
    font-size: 20px;
  }
  .block__text p {
    font-size: 16px;
  }
  .block__content {
    padding: 20px 12px;
  }
  .block__test {
    flex-direction: column;
  }
  .block__choices {
    gap: 20px;
  }
  .block__colored {
    padding: 20px 12px;
  }
  .block__colored-pic {
    width: 100%;
  }
  .block__colored h2 {
    font-size: 20px;
  }
  .block__colored li, .block__colored p {
    font-size: 16px;
  }
  .block__holisal {
    width: 110%;
  }
  .action-btn {
    padding: 6px 30px;
    gap: 10px;
    font-size: 16px;
  }
  .action-btn__icon {
    margin-right: -50px;
  }
  .answer {
    padding: 24px;
  }
  .answer__name {
    font-size: 16px;
  }
  .answer__desc {
    font-size: 16px;
  }
  .answer__block {
    gap: 12px;
    padding: 20px 12px;
  }
  .answer__icon {
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .choice__text {
    font-size: 16px;
  }
}

/*# sourceMappingURL=style.css.map */
