body {
  overflow-x: hidden;
  background-position: top;
  background-size: cover;
}

p, span, h1, h2, h3, h4, h5, h6, li {
  line-height: normal;
  margin-bottom: 0;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero {
  display: flex;
  background-color: #BDD2D0;
}
.hero__content {
  display: flex;
  justify-content: end;
  background-position: 130px center;
  background-size: contain;
  background-image: url("./img/hero-man-2.png");
  background-repeat: no-repeat;
  margin: 20px 0 40px -10%;
  padding: 40px 0;
}
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 60%;
  margin-top: 40px;
}
.hero__name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__name img {
  width: 40px;
}
.hero__name span {
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
  color: #232D32;
}
.hero__intro {
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  color: white;
}
.hero__desc {
  font-weight: 400;
  font-size: 20px;
  color: #232D32;
}

.desc {
  background: url("img/bg_main.png") top/100% auto no-repeat, #F6F3EE;
}
.desc__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.desc__name {
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  color: #B60034;
  margin: 0;
}

.block {
  border: 1px solid #4791E2;
  border-radius: 10px;
  background: #F6F3EE;
  overflow: hidden;
  position: relative;
  filter: drop-shadow(0 4px 4px rgba(35, 35, 35, 0.4));
}
.block__first {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: -30px;
}
.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: #EDE7DE;
  border-radius: 10px;
}
.block__header span {
  font-weight: 500;
  font-size: 24px;
  color: #B60034;
  margin: 0;
}
.block__text {
  display: flex;
  flex-direction: column;
}
.block__text p, .block__text li {
  font-weight: 400;
  font-size: 20px;
  color: #232D32;
  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: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
  border: 1px solid #4791e2;
}
.block__answer h2 {
  font-weight: 500;
  font-size: 20px;
  color: #B60034;
  margin-bottom: 20px;
}
.block__test {
  flex-direction: row;
}
.block__choices {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.action-btn {
  background: #AAC1C2;
  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: #232D32;
}
.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: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
}
.answer__point div:not(.answer__long) {
  background: #B60034;
  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: #232D32;
}
.answer__long {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.answer__long * {
  font-weight: 400;
  font-size: 20px;
  color: #232D32;
}

@media screen and (min-width: 1400px) {
  .hero__content {
    max-width: 1400px;
  }
}
@media screen and (max-width: 1400px) {
  .hero__content {
    background-position: 100px center;
  }
}
@media (max-width: 1200px) {
  .hero__content {
    background-position: 100px center;
  }
}
@media (max-width: 992px) {
  .hero__content {
    margin: 0 0 40px;
    padding: 0;
    background-position: left top;
  }
  .hero__text {
    gap: 20px;
    width: 100%;
    margin-top: 100%;
  }
  .hero__intro {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .main-menu {
    gap: 10px;
  }
  .header {
    gap: 5px;
    font-size: 10px;
  }
  .header .points-container {
    font-size: 10px;
    gap: 5px;
  }
  .header p {
    font-size: 10px;
  }
  .header a {
    font-size: 10px;
  }
  .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;
  }
  .answer__long * {
    font-size: 14px;
  }
  .action-btn {
    padding: 6px 30px;
    gap: 10px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .block__first {
    grid-template-columns: repeat(1, 1fr);
  }
}
.text--white {
  color: #F9F9F9;
}
.text--black {
  color: #0a0a0a;
}
.text--blue {
  color: #BDD2D0;
}
.text--orange {
  color: #ED4700;
}
.text.fz-s {
  font-size: 1.2rem;
}
.text.fz-md {
  font-size: 1.4rem;
}
.text.fz-lg {
  font-size: 1.8rem;
}
.text.fz-xl {
  font-size: 2.2rem;
}
.text.fz-xxl {
  font-size: 6rem;
}
.text.ff-agavalanchec {
  font-family: "Agavalanchec", sans-serif;
}
.text.ff-montserrat {
  font-family: "Montserrat", sans-serif;
}

.fw-extrabold {
  font-weight: 800 !important;
}

.img {
  width: 100%;
  height: auto;
}
.img--xxs {
  max-width: 40px;
}
.img--xs {
  max-width: 90px;
}
.img--lg {
  max-width: 450px;
}

.btn-about {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 6px;
  cursor: pointer;
  padding: 0.5em 1em;
  border: 1px solid #668A99;
  filter: drop-shadow(0 2px 4px rgba(35, 35, 35, 0.4));
  border-radius: 12px;
  text-decoration: none;
  font-size: 1em;
  color: #F9F9F9;
  background: #668A99;
  transition: all 0.3s ease;
}
.btn-about:hover {
  color: #F9F9F9;
  background-color: rgb(91.8, 124.2, 137.7);
  border: 1px solid rgb(91.8, 124.2, 137.7);
  text-decoration: none;
}
.btn-about:focus {
  color: #F9F9F9;
  background-color: rgb(91.8, 124.2, 137.7);
  border: 1px solid rgb(91.8, 124.2, 137.7);
  text-decoration: none;
}

.a {
  transition: all 0.2s ease;
}
.a:hover {
  color: #B60034;
}
.a:focus {
  color: #B60034;
}

.checkbox input {
  position: absolute;
  opacity: 0;
}
.checkbox__checkmark {
  position: absolute;
  top: 50%;
  left: 13px;
  transform: translate(-50%, -50%);
  width: 26px;
  aspect-ratio: 1;
  background-color: white;
  border: 1px solid white;
  border-radius: 50%;
  filter: drop-shadow(0 2px 4px rgba(35, 35, 35, 0.4));
  transition-duration: 0.5s;
}
.checkbox__checkmark:after {
  content: "";
  position: absolute;
  display: flex;
  left: 50%;
  top: 50%;
  width: 8px;
  aspect-ratio: 1;
  border: 1px solid #B60034;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-color: #F9F9F9;
  filter: drop-shadow(0 0 2px rgba(35, 35, 35, 0.4));
}
.checkbox__label {
  display: block;
  position: relative;
  padding-left: 45px;
  cursor: pointer;
  user-select: none;
}
.checkbox__label:hover input ~ .checkbox__checkmark {
  border-color: #B60034;
}
.checkbox__label input:checked ~ .checkbox__checkmark {
  border-color: #B60034;
}
.checkbox__label input:checked ~ .checkbox__checkmark:after {
  background-color: #B60034;
}
.checkbox__label input:disabled ~ .checkbox__checkmark {
  border-color: #668A99;
}

.h3 {
  font-size: 1.8rem;
  line-height: 1.3;
}

section .btn-about {
  min-width: 250px;
}

.information__block {
  padding: 1.4rem;
  background-color: #F9F9F9;
  border-radius: 10px;
  filter: drop-shadow(0 4px 4px rgba(35, 35, 35, 0.4));
}
.information__list {
  list-style: disc;
  padding-left: 28px;
}
.information__list li {
  margin-bottom: 0.6rem;
}

.test__block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.test__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background-color: #BDD2D0;
  border-radius: 10px;
  filter: drop-shadow(0 4px 4px rgba(35, 35, 35, 0.4));
}
.test__answer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.4rem;
  background-color: #F6F3EE;
  border-radius: 10px;
  filter: drop-shadow(0 4px 4px rgba(35, 35, 35, 0.4));
  border: 1px solid #4791E2;
}
.test__answer--white {
  background-color: #F9F9F9;
}
.test__answer a {
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: none;
}
.test__answer a.disabled {
  border: 1px solid #668A99;
  background-color: #668A99;
  color: #F9F9F9;
  cursor: default;
}
.test__answer a.disabled:hover {
  border: 1px solid #668A99;
  background-color: #668A99;
  color: #F9F9F9;
  cursor: default;
}

.show {
  opacity: 1 !important;
  pointer-events: auto !important;
}

@media (max-width: 1539px) {
  .test__question .h3 {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 12px;
  }
}

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