/* USER VARIABLES SECTION */

:root {
  --lineheight: 1.5;
  --regular-text: 16px;
  --white: #fff;
  --body: #c4c4c4;
  --header: #030018;
  --body: #353346;
  --blue: #492e87;
  --red: #b1051b;
  --orange: #f29c02;
  --green: #a4c61a;
  --purple: #61166f;
  --red-2: #ff2525;
  --inputs: #6547ac;
  --black: #1a1a1a;
  --input-text: #58575e;
  --font-family: "Roboto", sans-serif;
  --second-family: "Hind", sans-serif;
  --third-family: "Inter", sans-serif;
  --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 0.938rem;
}

.row,
.row > * {
  --bs-gutter-x: 1.875rem;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

input[type="checkbox"],
input[type="radio"],
input[type="file"] {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  z-index: 1;
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}

/* GENERAL CSS SETTINGS */

.svg-block {
  position: absolute;
  bottom: -9999px;
  left: -9999px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.img-right {
  float: right;
  margin-left: 50px;
}

.img-left {
  float: left;
  margin-right: 50px;
}

.animate__animated {
  /* Анимация будет длиться 1 секунду */
  animation-duration: 2s;
  /* Запуск анимации один раз */
  animation-iteration-count: 1;
}

::placeholder {
  color: #000;
  opacity: 1;
}

input,
textarea {
  outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
  border-color: #14295e;
}

input:required:valid,
textarea:required:valid {
  border-color: green;
}

* {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--regular-text);
  line-height: var(--lineheight);
  color: var(--black);
  font-weight: 400;
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
  background: var(--white);
}

/* common */
.btn {
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  width: 100%;
  height: 52px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  color: var(--white);
  text-decoration: none;
  transition: background 0.3s ease;
  margin: 0;
  padding: 0;
  background: #ff4d8f;
}

.btn:hover {
  background: #ff6ba2;
  color: var(--white);
}

.title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  color: var(--header);
  margin: 0;
  padding: 0;
}

.main__title,
.main__text {
  max-width: 660px;
}

.phone {
  display: flex;
  align-items: center;
  gap: 0 10px;
  text-decoration: none;
}

.phone svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.phone span {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  color: var(--white);
}

.lang {
  position: relative;
}

.lang__current {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0 9px;
}

.lang__current svg {
  fill: var(--white);
  width: 20px;
  height: 20px;
}

.lang__popup {
  position: absolute;
  left: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.lang__popup.show {
  opacity: 1;
  visibility: visible;
}

.lang__popup li {
  list-style-type: none;
}

.lang__popup li a {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.social {
  display: flex;
  align-items: center;
  gap: 0 16px;
  margin: 0;
  padding: 0;
}

.social li {
  list-style-type: none;
}

.social li a {
  display: block;
}

.social li a svg {
  fill: var(--white);
  width: 24px;
  height: 24px;
}

@media (max-width: 991px) {
  .phone span {
    display: none;
  }

  .title {
    font-size: 24px;
    line-height: 30px;
  }
}

/* end common */

/* header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  padding: 24px 0;
  z-index: 2;
}

.header__info {
  display: flex;
  justify-content: end;
  gap: 0 40px;
}

@media (max-width: 991px) {
  .header__info {
    gap: 0 20px;
  }

  .header__logo {
    width: 100%;
    max-width: 120px;
    display: block;
  }

  .header__logo img {
    object-fit: contain;
    width: 100%;
  }
}

/* end header */

/* first screen */
.first-screen {
  background: linear-gradient(90deg, rgba(73, 46, 135, 0.8) 0%, #492e87 100%),
    url("../images/bg-first-block.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 800px;
  overflow: hidden;
  margin-bottom: 105px;
}

.first-screen .container {
  position: relative;
}

.first-screen__info {
  padding: 237px 0 0 0;
}

.first-screen__info h1 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 42px;
  line-height: 55px;
  color: var(--white);
  margin: 0 0 24px 0;
}

.first-screen__info p {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--white);
}

.first-screen__btn {
  margin: 40px 0 0 0;
}

.first-screen__img {
  position: absolute;
  right: -27%;
  top: -1%;
  max-width: 1200px;
  height: 850px;
}

.first-screen__img img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}

img.first-screen-mobile {
  display: none;
}

@media (max-width: 1023px) {
  img.first-screen-mobile {
    display: block;
  }

  img.first-screen-pc {
    display: none;
  }
}

/* end first screen */

/* services */
.services {
  padding: 128px 0;
}

.services__img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.services__img img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.services__info h2 {
  margin: 0 0 20px 0;
}

.services__info p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 19px;
  line-height: 30px;
  color: var(--body);
  margin: 0;
}

.services__list {
  padding: 0;
  margin: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 28px 0;
}

.services__list li {
  list-style-type: none;
  display: flex;
  align-items: baseline;
  gap: 0 20px;
}

.services-item__info h3 {
  padding: 0;
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 25px;
  line-height: 25px;
  color: var(--header);
}

.services-item__info p {
  padding: 0;
  margin: 13px 0 0 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--body);
}

@media (max-width: 991px) {
  .services {
    padding: 60px 0;
  }

  .services__info h2 {
    margin: 0 0 20px 0;
  }

  .services__info p {
    font-size: 18px;
    line-height: 24px;
  }

  .services-item__info h3 {
    font-size: 20px;
    line-height: 20px;
  }

  .services__img {
    margin: 70px 0 0 0;
  }
}

/* end services */

/* get-prize */
.get-prize {
  padding: 0 0 128px 0;
}

.get-prize__head {
  margin: 0 0 50px 0;
}

.get-prize__head h2 {
  margin: 0 0 20px 0;
  color: var(--black);
  text-align: center;
}

.get-prize__head p {
  text-align: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--body);
  max-width: 660px;
  margin: 0 auto;
}

.get-prize-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px 0;
  position: relative;
}

.get-prize-item__img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}

.get-prize-item__img img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.get-prize-item__info {
  padding: 0 72px;
}

.get-prize-item__info h3 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  color: var(--blue);
  margin: 0;
  padding: 0;
  text-align: center;
}

.get-prize-item__info p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: var(--body);
  margin: 13px 0 0 0;
}

.get-prize-item--icon-top,
.get-prize-item--icon-down {
  position: relative;
}

.get-prize-item--icon-top::before {
  content: "";
  display: block;
  right: -125px;
  top: 11px;
  width: 248px;
  height: 28px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/icon-prize-top.svg");
  background-size: contain;
}

.get-prize-item--icon-down::before {
  content: "";
  display: block;
  right: -125px;
  top: 90px;
  width: 248px;
  height: 28px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/icon-prize-down.svg");
  background-size: contain;
}

@media (max-width: 991px) {
  .get-prize {
    padding: 0 0 60px 0;
  }

  .get-prize__head {
    margin: 0 0 40px 0;
  }

  .get-prize__head p {
    font-size: 18px;
    line-height: 24px;
  }

  .get-prize-item--icon-top::before,
  .get-prize-item--icon-down::before {
    display: none;
  }

  .get-prize__row {
    gap: 32px 0;
  }

  .get-prize-item__info {
    padding: 0 37px;
  }
}

/* end get-prize */

/* footer */
.footer {
  padding: 40px 0;
  background: var(--header);
}

.footer__copy {
  text-align: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: var(--white);
}

.footer__social {
  justify-content: end;
}

@media (max-width: 991px) {
  .footer {
    padding: 40px 0 60px 0;
  }

  .footer__logo {
    text-align: center;
    display: block;
    margin: 0 0 40px 0;
  }

  .footer__copy {
    margin: 0 0 40px 0;
  }

  .footer__social {
    justify-content: center;
  }
}

/* end footer */

/* follow-success */
.follow-success__wrapper {
  border-radius: 30px;
  background: var(--blue);
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.follow-success__img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 0 0 40px;
}

.follow-success__img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4) 40%,
    rgba(255, 255, 255, 0) 80%
  );
  filter: blur(20px);
  display: block;
  z-index: 2;
  mix-blend-mode: screen;
}

.follow-success__img img {
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.follow-success__info {
  width: 50%;
  padding: 51px 21px;
  position: relative;
  z-index: 2;
}

.follow-success__info h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: var(--white);
  margin: 0;
  padding: 0;
}

.follow-success__info p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--white);
  margin: 24px 0 0 0;
}

.follow-success__btn {
  margin: 30px 0 0 0;
}

/* Investment Section */

.investment {
  margin: 91px 0;
}

.investment__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  color: #030018;
  margin-top: 25px;
  display: flex;
  justify-content: center;
  font-family: "Hind Kochi", sans-serif;
}

.investment__top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 80px;
}

.investment__top-text {
  font-family: "Hind Kochi", sans-serif;
  font-weight: 500;
  font-size: 29px;
  line-height: 120%;
  color: #000000;
  max-width: 572px;
  border-radius: 25px;
  padding: 17px 28px;
  background-color: #EDE6FE;
}

.investment__top-price {
  color: #492e87;
  font-family: "Hind Kochi", sans-serif;
  font-weight: 700;
  font-size: 43px;
  line-height: 120%;
}

.investment__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 18px;
  grid-column-gap: 31px;
  margin-bottom: 121px;
}

.investment__item {
  border: 1px solid #492e87;
  border-radius: 20px;
  padding: 30px 40px;
  font-family: "Hind Kochi", sans-serif;
  font-size: 20px;
  line-height: 120%;
  color: #000000;
  display: flex;
  justify-content: start;
  align-items: center;
}

.investment__services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 185px;
  grid-row-gap: 98px;
}

.investment__service {
  display: flex;
  align-items: start;
  gap: 21px;
}

.investment__services-title {
  font-family: "Hind Kochi", sans-serif;
  font-size: 25px;
  line-height: 120%;
  color: #030018;
  margin-bottom: 13px;
  font-weight: 700;
}

.investment__services-subtitle {
  font-family: "Hind Kochi", sans-serif;
  font-size: 20px;
  line-height: 150%;
  color: #353346;
  max-width: 608px;
}

/* PROFIT SECTION */

.profit {
  margin-bottom: 80px;
}

.profit__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  background: #492e87;
  border-radius: 30px;
  padding: 0 50px;
  position: relative;
  overflow: hidden;
}

.profit__ellipce {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

.profit__photo {
  z-index: 100;
}

.profit__content {
  display: flex;
  flex-direction: column;
  gap: 21px;
  z-index: 100;
}

.profit__title {
  font-family: "Hind Kochi", sans-serif;
  font-size: 36px;
  line-height: 120%;
  color: #fff;
}

.profit__subtitle {
  font-size: 20px;
  color: #fff;
  line-height: 120%;
  font-family: "Hind Kochi", sans-serif;
}

.profit__subtitle span {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
}

.profit__text {
  font-size: 20px;
  color: #fff;
  line-height: 120%;
  font-family: "Hind Kochi", sans-serif;
}

.profit__text span {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
}

/* BUSSINESS SECTION */

.bussiness {
  margin-bottom: 128px;
}

.bussiness__title {
  display: flex;
  justify-content: center;
  font-weight: 700;
  font-size: 36px;
  color: #030018;
  font-family: "Hind Kochi", sans-serif;
  margin-bottom: 51px;
}

.bussiness__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.bussiness__text {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 150%;
  color: #353346;
}

.bussiness__banner {
  font-family: "Hind Kochi", sans-serif;
  font-size: 25px;
  line-height: 120%;
  color: #030018;
  font-weight: 700;
  text-align: center;
}

.bussiness__banner span {
  color: #492e87;
}

/* FRANCHISE SECTION */

.franchise {
  margin-bottom: 107px;
}

.franchise__top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.franchise__title {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Hind Kochi", sans-serif;
  font-size: 36px;
  line-height: 120%;
  color: #030018;
  margin-bottom: 20px;
  font-weight: 700;
}

.franchise__subtitle {
  max-width: 548px;
  text-align: center;
  display: flex;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 150%;
  color: #353346;
  margin-bottom: 82px;
}

.franchise__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 12px;
}

.franchise__item {
  background-color: #EDE6FE;
  padding: 23px;
  border-radius: 30px;
}

.item-1 {
  grid-area: 1 / 1 / 2 / 3; /* 2 колонки */
}
.item-2 {
  grid-area: 1 / 3 / 2 / 5; /* 2 колонки */
}
.item-7 {
  grid-area: 1 / 5 / 2 / 6; /* 1 колонка */
}
.item-3 {
  grid-area: 2 / 1 / 3 / 3;
}
.item-4 {
  grid-area: 2 / 3 / 3 / 4;
}
.item-5 {
  grid-area: 2 / 4 / 3 / 5;
}
.item-6 {
  grid-area: 2 / 5 / 3 / 6;
}

.franchise__number {
  color: #492e87;
  font-weight: 700;
  font-size: 40px;
  padding: 13px 20px;
  background-color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.franchise__item-text {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 150%;
  color: #353346;
}

/* REQUIREMENTS SECTION */

.requirements {
  margin-bottom: 122px;
}

.requirements__title {
  font-family: "Hind Kochi", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  color: #030018;
  margin-bottom: 46px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.requirements__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 30px;
  grid-column-gap: 140px;
}

.requirements__item {
  display: flex;
  align-items: start;
  gap: 11px;
}

.requirements__text {
  max-width: 540px;
  font-family: "Hind Kochi", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #030018;
}

/* TRAINING SECTION */

.training {
  overflow: hidden; 
  height: 600px;
  margin-bottom: 88px;
  position: relative;
}

.training__ellipce {
  position: absolute;  
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.training__inner {
  display: flex;
  align-items: start;
  background: #492e87;
  padding: 0 40px;
  gap: 40px;
  position: relative;
  border-radius: 30px;
}

.training__content {
  padding-top: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.training__image {
  z-index: 100;
}

.training__image img {
  margin-top: 90px;
}

.training__title {
  font-family: "Hind Kochi", sans-serif;
  font-size: 36px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 700;
}

.training__text {
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 150%;
  color: #fff;
}

/* TRAINING SECTION */

@media (max-width: 1024px) {
}

@media (max-width: 991px) {
  .follow-success {
    background: var(--blue);
  }

  .follow-success__wrapper {
    height: auto;
    border-radius: 0;
    padding: 40px 0;
    display: flex;
    flex-direction: column-reverse;
  }

  .follow-success__info {
    width: 100%;
    padding: 0 20px;
    margin: 0;
  }

  .follow-success__img {
    max-width: 100%;
    margin: 0;
  }

  .follow-success__img img {
    width: 0;
    height: 0;
  }

  .follow-success__info h2 {
    font-size: 24px;
    line-height: 28px;
  }

  .follow-success__info p {
    font-size: 18px;
    line-height: 26px;
  }

  .follow-success__btn {
    margin: 30px 0 0 0;
  }
}

/* end follow-success */

/* competition-conditions */
.competition-conditions {
  padding: 128px 0;
}

.competition-conditions__head {
  margin: 0 0 60px 0;
}

.competition-conditions__head h2 {
  text-align: center;
  color: var(--black);
  margin: 0 0 20px 0;
}

.competition-conditions__head p {
  max-width: 558px;
  margin: 20px auto 0 auto;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: var(--body);
}

.competition-conditions__list {
  display: flex;
  gap: 0 60px;
  align-items: baseline;
}

.competition-conditions__left,
.competition-conditions__right {
  width: calc(50% - 60px);
  display: flex;
  flex-direction: column;
  gap: 28px 0;
}

.competition-conditions__item {
  display: flex;
  gap: 0 28px;
}

.competition-conditions__item-number {
  font-size: 35px;
  line-height: 35px;
  color: var(--blue);
  font-weight: 700;
}

.competition-conditions__item-info h3 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  color: var(--header);
  margin: 0 0 13px 0;
}

.competition-conditions__item-info p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--body);
  margin: 0;
}

@media (max-width: 991px) {
  .competition-conditions {
    padding: 60px 0;
  }

  .competition-conditions__list {
    flex-direction: column;
    gap: 28px 0;
  }

  .competition-conditions__left,
  .competition-conditions__right {
    width: 100%;
  }

  .competition-conditions__head p {
    font-size: 18px;
    line-height: 24px;
    text-align: left;
  }

  .competition-conditions__head h2 {
    text-align: left;
  }

  .competition-conditions__head {
    margin: 0 0 40px 0;
  }

  .competition-conditions__item-info h3 {
    font-size: 20px;
    line-height: 20px;
  }

  .competition-conditions__item-info p {
    font-size: 18px;
    line-height: 24px;
  }

  .follow-success__img::before {
    width: 0;
    height: 0;
  }
}

/* end competition-conditions */

/* faq */
.faq {
  padding: 0 0 128px 0;
}

.faq__head {
  margin: 0 0 40px 0;
}

.faq__head h2 {
  text-align: center;
  color: var(--black);
  margin: 0 0 20px 0;
}

.faq__head p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: var(--body);
  max-width: 601px;
  margin: 0 auto;
}

.faq__list {
  display: flex;
  align-items: baseline;
  gap: 24px 30px;
  flex-wrap: wrap;
}

.faq__item {
  width: calc(50% - 30px);
  background: var(--white);
  border: 1px solid var(--blue);
  padding: 20px;
  border-radius: 10px;
}

.faq__item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  color: var(--body);
}

.faq__item-head span {
  width: 24px;
  height: 24px;
  background: linear-gradient(150deg, #ff8fb3 0%, #ff4d8f 47%, #c42673 100%);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.faq__item-head span::before {
  content: "";
  width: 10px;
  height: 2px;
  background: #d9d9d9;
}

.faq__item-head span::after {
  content: "";
  width: 2px;
  height: 10px;
  background: #d9d9d9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s ease;
}

.faq__item-head.active span::after {
  opacity: 0;
}

.faq__item-body {
  display: none;
  padding: 20px 0 0 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--body);
  margin: 0;
}

.faq__item-body.show {
  display: block;
}

@media (max-width: 991px) {
  .faq {
    padding: 0 0 60px 0;
  }

  .faq__head h2 {
    text-align: left;
  }

  .faq__head p {
    text-align: left;
    font-size: 18px;
    line-height: 24px;
  }

  .faq__item {
    width: 100%;
  }

  .faq__list {
    gap: 20px 0;
  }

  .faq__item-head {
    font-size: 20px;
    line-height: 20px;
  }

  .faq__item-body {
    font-size: 18px;
    line-height: 27px;
  }
}

/* end faq */

/* our-client */
.our-client {
  padding: 0 0 128px 0;
}

.our-client__head {
  margin: 0 0 60px 0;
}

.our-client__head h2 {
  text-align: center;
  margin: 0 0 20px 0;
  color: var(--black);
}

.our-client__head p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: var(--body);
  max-width: 601px;
  margin: 0 auto;
}

.our-client__btn {
  margin: 60px auto 0 auto;
  max-width: 245px;
}

.our-client__row {
  display: grid;
  grid-template-columns: repeat(6, 200px);
  gap: 16px 30px;
}

.our-client-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}

.our-client-item a img {
  filter: grayscale(100%);
  transition: 0.2s ease-in;
}

.our-client-item a:hover img {
  filter: grayscale(0);
}

.our-client__mobile {
  display: none;
}

.client-slider-slide-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px 14px;
}

.client-slider-slide-item__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}

.client-slider-slide-item__link img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  transition: 0.2s ease-in;
}

.client-slider {
  padding: 0 0 26px 0;
}

.client-slider-pagination {
  position: absolute;
  bottom: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2px;
}

.client-slider-pagination .swiper-pagination-bullet {
  padding: 0 !important;
  margin: 0 !important;
  width: 30px !important;
  height: 2px !important;
  background: #adadad;
  opacity: 1 !important;
  border-radius: 0 !important;
}

.client-slider-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--blue);
}

@media (max-width: 1024px) {
  .our-client__row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .our-client {
    padding: 0 0 60px 0;
  }

  .our-client__head {
    margin: 0 0 40px 0;
  }

  .our-client__head p {
    font-size: 18px;
    line-height: 27px;
  }

  .our-client__row {
    display: none;
  }

  .our-client__mobile {
    display: block;
  }
}

/* end our-client */

/* about-us */
.about-us {
  padding: 128px 0;
}

.about-us__row-img {
  display: flex;
  gap: 0 30px;
}

.about-us__row-img-left {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.about-us__row-img-right {
  padding: 60px 0 0 0;
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.about-us__item-img img {
  object-fit: contain;
  width: 100%;
}

.about-us__info-btn {
  margin: 60px 0 0 0;
}

.about-us__info {
  padding: 69px 0 0 0;
}

.about-us__info h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  color: var(--header);
  margin: 0 0 20px 0;
}

.about-us__info p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--body);
  margin: 0 0 20px 0;
}

.about-us__info ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px 0;
}

.about-us__info ul li {
  list-style-type: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--body);
}

.about-us__info ul li a {
  text-decoration: none;
  color: var(--black);
}

.about-us__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 66px;
}

.about-us-item {
  display: flex;
  flex-direction: column;
  gap: 13px 0;
}

.about-us-item span {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 60px;
  line-height: 60px;
  color: var(--blue);
  text-align: center;
}

.about-us-item h3 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  color: var(--body);
}

@media (max-width: 991px) {
  .about-us {
    padding: 60px 0;
  }

  .about-us .row {
    flex-direction: column-reverse;
    gap: 32px 0;
  }

  .about-us__info {
    padding: 0;
  }

  .about-us__info h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .about-us__info p {
    font-size: 18px;
    line-height: 30px;
  }

  .about-us__info ul {
    display: none;
  }

  .about-us__list {
    display: none;
  }

  .about-us__info-btn {
    margin: 40px 0 0 0;
  }

  .about-us__row-img {
    gap: 0 12px;
  }

  .about-us__row-img-left,
  .about-us__row-img-right {
    gap: 12px 0;
  }

  .about-us__row-img-right {
    padding: 36px 0 0 0;
  }
}

/* end about-us */

/* callback-participation */
.callback-participation {
  background-image: url("../images/bg-form.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.callback-participation::before {
  content: "";
  background: rgba(73, 46, 135, 0.85);
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.callback-participation__head {
  margin: 0 0 60px 0;
  position: relative;
  z-index: 2;
}

.callback-participation__head h2 {
  text-align: center;
  margin: 0 0 20px 0;
  color: var(--white);
}

.callback-participation__head p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  color: var(--white);
  margin: 0 auto;
  max-width: 601px;
}

.callback-participation__form {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  max-width: 1120px;
  margin: 0 auto;
}

.callback-participation__form-top {
  display: flex;
  gap: 0 20px;
}

.callback-participation__form-top .callback-participation__form-control {
  max-width: calc(50% - 10px);
  width: 100%;
}

.callback-participation__form-control {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}

.callback-participation__form-control label {
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--white);
}

.callback-participation__form-control input {
  border-radius: 6px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  height: 54px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: var(--input-text);
  border: none;
}

.callback-participation__form-control input::placeholder,
.callback-participation__form-control textarea::placeholder {
  color: var(--input-text);
}

.callback-participation__form-control span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 0.02em;
  color: var(--white);
}

.callback-participation__form-control-textarea textarea {
  resize: none;
  border-radius: 6px;
  padding: 12px 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--input-text);
  height: 250px;
  border: none;
}

.callback-participation__form-btn {
  border: none;
  margin: 40px auto 0 auto;
}

.callback-participation__form-btn--disabled {
  pointer-events: none;
}

@media (max-width: 991px) {
  .callback-participation {
    padding: 40px 0;
  }

  .callback-participation__form-top {
    flex-wrap: wrap;
  }

  .callback-participation__form-top .callback-participation__form-control {
    width: 100%;
    max-width: 100%;
  }

  .callback-participation__head p {
    font-size: 18px;
    line-height: 24px;
  }

  .callback-participation__head {
    margin: 0 0 40px 0;
  }
}

/* end callback-participation */

/* success */
.success {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success__info {
  margin: 60px 0 0 0;
}

.success__info h1 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-align: center;
  color: var(--header);
}

.success__info p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: var(--body);
  margin: 20px 0 0 0;
}

.btn-home {
  margin: 60px auto 0 auto;
}

.success__img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/* end success */

@media (max-width: 991px) {
    
    .bussiness__title {
        margin-bottom: 25px;
        text-align: center;
    }
    
    .profit {
        margin-bottom: 40px;
    }
    
    .profit__title {
        max-width: 150px;
    }
    
    .profit__content {
        padding-top: 45px;
    }
    
    .profit__photo {
        position: absolute;
        top: 0px;
        right: 50px;
    }
    
    .profit__photo img {
         width: 160px;
        height: 160px; 
        object-fit: cover;
    }
    
.requirements__title {
    margin-bottom: 24px;
}
    
  .requirements {
    margin-bottom: 50px;
  }

  .franchise {
    margin-bottom: 50px;
  }

  .bussiness {
    margin-bottom: 30px;
  }

  .training {
    height: auto;
    overflow: visible;
    margin-bottom: 0px;
  }

  .training__image {
    display: none;
  }

  .training__content {
    padding: 40px 0;
    z-index: 100;
  }

  .training__ellipce {
    bottom: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
  }

  .requirements__inner {
    grid-template-columns: repeat(1, 1fr);
  }

  .requirements__text {
    max-width: 100%;
    font-size: 20px;
  }

  .requirements__item {
    align-items: center;
  }

  .franchise__items {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 0;
  }

  .franchise__subtitle {
    margin-bottom: 20px;
  }

  .item-1 {
    grid-area: 1 / 1 / 2 / 3;
  }
  .item-2 {
    grid-area: 1 / 3 / 2 / 5;
  }
  .item-3 {
    grid-area: 2 / 1 / 3 / 3;
  }
  .item-4 {
    grid-area: 2 / 3 / 3 / 5;
  }
  .item-5 {
    grid-area: 3 / 1 / 4 / 3;
  }
  .item-6 {
    grid-area: 3 / 3 / 4 / 5;
  }

  .first-screen {
    height: 630px;
    background-position: center;
    margin-bottom: 50px;
  }

  .first-screen__info {
    padding: 132px 0 0 0;
  }

  .profit__ellipce {
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
  }

  .profit__inner {
    padding: 20px 20px;
  }

  .profit__title {
    font-size: 28px;
  }

  .profit__subtitle {
    font-size: 20px;
  }

  .profit__subtitle span {
    font-size: 18px;
  }

  .profit__text {
    font-size: 20px;
  }

  .profit__text span {
    font-size: 18px;
  }

  .first-screen__img {
    max-width: 100%;
    position: absolute;
    right: 0;
    top: unset;
    bottom: -175px;
    height: 500px;
  }

  .first-screen__info h1 {
    font-size: 28px;
    line-height: 37px;
    text-align: center;
    margin: 0 0 20px 0;
  }

  .first-screen__info p {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
  }

  .first-screen__btn {
    margin: 40px auto 0 auto;
  }

  .first-screen__img img {
    object-fit: contain;
    width: 100%;
    height: 70%;
  }

  .first-screen {
    position: relative;
  }

  .first-screen .container {
    position: unset;
  }

  .investment {
    margin: 60px 0;
  }

  .investment__list {
    margin-bottom: 60px;
  }

  .investment__title {
    text-align: center;
    margin-bottom: 20px;
  }

  .investment__top {
    margin-bottom: 40px;
  }

  .investment__top-text {
    font-size: 22px;
  }

  .investment__top-price {
    font-size: 35px;
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .investment__list {
    grid-template-columns: repeat(1, 1fr);
  }

  .investment__services {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 45px;
  }

  .img-right,
  .img-left {
    float: none;
    width: 100%;
    display: block;
    margin: 0 0 10px 0;
  }

  .profit__inner {
    flex-direction: column;
  }
}

@media (max-width: 596px) {
  .bussiness__inner {
    flex-direction: column;
    gap: 30px;
  }

  .bussiness__content {
    text-align: center;
  }

  .franchise__items {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, auto);
  }

  .item-1 {
    grid-area: 1 / 1 / 2 / 2;
  }
  .item-2 {
    grid-area: 2 / 1 / 3 / 2;
  }
  .item-7 {
    grid-area: 3 / 1 / 4 / 2;
  }
  .item-3 {
    grid-area: 4 / 1 / 5 / 2;
  }
  .item-4 {
    grid-area: 5 / 1 / 6 / 2;
  }
  .item-5 {
    grid-area: 6 / 1 / 7 / 2;
  }
  .item-6 {
    grid-area: 7 / 1 / 8 / 2;
  }
}

@media (max-width: 510px) {
  .training {
    height: auto;
  }
}

@media (max-width: 450px) {
  .investment__top {
    text-align: center;
  }
}
