@import url(./blocks/global.css);
@import url(./blocks/intlTelInput.css);
@import url(./blocks/popup.css);

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: "Coolvetica";
  src: url("../fonts/CoolveticaRg-Regular.eot");
  src: url("../fonts/CoolveticaRg-Regular.eot") format("embedded-opentype"),
    url("../fonts/CoolveticaRg-Regular.woff") format("woff"),
    url("../fonts/CoolveticaRg-Regular.woff2") format("woff2"),
    url("../fonts/CoolveticaRg-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-accent: #fc7cc5;
  --color-bg: #172453;
  --color-accent-btn-hover: #049a54;
  --color-accent-light: #19af69;
  --color-accent-opacity: rgba(49, 125, 210, 0.1);

  --color-grey-block: #f0f2fe;
  --color-grey-light: #f6fafd;
  --color-grey-block-dark: #424559;

  --color-popup-btn-grey: #bababa;
  --color-popup-btn-grey-hover: #677488;

  --color-font-body: #172453;

  --color-black: #000;
  --color-white: #ffffff;

  --transition: 0.2s ease-in;

  --font-family-body: "Noto Sans", sans-serif;
  --font-family-title: "Coolvetica";
}
body {
  font-family: var(--font-family-body);
  color: var(--color-font-body);
  background-color: var(--color-white);
  line-height: 1.6;
}

b {
  font-weight: 600;
}
.logo__wrapper {
  position: relative;
  width: max-content;
}
.logo__wrapper::before {
  position: absolute;
  background: url(../img/logo.svg) no-repeat;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
}

.header * {
  color: #fff;
}
p.error {
  color: red;
  padding: 0 12px;
  font-size: 12px;
}
.logo__link {
  display: flex;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 12px 12px 12px 36px;
  color: #fff;
  font-family: var(--font-family-title);
  letter-spacing: -0.48px;
}

.logoColor {
  color: var(--color-accent);
}

.marker-border {
  width: 100%;
  height: 1px;
  background-color: var(--color-accent);
  opacity: 0.2;
}
.title {
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: var(--font-family-title);
  color: var(--color-font-body);
}
.title span {
  background-image: linear-gradient(to right, #8199f1, #284dbf);
  background-clip: text;
  color: transparent;
}
.title--min {
  color: var(--color-font-body);
  display: inline-block;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.title--center {
  text-align: center;
  display: block;
}
.title--opacity {
  opacity: 0.5;
  font-size: 24px;
  color: var(--color-white);
}
.btn {
  border-radius: 10px;
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
  font-weight: 500;
  line-height: 1;
  color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  width: max-content;
  transition: var(--transition);
}
.btn:hover {
  background: #fff;
}
.btn--min {
  /* padding: 16px 32px;
  border-radius: 40px; */
}

.btn-dark {
  background: var(--color-bg);
  border: 2px solid var(--color-bg);
  color: var(--color-accent);
}

.btn-dark:hover {
  background: #fff;
}
.btn--border {
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  background-color: transparent;
  gap: 10px;
  justify-content: space-between;
  padding: 16px 24px;
}
.btn--border:hover {
  background-color: var(--color-accent-opacity);
}
.header {
  width: 100%;
  position: fixed;
  z-index: 10;
  transition: 0.2s linear;
  background: var(--color-grey-block);
}

.header-main {
  background: transparent;
}

.header__wrapper {
  display: flex;
  flex-direction: column;
}
.header__top-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  opacity: 1;
  padding: 12px 0;
  transition: opacity var(--transition), visibility var(--transition);
}
.header--hidden {
  opacity: 0;
  visibility: hidden;
}
.header__contact-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}
.header__contact {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.header__contact img {
  width: 16px;
}

.header__contact p {
  opacity: 0.5;

  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.header__contact span {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--color-font-body);
}
.header__bottom-block {
  width: 100%;
  transition: top var(--transition), position var(--transition);
  padding: 20px 0;
  background: var(--color-bg);
}
.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header__bottom-block-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.header__list-wrapper {
  overflow: hidden;
  flex-grow: 1;
}
.header__list {
  overflow: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.header__list::-webkit-scrollbar {
  width: 6px;
  height: 10px;
  cursor: pointer;
}
.header__list::-webkit-scrollbar-track {
  background: var(--color-font-body);
  border-radius: 6px;
}
.header__list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}
.header__item {
  white-space: nowrap;
  padding: 12px;
}
.header__item a {
  display: flex;
  background-color: transparent;
  transition: color var(--transition);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
}
.header__item a:hover {
  color: var(--color-accent);
}
.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  margin-top: 130px;
  background: url("../img/home/photo.webp") no-repeat;
  background-position: right;
  background-size: auto 100%;
  color: var(--color-font-body);
}

.hero-programs {
  background: url("../img/courses/photo.webp") no-repeat;
  background-position: right;
  background-size: auto 100%;
  min-height: 484px;
}

.hero .title {
  color: var(--color-font-body);
  width: 650px;
  max-width: 100%;
}

.hero ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: 580px;
  max-width: 100%;
}

.hero ul li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-radius: 4px;
  border-left: 4px solid #fc7cc5;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  background: #172453;
  width: calc(50% - 5px);
}

.hero::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
}

.hero-programs::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}
.hero__inner {
  display: flex;
  padding: 40px 0;
  justify-content: space-between;
}

.hero__top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 100%;
  position: relative;
}

.hero__top p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  width: 460px;
  max-width: 100%;
}

.hero-article .hero__top {
  padding-top: 31px;
}

.hero-article {
  padding: 49px 0 80px;
}

.back__btn {
  display: flex;
  gap: 19px;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.2s linear;
}

.back__btn span {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--color-font-body);
}

.back__btn:hover {
  gap: 10px;
}

.hero__top p.hero__top-text {
  font-size: 16px;
}
.hero__wrapper {
  display: flex;
  gap: 20px;
  margin: 0;
  width: 100%;
  margin-top: 32px;
}

.hero__text {
  width: 480px;
  background: url(../img/home/blue-bg.webp) no-repeat;
  background-size: cover;
  border-radius: 40px;
  padding: 36px;
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  color: var(--color-white);
}
.hero__text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
  grid-column: span 1;
  grid-row: span 1;
  max-width: 480px;
}
.hero__text-block p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.hero__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid #eee;
  max-width: 480px;
  grid-column: span 1;
  grid-row: span 1;
}
.hero__list li {
  position: relative;
  padding-left: 16px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.hero__list li span {
  color: var(--color-accent);
}

.hero__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.hero__background-block {
  overflow: hidden;
  flex-grow: 1;
}

.hero__background-block img {
  width: 100%;
  aspect-ratio: 47/32;
  border-radius: 40px;
}
.hero--2 .hero__wrapper {
  position: relative;
}
.hero--2 .hero__background-block {
  right: 0;
  width: 66.7%;
}
.card {
  padding: 40px 0 80px;
}

.card .title {
  color: #fff;
  padding-right: 90px;
}

.cardSwiper {
  padding-top: 80px;
  padding-bottom: 50px;
  margin-top: -50px;
}

.cardSwiper .swiper-slide {
  border-radius: 24px;
  padding: 20px;
  background: var(--color-accent);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 20px;
  height: auto;
  text-align: center;
}

.card__wrapper {
}
.card__list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  margin-top: 32px;
}
.card__item {
  background-color: var(--color-grey-block);
  padding: 24px;
  border-radius: 32px;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 189px;
  width: calc(33% - 14px);
}

.card__item-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.card__item-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}

.card__item ul {
  border-radius: 12px;
  background: var(--color-accent);
  padding: 12px 12px 12px 32px;
  list-style-type: disc;
}

.card__item li {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
}

.card__text-block span {
  color: rgba(0, 0, 0, 0.5);
}

.contacts {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 120px 0;
  z-index: 1;
}

.contacts__img {
  width: calc(50% - 10px);
}

.contacts__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.contact__wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  gap: 10px;
  max-width: 100%;
  gap: 72px;
}

.contact__img {
  width: calc(50% - 20px);
  max-width: 100%;
  flex-shrink: 0;
}

.contact__img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 255/191;
  border-radius: 40px;
}
.contacts--2 {
  padding: 211.6px 0 73px;
  min-height: unset;
}
.contact__text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  width: 580px;
  max-width: 100%;
  margin: 0 auto;
}
.contacts--2 .contact__text-block {
  max-width: 48%;
  gap: 40px;
}
.contacts--2 .contact__wrapper {
  justify-content: space-between;
}
.contact__text-block p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contacts--2 .contact__text-block p {
  max-width: unset;
}
.contact__form-block {
  display: flex;
  flex-direction: column;
  width: 630px;
  min-height: 652px;
  max-width: 100%;
}

.contact__form-block > p {
  margin-top: 8px;
}
.contact__form-block form {
  width: 100%;
}
.contact__cont-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__cont-block h2 {
  font-weight: 600;
  font-size: 24px;
}
.contact__cont-block p {
  font-weight: 400;
}
.contact__cont-text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact__cont-text-block span {
  font-weight: 600;
}
.form {
  margin-top: 34px;
  padding: 32px;
  border-radius: 4px;
  background: rgba(23, 36, 83, 0.04);
}

.form__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.achievements {
  background-color: var(--color-grey-block-dark);
  padding: 60px 0;
}
.achievements__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  color: var(--color-white);
}
.achievements__list {
  display: flex;
  flex-direction: row;
  gap: 40px 20px;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}
.achievements__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 220px;
}
.achievements__item span {
  font-weight: 600;
  font-size: 28px;
}
.achievements__item:nth-child(3) span,
.achievements__item:nth-child(4) span {
  font-size: 24px;
}
.achievements__item p {
  font-size: 14px;
  max-width: 81%;
}
.achievements__item:nth-child(3) p {
  max-width: 53%;
}
.choose {
  background-color: var(--color-grey-light);
  padding: 60px 0;
}
.choose__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.choose__title,
.industries__title {
  color: var(--color-font-body);
}
.choose__inner {
  display: flex;
  flex-direction: row;
  gap: 40px;
  font-weight: 500;
  line-height: 1.4;
}
.choose__text-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.choose__text-title {
  font-size: 26px;
}
.choose__accent-text-block {
  background-color: var(--color-white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 498px;
}
.choose__accent-text-block h4 {
  opacity: 0.5;
  font-size: 18px;
}
.choose__accent-text-block p {
  font-size: 14px;
}

.industries {
  padding: 80px 0 56px;
}
.industries__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.industries__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.industries__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.industries__item:not(:last-child) {
  padding-bottom: 32px;
  border-bottom: 1px solid #2222221a;
}
.industries__top {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.industries__icon-block {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: var(--color-accent-opacity);
  width: 36px;
  aspect-ratio: 1 / 1;
}
.industries__top h4 {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 26px;
}
.industries__item p {
  font-weight: 500;
  max-width: 690px;
}

.journal {
  padding: 187.6px 0 100px;
}
.journal__wrapper {
  display: flex;
  flex-direction: column;
  gap: 68px;
}
.journal__title {
  font-size: 28px;
}
.journal__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.journal__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
}
.journal__img-block {
  overflow: hidden;
  border-radius: 12px;
  width: 490px;
  height: 313px;
}
.journal__img-block img {
  width: 100%;
  height: 100%;
}
.journal__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.journal__text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.journal__text-block .title {
  font-size: 24px;
  max-width: 337px;
}
.journal__text-block p {
  font-size: 14px;
}
.journal__accent-text {
  background-color: var(--color-grey-block);
  padding: 12px;
  font-size: 14px;
  border-radius: 12px;
}
.journal__link {
  color: var(--color-accent);
  font-weight: 600;
}
.journal--2 {
  padding: 139.6px 0 80px;
}
.journal--2 .journal__wrapper {
  gap: 40px;
}
.journal--2 .journal__list {
  background-color: var(--color-grey-light);
  width: 100%;
  padding: 63px 0;
}
.journal--2 .journal__content {
  align-items: flex-start;
}
.journal__back-link {
  display: flex;
  flex-direction: row;
  gap: 4px;
  border: 1px solid var(--color-grey-block);
  border-radius: 12px;
  padding: 12px;
  color: var(--color-font-body);
  transition: border var(--transition);
}
.journal__back-link:hover {
  border: 1px solid var(--color-accent);
}
.journal__article-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}
.journal__top-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.journal__top-content h3 {
  color: var(--color-accent);
  font-weight: 500;
  font-size: 32px;
}
.journal__content-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.journal__content-item {
  background-color: var(--color-grey-block);
  padding: 20px 32px;
  position: relative;
  border-radius: 8px;
  line-height: 1;
  font-size: 18px;
}
.journal__content-item::before {
  position: absolute;
  content: "";
  background-color: var(--color-accent);
  border-radius: 50%;
  width: 8px;
  aspect-ratio: 1 / 1;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}
.journal__bottom-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 630px;
}
.journal__bottom-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1.4;
}
.journal__bottom-block h4 {
  font-size: 20px;
  font-weight: 600;
}
.journal__article-content--2 {
  max-width: 880px;
}
.journal__article-content--2 .journal__top-content {
  gap: 28px;
}
.journal__article-content--2 h3 {
  font-size: 24px;
}
.journal__top-dark-text {
  background-color: var(--color-grey-block);
  border-radius: 8px;
  padding: 20px;
  font-size: 18px;
}
.journal__content-wrapper {
  width: 100%;
  display: flex;
}
.info {
  padding: 199.6px 0 80px;
}
.info__wrapper,
.info__content,
.info__block,
.info__text-block,
.info__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.info__wrapper h1 {
  font-size: 40px;
}
.info__block {
  gap: 24px;
}
.info__text-block {
  gap: 16px;
}
.info__text {
  gap: 10px;
}

.burger__wrapper {
  display: none;
}
.what {
  padding: 50px 0;
}
.what__inner {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.what__list {
  width: 480px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 100%;
}

.what__item-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: var(--color-accent);
  font-family: var(--font-family-title);
}

.what__item-text {
  margin-top: 12px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.what__img {
  width: 580px;
  aspect-ratio: 290/173;
  max-width: 100%;
  border-radius: 24px;
}

.support {
  padding: 50px 0;
}
.support__inner {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.support__list {
  width: 580px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 100%;
  padding: 0 20px;
}

.support__item {
  position: relative;
  padding-left: 20px;
}

.support__item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.support__item-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  font-family: var(--font-family-title);
}

.support__item-text {
  margin-top: 4px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.support__img {
  width: 580px;
  aspect-ratio: 290/173;
  max-width: 100%;
  border-radius: 24px;
}

.title__block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.title__mark {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.5;
}

.faq .support__item {
  padding-left: 0;
}

.faq .support__item::before {
  display: none;
}

.accent__title {
  margin-top: 186px;
  padding: 20px 40px;
  border-radius: 20px;
  background: #1879e6;
  color: var(--color-white);
}

.accent__title h1 {
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  font-family: var(--font-family-title);
}

.accent__title p {
  margin-top: 12px;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hero2 {
  padding-top: 100px;
}

.hero3 {
  background: transparent !important;
  color: var(--color-font-body);
}

.hero3 .title {
  color: var(--color-font-body);
}

.hero3::before {
  display: none;
  color: var(--color-font-body);
}

.hero3 .hero__top {
  align-items: center;
}

.hero3 .title {
  width: 780px;
  text-align: center;
}

.hero3 .hero__top p {
  width: 760px;
  text-align: center;
}

.hero2 .hero__text-block {
  align-items: flex-start;
  grid-row: span 2;
}

.hero__light {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #eee;
  max-width: 480px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.5;
}

.hero2 .hero__wrapper {
  grid-template-rows: 1fr 1fr 1fr;
  border-bottom: 1px solid #eee;
}

.hero2 .hero__background-block {
  grid-row: span 3;
}

.believe {
  padding: 20px 0 50px;
}

.believe .title {
  font-size: 28px;
}

.believe__list {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.believe__item {
  width: calc(25% - 15px);
  border-radius: 12px;
  background: #eee;
  padding: 12px 20px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  display: flex;
  align-items: center;
}

.believe__item > span > span {
  color: var(--color-accent);
}
.support-about .support__list {
  gap: 22px;
  padding: 20px 12px;
}

.support__title {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  font-family: var(--font-family-title);
}

.support__text {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.support__text span {
  color: var(--color-accent);
  font-weight: 700;
}

.support-about .support__inner {
  gap: 20px;
}

.about {
  padding-bottom: 50px;
}

.about__line {
  width: 100%;
  height: 1px;
  background: var(--color-grey-block);
  margin: 48px 0;
}

.contacts__bottom {
  padding: 60px 0 100px;
}

.contacts__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 40px;
  gap: 40px;
}

.contacts__bottom .contact__form-block {
  margin-top: 0;
}

.contacts__bottom .contact__text-block {
  text-align: left;
  margin: 0;
  width: 480px;
}

.contacts__bottom .contact__wrapper {
  align-items: stretch;
}

.contacts__bottom .title {
  font-size: 38px;
}

.text__block {
  padding: 186px 0 120px;
}

.text__block h1 {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 40px;
  color: var(--color-bg);
  text-align: center;
  font-family: var(--font-family-body);
}

.text__block p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.text__block p::first-letter {
  text-transform: uppercase;
}

p.lg-text {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  margin-bottom: 24px;
}

.text__block p.lg-text span {
  color: var(--color-accent);
}

.text__block h2 {
  margin-top: 40px;
  margin-bottom: 32px;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.text__block h3 {
  font-size: 20px;
  color: var(--color-bg);
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  margin: 32px 0 24px;
}

.text__block ul {
  margin-top: 24px;
  padding-left: 24px;
}

.text__block ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.text__block-wrapper {
  padding-left: 24px;
}

.text__block .name {
  font-size: 18px;
  margin: 24px 0 32px;
  font-weight: 500;
}

.hero3__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.hero3__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero3__item {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  gap: 20px;
  align-items: center;
}

.hero3__img-block {
  overflow: hidden;
  border-radius: 24px;
  height: 346px;
}

.hero3__img-block img {
  width: 100%;
  height: 100%;
}

.hero3__content {
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 39px;
  justify-content: space-between;
}

.hero3__text-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero3__title {
  padding-bottom: none;
  border-bottom: none;
}

.new-blog {
  padding: 30px 10px 80px;
}

.new-blog__wrapper {
  margin: 0 auto;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.new-blog__content,
.new-blog__text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.new-blog__bold-text {
  font-weight: 600;
  font-size: 22px;
}

.new-blog__accent-block {
  padding: 28px 24px 24px;
  color: var(--color-white);
  background-color: var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 24px;
}
.new-blog__accent-title {
  color: var(--color-white);
  border-bottom: none;
  padding-bottom: 0;
}

.new-blog__text-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.new-blog__text-inner span {
  font-size: 14px;
  opacity: 0.5;
}

.benefits {
  padding: 100px 0 60px;
}

.benefits__list {
  margin-top: 60px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.benefits__item {
  width: calc(50% - 10px);
  border-radius: 4px;
  background: var(--color-grey-block);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  min-height: 197px;
  flex-shrink: 0;
}

.benefits__item:last-child {
  flex-grow: 1;
}

.benefits__item-icon {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: var(--color-accent);
  padding: 12px;
}

.benefits2 .benefits__item {
  width: calc(33% - 14px);
  gap: 16px;
}

.benefits2 .benefits__item-title {
  margin-top: 24px;
}

.benefits2 .benefits__list {
  justify-content: flex-start;
}

.benefits__item-icon img {
  width: 100%;
  object-fit: contain;
}

.benefits2 .benefits__item:last-child {
  flex-grow: 0;
}

.benefits__item-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.benefits__item-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.testimonials {
  padding: 80px 0 40px;
}

.testSwiper {
  padding-top: 32px;
  padding-bottom: 40px;
}

.testSwiper .swiper-button-next,
.testSwiper .swiper-button-prev {
  top: auto;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 11;
}

.testSwiper .swiper-button-next {
  left: calc(50% + 70px);
}
.testSwiper .swiper-button-prev {
  left: calc(50% - 70px);
}

.testSwiper .swiper-slide {
  width: 380px;
  height: auto;
  max-width: 100%;
}

.testimonials__item {
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  gap: 30px;
}

.testimonials__item-icon {
  width: 58px;
}

.testimonials__item-ava {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

.testimonials__item-ava img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.testimonials__item-top {
  width: 100%;
}

.testimonials__item-top img {
  width: 100%;
  aspect-ratio: 332/199;
  border-radius: 16px;
}

.testimonials__item-text {
  font-size: 16px;
  font-style: normal;
  flex-grow: 1;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
}

.testimonials__item-name {
  margin-top: 20px;
  color: var(--color-accent);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 22.4px */
}
.swiper-button-next,
.swiper-button-prev {
  top: 0;
  transform: none;
  margin-top: 0;
  border-radius: 44px;
  background: var(--color-accent);
  width: 44px;
  height: 44px;
}

.swiper-pagination-bullet {
  background: var(--color-accent);
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: var(--color-accent);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.swiper-button-next {
  left: auto;
  right: 0;
}
.swiper-button-prev {
  left: auto;
  right: 56px;
}

.swiper-wrapper {
  align-items: stretch;
}
.testimonials .title {
  display: block;
}

.blogs {
  padding: 40px 0 0;
  background: var(--color-grey-block);
}

.blogs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.blogs__item {
  width: calc(25% - 15px);
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;

  display: flex;
  background: #fff;
  border-radius: 32px;
}

.blogs__item-img {
  width: 100%;
  aspect-ratio: 20/11;
  border-radius: 12px;
}

.blogs__item-title {
  background-image: linear-gradient(to right, #8199f1, #284dbf);
  background-clip: text;
  color: transparent;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 20px;
}

.blogs__item-subtitle {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 8px;
}

.blogs__item-text {
  margin-top: 20px;

  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  line-clamp: 5;
  box-orient: vertical;
}

.blogs__btn {
  margin: 0 auto;
  transform: translateY(50%);
  padding: 24px 40px;
}

.reasons {
  padding: 104px 0 80px;
}

.reasons__list {
  margin-top: 32px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.reasons__item {
  width: calc(33% - 13px);
  height: 264px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  gap: 8px;
  border-radius: 40px;
  background: var(--color-accent);
  color: #fff;
}

.reasons__item-img {
  display: block;
  overflow: hidden;
  padding: 0;
}

.reasons__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reasons__item-title {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.reasons__item-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.reasons__item:nth-child(3) {
  background: #222;
}
.reasons__item:nth-child(4) {
  background: #eee;
  color: var(--color-accent);
}
.reasons__item:nth-child(6) {
  background: #a4b9ff;
  color: var(--color-accent);
}

.hero__history {
  margin-top: 32px;
  background: linear-gradient(
      178deg,
      rgba(83, 113, 215, 0) 36.76%,
      #5371d7 69.46%
    ),
    linear-gradient(
      0deg,
      rgba(83, 113, 215, 0.9) 0%,
      rgba(83, 113, 215, 0.9) 100%
    ),
    url(../img/our-company/bg.webp) lightgray 50% / cover no-repeat;
  padding: 36px 36px 56px;
  border-radius: 40px;
  min-height: 463px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.hero__history-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

.hero__history-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.hero__history-item {
  width: calc(20% - 16px);
  max-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__history-item span {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  opacity: 0.5;
}

.hero__history-item p {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

.hero__history-line {
  margin-top: 30px;
  width: 100%;
  height: 1px;
  position: relative;
  background: #fff;
}

.hero__history-line::after,
.hero__history-line::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hero__history-line::before {
  left: 0;
}

.hero__history-line::after {
  right: 0;
}

.hero__subtitle {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 12px;
}

.services {
  padding: 20px 0 40px;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.services__item {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.services__item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services__item-title {
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 480px;
  max-width: 100%;
}

.services__item-img {
  width: 480px;
  flex-shrink: 0;
  aspect-ratio: 24/13;
  border-radius: 40px;
  object-fit: cover;
}

.services__item-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.services__item-card {
  width: calc(25% - 15px);
  border-radius: 20px;
  background: var(--color-grey-block);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services__item-subtitle {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.services__item-card ul {
  display: flex;
  gap: 12px;
  flex-direction: column;
  list-style: none;
  padding-left: 0;
}

.services__item-card ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  padding-left: 32px;
  position: relative;
}

.services__item-card ul li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.steps {
  padding: 40px 0;
}

.steps__list {
  margin-top: 32px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}

.steps__item {
  width: calc(25% - 15px);
  border-radius: 20px;
  border: 1px solid #ddd;
  padding: 24px 32px;
  background: #f5f5f5;
}

.steps__item span {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background-image: linear-gradient(to right, #8199f1, #284dbf);
  background-clip: text;
  color: transparent;
}

.steps__item p {
  margin-top: 12px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.steps__item:last-child {
  background: linear-gradient(90deg, #8199f1 0%, #284dbf 100%), #f5f5f5;
}

.steps__item:last-child span,
.steps__item:last-child p {
  color: #fff;
}

.quote {
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

.quote__text {
  margin-top: 32px;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.quote__text span {
  background-image: linear-gradient(to right, #8199f1, #284dbf);
  background-clip: text;
  color: transparent;
}

.quote2 .quote__text {
  font-size: 40px;
}

.quote__btn {
  margin: 32px auto 0;
  padding: 24px 40px;
  position: relative;
  z-index: 2;
}

.advantages {
  padding: 40px 0;
}

.advantages__list {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.advantages__item {
  width: calc(25% - 15px);
  border-radius: 32px;
  background: #eee;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 140px;
}

.advantages__item p {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.advantages__item:first-child {
  padding: 0;
  overflow: hidden;
}

.advantages__item:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.articles {
  padding: 80px 0;
  background: var(--color-grey-block);
}

.articles__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background-image: linear-gradient(to right, #8199f1, #284dbf);
  background-clip: text;
  color: transparent;
}

.articles__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.articles__item {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.articles__item-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.articles__item-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: var(--color-bg);
}

.articles__item-text {
  margin-top: 12px;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
}

.articles__item-author {
  margin-top: 26px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.5;
}

.btn-white {
  border-radius: 40px;
  border: 1px solid #8199f1;
  background-image: linear-gradient(to right, #8199f1, #284dbf);
  background-clip: text;
  color: transparent;
  padding: 24px 40px;
}

.articles__item .btn {
  margin-top: 26px;
}

.articles__item-img {
  width: 100%;
  height: 320px;
  flex-shrink: 0;
}

.articles__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.articles__item-btn {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--color-accent);
  margin-top: 40px;
  border-bottom: 1px solid var(--color-accent);
}

.principles__text {
  margin-top: 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.hero-article__inner {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.hero-article__img {
  width: 480px;
  max-width: 100%;
  flex-shrink: 0;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 96/61;
}

.hero-article-info {
  display: flex;
  flex-direction: column;
}

.hero-article__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-article__back {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--color-font-body);
}

.hero-article {
  background: var(--color-grey-block);
}

.hero-article__back p {
  opacity: 0.5;
}

.hero-article .articles__item-title {
  margin-top: 32px;
}
.article {
  padding: 0 0 120px;
}
.article__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.article p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.article p.big {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%; /* 36px */
}

.article p span {
  color: var(--color-accent);
  font-family: var(--font-family-title);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  display: block;
}

.article__img {
  width: 100%;
  border-radius: 4px;
  max-width: 100%;
  margin: 0 auto;
}

.hero__contacts {
  margin-top: 32px;
  display: flex;
  gap: 20px;
}

.hero__contacts-info {
  width: 480px;
  border-radius: 40px;
  background: linear-gradient(227deg, #8199f1 0%, #284dbf 100%);
  flex-shrink: 0;
  padding: 36px;
  color: #fff;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.hero__contacts-info::after {
  content: "";
  width: 320px;
  height: 320px;
  background: url(../img/logo.svg) no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%) rotate(21.976deg);
}

.hero__contacts-info > div {
  position: relative;
  z-index: 1;
}

.hero__contacts-img img {
  width: 100%;
  aspect-ratio: 47/32;
  border-radius: 40px;
}

.hero__contacts-bottom span {
  margin-top: 28px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  opacity: 0.5;
  display: block;
}

.hero__contacts-bottom p {
  margin-top: 8px;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

.demo {
  padding: 60px 0;
  background: var(--color-grey-block);
}

.demo-white {
  padding: 120px 0;
  background: transparent;
}

.demo2 {
  margin-top: 134px;
}

.demo__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}

.demo__img {
  width: calc(50% - 10px);
}

.demo__img img {
  width: 100%;
  aspect-ratio: 290/193;
  object-fit: cover;
  border-radius: 4px;
}

.demo__info {
  width: calc(50% - 10px);
}

.demo__list {
  display: flex;
  flex-direction: column;
}

.demo__item {
  padding: 16px 0 16px 40px;
  position: relative;
  border-bottom: 1px solid rgba(252, 124, 197, 0.2);
}

.demo__item:last-child {
  border-bottom: 0;
}

.demo__item-icon {
  position: absolute;
  left: 0;
  top: 16px;
  width: 24px;
  height: 24px;
  padding: 7px 5px 6px 5px;
}

.demo__item span {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.demo__item p {
  margin-top: 16px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.demo__text {
  font-size: 18px;
}

.demo__text p {
  margin-top: 10px;
}

.demo__text b {
  font-size: 20px;
  font-weight: 600;
}

.demo__text ul {
  margin: 0px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}

.demo__text ul li {
  padding-left: 20px;
  position: relative;
}

.demo__text ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.demo__btn {
  margin-top: 32px;
}

.other {
  padding: 40px 0;
}
.subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
}

.other__cards {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.other__card {
  padding: 20px;
  border-radius: 24px;
  background: var(--color-grey-block);
  width: calc(50% - 10px);
}

.other__cards-top {
  display: flex;
  gap: 20px;
  align-items: center;
}

.other__cards-icon {
  width: 44px;
}

.other__cards-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.other__cards-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-bg);
}

.other__cards-body {
  margin-top: 20px;
}

.other__cards-subtitle {
  font-weight: 700;
  margin-top: 10px;
}

.other__card ul {
  margin: 10px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.other__card ul li {
  position: relative;
  padding-left: 24px;
}

.other__card ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.other__cards-line {
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  margin: 20px 0;
}

.other__btn {
  margin-top: 32px;
}

footer {
  padding: 40px 0;
  font-size: 14px;
  color: #fff;
  background: var(--color-bg);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 24px;
}

.footer__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__menu a {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.footer__menu a:hover {
  text-decoration: underline;
}

.footer__inner {
  padding: 48px 0;
}

.footer__inner-list {
  width: 730px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 60px;
}

.footer__contact {
  width: 180px;
}
.footer__contact:nth-child(1),
.footer__contact:nth-child(4) {
  width: 240px;
}

.footer__contact span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.footer__contact p {
  margin-top: 8px;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__copyright {
  font-weight: 300;
}

.footer__bottom .footer__menu {
  gap: 16px;
}

.footer__bottom .footer__menu a {
  color: rgba(255, 255, 255, 0.7);

  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.footer__disclamer {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.6;
}

.faq {
  padding: 60px 0;
  background: var(--color-grey-block);
}

.faq__top {
  padding: 20px;
  border-bottom: 1px solid var(--color-accent);
}
.faq__list {
  margin-top: 32px;
}

.faq-item {
  border-bottom: 1px solid rgba(39, 49, 87, 0.12);
  overflow: hidden;
  padding: 0 20px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 15px;
  background: url(../svg/arrow-up.svg);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--font-family-body);
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-text {
  padding: 0 0 0 16px;
  border-left: 1px solid var(--color-accent);
}

.faq-answer-text ul {
  margin: 0;
  padding-left: 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(0);
}

.faq-item.active .faq-icon::before {
  transform: translateY(-50%) rotate(180deg);
}

.contacts .popup__check {
  position: relative !important;
}

.protection {
  padding: 60px 0 120px;
}

.protection__text {
  margin-top: 16px;
  width: 560px;
  max-width: 100%;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.protection__list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 20px;
}

.protection__item {
  grid-column: span 3;
  grid-row: span 1;
  padding: 32px 32px 32px 28px;
  border-radius: 4px;
  border-left: 4px solid var(--color-accent);
  color: #fff;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.protection__item-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.protection__item-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}

.protection__img {
  grid-column: span 2;
  grid-row: span 2;
}

.protection__img img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.protection__img:nth-child(4) {
  grid-row: span 3;
}

.protection2 .protection__list {
  display: flex;
  flex-wrap: wrap;
}
.protection2 .protection__img,
.protection2 .protection__item {
  width: calc(50% - 10px);
  position: relative;
}

.protection2 .protection__img {
  overflow: hidden;
  border-radius: 4px;
}

.protection2 .protection__img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.protection2 {
  padding: 120px 0;
}

.team {
  padding: 60px 0;
  background: var(--color-grey-block);
}

.team__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team__item {
  border-radius: 4px;
  background: #fff;
  display: flex;
  padding: 32px;
  gap: 32px;
  flex-wrap: wrap;
}

.team__item-img {
  width: calc(40% - 16px);
  flex-shrink: 0;
}

.team__item-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
}

.team__item-info {
  width: calc(60% - 16px);
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.team__item-name {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: var(--font-family-title);
}

.team__item-job {
  margin-top: 8px;
  color: rgba(23, 36, 83, 0.7);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.team__item-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.team__item-quote {
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-start;
}

.team__item-icon {
  width: 54px;
  object-fit: contain;
}

.team__item-quote p {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.numbers {
  padding: 120px 0;
}

.numbers__list {
  margin-top: 60px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.numbers__item {
  width: calc(50% - 10px);
  border-radius: 4px;
  border-left: 4px solid var(--color-accent);
  padding: 32px;
  background: var(--color-bg);
  color: #fff;
  text-align: center;
}

.numbers__item-num {
  color: var(--color-accent);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: var(--font-family-title);
}

.numbers__item-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.numbers__item-text {
  margin-top: 16px;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.programs {
  padding: 120px 0;
}

.programs__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.programs__item {
  width: 100%;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  border-radius: 4px;
  border-left: 4px solid var(--color-accent);
  background: var(--color-grey-block);
  padding: 24px;
}

.programs__item-img {
  width: 45%;
}
.programs__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.programs__item-info {
  width: calc(55% - 30px);
}

.programs__item-title {
  font-family: var(--font-family-title);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.programs__item p {
  margin-top: 26px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.programs__item p:last-child {
  margin-top: 8px;
}

.programs__item-subtitle {
  margin-top: 26px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.reviewsSwiper {
  padding-top: 104px;
  padding-bottom: 40px;
  margin-top: -40px;
}

.reviewsSwiper .swiper-slide {
  width: 360px;
  max-width: 100%;
}
.reviews__item {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  border-left: 4px solid var(--color-accent);
  background: var(--color-grey-block);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.reviews__item-text {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.reviews__item-name {
  color: rgba(23, 36, 83, 0.5);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.swiper-slide {
  height: auto;
}

.reviews__item-img {
  width: 96px;
  height: 96px;
}

.reviews__item-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.reviewsSwiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.map {
  padding: 0 0 60px;
}

.contacts__cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px 0 80px;
}

.contacts__card {
  padding: 24px 40px;
  border-radius: 4px;
  border-left: 4px solid var(--color-accent);
  background: var(--color-bg);
  color: #fff;
}

.contacts__card span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contacts__card p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 8px;
}

.contact__address {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact__address p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact__address img {
  width: 24px;
}

.map__img {
  margin-top: 80px;
}

.map__img img {
  width: 100%;
  border-radius: 4px;
}

@media (max-width: 1300px) {
  .hero {
    background: url("../img/home/photo.webp") no-repeat;
    background-position: right;
    background-size: auto 100%;
  }

  .hero-programs {
    background: url("../img/courses/photo.webp") no-repeat;
    background-position: right;
    background-size: auto 100%;
  }


}
@media (max-width: 1024px) {
  .team__item-img img {
    aspect-ratio: auto;
  }

  .articles__item {
    width: calc(50% - 10px);
  }

  .hero__contacts {
    flex-wrap: wrap;
  }
  .services__item-img,
  .hero__contacts-info {
    width: 100%;
  }
  .services__item-top {
    flex-wrap: wrap;
    gap: 30px;
  }
  .services__item-card,
  .advantages__item,
  .steps__item {
    width: calc(50% - 10px);
  }
  .clients__title {
    width: 100%;
  }
  .clients__item {
    width: calc(33% - 13px);
  }
  .hero__history-line::after,
  .hero__history-line::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .hero__history-line::before {
    top: 0;
  }
  .hero__history-line::after {
    bottom: 0;
    top: auto;
  }
  .hero__history-line {
    height: auto;
    width: 1px;
    order: 0;
    margin-top: 0;
  }
  .hero__history-bottom {
    display: flex;
    gap: 30px;
  }
  .hero__history-list {
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    order: 1;
  }
  .hero__history-item {
    width: 100%;
    max-width: 100%;
  }
  .blogs__item {
    width: calc(50% - 10px);
  }
  .contacts__bottom-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
  }

  .contacts__bottom .contact__wrapper {
    align-items: center;
  }

  .believe__item {
    width: calc(50% - 10px);
  }

  .header__list {
    gap: 24px;
  }
  .support__inner,
  .what__inner {
    flex-wrap: wrap;
  }
  .support__list,
  .what__list {
    width: 100%;
    order: 2;
    gap: 20px;
  }
  .support__img,
  .what__img {
    width: 100%;
  }

  .hero__background-block {
    width: 100%;
  }

  .hero--2 .hero__background-block {
    position: static;
    height: 400px;
    display: block;
    width: 100%;
  }
  .hero__background-block img {
    object-position: center right;
  }
  .hero__background-block::before{
    display: none;
  }
  .hero {
    display: flex;
    flex-direction: column-reverse;
  }
  .hero__wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .hero__list {
    width: 100%;
    max-width: 100%;
  }
  .hero__text-block,
  .hero__text-block p {
    max-width: 100%;
  }

  .contact__wrapper {
    flex-direction: column;
    gap: 38px;
    align-items: center;
  }
  .contact__text-block,
  .choose__accent-text-block {
    max-width: 100%;
  }
  .contacts {
    padding: 40px 0 42px;
    display: flex;
    gap: 28px;
    flex-direction: column-reverse;
  }
  .popup__form-list {
    align-items: center;
  }
  .hero--2 .hero__background-block {
    width: 100%;
  }
  .hero--2 .hero__wrapper {
    flex-direction: column-reverse;
    padding-top: 0;
  }
  .hero--2 .hero__wrapper.container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .hero--2 .hero__text-block {
    padding-left: 10px;
    padding-right: 10px;
  }
  .container {
    max-width: 100%;
  }
  .choose__inner {
    flex-direction: column;
  }

  .industries__item p {
    max-width: 100%;
  }

  .journal__img-block {
    width: 200px;
    height: 200px;
  }
  .journal__img-block img {
    object-position: 70% 100%;
  }
  .journal--2 .journal__img-block {
    width: 100%;
    height: 300px;
  }
  .journal__item {
    display: flex;
    flex-direction: column;
  }
  .contacts--2 .contact__text-block {
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    width: 100%;
  }
  .contacts--2 .contact__wrapper {
    width: 100%;
  }
  .contacts--2 .contact__text-block .marker-border {
    display: none;
  }
  .reasons__item {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 900px) {
}
@media (min-width: 786px) {
  .logo__wrapper-mob {
    display: none;
  }
  .principles__wrapper {
    padding: 0 32px;
  }
}

@media (max-width: 786px) {
  .map {
    padding: 60px 0;
  }
  .demo__inner,
  .benefits__list {
    margin-top: 32px;
  }
  .team__item-quote p,
  .demo__text b,
  .demo__text,
  .demo__item p,
  .protection__text,
  .text__block p {
    font-size: 16px;
  }
  .team__item-icon {
    width: 40px;
  }
  .demo__item span,
  .protection__item-title,
  .contacts__card p {
    font-size: 20px;
  }
  .back__btn svg {
    width: 30px;
    height: 30px;
  }
  .reviewsSwiper {
    padding-top: 80px;
  }
  .protection {
    padding: 60px 0;
  }
  .contacts__cards {
    margin: 32px 0 40px;
  }
  .map__img {
    margin-top: 32px;
  }
  .map__img img {
    height: 360px;
    object-fit: cover;
    object-position: center;
  }
  .contacts__img {
    width: 100%;
  }
  .back__btn {
    gap: 10px;
  }
  .hero-article .hero__top {
    padding-top: 70px;
  }
  .programs__list {
    gap: 20px;
  }
  .numbers__item {
    width: 100%;
  }
  .numbers__list {
    margin-top: 32px;
  }
  .programs__item-img {
    width: 100%;
    order: 0;
  }
  .programs__item-info {
    width: 100%;
    order: 1;
  }
  .programs__item p {
    margin-top: 20px;
  }
  .programs,
  .numbers {
    padding: 60px 0;
  }
  .numbers__item-title {
    font-size: 20px;
  }
  .numbers__item-text {
    font-size: 16px;
  }
  .team__item-info,
  .team__item-img {
    width: 100%;
    padding: 0;
  }
  .footer__menu {
    flex-wrap: wrap;
  }
  .programs__item-title,
  .team__item-name {
    font-size: 20px;
  }
  .team__item-img img {
    aspect-ratio: 1/1;
  }
  .protection2 .protection__img,
  .protection2 .protection__item {
    width: 100%;
    min-height: 200px;
  }
  .protection__list {
    display: flex;
    flex-direction: column;
  }
  .protection__item,
  .protection__img {
    width: 100%;
  }
  .protection__img {
    order: 0;
  }
  .protection__item:nth-child(1) {
    order: 1;
  }
  .protection__item:nth-child(3) {
    order: 2;
  }

  .protection__img:nth-child(4) {
    order: 3;
  }
  .protection__item:nth-child(5) {
    order: 4;
  }
  .protection__item:nth-child(6) {
    order: 5;
  }
  .protection__item:nth-child(7) {
    order: 6;
  }

  .demo2 {
    margin-top: 82px;
  }
  .benefits {
    padding: 60px 0 30px;
  }
  .testimonials,
  .demo {
    padding: 40px 0;
  }
  .contact__form-block {
    order: 1;
  }
  .contact__img {
    width: 100%;
  }

  .other__card {
    width: 100%;
  }

  .testimonials__item-icon {
    display: none;
  }

  .testimonials__item {
    flex-direction: column;
  }
  .testimonials__item-info {
    order: 1;
  }

  .demo__inner {
    flex-wrap: wrap;
  }
  .demo__info {
    width: 100%;
    order: 1;
  }
  .demo__img {
    width: 100%;
  }
  .demo__img img {
    border-radius: 24px;
  }
  .demo__item {
    padding-left: 0;
    padding-top: 45px;
  }

  .demo__item-num {
    font-size: 16px;
  }
  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.8) 60%,
      rgba(155, 83, 237, 0) 100%
    );
  }
  .hero {
    background: url(../img/home/photo.webp) no-repeat;
    background-position: right;
    background-size: cover;
    margin-top: 83px;
  }
  .hero-programs {
    background: url(../img/courses/photo.webp) no-repeat;
    background-position: right;
    background-size: cover;
    min-height: auto;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 34px;
    height: 34px;
    top: 16px;
  }

  .swiper-button-prev {
    right: 43px;
  }

  .hero__contacts-bottom p {
    font-size: 20px;
  }
  .hero-article__inner {
    flex-wrap: wrap;
  }
  .steps__item {
    width: 100%;
  }
  .clients__title {
    width: calc(50% - 10px);
  }
  .clients__item {
    width: calc(50% - 10px);
  }
  .achive__list {
    gap: 20px;
    padding: 0;
    justify-content: center;
  }

  .achive__item {
    transform: none !important;
    margin-top: 0 !important;
  }
  .principles__ul li,
  .principles__item {
    width: 100%;
  }

  .quote__text,
  .reasons__item-title {
    font-size: 32px;
  }

  .benefits2 .benefits__item {
    width: 100%;
    gap: 24px;
  }
  .benefits__item-title {
    font-size: 20px;
  }
  .card__item {
    min-height: 0;
  }
  .card__list {
    flex-wrap: wrap;
  }
  .articles__item-title,
  .principles__subtitle,
  .card__item-title {
    font-size: 20px;
  }
  .card__item {
    width: 100%;
  }

  .blogs__item-text,
  .benefits__item-text,
  .card__item-text,
  .hero__text,
  .hero__top p,
  .support__text,
  .hero__list li {
    font-size: 16px;
  }
  .hero__text {
    width: 100%;
    height: 340px;
  }

  .believe__item {
    width: 100%;
  }

  .support__list {
    padding: 0;
  }
  .header__bottom-block .logo__wrapper {
    display: none;
  }
  .header {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-accent);
  }
  .form {
    padding: 20px;
  }

  .header__contact-block,
  .header__bottom-block-inner a.btn--min {
    display: none;
  }

  .burger,
  .burger__wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
  }
  .header__bottom-block {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    top: 84px;
    left: 0;
    width: 100%;
    z-index: 8;
    background: var(--color-bg);
  }
  .header__bottom-block.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .header__list-wrapper {
    max-width: 100%;
    width: 100%;
  }
  .header__list {
    flex-direction: column;
    gap: 0;
  }
  .hero {
    padding: 50px 0;
  }
  .hero ul li {
    width: 100%;
  }

  .card {
    padding: 40px 0;
  }
  .accent__title {
    margin-top: 124px;
  }
  .text__block {
    padding-top: 124px;
  }

  .quote2 .quote__text,
  .services__item-title,
  .text__block h1,
  .contacts__bottom .title,
  .accent__title h1 {
    font-size: 32px;
  }
  .title {
    font-size: 32px;
  }
  .title--min {
    font-size: 24px;
  }

  .support__title,
  .believe .title {
    font-size: 24px;
  }
  .services__item-subtitle {
    font-size: 20px;
  }

  .card__list {
    display: flex;
    flex-direction: column;
  }
  .facts__item {
    width: 100%;
  }
  .hero__light {
    margin-top: 0;
  }

  .journal {
    padding: 98px 0 60px;
  }
  .journal--2 {
    padding: 0 0 60px;
  }
  .journal--2 .journal__list {
    padding-top: 98px;
  }
  .journal__list {
    gap: 30px;
  }
  .journal__item {
    display: flex;
    flex-direction: column;
  }
  .journal__img-block {
    width: 100%;
    height: 300px;
  }
  .info {
    padding: 98px 0 40px;
  }

  .clients__title,
  .card__text-block p,
  .hero__text-block p {
    font-size: 20px;
  }

  .accent__title p,
  .contact__text-block p,
  .what__item-title {
    font-size: 22px;
  }
  .what__item-text {
    font-size: 14px;
  }
  .hero3__item {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .articles__item {
    width: 100%;
  }
  .services__item-card,
  .advantages__item,
  .reasons__item {
    width: 100%;
  }
}
@media (max-width: 530px) {
  .contact__address p {
    font-size: 16px;
  }
  .team__item {
    padding: 20px;
  }

  .clients__title {
    width: 100%;
  }
  .clients__item {
    width: 100%;
  }
  .principles__item span {
    font-size: 20px;
  }
  .achive__item,
  .principles__item p {
    font-size: 16px;
  }
  .blogs__item {
    width: 100%;
  }

  .benefits__item {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .hero--2 .hero__background-block {
    height: 202px;
  }
}
