
/* FONTS */
@font-face {
  font-family: "Open Sans";
  src: local("Open Sans Regular"), local("OpenSans-Regular"),
    url("../fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: local("Open Sans Medium"), local("OpenSans-Medium"),
    url("../fonts/OpenSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: local("Open Sans Bold"), local("OpenSans-Bold"),
    url("../fonts/OpenSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: local("Poppins Bold"), local("Poppins-Bold"),
    url("../fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: local("Poppins Light"), local("Poppins-Light"),
    url("../fonts/Poppins-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: local("Raleway Bold"), local("Raleway-Bold"),
    url("../fonts/Raleway-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* EXECUTORS */

/* HERO */

/* MOBILE */

.executors__hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #000;
  color: #fff;
  padding-bottom: 36px;
  gap: 14px;
}

.executors__hero__heading {
  font-family: var(--font-raleway);
  font-size: 27px;
  line-height: 40px;
  font-weight: 700;
  text-align: center;
}

.executors__hero__text {
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 23px;
  text-align: center;
}

.executors__hero__text > a {
  color: rgb(79, 113, 157);
}

/* MOBILE */

@media screen and (min-width: 768px) {
  .executors__hero {
    padding: 0 5% 36px 5%;
  }
}

@media screen and (min-width: 1024px) {
  .executors__hero {
    padding: 0 10% 36px 10%;
  }
}

@media screen and (min-width: 1200px) {
  .executors__hero__text {
    font-size: 18px;
  }
}

/* HERO */

.executors__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  margin: 0 auto;
  max-width: 1290px!important;
}

.executors {
  background-color: #000;
  color: rgb(151, 151, 151);
  padding-bottom: 20px;
}

.executor > a {
  background-color: rgb(33, 37, 41);
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 18px;
}

.left-side {
  display: flex;
  flex-direction: column;
  
}

.left-side > img {
  height: 145px;
  
}

.executor-title {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 600;
  color: #ecf0f1;
  margin: -19px 0 4px 0;
  background-color: rgba(0,0,0,.6);
  text-align: center;
}

.right-side > p {
  height: 145px;
  width: 194px;
  overflow: scroll;
}

.right-side {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.right-side > button {
  border-radius: 10px;
  text-decoration: none;
  margin-top: -8px;
  margin-left: 3px;
  padding: 4px 12px;
  background-color: #ff1344;
  color: #fff;
  align-self: flex-end;
}

@media screen and (min-width: 1024px) {
  .executors__list {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }

  .executor > a {
    max-width: 380px;
  }
}

.executors__info {
  background-color: #000;
  padding: 18px;
  margin-bottom: 20px;
}

.text-block {
  position: relative;
  background-color: rgb(35, 37, 39);
  color: rgb(167, 167, 167);
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 23px;
  padding: 20px 10px 0 0;
  width: 100%;
}

.text-block a {
  color: rgb(79, 113, 157);
}
.content > ul {
  list-style-type: circle;
  padding-left: 20px;
  width: 100%;
}

.wrapper {
  background-color: rgb(35, 37, 39);
  padding: 0 0 10px 10px;
}

.read-more-toggle {
  display: none;
}

.content {
  max-height: 80px; /* ограничиваем высоту */
  overflow: hidden;
  transition: max-height 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.read-more-toggle:checked + .content {
  max-height: fit-content; /* раскрываем */
}

.read-more-label {
  display: inline-block;
  margin-top: 10px;
  color: rgb(79, 113, 157);
  font-family: var(--font-base);
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}

.read-more-toggle:checked ~ .read-more-label {
  display: none;
}

@media screen and (min-width: 768px) {
  .executors__info {
    padding: 0 5%;
  }
}

@media screen and (min-width: 1200px) {
  .content {
    font-size: 18px;
  }
}
/* EXECUTORS */

/* EXECUTOR */

.executor__info__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  background-color: #212529;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 10px;
}

.executor__info {
  background-color: #2f3136;
  padding: 16px 10px 52px 10px;
}

.executor__info__heading {
  background-image: inear-gradient(
    to right top,
    #0e6ba8,
    #0066c1,
    #005fd6,
    #0052e7,
    #473bf0
  );
  background-clip: text;
  color: transparent;
  font-family: var(--font-poppins);
  font-size: 35px;
  line-height: 52px;
  text-shadow: rgb(0, 95, 214) 1px 1.5px 0px;
}

.executor__info__text {
  color: #ecf0f1;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}

.executor__info__container button {
  background: #69db7c;
  width: 188px;
  height: 48px;
  font-size: 20px;
  letter-spacing: 0.5px;
  font-family: var(--font-base);
  border-radius: 16px;
  color: #fff;
}
.executor__text__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

@media screen and (min-width: 1024px) {
  .executor__info__container {
    flex-direction: row;
  }
  .executor__info__text {
    text-align: left;
  }

  .executor__info__container button {
    align-self: flex-end;
  }
  .executor__text__container {
    align-items: normal;
  }
}

.executor__about__list__item > img {
  padding: 7px;
  border: 1px solid #ff6b6b;
  border-radius: 10px;
}

.executor__about > .executor__info__container {
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.executor__about {
  padding: 0 10px;
  background-color: #2f3136;
}

.executor__about__heading {
  background-image: linear-gradient(
    to right top,
    #110d26,
    #181b42,
    #1c2861,
    #193681,
    #0046a4
  );
  color: #339af0;
  background-clip: text;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 28px;
  line-height: 43px;
}

.executor__about__list__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.executor__about__list__item h3 {
  color: rgb(198, 205, 213);
  font-family: var(--font-base);
  font-size: 12px;
}

.executor__about__list__item p {
  color: rgb(166, 179, 194);
  font-family: var(--font-base);
  font-size: 12px;
}

.executor__about__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  max-height: 200px;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .executor__about__heading {
    font-size: 36px;
  }
}

.executor__text {
  background-color: #2f3136;
  padding: 16px 10px 52px 10px;
}

.executor__text > .executor__info__container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 16px;
}

.executor__text p {
  color: rgb(236, 240, 241);
  font-family: var(--font-poppins);
  font-weight: 300;
  font-size: 16px;
  line-height: 25px;
}

.executor__text h2 {
  margin: 36px 0 4px 0;
  color: rgb(51, 154, 240);
  background-image: linear-gradient(
    to right top,
    #110d26,
    #181b42,
    #1c2861,
    #193681,
    #0046a4
  );
  background-clip: text;
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
}

.executor__text a {
  color: rgb(79, 113, 157);
}

.executor__text ul {
  padding-left: 29px;
  list-style: circle;
  color: rgb(236, 240, 241);
  font-family: var(--font-poppins);
  font-weight: 300;
  font-size: 16px;
  line-height: 25px;
}

@media screen and (min-width: 1200px) {
  .executor__text ul {
    font-size: 18px;
  }
}

.executor__faqs {
  background-color: #2f3136;
  padding: 16px 10px 52px 10px;
}

.executor__faqs__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
}

.executor__faq {
  color: rgb(236, 240, 241);
  font-family: var(--font-poppins);
  font-weight: 300;
  font-size: 16px;
}

.executor__faq:nth-child(1) {
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.executor__faqs h2 {
  color: rgb(236, 240, 241);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 24px;
  line-height: 38px;
}
.faq {
  color: rgb(236, 240, 241);
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 24px;
  line-height: 38px;
}
.executor__faqs .executor__info__container {
  justify-content: start;
  align-items: start;
}

.executor__faqs p {
  font-family: var(--font-poppins);
  font-weight: 300;
  font-size: 16px;
  color: rgb(253, 252, 252);
}

.executor__faqs p > a {
  color: rgb(79, 113, 157);
}

@media screen and (min-width: 1024px) {
  .executor__faqs .executor__info__container {
    flex-direction: column;
  }
}