*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
button,
textarea,
select {
  font: inherit;
}

*:focus {
  outline: 2px solid #3B82F6;
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

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

[hidden] {
  display: none !important;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #45556C;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin: 48px 0;
}

.section-padding {
  padding: 48px 0;
}

.section-title {
  color: #000;
  font-size: 22px;
  text-align: center;
  margin-bottom: 32px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
}

@media (min-width: 390px) {
  .section {
    margin: 64px 0;
  }
  .section-padding {
    padding: 64px 0;
  }
  .section-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .section {
    margin: 80px 0;
  }
  .section-padding {
    padding: 80px 0;
  }
  .section-title {
    font-size: 32px;
    margin-bottom: 48px;
  }
}
@media (min-width: 1366px) {
  .section {
    margin: 96px 0;
  }
  .section-padding {
    padding: 96px 0;
  }
  .section-title {
    font-size: 36px;
    margin-bottom: 64px;
  }
}
@media (min-width: 1366px) {
  .section-title {
    font-size: 48px;
  }
}
.button {
  background-color: #2463EB;
  border: 0;
  border-radius: 14px;
  -webkit-box-shadow: 0 8px 10px -6px rgba(36, 99, 235, 0.2), 0 20px 25px -5px rgba(36, 99, 235, 0.2);
          box-shadow: 0 8px 10px -6px rgba(36, 99, 235, 0.2), 0 20px 25px -5px rgba(36, 99, 235, 0.2);
  color: #F8FAFC;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 13px;
  padding: 16px 32px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.button--outline {
  background: transparent;
  border: 1px solid #2463EB;
  color: #2463EB;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (min-width: 390px) {
  .button {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .button {
    font-size: 16px;
  }
}
@media (min-width: 1366px) {
  .button {
    font-size: 18px;
  }
}
.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  position: relative;
}
.form__field label {
  color: #62748E;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
}
.form__field input {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  color: #62748E;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  padding: 10px;
}
.form__field input.is-invalid {
  border-color: #dc2626 !important;
  color: #dc2626;
}
.form__policy {
  color: #62748E;
  font-size: 10px;
  text-align: center;
  margin-top: 10px;
}
.form .field-error-message {
  display: block;
  margin-top: 2px;
  color: #dc2626;
  font-size: 12px;
  line-height: 1.35;
  left: 0;
  position: absolute;
  top: 100%;
}

@media (min-width: 390px) {
  .form {
    gap: 20px;
  }
  .form__field {
    gap: 6px;
  }
  .form__field label {
    font-size: 12px;
  }
  .form__field input {
    font-size: 14px;
    padding: 12px;
  }
  .form__policy {
    font-size: 11px;
    margin-top: 12px;
  }
}
@media (min-width: 768px) {
  .form {
    gap: 16px;
  }
  .form__field {
    gap: 8px;
  }
  .form__field label {
    font-size: 13px;
  }
  .form__field input {
    font-size: 12px;
  }
}
@media (min-width: 1366px) {
  .form {
    gap: 32px;
  }
  .form__field label {
    font-size: 14px;
  }
  .form__policy {
    font-size: 12px;
    margin-top: 16px;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}

.modal {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  position: relative;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 30px 30px 10px;
  width: 100%;
}
.modal__title {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #1e293b;
  text-align: center;
  width: 100%;
}
.modal__close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #3b82f6;
  border-radius: 50%;
  padding: 0 11px;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}
.modal__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px 30px 30px;
}
.modal__description {
  margin-bottom: 20px;
  color: #64748b;
  font-size: 14px;
}
.modal__input-group {
  margin-bottom: 20px;
}
.modal__input {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
.modal__checkbox-group {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.modal__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #64748b;
}
.modal__checkbox-label input[type=checkbox] {
  margin-right: 10px;
}
.modal__submit-btn {
  background-color: #3b82f6;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}
.modal__submit-btn:disabled {
  background-color: #cbd5e1;
  cursor: not-allowed;
}

.header {
  border: 1px solid #E2E8F0;
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 1000;
}
.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}
.header__logo {
  max-width: 132px;
}
.header__link {
  color: #2463EB;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
.header__awards {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  max-width: 375px;
}
.header__contents {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.header__forms {
  border-radius: 6px;
  padding: 6px 12px;
  background-color: #2463eb;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #f8fafc;
  display: none;
}

@media (min-width: 390px) {
  .header__row {
    padding: 12px 0;
  }
}
@media (min-width: 768px) {
  .header__row {
    padding: 14px 0;
  }
  .header__logo {
    max-width: 215px;
  }
  .header__forms {
    display: block;
  }
}
@media (min-width: 1366px) {
  .header__row {
    padding: 16px 0;
  }
  .header__link {
    font-size: 16px;
  }
  .header__awards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__forms {
    padding: 10px 16px;
    font-size: 14px;
  }
}
@media (min-width: 1920px) {
  .header__row {
    padding: 18px 0;
  }
}

.welcome {
  background: url(../img/welcome_bg.png) 50% 50%/cover no-repeat;
  padding-top: 48px;
}
.welcome__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 32px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.welcome__title {
  color: #0F172B;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.welcome__title span {
  color: #2463EB;
}
.welcome__text {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: center;
}
.welcome__text span {
  font-family: "Open Sans", sans-serif;
  display: block;
  font-size: 12px;
  margin-top: 12px;
}
.welcome__list li {
  font-family: "Open Sans", sans-serif;
  padding-left: 36px;
  position: relative;
}
.welcome__list li:before {
  background: url("../img/svg/check.svg") no-repeat center;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}
.welcome__list li + li {
  margin-top: 12px;
}
.welcome__actions {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 20px 40px -5px rgba(36, 99, 235, 0.149);
          box-shadow: 0 20px 40px -5px rgba(36, 99, 235, 0.149);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  width: 100%;
}
.welcome__actions-title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #45556C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: -0.5px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.welcome__actions-title img {
  height: 23px;
}
.welcome__actions-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.welcome__actions-list li {
  color: #2463EB;
  font-size: 18px;
  font-weight: 700;
  padding-left: 33px;
  position: relative;
  white-space: nowrap;
}
.welcome__actions-list li:before {
  background: url("../img/svg/list_2.svg") no-repeat center;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}
.welcome__button {
  font-weight: 700;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 390px) {
  .welcome__row {
    padding: 48px 0;
  }
  .welcome__text {
    font-size: 15px;
  }
  .welcome__text span {
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  .welcome {
    gap: 32px;
    padding-top: 66px;
  }
  .welcome__row {
    padding: 56px 0;
  }
  .welcome__title {
    font-size: 28px;
    letter-spacing: -1px;
  }
  .welcome__text {
    font-size: 18px;
  }
  .welcome__text span {
    font-size: 14px;
    font-weight: 600;
  }
  .welcome__actions {
    padding: 28px;
  }
  .welcome__actions-title {
    font-size: 26px;
  }
  .welcome__actions-title img {
    height: 31px;
  }
  .welcome__actions-list li {
    font-size: 24px;
  }
}
@media (min-width: 980px) {
  .welcome__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
  .welcome__actions {
    padding: 32px;
    width: auto;
  }
}
@media (min-width: 1366px) {
  .welcome {
    padding-top: 73px;
  }
  .welcome__row {
    padding: 64px 0;
  }
  .welcome__title {
    font-size: 38px;
    letter-spacing: -2px;
  }
  .welcome__text {
    font-size: 22px;
  }
  .welcome__text span {
    font-size: 15px;
    font-weight: 400;
  }
  .welcome__actions {
    padding: 40px;
  }
}
@media (min-width: 1920px) {
  .welcome {
    padding-top: 79px;
  }
  .welcome__row {
    padding: 70px 0;
  }
  .welcome__title {
    font-size: 48px;
  }
  .welcome__list li {
    font-size: 20px;
  }
  .welcome__list li + li {
    margin-top: 16px;
  }
  .welcome__actions-title {
    font-size: 33px;
  }
  .welcome__actions-title img {
    height: 37px;
  }
  .welcome__actions-list li {
    font-size: 30px;
  }
}
.ancors__row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
}
.ancors__item {
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 25px;
}
.ancors__item-img {
  width: 48px;
  height: 48px;
}
.ancors__item-title {
  color: #0f172b;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.ancors .ancors__item-text {
  color: #45556c;
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  line-height: 26px;
  max-width: 220px;
}

@media (min-width: 520px) {
  .ancors__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 980px) {
  .ancors__row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.works {
  background-color: #F8FAFC;
  padding: 40px 0;
}
.works__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
}
.works__contents {
  max-width: 576px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.works__content-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: #dbeafe;
  border-radius: 50px;
  padding: 4px 12px;
  color: #1447e6;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  max-width: 255px;
}
.works__content-title {
  color: #0f172b;
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: -0.9px;
  font-family: "Montserrat", sans-serif;
  max-width: 466px;
}
.works__content-texts {
  padding-top: 14px;
  color: #45556c;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
.works__content-text-list {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.works__content-text-list li {
  padding-left: 36px;
  position: relative;
}
.works__content-text-list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("../img/svg/Background.svg") no-repeat center;
}
.works__content-prices {
  padding-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.works__content-prices-text {
  color: #62748e;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 0.7px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
}
.works__content-price {
  color: #0f172b;
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
}
.works__content-price span {
  color: #62748e;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  vertical-align: middle;
}
.works__sladers {
  background-color: #fff;
  max-width: 100%;
  width: 100%;
  padding: 16px;
  -webkit-box-shadow: 0px 5px 26px 10px rgb(182, 211, 255);
          box-shadow: 0px 5px 26px 10px rgb(182, 211, 255);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  position: relative;
  padding: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.works__sladers .swiper-button-next,
.works__sladers .swiper-button-prev {
  color: #fff;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background: rgba(43, 127, 255, 0.1019607843);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
}
.works__sladers .swiper-button-next {
  right: 12px;
}
.works__sladers .swiper-button-prev {
  left: 12px;
}
.works__sladers .swiper-button-next::after,
.works__sladers .swiper-button-prev::after {
  font-size: 24px;
  color: #2b7fff;
  font-weight: 600;
}
.works__sladers-title {
  color: #0f1729;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: -0.6px;
  font-family: "Montserrat", sans-serif;
}
.works__swiper {
  width: 100%;
  height: auto;
  max-height: 540px;
  overflow: hidden;
  background: #fff;
}
.works__swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
.works__swiper .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.works__quote {
  border-top: 1px solid #F1F5F9;
  color: #62748E;
  font-style: italic;
  text-align: center;
  font-size: 14px;
  margin-top: 24px;
  padding-top: 24px;
}

@media (min-width: 740px) {
  .works {
    padding: 64px 0;
  }
  .works__contents {
    padding-right: 110px;
    max-width: 100%;
  }
}
@media (min-width: 980px) {
  .works__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .works__contents {
    max-width: 576px;
    padding-right: 0;
  }
  .works__sladers {
    max-width: 480px;
  }
}
@media (min-width: 1280px) {
  .works__content-title {
    font-size: 36px;
    line-height: 40px;
  }
  .works__content-texts {
    font-size: 18px;
    line-height: 29px;
  }
  .works__sladers {
    max-width: 608px;
  }
}
@media (min-width: 1460px) {
  .works__row {
    gap: 10px;
  }
}

.reviews__row {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
}
.reviews__comment {
  max-width: 600px;
  min-height: 500px;
  width: 100%;
}
.reviews__content {
  max-width: 600px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
.reviews__content-item {
  max-width: 166px;
  width: 50%;
  height: 179px;
  margin-bottom: 20px;
}
.reviews__content-item:first-child {
  height: auto;
  margin-top: 20px;
  max-width: 100%;
  width: 100%;
}
.reviews__content-item--empty {
  font-weight: 500;
  font-size: 18px;
  line-height: 34px;
  text-align: center;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.reviews__content-item-title {
  margin-top: 13px;
  font-weight: 700;
  font-size: 39px;
  line-height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.reviews__content-item-title span {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}
.reviews__content-item-text {
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}
.reviews__content-item--empty:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 0 0 83px;
  border-color: transparent transparent transparent #ffffff;
}
.reviews__content-item--empty:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 83px;
  border-color: transparent transparent #ffffff transparent;
}
.reviews__content-item--empty-1 {
  background: -webkit-gradient(linear, left top, right top, color-stop(-30.77%, #14d6c2), to(#36f298));
  background: linear-gradient(90deg, #14d6c2 -30.77%, #36f298 100%);
}
.reviews__content-item--empty-2 {
  background: linear-gradient(90.05deg, #db40a2 0.05%, #ffa6bb 99.96%);
}
.reviews__content-item--empty-3 {
  background: linear-gradient(89.7deg, #0d81d8 0.29%, #1ebdfe 99.77%);
}

@media (min-width: 768px) {
  .reviews__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 980px) {
  .reviews__title {
    display: none;
  }
}

.forms {
  background-color: #0F172B;
}
.forms__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 24px auto 0 auto;
}
.forms__title {
  color: #fff;
  margin-bottom: 24px;
}
.forms__subtitle {
  color: #CAD5E2;
  font-size: 13px;
  margin-top: 10px 0 32px 0;
  text-align: center;
}
.forms__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 24px auto 0 auto;
  position: relative;
}
.forms__form-input-tel {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #90A1B9;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 24px;
  width: 100%;
}
.forms__form-input-tel.is-invalid {
  border-color: #dc2626 !important;
  color: #dc2626;
}
.forms__form-button {
  background-color: #2463EB;
  border: 0;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
}
.forms .field-error-message {
  display: block;
  margin-top: 2px;
  color: #dc2626;
  font-size: 12px;
  line-height: 1.35;
  left: 0;
  position: absolute;
  top: 100%;
}
.forms .form-success-message {
  padding: 16px 20px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #2463eb;
  color: #2463eb;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 390px) {
  .forms__form-input-tel {
    font-size: 15px;
    padding: 14px;
  }
  .forms__form {
    gap: 12px;
    margin-top: 28px;
  }
}
@media (min-width: 768px) {
  .forms__form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
    margin-top: 32px;
  }
  .forms__form-input-tel {
    padding: 12px;
    width: 500px;
  }
}
@media (min-width: 1366px) {
  .forms__form-input-tel {
    font-size: 14px;
    padding: 12px 16px;
    width: 322px;
  }
}
@media (min-width: 1920px) {
  .forms__form-input-tel {
    font-size: 16px;
    padding: 19px 24px;
    width: 299px;
  }
  .forms__form-button {
    padding: 16px 32px;
  }
}

.footer {
  background-color: #020618;
}
.footer__row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding: 20px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__content-link {
  color: #2463eb;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
}
.footer__content-text {
  color: #62748E;
  font-size: 11px;
  font-family: "Open Sans", sans-serif;
}

@media (min-width: 390px) {
  .footer__content-link {
    font-size: 13px;
  }
  .footer__content-text {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .footer__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 32px 0;
  }
  .footer__content-link {
    font-size: 13px;
  }
  .footer__content-text {
    font-size: 13px;
  }
}
@media (min-width: 1366px) {
  .footer__content-link {
    font-size: 13px;
  }
  .footer__content-text {
    font-size: 12px;
  }
}
@media (min-width: 1920px) {
  .footer__content-link {
    font-size: 14px;
  }
  .footer__content-text {
    font-size: 14px;
  }
}