html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --font: "Inter", sans-serif;
  --base: #1E1E1E;
  --white: #FFFFFF;
  --blue: #296BEF;
  --green: #299E60;
}

* {
  box-sizing: border-box;
  text-decoration: none;
  word-break: break-word;
}

*:hover,
*:focus {
  outline: 0;
}

body {
  background: #FAFAFA;
  font: 400 18px/1.4 var(--font);
  color: var(--base);
}

body::-webkit-scrollbar {
  width: 10px;
  height: 0;
  background: var(--white);
}

body::-webkit-scrollbar-thumb {
  width: 10px;
  background: var(--base);
  border-radius: 10px;
}

body.hidden {
  overflow: hidden;
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-width: thin;
    scrollbar-color: var(--base) var(--white);
  }
}

.wrapper {
  width: 100%;
  max-width: 1690px;
  padding: 0 16px;
  margin: 0 auto;
}

.overflowH {
  overflow: hidden;
}

a {
  color: var(--blue);
  transition: 0.25s;
}

a:hover {
  color: var(--green);
}

button {
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  letter-spacing: -0.03em;
  font: 600 20px/1.1 var(--font);
  color: var(--base);
  cursor: pointer;
  transition: 0.25s;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

svg {
  transition: 0.25s;
}

strong {
  font-weight: 500;
}

h1,
.h1 {
  font: 600 70px/1.1 var(--font);
  letter-spacing: -0.03em;
}

h2,
.h2 {
  font: 600 50px/1.1 var(--font);
  letter-spacing: -0.03em;
}

h3,
.h3 {
  font: 600 30px/1.2 var(--font);
  letter-spacing: -0.03em;
}

h4,
.h4 {
  font: 600 24px/1.2 var(--font);
  letter-spacing: -0.03em;
}

.textL {
  font: 400 24px/1.4 var(--font);
}

.textM {
  font: 400 18px/1.4 var(--font);
}

.textS {
  font: 400 16px/1.4 var(--font);
}

.label {
  font: 400 14px/1.4 var(--font);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 100%;
  min-height: 60px;
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(41, 107, 239, 0.5);
  padding: 12px 60px;
  letter-spacing: -0.03em;
  font: 600 20px/1.1 var(--font);
  color: var(--white);
  cursor: pointer;
  transition: 0.25s;
}

.btn_full {
  width: 100%;
}

.btn_sm {
  min-height: 50px;
  padding: 8px 25px;
  font: 500 16px/1.4 var(--font);
  letter-spacing: 0;
}

.btn:hover {
  background: var(--green);
  box-shadow: none;
  color: var(--white);
}

.btn_dark {
  background: var(--base);
  border: none;
}

.btn_dark:hover {
  background: var(--green);
}

.swiper-button-disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}

.arrow {
  width: 60px;
  height: 60px;
  background: var(--white);
  border: 1px solid var(--base);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--base);
}

.arrow:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.arrow:hover svg {
  stroke: var(--white);
}

input {
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 0 18px;
  font: 400 16px/1.4 var(--font);
  color: var(--white);
  transition: 0.15s;
}

input::placeholder {
  font: 400 16px/1.4 var(--font);
  color: rgba(255, 255, 255, 0.7);
}

input:focus {
  border-color: rgba(255, 255, 255, 0.8);
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea {
  width: 100%;
  min-height: 126px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 18px;
  font: 400 16px/1.4 var(--font);
  color: var(--white);
  resize: vertical;
  transition: 0.15s;
}

textarea::placeholder {
  font: 400 16px/1.4 var(--font);
  color: rgba(255, 255, 255, 0.7);
}

textarea:focus {
  border-color: rgba(255, 255, 255, 0.8);
}

.checkbox__input {
  display: none;
}

.checkbox__input:checked + .checkbox__text::before {
  background: var(--white);
  border-color: var(--white);
}

.checkbox__input:checked + .checkbox__text::after {
  display: block;
}

.checkbox__text {
  display: block;
  position: relative;
  padding-left: 28px;
  font: 400 18px/1.4 var(--font);
  color: var(--white);
  cursor: pointer;
}

.checkbox__text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}

.checkbox__text::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 2.5px;
  transform: translate(0, -50%);
  width: 15px;
  height: 15px;
  background: url("../img/icons/checked.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.textBlock h1,
.textBlock h2 {
  margin-top: 80px;
  margin-bottom: 40px;
}

.textBlock h1:last-child,
.textBlock h2:last-child {
  margin-bottom: 0;
}

.textBlock h1:first-child,
.textBlock h2:first-child {
  margin-top: 0;
}

.textBlock h3,
.textBlock h4 {
  margin-top: 60px;
  margin-bottom: 32px;
}

.textBlock h3:last-child,
.textBlock h4:last-child {
  margin-bottom: 0;
}

.textBlock h3:first-child,
.textBlock h4:first-child {
  margin-top: 0;
}

.textBlock h5,
.textBlock h6 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.textBlock h5:last-child,
.textBlock h6:last-child {
  margin-bottom: 0;
}

.textBlock h5:first-child,
.textBlock h6:first-child {
  margin-top: 0;
}

.textBlock p {
  margin-bottom: 20px;
}

.textBlock p:last-child {
  margin-bottom: 0;
}

.textBlock a {
  color: var(--blue);
}

.textBlock a:hover {
  text-decoration: underline;
}

.textBlock ul {
  margin-bottom: 20px;
}

.textBlock ul:last-child {
  margin-bottom: 0;
}

.textBlock ul li {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
}

.textBlock ul li:last-child {
  margin-bottom: 0;
}

.textBlock ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--base);
}

.textBlock ol {
  list-style-type: decimal;
  margin-left: 24px;
  margin-bottom: 20px;
}

.textBlock ol:last-child {
  margin-bottom: 0;
}

.textBlock ol li {
  margin-bottom: 4px;
}

.textBlock ol li:last-child {
  margin-bottom: 0;
}

.overlay {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.7);
}

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  max-width: calc(100% - 32px);
  max-height: calc(100% - 32px);
  background: var(--green);
  border-radius: 40px;
  padding: 36px 40px;
  color: var(--white);
  overflow: auto;
  -ms-overflow-style: none;
  overflow-y: scroll;
  scrollbar-width: none;
}

.modal::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal__close img {
  width: 24px;
  transition: 0.25s;
}

.modal__close:hover img {
  transform: rotate(-90deg);
}

.modal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.modal__icon img {
  width: 84px;
}

.modal__head {
  text-align: center;
  margin-bottom: 24px;
}

.modal__head:last-child {
  margin-bottom: 0;
}

.modal__title {
  margin-bottom: 16px;
}

.modal__title:last-child {
  margin-bottom: 0;
}

.modal__subtitle {
  opacity: 0.85;
}

.header {
  position: sticky;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-radius: 0 0 40px 40px;
  padding: 15px 0;
}

.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font: 600 30px/1.2 var(--font);
  letter-spacing: -0.03em;
}

.headerMenu {
  display: flex;
  align-items: center;
}

.headerMenu__item {
  padding: 8px 20px;
  color: var(--base);
}

.headerMenu__item span {
  position: relative;
}

.headerMenu__item span::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 1px;
  background: var(--blue);
  opacity: 0;
  transition: 0.25s;
}

.headerMenu__item:hover {
  color: var(--blue);
}

.headerMenu__item:hover span::after {
  width: 100%;
  opacity: 1;
}

.footer {
  padding-top: 40px;
  padding-bottom: 30px;
  color: rgba(30, 30, 30, 0.5);
}

.footer__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer a {
  color: rgba(30, 30, 30, 0.5);
  text-decoration: underline;
}

.footer a:hover {
  color: var(--base);
}

.section {
  padding: 55px 0;
}

.block {
  width: calc(100% - 36px);
  margin: 55px auto;
  background: var(--base);
  border-radius: 40px;
  padding: 80px 0;
  color: var(--white);
}

.sectionHead {
  margin-bottom: 50px;
}

.sectionHead:last-child {
  margin-bottom: 0;
}

.sectionHead_arrows {
  position: relative;
  padding-right: 170px;
}

.sectionHead__arrows {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
}

.sectionHead__arrows .arrow {
  margin-right: 12px;
}

.sectionHead__arrows .arrow:last-child {
  margin-right: 0;
}

.banner {
  width: calc(100% - 36px);
  margin: 0 auto;
  color: var(--white);
  margin-bottom: 55px;
}

.banner__block {
  min-height: 770px;
  background: url("../img/banner-bg.webp") no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.banner__block::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #121419, rgba(18, 20, 25, 0));
}

.banner__block .wrapper {
  position: relative;
  z-index: 2;
}

.banner__content {
  max-width: 820px;
}

.banner__title,
.banner__subtitle {
  margin-bottom: 40px;
}

.bannerAdvan {
  position: relative;
  z-index: 3;
  background: var(--blue);
  border-radius: 40px;
  padding: 60px 0;
  margin-top: -76px;
}

.bannerAdvan__wrap {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.bannerAdvanItem__title {
  max-width: 470px;
  margin-bottom: 15px;
}

.bannerAdvanItem__text {
  max-width: 470px;
  opacity: 0.85;
}

.about__wrap {
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}

.about__digits {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid rgba(30, 30, 30, 0.2);
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-columns: repeat(4, 1fr);
}

.aboutItem {
  padding-right: 70px;
}

.aboutItem__icon {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.aboutItem__icon img {
  width: 60px;
}

.aboutItem__title {
  margin-bottom: 20px;
}

.aboutItem__title:last-child {
  margin-bottom: 0;
}

.aboutItem__text {
  opacity: 0.85;
}

.aboutDigit {
  padding-right: 40px;
}

.aboutDigit__title {
  margin-bottom: 5px;
}

.aboutDigit__title:last-child {
  margin-bottom: 0;
}

.aboutDigit__text {
  opacity: 0.85;
}

.types__wrap {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.types__btn {
  margin-top: 20px;
}

.typesItem {
  background: var(--white);
  border-radius: 20px;
  color: var(--base);
  overflow: hidden;
}

.typesItem__image {
  position: relative;
}

.typesItem__image::before {
  content: "";
  display: block;
  padding-top: 62.5%;
}

.typesItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.typesItem__content {
  padding: 24px;
  padding-top: 20px;
}

.typesItem__title {
  margin-bottom: 12px;
}

.typesItem__text {
  opacity: 0.85;
}

.candidates {
  display: flex;
}

.candidates__content {
  flex-shrink: 0;
  width: 819px;
  margin-right: 50px;
}

.candidates__wrap {
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}

.candidatesItem {
  padding-right: 20px;
}

.candidatesItem__digit {
  width: 50px;
  height: 50px;
  background: var(--blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font: 600 24px/1.2 var(--font);
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.candidatesItem__content {
  width: 100%;
}

.candidatesItem__title {
  margin-bottom: 12px;
}

.candidatesItem__text {
  opacity: 0.85;
}

.candidatesImage {
  width: 100%;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.candidatesImage__img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.candidatesImageBlock {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 14px;
  max-width: calc(100% - 28px);
  background: var(--white);
  border-radius: 25px;
  padding: 12px;
  padding-right: 20px;
  display: inline-flex;
  align-items: center;
}

.candidatesImageBlock__img {
  flex-shrink: 0;
  width: 60px;
  margin-right: 20px;
}

.candidatesImageBlock__text {
  width: 100%;
  font: 600 20px/1.1 var(--font);
}

.reviews__wrap {
  display: flex;
  flex-wrap: nowrap;
}

.reviewsItem {
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid #E8E8E8;
  border-radius: 20px;
  padding: 24px;
}

.reviewsItem__head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.reviewsItem__image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  margin-right: 24px;
  overflow: hidden;
}

.reviewsItem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewsItem__info {
  width: 100%;
}

.reviewsItem__title {
  font: 600 20px/1.1 var(--font);
}

.reviewsItem__subtitle {
  opacity: 0.85;
  margin-top: 10px;
}

.reviewsItem__text {
  opacity: 0.85;
}

.reviewsItem__text p {
  margin-bottom: 12px;
}

.reviewsItem__text p:last-child {
  margin-bottom: 0;
}

.form {
  width: calc(100% - 36px);
  background: var(--base);
  border-radius: 40px;
  color: var(--white);
  margin: 0 auto;
  margin-top: 55px;
  overflow: hidden;
}

.form__content {
  padding: 80px 0;
}

.form__inputs {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(12, 1fr);
  margin: 20px 0;
}

.form__inputs_cb {
  margin: 25px 0;
}

.form__input {
  grid-column: span 12;
}

.form__input.half {
  grid-column: span 6;
}

.form__input.three {
  grid-column: span 4;
}

.form__input.four {
  grid-column: span 3;
}

.form__agreement {
  margin-top: 20px;
  color: #8F8F8F;
}

.form__agreement strong {
  font-weight: 400;
  color: var(--white);
}

.form__agreement a {
  color: var(--white);
  text-decoration: underline;
}

.form__agreement a:hover {
  color: var(--blue);
}

.formCheckboxes__title {
  opacity: 0.7;
  margin-bottom: 15px;
}

.formCheckboxes__wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.formContacts {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 40px 40px 35px 35px;
  padding: 60px 0;
}

.formContacts__wrap {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.formContactsItem__title {
  margin-bottom: 10px;
}

.formContactsItem__title a {
  color: var(--white);
}

.formContactsItem__title a:hover {
  color: var(--blue);
}

.formContactsItem__text {
  opacity: 0.85;
}

@media screen and (max-width: 1799px) {
  body {
    font-size: 16px;
  }

  .wrapper {
    max-width: 1192px;
  }

  h1,
  .h1 {
    font-size: 50px;
  }

  h2,
  .h2 {
    font-size: 35px;
  }

  h3,
  .h3 {
    font-size: 26px;
  }

  h4,
  .h4 {
    font-size: 20px;
  }

  .textL {
    font-size: 18px;
  }

  .textM {
    font-size: 16px;
  }

  .textS {
    font-size: 14px;
  }

  .section {
    padding: 45px 0;
  }

  .block {
    padding: 60px 0;
    margin: 45px auto;
  }

  .sectionHead {
    margin-bottom: 40px;
  }

  .banner {
    margin-bottom: 45px;
  }

  .banner__block {
    min-height: 560px;
    padding: 80px 0;
  }

  .banner__content {
    max-width: 570px;
  }

  .banner__title,
  .banner__subtitle {
    margin-bottom: 30px;
  }

  .bannerAdvan {
    padding: 40px 0;
    margin-top: -28px;
  }

  .bannerAdvanItem__title {
    max-width: 334px;
    margin-bottom: 12px;
  }

  .bannerAdvanItem__text {
    max-width: 334px;
  }

  .about__digits {
    margin-top: 40px;
    padding-top: 40px;
  }

  .aboutItem__icon,
  .aboutItem__title {
    margin-bottom: 16px;
  }

  .types__wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .typesItem__image::before {
    padding-top: 44%;
  }

  .candidates__content {
    width: 570px;
    margin-right: 40px;
  }

  .form {
    margin-top: 45px;
  }

  .form__content {
    padding: 60px 0;
  }

  .formContacts {
    padding: 40px 0;
  }

  .formContacts__wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 999px) {
  body {
    font-size: 14px;
  }

  h1,
  .h1 {
    font-size: 30px;
  }

  h2,
  .h2 {
    font-size: 26px;
  }

  h3,
  .h3 {
    font-size: 20px;
  }

  h4,
  .h4 {
    font-size: 18px;
  }

  .textL {
    font-size: 16px;
  }

  .textM {
    font-size: 14px;
  }

  .textS {
    font-size: 12px;
  }

  .label {
    font-size: 12px;
  }

  .btn {
    min-height: 50px;
    padding: 12px 28px;
    font-size: 16px;
  }

  .btn_sm {
    min-height: 40px;
    padding: 8px 16px;
    font-size: 12px;
  }

  input {
    height: 50px;
  }

  .checkbox__text {
    font-size: 14px;
  }

  .textBlock h1,
  .textBlock h2 {
    margin-top: 48px;
    margin-bottom: 24px;
  }

  .textBlock h3,
  .textBlock h4 {
    margin-top: 36px;
    margin-bottom: 20px;
  }

  .textBlock h5,
  .textBlock h6 {
    margin-top: 24px;
    margin-bottom: 16px;
  }

  .textBlock p {
    margin-bottom: 16px;
  }

  .textBlock ul {
    margin-bottom: 16px;
  }

  .textBlock ul:last-child {
    margin-bottom: 0;
  }

  .textBlock ul li {
    padding-left: 16px;
  }

  .textBlock ul li::before {
    top: 7px;
    left: 4px;
    width: 5px;
    height: 5px;
  }

  .textBlock ol {
    margin-left: 20px;
    margin-bottom: 16px;
  }

  .modal {
    padding: 24px;
    padding-top: 32px;
  }

  .header {
    border-radius: 0 0 20px 20px;
    padding: 10px 0;
  }

  .header__logo {
    font-size: 20px;
  }

  .headerMenu {
    display: none;
  }

  .footer {
    padding-top: 20px;
    padding-bottom: 12px;
  }

  .footer__wrap {
    display: block;
  }

  .footer__wrap p {
    margin-bottom: 8px;
  }

  .footer__wrap p:last-child {
    margin-bottom: 0;
  }

  .section {
    padding: 30px 0;
  }

  .block {
    width: 100%;
    border-radius: 30px;
    padding: 32px 0;
    margin: 30px 0;
  }

  .sectionHead {
    margin-bottom: 24px;
  }

  .sectionHead_arrows {
    padding-right: 0;
  }

  .sectionHead__arrows {
    display: none;
  }

  .banner {
    width: 100%;
    margin-bottom: 30px;
  }

  .banner__block {
    min-height: auto;
    border-radius: 30px 30px 0 0;
    padding-top: 32px;
    padding-bottom: 84px;
  }

  .banner__block::before {
    background: linear-gradient(135deg, #121419, rgba(18, 20, 25, 0.25));
  }

  .banner__content {
    max-width: calc(100% - 32px);
  }

  .banner__title,
  .banner__subtitle {
    margin-bottom: 16px;
  }

  .banner__btn .btn {
    background: var(--green);
  }

  .bannerAdvan {
    border-radius: 30px;
    padding: 20px 0;
  }

  .bannerAdvan__wrap {
    grid-gap: 16px;
    grid-template-columns: 1fr;
  }

  .bannerAdvanItem__title {
    max-width: 100%;
    margin-bottom: 8px;
  }

  .bannerAdvanItem__text {
    max-width: 100%;
  }

  .about__wrap {
    grid-gap: 20px;
    grid-template-columns: 1fr;
  }

  .about__digits {
    margin-top: 24px;
    padding-top: 24px;
    grid-column-gap: 12px;
    grid-row-gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .aboutItem {
    padding-right: 0;
  }

  .aboutItem__icon {
    margin-bottom: 12px;
  }

  .aboutItem__icon img {
    width: 50px;
  }

  .aboutItem__title {
    margin-bottom: 12px;
  }

  .aboutDigit {
    padding-right: 0;
  }

  .types__wrap {
    grid-template-columns: 1fr;
  }

  .typesItem__image::before {
    padding-top: 76%;
  }

  .typesItem__content {
    padding: 16px;
  }

  .typesItem__title {
    margin-bottom: 8px;
  }

  .candidates {
    display: block;
  }

  .candidates__content {
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }

  .candidates__wrap {
    grid-gap: 20px;
    grid-template-columns: 1fr;
  }

  .candidatesItem {
    padding-right: 0;
    display: flex;
    align-items: flex-start;
  }

  .candidatesItem__digit {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 18px;
    margin-bottom: 0;
    margin-right: 12px;
  }

  .candidatesItem__title {
    margin-bottom: 8px;
  }

  .candidatesImage {
    height: 380px;
    border-radius: 30px;
  }

  .candidatesImageBlock {
    bottom: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
  }

  .candidatesImageBlock__img {
    width: 50px;
    margin-right: 14px;
  }

  .candidatesImageBlock__text {
    font-size: 16px;
  }

  .reviewsItem {
    width: 308px;
    padding: 16px;
    margin-right: 12px;
  }

  .reviewsItem:last-child {
    margin-right: 0;
  }

  .reviewsItem__head {
    margin-bottom: 12px;
  }

  .reviewsItem__image {
    width: 60px;
    height: 60px;
    margin-right: 16px;
  }

  .reviewsItem__title {
    font-size: 16px;
  }

  .reviewsItem__subtitle {
    margin-top: 6px;
  }

  .reviewsItem__text p {
    margin-bottom: 8px;
  }

  .form {
    width: 100%;
    border-radius: 30px;
    margin-top: 30px;
  }

  .form__content {
    padding-top: 32px;
  }

  .form__inputs {
    display: grid;
    grid-gap: 12px;
    grid-template-columns: 1fr;
  }

  .form__inputs_cb {
    margin: 20px 0;
    grid-gap: 20px;
  }

  .form__input {
    grid-column: unset;
  }

  .form__input.half {
    grid-column: unset;
  }

  .form__input.three {
    grid-column: unset;
  }

  .form__input.four {
    grid-column: unset;
  }

  .formCheckboxes__title {
    margin-bottom: 12px;
  }

  .formCheckboxes__wrap {
    column-gap: 24px;
    row-gap: 16px;
  }

  .formContacts {
    border-radius: 30px 30px 25px 25px;
    padding: 32px 0;
  }

  .formContacts__wrap {
    grid-template-columns: 1fr;
  }

  .formContactsItem__title {
    margin-bottom: 8px;
  }
}