body {
  overflow-x: hidden;
  background-color: white;
  background-image: url(./img/body_bg.png);
  background-position: top;
  background-size: cover;
}

.hero {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.hero__pic {
  width: 100%;
}

.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__holisal {
  width: calc(100% + 24px);
  margin-right: -24px;
}
.block__content {
  display: grid;
  gap: 20px;
  padding: 28px 24px;
}
.block__content-double {
  grid-template-columns: 1fr 1fr;
}
.block__header {
  padding: 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: 500;
  font-size: 24px;
  color: white;
  margin: 0;
}
.block__text {
  display: flex;
  flex-direction: column;
}
.block__text p, .block__text li {
  font-weight: 400;
  font-size: 20px;
  color: #7A7A7A;
  margin: 0;
}
.block__text p span, .block__text li 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__answer {
  background: #F8FDFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border: 1px solid #4791e2;
}
.block__answer h2 {
  font-weight: 500;
  font-size: 20px;
  color: #1B9798;
  margin-bottom: 20px;
}
.block__test {
  flex-direction: row;
}
.block__choices {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.action-btn {
  background: linear-gradient(197deg, #bcd2fe 0%, #88a7e7 100%);
  font-weight: 500;
  font-size: 20px;
  color: white;
  border-radius: 10px;
  padding: 24px;
  border: none;
  gap: 20px;
  cursor: pointer;
  outline: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.action-btn__icon {
  width: 30px;
}
.action-btn:hover {
  background: linear-gradient(197deg, #bcd2fe 0%, #88a7e7 50%, #88a7e7 100%);
}
.action-btn:focus {
  outline: none;
}

.action-block {
  max-height: 0;
  height: 0;
  opacity: 0;
  transition: all 1s ease;
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.action-block.active {
  max-height: unset;
  height: unset;
  opacity: 1;
  transform: translateX(0);
}

.answer {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.answer__header {
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  color: #1B9798;
}
.answer__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.answer__points-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.answer__point {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: white;
  border-radius: 6px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.answer__point div {
  background: #88A7E7;
  height: 8px;
  width: 8px;
  min-width: 8px;
  border-radius: 50%;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
}
.answer__point span {
  font-weight: 400;
  font-size: 20px;
  color: black;
}

@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, .block__text li {
    font-size: 14px;
  }
  .block__content {
    padding: 20px 12px;
    gap: 0;
  }
  .block__content-double {
    grid-template-columns: 1fr;
  }
  .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;
  }
  .answer__points {
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .answer__points-group {
    gap: 10px;
  }
  .answer__point span {
    font-size: 14px;
  }
  .action-btn {
    padding: 6px 30px;
    gap: 10px;
    font-size: 16px;
  }
}
