/* VARS */

:root {
  --color-main: #12425d;
  --color-main-50: rgba(18, 66, 94, 0.5);
  --color-main-30: rgba(18, 66, 94, 0.3);
  --color-accent: #f34518;
  --color-white: #fcfcfc;
  --color-white-50: rgba(252, 252, 252, 0.5);
  --color-white-30: rgba(252, 252, 252, 0.3);
  --color-black: #111111;
  --color-gray: #777777;
  --color-error: #ff0000;
  --tr-duration: 0.3s;
  --popup-tr-duration: 0.6s;
}

/* FONTS */

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

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  descent-override: 0;
  ascent-override: 100%;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url('../fonts/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  descent-override: 0;
  ascent-override: 100%;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  descent-override: 0;
  ascent-override: 100%;
}

/* CSS RESET */

* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}

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

html,
body {
  height: 100%;
  min-width: 360px;
}

body {
  position: relative;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
:has(:target) {
  scroll-behavior: smooth;
}

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

input,
button,
textarea,
select {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  background-color: transparent;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
}

input:focus,
input:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg,
picture,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

address {
  font-style: normal;
}

legend {
  display: block;
}

fieldset {
  border: none;
}

svg {
  -webkit-transition-property: fill, stroke;
  transition-property: fill, stroke;
}

table {
  border-collapse: collapse;
}

/* BODY */

body {
  color: var(--color-black);
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1;
  background-color: var(--color-white);
}

body._locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

/* WRAPPER */

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.wrapper > main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/* CONTAINER */

.container {
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1520px;
}

/* COMMON */

._visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* IMG */

._img {
  position: relative;
  width: 100%;
  height: 0;
}

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

/* DECOR */

._decor {
  pointer-events: none;
  position: absolute;
  left: 0;
  bottom: 50px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

._decor._decor--md {
  bottom: 40px;
  gap: 12px;
}

._decor._decor--md::before,
._decor._decor--md::after {
  width: 25px;
}

._decor._decor--sm {
  bottom: 30px;
  gap: 6px;
}

._decor._decor--sm::before,
._decor._decor--sm::after {
  width: 14px;
}

._decor._decor--sm-hor {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  left: auto;
  right: 25px;
  bottom: 0;
  -webkit-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  transform: translate(0, 50%);
  gap: 6px;
}

._decor._decor--sm-hor::before,
._decor._decor--sm-hor::after {
  padding-bottom: 22%;
  width: 28px;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

._decor::before,
._decor::after {
  content: '';
  display: block;
  padding-bottom: 200%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 42px;
  -webkit-transform: skewY(45deg);
  -ms-transform: skewY(45deg);
  transform: skewY(45deg);
}

._decor::before {
  background-color: var(--color-main);
}

._decor::after {
  background-color: var(--color-accent);
}

/* SECTION */

.section {
  padding: 140px 0;
  position: relative;
}

.section.section--nopt {
  padding-top: 0;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.section-bg[data-prlxbg-parent] {
  position: absolute;
}

.section-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(4, 23, 34, 0.7);
}

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

.section-bg__text {
  pointer-events: none;
  position: absolute;
  top: -0.14em;
  right: 0;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
  color: rgba(18, 66, 93, 0.4);
  font-family: Cormorant, 'Times New Roman', Times, serif;
  font-size: min(16vw, 300px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.07;
}

.section-bg__text.section-bg__text--bottom {
  top: auto;
  bottom: -0.14em;
}

.section-bg__img {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0.5vw;
  width: min(43%, 820px);
  height: auto;
  z-index: 1;
  opacity: 0.05;
}

.section-bg__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.section-top {
  margin-bottom: 60px;
}

.section-title {
  position: relative;
  color: var(--color-main);
  font-family: Cormorant, 'Times New Roman', Times, serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  word-break: break-word;
}

.section-title.section-title--mb:not(:last-child) {
  margin-bottom: 44px;
}

.section-title.section-title--light {
  color: var(--color-white);
}

.section-title.section-title--light::after {
  display: none;
}

.section-title::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: var(--color-accent);
  pointer-events: none;
}

.section-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.section-bottom {
  margin-top: 60px;
  text-align: center;
}

/* CONTENT EDITOR */

.content-editor {
  --mb: 24px;
  font-size: 18px;
  line-height: 1.6;
}

.content-editor.content-editor--sm {
  font-size: 16px;
}

.content-editor.content-editor--big {
  font-size: 20px;
  line-height: 1.5;
}

.content-editor > *:first-child {
  margin-top: 0;
  padding-top: 0;
}

.content-editor > *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.content-editor strong,
.content-editor b {
  font-weight: 600;
}

.content-editor hr {
  display: block;
  height: 1px;
  background-color: var(--color-main-30);
  margin-bottom: var(--mb);
}

.content-editor h1,
.content-editor h2,
.content-editor h3,
.content-editor h4,
.content-editor h5,
.content-editor h6 {
  word-break: break-word;
  margin: 0;
  margin-top: 60px;
  margin-bottom: 32px;
  padding: 0;
  position: relative;
  color: var(--color-main);
  font-family: Cormorant, 'Times New Roman', Times, serif;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.content-editor h1,
.content-editor h2 {
  margin-bottom: 44px;
  font-size: 64px;
}

.content-editor h1::after,
.content-editor h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: var(--color-accent);
  pointer-events: none;
}

.content-editor h3,
.content-editor h4 {
  font-size: 44px;
}

.content-editor h5,
.content-editor h6 {
  font-size: 36px;
}

.content-editor p {
  margin-bottom: var(--mb);
}

.content-editor img {
  margin-bottom: var(--mb);
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.content-editor a {
  color: var(--color-main);
  font-weight: 700;
  text-decoration: underline;
}

.content-editor ul,
.content-editor ol {
  padding: 0 0 0 20px;
  margin-bottom: var(--mb);
}

.content-editor ul li:not(:last-child),
.content-editor ol li:not(:last-child) {
  margin-bottom: 10px;
}

.content-editor ul ul,
.content-editor ul ol,
.content-editor ol ul,
.content-editor ol ol {
  padding-left: 5px;
  margin: 10px 0;
}

.content-editor ul ol,
.content-editor ol ol {
  padding-left: 25px;
}

.content-editor ul ol > li,
.content-editor ol ol > li {
  list-style: decimal;
}

.content-editor ul > li {
  padding-left: 20px;
  position: relative;
}

.content-editor ul > li::before {
  content: '';
  position: absolute;
  top: 0.53em;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color-main);
}

.content-editor ol {
  list-style-position: inside;
}

.content-editor ol > li::marker {
  color: var(--color-main);
  font-weight: 500;
}

/* BUTTONS */

.btn {
  padding: 0px 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: relative;
  width: 300px;
  height: 60px;
  overflow: hidden;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  background-color: var(--color-accent);
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(-110%, -50%, 0) skew(-45deg);
  transform: translate3d(-110%, -50%, 0) skew(-45deg);
  width: 100%;
  height: 200%;
  z-index: 1;
  background-color: var(--color-main);
  -webkit-transition: all var(--tr-duration) ease;
  transition: all var(--tr-duration) ease;
}

.btn > span {
  position: relative;
  z-index: 2;
}

.btn-close {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-main-50);
  -webkit-transition: background-color var(--tr-duration) ease;
  transition: background-color var(--tr-duration) ease;
}

.btn-close::before,
.btn-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 1px;
  background-color: var(--color-main-50);
  -webkit-transition: background-color var(--tr-duration) ease;
  transition: background-color var(--tr-duration) ease;
}

.btn-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* FORMS */

input[type='text'],
input[type='email'],
input[type='tel'],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border-radius: 0;
}

.form {
  padding: 60px;
  position: relative;
  color: var(--color-white);
  background-color: var(--color-main);
}

.form:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  background: url('../img/loading.svg') center/100px no-repeat;
  -webkit-transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.form._sending > * {
  opacity: 0.2;
  pointer-events: none;
}

.form._sending::after {
  opacity: 1;
  visibility: visible;
}

.form-title {
  margin-bottom: 40px;
  color: var(--color-white);
  font-family: Cormorant, 'Times New Roman', Times, serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  word-break: break-word;
}

.form-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row:not(:last-child) {
  margin-bottom: 20px;
}

.form-row > .form-item {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
}

.form-row > .form-item:not(:last-child) {
  margin-bottom: 0;
}

.form-item {
  position: relative;
}

.form-item:not(:last-child) {
  margin-bottom: 20px;
}

.form-input {
  padding: 0 20px;
  display: block;
  width: 100%;
  height: 52px;
  color: var(--color-black);
  font-size: 16px;
  background-color: var(--color-white);
}

.form-input:focus::-webkit-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus::-moz-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus:-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus::-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input:focus::placeholder {
  opacity: 0;
  visibility: hidden;
}

.form-input::-webkit-input-placeholder {
  color: var(--color-gray);
  -webkit-transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.form-input::-moz-placeholder {
  color: var(--color-gray);
  -moz-transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.form-input:-ms-input-placeholder {
  color: var(--color-gray);
  -ms-transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.form-input::-ms-input-placeholder {
  color: var(--color-gray);
  -ms-transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.form-input::placeholder {
  color: var(--color-gray);
  -webkit-transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.form-input.form-input--ta {
  padding: 17px 20px;
  resize: none;
  height: 120px;
  overflow: auto;
  outline: none;
}

.form-input._error {
  -webkit-box-shadow: inset 0 -3px 0 0 var(--color-error);
  box-shadow: inset 0 -3px 0 0 var(--color-error);
}

.form-checkbox:not(:last-child) {
  margin-bottom: 28px;
}

.form-btn.btn {
  width: 100%;
  border: 1px solid var(--color-accent);
}

.file:has(.file-input._added) .file-area__content > ._empty {
  display: none;
}

.file:has(.file-input._added) .file-area__content > ._added {
  display: block;
}

.file:has(.file-input._added) .file-area__delete {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.file:has(.file-input._error) > .file-area {
  border-color: var(--color-error);
}

.file-area {
  padding: 16px;
  position: relative;
  width: 100%;
  height: 80px;
  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;
  text-align: center;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  -webkit-transition: background-color var(--tr-duration) ease;
  transition: background-color var(--tr-duration) ease;
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  font-size: 0;
  opacity: 0;
  cursor: pointer;
}

.file-area__content {
  position: relative;
  width: 100%;
}

.file-area__content > ._empty {
  display: block;
}

.file-area__content > ._added {
  display: none;
  padding-right: 50px;
  position: relative;
  text-align: left;
  width: 100%;
}

.file-area__text1 {
  position: relative;
  z-index: 1;
  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;
  gap: 12px;
}

.file-area__text1 > span {
  font-size: 20px;
  font-weight: 500;
}

.file-area__text1 > span:first-child {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-white);
}

.file-area__text1 > span:first-child svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
}

.file-area__text2 {
  margin-top: 8px;
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 500;
}

.file-area__title {
  font-size: 16px;
  font-weight: 500;
}

.file-area__filename {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.2;
  opacity: 0.8;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.file-area__delete {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  z-index: 3;
  background-color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition:
    background-color var(--tr-duration) ease,
    opacity var(--tr-duration) ease,
    visibility var(--tr-duration) ease;
  transition:
    background-color var(--tr-duration) ease,
    opacity var(--tr-duration) ease,
    visibility var(--tr-duration) ease;
}

.file-area__delete::before,
.file-area__delete::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 1px;
  background-color: var(--color-main);
}

.file-area__delete::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.file-area__delete::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* CHECKBOX & RADIO */

.radio-label,
.checkbox-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  cursor: pointer;
}

.radio-input,
.checkbox-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.radio-custom,
.checkbox-custom {
  margin-right: 16px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid var(--color-white-50);
}

.radio-custom:after,
.checkbox-custom:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  z-index: 1;
  background-color: var(--color-white);
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform var(--tr-duration) ease;
  transition: -webkit-transform var(--tr-duration) ease;
  transition: transform var(--tr-duration) ease;
  transition:
    transform var(--tr-duration) ease,
    -webkit-transform var(--tr-duration) ease;
}

.radio-txt,
.checkbox-txt {
  position: relative;
  color: var(--color-white);
  font-size: 12px;
  line-height: 1.5;
}

.checkbox-txt a {
  text-decoration: underline;
}

.radio-input:checked ~ .radio-custom:after,
.radio-input:checked ~ .checkbox-custom:after,
.checkbox-input:checked ~ .radio-custom:after,
.checkbox-input:checked ~ .checkbox-custom:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.radio-input:focus-visible ~ .radio-custom,
.radio-input:focus-visible ~ .checkbox-custom,
.checkbox-input:focus-visible ~ .radio-custom,
.checkbox-input:focus-visible ~ .checkbox-custom {
  -webkit-box-shadow:
    0 0 0 1px black,
    0 0 0 2px white;
  box-shadow:
    0 0 0 1px black,
    0 0 0 2px white;
}

.radio-input:disabled ~ .radio-custom,
.radio-input:disabled ~ .checkbox-custom,
.checkbox-input:disabled ~ .radio-custom,
.checkbox-input:disabled ~ .checkbox-custom {
  opacity: 0.3;
}

.radio-input._error ~ .radio-custom,
.radio-input._error ~ .checkbox-custom,
.checkbox-input._error ~ .radio-custom,
.checkbox-input._error ~ .checkbox-custom {
  border-color: var(--color-error);
}

/* BREADCRUMBS */

.breadcrumbs {
  margin-bottom: 12px;
}

.breadcrumbs > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.breadcrumbs > span > span {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-right: 36px;
  margin-right: 16px;
  position: relative;
  color: var(--color-white);
  font-size: 14px;
}

.breadcrumbs > span > span:after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 20px;
  height: 1px;
  background-color: var(--color-white);
}

.breadcrumbs > span > span:last-child {
  padding-right: 0;
}

.breadcrumbs > span > span:last-child:after {
  display: none;
}

.breadcrumbs > span > span > a {
  color: var(--color-white);
}

/* PAGINATION */

.pagination {
  margin-top: 60px;
  color: var(--color-main);
  font-size: 16px;
}

.pagination > .page-numbers {
  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;
  gap: 20px;
}

.pagination > .page-numbers > li > .current {
  color: var(--color-white);
  background-color: var(--color-main);
}

.pagination > .page-numbers > li > .next svg {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  -ms-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}

.pagination > .page-numbers > li > a,
.pagination > .page-numbers > li > span {
  position: relative;
  width: 40px;
  height: 40px;
  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;
  text-align: center;
  border: 1px solid var(--color-main-50);
  overflow: hidden;
}

.pagination > .page-numbers > li > a svg,
.pagination > .page-numbers > li > span svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 32%;
  height: 32%;
  -o-object-fit: contain;
  object-fit: contain;
}

.pagination > .page-numbers > li > a {
  -webkit-transition:
    color var(--tr-duration) ease,
    background-color var(--tr-duration) ease;
  transition:
    color var(--tr-duration) ease,
    background-color var(--tr-duration) ease;
}

.pagination-list {
  margin: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagination-list > li > a {
  padding: 0 5px;
  margin: 0 2px;
  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;
  min-width: 25px;
  height: 25px;
  color: #000;
  background-color: transparent;
  border-radius: 2px;
  -webkit-transition:
    color 0.3s ease,
    background-color 0.3s ease;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.pagination-list > li > a.current {
  pointer-events: none;
  color: #fff;
  background-color: red;
}

/* SOCIALS */

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}

.socials.socials--sm {
  gap: 12px;
}

.socials.socials--sm > li > a {
  width: 40px;
  height: 40px;
}

.socials.socials--light > li > a {
  color: var(--color-white);
  background-color: var(--color-main);
  border-color: var(--color-white-30);
}

.socials > li {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.socials > li > a {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  color: var(--color-main);
  background-color: var(--color-white);
  border: 1px solid var(--color-main-50);
  -webkit-transition:
    color var(--tr-duration) ease,
    background-color var(--tr-duration) ease;
  transition:
    color var(--tr-duration) ease,
    background-color var(--tr-duration) ease;
}

.socials > li > a img,
.socials > li > a svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
}

/* SWIPER SLIDER */

.swiper-section .section-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}

.swiper-section .section-top > .section-title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.swiper-nav {
  padding-bottom: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.swiper-nav > .swiper-button-prev,
.swiper-nav > .swiper-button-next {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-main);
  background-color: var(--color-white);
  border: 1px solid var(--color-main-50);
  -webkit-transition:
    color var(--tr-duration) ease,
    background-color var(--tr-duration) ease;
  transition:
    color var(--tr-duration) ease,
    background-color var(--tr-duration) ease;
}

.swiper-nav > .swiper-button-prev svg,
.swiper-nav > .swiper-button-next svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 35%;
  height: 35%;
}

.swiper-nav > .swiper-button-next svg {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  -ms-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}

.swiper .swiper-pagination {
  display: none;
  margin: 44px auto 0;
  position: relative;
  width: 90%;
}

.swiper .swiper-pagination > .swiper-pagination-bullet {
  margin: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-color: var(--color-main-30);
  opacity: 1;
}

.swiper .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-accent);
}

/* READMORE */

[data-readmore]._readmore-init [data-readmore-body] {
  overflow: hidden;
  will-change: height;
  -webkit-transition: height 0.3s linear;
  transition: height 0.3s linear;
}

.readmore-btn {
  margin: 16px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: var(--color-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: underline;
  background-color: transparent;
  -webkit-transition: color var(--tr-duration) ease;
  transition: color var(--tr-duration) ease;
}

/* PICTURE-TEXT */

.pic-text {
  flex-shrink: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 80px;
}

.pic-text:not(:last-child) {
  margin-bottom: 80px;
}

.pic-text:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.pic-text:nth-child(even) > .pic-text__img > ._decor {
  left: auto;
  right: 0;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}

.pic-text__img {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 43%;
}

.pic-text__img > ._img {
  padding-bottom: 88%;
}

.pic-text__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 12px 0;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

/* ICON CARD */

.icon-cards__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.icon-card {
  padding: 0 20px 28px;
  margin-top: 50px;
  position: relative;
  text-align: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-main-50);
}

.icon-card__img {
  margin: -50px auto 12px;
  position: relative;
  width: 100px;
  height: 100px;
}

.icon-card__img::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 3px;
  z-index: 1;
  background-color: var(--color-white);
}

.icon-card__img img,
.icon-card__img svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  z-index: 2;
  -o-object-fit: contain;
  object-fit: contain;
}

.icon-card__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.icon-card__title:not(:last-child) {
  margin-bottom: 16px;
}

.icon-card__text {
  color: var(--color-gray);
}

[data-prlxbg-parent] {
  position: relative;
  overflow: hidden;
}

[data-prlxbg-parent] [data-prlxbg] {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 120%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  -o-object-fit: cover;
  object-fit: cover;
  will-change: transform;
}

/* POPUP */

.popup {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
}

.popup._open {
  opacity: 1;
  visibility: visible;
}

.popup._open .popup-content {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

html._loaded .popup {
  -webkit-transition:
    opacity var(--popup-tr-duration) ease,
    visibility var(--popup-tr-duration) ease,
    -webkit-transform var(--popup-tr-duration) ease;
  transition:
    opacity var(--popup-tr-duration) ease,
    visibility var(--popup-tr-duration) ease,
    -webkit-transform var(--popup-tr-duration) ease;
  transition:
    transform var(--popup-tr-duration) ease,
    opacity var(--popup-tr-duration) ease,
    visibility var(--popup-tr-duration) ease;
  transition:
    transform var(--popup-tr-duration) ease,
    opacity var(--popup-tr-duration) ease,
    visibility var(--popup-tr-duration) ease,
    -webkit-transform var(--popup-tr-duration) ease;
}

.popup-body {
  padding: 30px 10px;
  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;
  min-height: 100%;
}

.popup-content {
  padding: 36px;
  position: relative;
  max-width: 540px;
  color: var(--color-black);
  background-color: var(--color-white);
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition:
    opacity var(--popup-tr-duration) ease,
    -webkit-transform var(--popup-tr-duration) ease;
  transition:
    opacity var(--popup-tr-duration) ease,
    -webkit-transform var(--popup-tr-duration) ease;
  transition:
    transform var(--popup-tr-duration) ease,
    opacity var(--popup-tr-duration) ease;
  transition:
    transform var(--popup-tr-duration) ease,
    opacity var(--popup-tr-duration) ease,
    -webkit-transform var(--popup-tr-duration) ease;
}

.popup-btn__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.popup-title {
  padding-right: 40px;
  position: relative;
  color: var(--color-main);
  font-family: Cormorant, 'Times New Roman', Times, serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  word-break: break-word;
}

.popup-title::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: var(--color-accent);
  pointer-events: none;
}

.popup-title:not(:last-child) {
  margin-bottom: 36px;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}

.header-top {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 36px;
  background-color: var(--color-white);
  overflow: hidden;
}

.header-container {
  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;
  gap: 40px;
}

.header-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: var(--color-main);
  font-size: 14px;
  line-height: 1;
}

.header-item svg,
.header-item img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.header-contacts {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.header-link {
  -webkit-transition: color var(--tr-duration) ease;
  transition: color var(--tr-duration) ease;
}

.header-bottom {
  padding: 16px 0;
  position: relative;
  z-index: 1;
  color: var(--color-white);
  background-color: var(--color-main);
}

.header-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: var(--color-main);
  -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.4);
}

.header-bottom .container {
  position: static;
}

.header-logo {
  position: relative;
  z-index: 3;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 256px;
  height: 60px;
}

.header-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}

.header-menu {
  margin-left: auto;
  position: relative;
  z-index: 3;
}

.header-menu__list {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.header-menu__list > li > a {
  position: relative;
  font-size: 18px;
  line-height: 1.1;
  -webkit-transition: opacity var(--tr-duration) ease;
  transition: opacity var(--tr-duration) ease;
}

.header-menu__list > li > a::after {
  content: '';
  pointer-events: none;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--color-white);
}

.header-menu__list > li.current-menu-item > a::after {
  width: 50%;
}

.header-menu__bottom {
  display: none;
}

.header-socials {
  padding-top: 20px;
}

.header-socials.socials {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-contacts__mobile {
  display: none;
  margin-left: auto;
  position: relative;
  z-index: 3;
}

.header-contacts__mobile > li {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header-contacts__mobile > li > a {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-white-30);
}

.header-contacts__mobile > li > a svg,
.header-contacts__mobile > li > a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
}

.header-language {
  position: relative;
  z-index: 3;
}

.header-language:hover > li > a {
  color: var(--color-main);
  background-color: var(--color-white);
}

.header-language:hover .sub-menu {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header-language a {
  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;
  width: 40px;
  height: 40px;
  font-size: 18px;
  line-height: 1;
  -webkit-transition:
    color var(--tr-duration) ease,
    background-color var(--tr-duration) ease;
  transition:
    color var(--tr-duration) ease,
    background-color var(--tr-duration) ease;
}

.header-language > li > a {
  border: 1px solid var(--color-white-30);
}

.header-language .sub-menu {
  --top-gap: 12px;
  position: absolute;
  top: calc(100% + var(--top-gap));
  left: 50%;
  -webkit-transform: translate(-50%, -12px);
  -ms-transform: translate(-50%, -12px);
  transform: translate(-50%, -12px);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--color-white);
  border: 1px solid var(--color-main-30);
  -webkit-box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition:
    opacity var(--tr-duration) ease,
    visibility var(--tr-duration) ease,
    -webkit-transform var(--tr-duration) ease;
  transition:
    opacity var(--tr-duration) ease,
    visibility var(--tr-duration) ease,
    -webkit-transform var(--tr-duration) ease;
  transition:
    transform var(--tr-duration) ease,
    opacity var(--tr-duration) ease,
    visibility var(--tr-duration) ease;
  transition:
    transform var(--tr-duration) ease,
    opacity var(--tr-duration) ease,
    visibility var(--tr-duration) ease,
    -webkit-transform var(--tr-duration) ease;
}

.header-language .sub-menu::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  width: 100%;
  height: calc(var(--top-gap) + 1px);
  background-color: transparent;
}

.header-language .sub-menu > li:not(:last-child) {
  margin-bottom: 2px;
}

.header-language .sub-menu > li > a {
  color: var(--color-main);
}

.header-burger {
  display: none;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  z-index: 3;
  border: 1px solid var(--color-white-30);
  cursor: pointer;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.header-burger span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 22px;
  height: 1px;
  background-color: var(--color-white);
  -webkit-transition: -webkit-transform var(--tr-duration) ease;
  transition: -webkit-transform var(--tr-duration) ease;
  transition: transform var(--tr-duration) ease;
  transition:
    transform var(--tr-duration) ease,
    -webkit-transform var(--tr-duration) ease;
}

.header-burger span:before,
.header-burger span:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  -webkit-transition:
    top var(--tr-duration) ease,
    -webkit-transform var(--tr-duration) ease;
  transition:
    top var(--tr-duration) ease,
    -webkit-transform var(--tr-duration) ease;
  transition:
    top var(--tr-duration) ease,
    transform var(--tr-duration) ease;
  transition:
    top var(--tr-duration) ease,
    transform var(--tr-duration) ease,
    -webkit-transform var(--tr-duration) ease;
}

.header-burger span:before {
  top: -7px;
}

.header-burger span:after {
  top: 7px;
}

.header-burger._active span {
  -webkit-transform: translateX(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
}

.header-burger._active span:before {
  top: 0;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.header-burger._active span:after {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* PREFOOTER */

.prefooter {
  padding: 100px 0;
  position: relative;
}

.prefooter > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 100px;
}

.prefooter-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  color: var(--color-white);
}

.prefooter-title:not(:last-child) {
  margin-bottom: 40px;
}

.prefooter-form {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50%;
}

.prefooter-form.form {
  background-color: rgba(252, 252, 252, 0.04);
  backdrop-filter: blur(5px);
}

.prefooter-form.form .form-btn.btn {
  border: none;
}

/* FOOTER */

.footer {
  color: var(--color-white);
  background-color: var(--color-main);
}

.footer-top {
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10%;
  border-bottom: 1px solid var(--color-white-30);
}

.footer-info {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 320px;
}

.footer-logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 320px;
  height: 70px;
}

.footer-logo:not(:last-child) {
  margin-bottom: 44px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}

.footer-address {
  font-size: 16px;
  line-height: 1.5;
}

.footer-nav {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-menu {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  text-align: center;
}

.footer-menu > li:not(:last-child) {
  margin-bottom: 20px;
}

.footer-menu > li > a {
  font-size: 16px;
  line-height: 1.1;
  -webkit-transition: opacity var(--tr-duration) ease;
  transition: opacity var(--tr-duration) ease;
}

.footer-contacts {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 320px;
  text-align: right;
}

.footer-socials.socials {
  margin-bottom: 32px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer-contacts__list > li:not(:last-child) {
  margin-bottom: 16px;
}

.footer-contacts__list > li > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: opacity var(--tr-duration) ease;
  transition: opacity var(--tr-duration) ease;
}

.footer-contacts__list > li > a svg,
.footer-contacts__list > li > a img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.footer-bottom {
  padding: 32px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}

.footer-text {
  color: var(--color-white-50);
  font-size: 14px;
  line-height: 1.4;
}

.footer-text > a {
  text-decoration: underline;
}

.footer-policy {
  margin-left: auto;
  text-align: center;
}

.footer-dev {
  text-align: right;
}

.footer-dev > a {
  white-space: nowrap;
}

/* INTRO */

.intro {
  position: relative;
}

.intro > .container {
  padding-top: 232px;
  padding-bottom: 120px;
  min-height: 540px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.intro-bg[data-prlxbg-parent] {
  position: absolute;
}

.intro-bg[data-prlxbg-parent] [data-prlxbg] {
  height: 100%;
}

.intro-bg::before,
.intro-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.intro-bg::before {
  width: 100%;
  z-index: 2;
  background-color: rgba(4, 23, 34, 0.6);
}

.intro-bg::after {
  width: 50%;
  z-index: 1;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(18, 66, 93, 0.5)),
    to(rgba(18, 66, 93, 0))
  );
  background: linear-gradient(to right, rgba(18, 66, 93, 0.5), rgba(18, 66, 93, 0));
}

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

.intro-content {
  color: var(--color-white);
}

.intro-title {
  font-family: Cormorant, 'Times New Roman', Times, serif;
  font-size: 88px;
  font-weight: 700;
  text-transform: uppercase;
  word-break: break-word;
}

/* STATS */

.stats {
  padding: 100px 0;
  position: relative;
  background-color: var(--color-main);
}

.stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.stats-body {
  margin: 0 auto;
  width: 82%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stats-item {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  color: var(--color-white);
  text-align: center;
}

.stats-item__icon {
  margin: 0 auto 24px;
  width: 72px;
  height: 72px;
}

.stats-item__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.stats-item__num {
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.stats-item__text {
  font-size: 22px;
  line-height: 1.2;
}

/* PARTNERS */

.partners.section {
  padding-bottom: 160px;
}

.partners-item > ._img {
  padding-bottom: 52%;
}

.partners-item > ._img img {
  -o-object-fit: contain;
  object-fit: contain;
}

/* ARTICLES */

.articles-grid > .article-card {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
}

.article-card {
  margin-bottom: 8px;
  position: relative;
  border: 1px solid var(--color-main-50);
}

.article-card__img {
  position: relative;
  display: block;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.article-card__img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgb(18, 66, 93)),
    to(rgba(18, 66, 93, 0))
  );
  background: linear-gradient(to top, rgb(18, 66, 93), rgba(18, 66, 93, 0));
}

.article-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition:
    transform 0.5s ease,
    -webkit-transform 0.5s ease;
}

.article-card__title {
  padding: 0 28px;
  position: absolute;
  bottom: 28px;
  left: 0;
  z-index: 3;
  color: var(--color-white);
  font-family: Cormorant, 'Times New Roman', Times, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__content {
  padding: 28px 28px 30px;
}

.article-card__text {
  margin-bottom: 16px;
  color: var(--color-gray);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  color: var(--color-main);
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: color var(--tr-duration) ease;
  transition: color var(--tr-duration) ease;
}

.article-card__link svg,
.article-card__link img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.articles-bottom {
  margin-top: 60px;
  text-align: center;
}

/* CONTACTS */

.contacts > .section-bg__text.section-bg__text--bottom {
  left: 0;
  right: auto;
}

.contacts > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
}

.contacts-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 20px 0;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.contacts-items {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 48px;
}

.contacts-item {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.contacts-item__icon {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  color: var(--color-main);
  background-color: var(--color-white);
  border: 1px solid var(--color-main-50);
}

.contacts-item__icon img,
.contacts-item__icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
  object-fit: contain;
}

.contacts-item__body {
  margin-top: 4px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.contacts-item__title {
  margin-bottom: 18px;
  color: var(--color-main);
  font-size: 16px;
}

.contacts-item__list > li {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.contacts-item__list > li:has(> a) {
  line-height: 1;
}

.contacts-item__list > li:not(:last-child) {
  margin-bottom: 16px;
}

.contacts-item__list > li > a {
  word-break: break-word;
  -webkit-transition: color var(--tr-duration) ease;
  transition: color var(--tr-duration) ease;
}

.contacts-socials {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  padding-top: 48px;
  border-top: 1px solid var(--color-main-50);
}

.contacts-form {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 60%;
}

/* HOME INTRO */

.home-intro {
  position: relative;
}

.home-intro > .container {
  padding-top: 232px;
  padding-bottom: 120px;
  position: relative;
  min-height: 840px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home-intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.home-intro__bg[data-prlxbg-parent] {
  position: absolute;
}

.home-intro__bg[data-prlxbg-parent] [data-prlxbg] {
  height: 100%;
}

.home-intro__bg::before,
.home-intro__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.home-intro__bg::before {
  width: 100%;
  z-index: 2;
  background-color: rgba(4, 23, 34, 0.6);
}

.home-intro__bg::after {
  width: 50%;
  z-index: 1;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(18, 66, 93, 0.5)),
    to(rgba(18, 66, 93, 0))
  );
  background: linear-gradient(to right, rgba(18, 66, 93, 0.5), rgba(18, 66, 93, 0));
}

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

.home-intro__content {
  color: var(--color-white);
  width: 44%;
}

.home-intro__content-top {
  margin-bottom: 36px;
}

.home-intro__title {
  font-family: Cormorant, 'Times New Roman', Times, serif;
  font-size: 124px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.home-intro__subtitle {
  margin-top: -8px;
  font-size: 36px;
  line-height: 1;
}

.home-intro__text {
  margin-bottom: 40px;
}

/* ABOUT */

.about {
  position: relative;
}

.about > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 80px;
}

.about-img {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 43%;
}

.about-img > ._img {
  padding-bottom: 88%;
}

.about-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.about-text {
  margin-bottom: 36px;
}

/* HOME SERVICES */

.home-services__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.home-services__item {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  position: relative;
}

.home-services__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgb(18, 66, 93)),
    color-stop(45%, rgba(18, 66, 93, 0.45)),
    to(rgba(18, 66, 93, 0))
  );
  background: linear-gradient(
    to top,
    rgb(18, 66, 93),
    rgba(18, 66, 93, 0.45) 45%,
    rgba(18, 66, 93, 0)
  );
}

.home-services__item > ._decor {
  z-index: 3;
  left: auto;
  right: 0;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}

.home-services__item > ._img {
  padding-bottom: 63%;
  z-index: 1;
  overflow: hidden;
}

.home-services__item > ._img img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition:
    transform 0.5s ease,
    -webkit-transform 0.5s ease;
}

.home-services__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.home-services__item-title {
  padding: 0 42px 36px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  z-index: 3;
  overflow: hidden;
  color: var(--color-white);
  font-family: Cormorant, 'Times New Roman', Times, serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* CONSULT */

.consult.section {
  position: relative;
}

.consult-content {
  margin: 0 auto;
  max-width: 1000px;
  color: var(--color-white);
  text-align: center;
}

.consult-content__top {
  margin-bottom: 56px;
}

.consult-title {
  margin-bottom: 32px;
}

/* REVIEWS */

.reviews-item {
  margin-bottom: 8px;
  padding: 36px 40px 32px;
  border: 1px solid var(--color-main-50);
  height: auto;
}

.reviews-item__top {
  margin-bottom: 20px;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--color-main-50);
}

.reviews-item__icon {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  color: var(--color-main);
  border: 1px solid var(--color-main-50);
}

.reviews-item__icon img,
.reviews-item__icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 45%;
  height: 45%;
}

.reviews-item__name {
  color: var(--color-main);
  font-family: Cormorant, 'Times New Roman', Times, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.reviews-item__info {
  margin-top: 4px;
  color: var(--color-gray);
  font-size: 16px;
  line-height: 1.1;
}

/* LICENSES */

.licenses-slider.swiper {
  margin: 0 -8px;
  padding: 0 8px;
}

.licenses-item {
  position: relative;
  border: 1px solid var(--color-main-50);
}

.licenses-item > ._decor._decor--sm {
  left: auto;
  right: 0;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}

.licenses-item > ._img {
  padding-bottom: 138%;
  display: block;
  overflow: hidden;
}

.licenses-item > ._img img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition:
    transform 0.5s ease,
    -webkit-transform 0.5s ease;
}

/* TEAM */

.team-card {
  margin-bottom: 8px;
  position: relative;
  border: 1px solid var(--color-main-50);
}

.team-card__photo {
  padding-bottom: 79%;
  position: relative;
  height: 0;
  display: block;
}

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

.team-card__content {
  padding: 20px;
}

.team-card__name {
  color: var(--color-main);
  font-family: Cormorant, 'Times New Roman', Times, serif;
  font-size: 28px;
  font-weight: 700;
}

.team-card__name:not(:last-child) {
  margin-bottom: 4px;
}

.team-card__info {
  color: var(--color-gray);
  font-size: 14px;
}

/* BENEFITS */

.benefits > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

.benefits-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.benefits-cards {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 61%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
}

.benefits-card {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
}

/* SLR CONTACTS */

.slr-contacts > .section-bg__text {
  right: auto;
  left: 0;
}

.slr-contacts > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
}

.slr-contacts__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.slr-contacts__content-top:not(:last-child) {
  margin-bottom: 48px;
}

.slr-contacts__form {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(50% - 20px);
}

/* COURSES */

.course-card {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  position: relative;
  border: 1px solid var(--color-main-30);
}

.course-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgb(18, 66, 93)),
    to(rgba(18, 66, 93, 0))
  );
  background: linear-gradient(to top, rgb(18, 66, 93), rgba(18, 66, 93, 0));
}

.course-card > ._decor {
  z-index: 3;
  left: auto;
  right: 0;
  bottom: auto;
  top: 30px;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}

.course-card > ._img {
  padding-bottom: 71%;
  z-index: 1;
  overflow: hidden;
}

.course-card > ._img img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition:
    transform 0.5s ease,
    -webkit-transform 0.5s ease;
}

.course-card__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.course-card__title {
  padding: 0 28px 0.2em;
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  max-height: 100%;
  z-index: 3;
  overflow: hidden;
  color: var(--color-white);
  font-family: Cormorant, 'Times New Roman', Times, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 404 */

.page-404 {
  padding: 0 50px;
}

.page-404__inner {
  padding: 28vh 0 18vh;
}

.page-404__inner > .container {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.page-404__title {
  color: var(--color-black);
  font-size: 240px;
  font-weight: 600;
}

.page-404__btn {
  margin-top: 48px;
}

/* RESPONSIVE */

@media screen and (min-width: 992px) {
  .header {
    -webkit-transition: -webkit-transform var(--tr-duration) ease;
    transition: -webkit-transform var(--tr-duration) ease;
    transition: transform var(--tr-duration) ease;
    transition:
      transform var(--tr-duration) ease,
      -webkit-transform var(--tr-duration) ease;
  }

  .header._hidden {
    -webkit-transform: translateY(calc(-100% - 30px));
    -ms-transform: translateY(calc(-100% - 30px));
    transform: translateY(calc(-100% - 30px));
  }

  .about.about--inner > .section-bg__text {
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
  }
}

@media screen and (max-width: 1640px) {
  ._decor {
    bottom: 40px;
    gap: 16px;
  }

  ._decor::before,
  ._decor::after {
    width: 36px;
  }

  .section-title {
    font-size: 56px;
  }

  .content-editor h1,
  .content-editor h2 {
    font-size: 56px;
  }

  .content-editor h3,
  .content-editor h4 {
    font-size: 40px;
  }

  .content-editor h5,
  .content-editor h6 {
    font-size: 32px;
  }

  .pic-text {
    gap: 60px;
  }

  .header-logo {
    width: 220px;
    height: 52px;
  }

  .header-menu__list > li > a {
    font-size: 16px;
  }

  .header-language a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .intro > .container {
    padding-top: 188px;
    padding-bottom: 80px;
  }

  .intro-title {
    font-size: 76px;
  }

  .home-intro > .container {
    padding-top: 188px;
    padding-bottom: 80px;
    min-height: 720px;
  }

  .home-intro__title {
    font-size: 112px;
  }

  .home-intro__subtitle {
    font-size: 32px;
  }

  .about > .container {
    gap: 60px;
  }
}

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

  .section {
    padding: 120px 0;
  }

  .section-top {
    margin-bottom: 52px;
  }

  .section-title {
    font-size: 52px;
  }

  .section-title::after {
    width: 80px;
  }

  .section-grid {
    gap: 20px;
  }

  .content-editor {
    --mb: 20px;
    font-size: 16px;
  }

  .content-editor.content-editor--big {
    font-size: 18px;
    line-height: 1.6;
  }

  .content-editor h1,
  .content-editor h2,
  .content-editor h3,
  .content-editor h4,
  .content-editor h5,
  .content-editor h6 {
    margin-bottom: 28px;
  }

  .content-editor h1,
  .content-editor h2 {
    margin-bottom: 36px;
    font-size: 52px;
  }

  .content-editor h1::after,
  .content-editor h2::after {
    width: 80px;
  }

  .content-editor h3,
  .content-editor h4 {
    font-size: 36px;
  }

  .content-editor h5,
  .content-editor h6 {
    font-size: 28px;
  }

  .content-editor ul li:not(:last-child),
  .content-editor ol li:not(:last-child) {
    margin-bottom: 8px;
  }

  .btn {
    width: 280px;
    height: 56px;
    font-size: 18px;
  }

  .form-title {
    font-size: 40px;
  }

  .file-area__text1 {
    gap: 10px;
  }

  .file-area__text1 > span {
    font-size: 18px;
  }

  .file-area__text1 > span:first-child {
    width: 18px;
    height: 18px;
  }

  .file-area__text2 {
    font-size: 11px;
  }

  .swiper-nav {
    padding-bottom: 12px;
  }

  .icon-cards__grid {
    gap: 20px;
  }

  .icon-card {
    margin-top: 40px;
  }

  .icon-card__img {
    margin: -40px auto 12px;
    width: 80px;
    height: 80px;
  }

  .icon-card__title {
    font-size: 18px;
  }

  .popup-content {
    max-width: 480px;
  }

  .popup-title {
    font-size: 40px;
  }

  .popup-title::after {
    width: 80px;
  }

  .header-top {
    height: 28px;
  }

  .header-item {
    font-size: 13px;
  }

  .header-bottom {
    padding: 12px 0;
  }

  .header-logo {
    width: 200px;
    height: 46px;
  }

  .prefooter > .container {
    gap: 80px;
  }

  .footer-top {
    gap: 5%;
  }

  .footer-info {
    width: 300px;
  }

  .footer-logo {
    width: 300px;
    height: 74px;
  }

  .footer-contacts {
    width: 300px;
  }

  .footer-contacts {
    width: 260px;
  }

  .intro > .container {
    padding-top: 168px;
    min-height: 460px;
  }

  .intro-title {
    font-size: 72px;
  }

  .stats {
    padding: 80px 0;
  }

  .stats-item__icon {
    width: 64px;
    height: 64px;
  }

  .stats-item__num {
    font-size: 40px;
  }

  .stats-item__text {
    font-size: 18px;
  }

  .partners.section {
    padding-bottom: 120px;
  }

  .contacts > .section-bg__text.section-bg__text--bottom {
    top: -0.14em;
    bottom: auto;
    left: auto;
    right: 0;
  }

  .contacts-form {
    width: 55%;
  }

  .home-intro > .container {
    padding-top: 168px;
    min-height: 620px;
  }

  .home-intro__content {
    width: 55%;
  }

  .home-intro__title {
    font-size: 100px;
  }

  .home-intro__subtitle {
    font-size: 28px;
  }

  .home-services__item-title {
    font-size: 36px;
  }

  .consult-content__top {
    margin-bottom: 48px;
  }

  .team-card__name {
    font-size: 24px;
  }

  .benefits > .container {
    gap: 40px;
  }

  .benefits-cards {
    gap: 20px;
  }

  .slr-contacts__form {
    width: calc(50% - 10px);
  }

  .course-card__title {
    padding: 0 20px 0.2em;
    bottom: 20px;
  }

  .page-404 {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1199.98px) {
  .container {
    padding: 0 20px;
  }

  ._decor {
    gap: 12px;
  }

  ._decor._decor--md {
    bottom: 30px;
    gap: 10px;
  }

  ._decor._decor--md::before,
  ._decor._decor--md::after {
    width: 20px;
  }

  ._decor::before,
  ._decor::after {
    width: 25px;
  }

  .form {
    padding: 48px;
  }

  .form-title {
    margin-bottom: 32px;
  }

  .pic-text {
    gap: 40px;
  }

  .icon-cards__grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .icon-card__title br {
    display: none;
  }

  .header-container {
    gap: 32px;
  }

  .header-menu__list {
    gap: 8px 20px;
  }

  .header-menu__list > li > a {
    font-size: 14px;
  }

  .prefooter > .container {
    gap: 40px;
  }

  .prefooter-form {
    width: 56%;
  }

  .footer-top {
    gap: 40px;
  }

  .footer-info {
    width: 260px;
  }

  .footer-logo {
    width: 260px;
    height: 60px;
  }

  .footer-logo:not(:last-child) {
    margin-bottom: 32px;
  }

  .footer-nav {
    gap: 20px;
  }

  .footer-contacts__list > li > a {
    gap: 8px;
    font-size: 16px;
  }

  .footer-contacts__list > li > a svg,
  .footer-contacts__list > li > a img {
    width: 14px;
    height: 14px;
  }

  .intro-bg::after {
    width: 75%;
  }

  .articles-grid .article-card__img {
    height: 260px;
  }

  .article-card__img {
    height: 300px;
  }

  .article-card__title {
    padding: 0 20px;
    bottom: 20px;
  }

  .article-card__content {
    padding: 24px 20px 28px;
  }

  .contacts.section {
    padding-bottom: 68px;
  }

  .contacts > .container {
    display: block;
  }

  .contacts-content {
    margin-bottom: 68px;
    padding: 0;
  }

  .contacts-items {
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 44px 40px;
  }

  .contacts-socials {
    padding: 0;
    border: none;
  }

  .contacts-form {
    margin: 0 auto;
    width: 80%;
  }

  .home-intro > .container {
    min-height: 680px;
  }

  .home-intro__bg::after {
    width: 75%;
  }

  .home-intro__content {
    width: 60%;
  }

  .about > .container {
    gap: 40px;
  }

  .home-services__body {
    gap: 20px;
  }

  .home-services__item-title {
    padding: 0 36px 28px;
    font-size: 32px;
  }

  .reviews-item {
    padding: 28px 28px 32px;
  }

  .benefits > .container {
    display: block;
  }

  .benefits-content {
    margin-bottom: 40px;
  }

  .benefits-cards {
    width: 100%;
  }

  .slr-contacts > .container {
    display: block;
  }

  .slr-contacts__content {
    margin-bottom: 52px;
  }

  .slr-contacts__content-top:not(:last-child) {
    margin-bottom: 32px;
  }

  .slr-contacts__form {
    margin: 0 auto;
    width: 80%;
  }

  .course-card__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 991.98px) {
  ._decor._decor--md {
    bottom: 25px;
    gap: 6px;
  }

  ._decor._decor--md::before,
  ._decor._decor--md::after {
    width: 15px;
  }

  .section {
    padding: 92px 0;
  }

  .section-bg__text {
    top: -0.1em;
    font-size: 18vw;
  }

  .section-bg__text.section-bg__text--bottom {
    bottom: -0.1em;
  }

  .section-bg__img {
    width: 70%;
  }

  .section-top {
    margin-bottom: 44px;
  }

  .section-title::after {
    bottom: -8px;
  }

  .section-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .section-bottom {
    margin-top: 40px;
  }

  .content-editor.content-editor--big {
    font-size: 16px;
  }

  .content-editor h1,
  .content-editor h2 {
    margin-top: 48px;
    margin-bottom: 28px;
  }

  .content-editor h1::after,
  .content-editor h2::after {
    bottom: -8px;
  }

  .content-editor h3,
  .content-editor h4,
  .content-editor h5,
  .content-editor h6 {
    margin-top: 48px;
    margin-bottom: 24px;
  }

  .file-area__content > ._added {
    padding-right: 44px;
  }

  .file-area__delete {
    width: 36px;
    height: 36px;
  }

  .pagination {
    margin-top: 48px;
  }

  .socials {
    gap: 20px;
  }

  .socials > li > a {
    width: 60px;
    height: 60px;
  }

  .swiper-nav {
    display: none;
  }

  .swiper .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px 10px;
  }

  .pic-text:not(:last-child) {
    margin-bottom: 60px;
  }

  .pic-text:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .pic-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .pic-text__img {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }

  .pic-text__img > ._decor {
    left: auto;
    right: 0;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }

  .pic-text__img > ._img {
    padding-bottom: 0;
    height: 420px;
  }

  .pic-text__content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 0;
  }

  .icon-card__title:not(:last-child) {
    margin-bottom: 12px;
  }

  .popup-content {
    padding: 28px;
  }

  .popup-title::after {
    bottom: -8px;
  }

  .popup-title:not(:last-child) {
    margin-bottom: 28px;
  }

  .header {
    position: fixed;
  }

  .header-top {
    display: none;
  }

  .header-container {
    gap: 20px;
  }

  .header-item {
    font-size: 20px;
  }

  .header-item svg,
  .header-item img {
    width: 18px;
    height: 18px;
  }

  .header-menu {
    padding: 160px 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transform: translate3d(105%, 0, 0);
    transform: translate3d(105%, 0, 0);
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px;
    color: var(--color-black);
    background-color: var(--color-white);
    will-change: transform;
  }

  .header-menu._active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  html._loaded .header-menu {
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition:
      transform 0.6s ease,
      -webkit-transform 0.6s ease;
  }

  .header-menu__list {
    padding: 4px 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 36px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .header-menu__list > li > a {
    font-size: 22px;
    font-weight: 600;
  }

  .header-menu__list > li > a::after {
    bottom: -6px;
    height: 2px;
    background-color: var(--color-black);
  }

  .header-menu__bottom {
    padding-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    border-top: 1px solid var(--color-main-50);
  }

  .header-contacts__mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
  }

  .header-burger {
    display: block;
  }

  .prefooter {
    padding: 92px 0 60px;
  }

  .prefooter > .container {
    display: block;
  }

  .prefooter-content {
    margin: 0 auto 44px;
    width: 85%;
    text-align: center;
  }

  .prefooter-title:not(:last-child) {
    margin-bottom: 24px;
  }

  .prefooter-form {
    margin: 0 auto;
    width: 85%;
  }

  .footer-top {
    padding: 60px 0 48px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0;
  }

  .footer-info {
    margin-bottom: 32px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px;
  }

  .footer-logo:not(:last-child) {
    margin: 0;
  }

  .footer-address {
    text-align: right;
  }

  .footer-nav {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 300px);
    flex: 0 0 calc(100% - 300px);
    width: calc(100% - 300px);
  }

  .footer-menu {
    text-align: left;
  }

  .footer-bottom {
    gap: 32px;
  }

  .footer-text {
    font-size: 12px;
  }

  .intro > .container {
    padding-top: 120px;
  }

  .intro-bg::after {
    width: 100%;
  }

  .intro-title {
    font-size: 68px;
  }

  .stats {
    padding: 64px 0;
  }

  .stats-body {
    width: 100%;
    gap: 20px;
  }

  .stats-item__icon {
    width: 56px;
    height: 56px;
  }

  .stats-item__num {
    font-size: 36px;
  }

  .stats-item__text {
    font-size: 16px;
  }

  .partners.section {
    padding-bottom: 100px;
  }

  .articles-slider.swiper {
    overflow: visible;
  }

  .articles-bottom {
    margin-top: 40px;
  }

  .contacts.section {
    padding-bottom: 52px;
  }

  .contacts > .section-bg__text.section-bg__text--bottom {
    top: -0.1em;
  }

  .contacts-content {
    margin-bottom: 52px;
  }

  .contacts-item {
    gap: 20px;
  }

  .contacts-item__icon {
    width: 60px;
    height: 60px;
  }

  .contacts-item__title {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .contacts-item__list > li {
    font-size: 16px;
  }

  .contacts-form {
    width: 100%;
  }

  .home-intro > .container {
    padding-top: 120px;
  }

  .home-intro__bg::after {
    width: 100%;
  }

  .home-intro__content {
    width: 80%;
  }

  .home-intro__title {
    font-size: 88px;
  }

  .home-intro__subtitle {
    font-size: 26px;
  }

  .about > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 44px;
  }

  .about-img {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 100%;
  }

  .about-img > ._decor {
    left: auto;
    right: 0;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }

  .about-img > ._img {
    padding-bottom: 0;
    height: 420px;
  }

  .about-content {
    display: contents;
  }

  .about-title.section-title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .about-title.section-title.section-title--mb:not(:last-child) {
    margin-bottom: 0;
  }

  .about-text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 0;
  }

  .about-btn {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    margin: 0 auto;
  }

  .home-services__item-title {
    padding: 0 24px 20px;
    font-size: 30px;
  }

  .consult-content {
    width: 85%;
  }

  .reviews-slider.swiper {
    overflow: visible;
  }

  .team-slider.swiper {
    overflow: visible;
  }

  .slr-contacts__form {
    width: 100%;
  }
}

@media screen and (max-width: 767.98px) {
  .section {
    padding: 68px 0;
  }

  .section-bg__text {
    top: 0;
  }

  .section-bg__text.section-bg__text--bottom {
    bottom: 0;
  }

  .section-title {
    font-size: 48px;
  }

  .section-bottom {
    margin-top: 32px;
  }

  .content-editor h1,
  .content-editor h2 {
    font-size: 48px;
  }

  .content-editor h3,
  .content-editor h4 {
    font-size: 32px;
  }

  .content-editor h5,
  .content-editor h6 {
    font-size: 24px;
  }

  .content-editor ul,
  .content-editor ol {
    padding: 0 0 0 8px;
  }

  .btn {
    width: 260px;
    height: 52px;
    font-size: 16px;
  }

  .form-title {
    font-size: 36px;
  }

  .breadcrumbs > span > span {
    padding-right: 28px;
    margin-right: 10px;
    font-size: 12px;
  }

  .breadcrumbs > span > span:after {
    width: 16px;
  }

  .pagination {
    font-size: 14px;
  }

  .pagination > .page-numbers {
    gap: 8px;
  }

  .pagination > .page-numbers > li > a,
  .pagination > .page-numbers > li > span {
    width: 30px;
    height: 30px;
  }

  .pic-text:not(:last-child) {
    margin-bottom: 48px;
  }

  .header-logo {
    width: 160px;
    height: 38px;
  }

  .header-menu {
    padding: 132px 20px 24px;
  }

  .header-menu__list {
    gap: 32px;
  }

  .header-menu__list > li > a {
    font-size: 20px;
  }

  .prefooter-content {
    width: 100%;
  }

  .prefooter-form {
    width: 100%;
  }

  .footer-top {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-info {
    display: contents;
  }

  .footer-logo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .footer-logo:not(:last-child) {
    margin-bottom: 44px;
  }

  .footer-logo img {
    -o-object-position: center center;
    object-position: center center;
  }

  .footer-address {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    text-align: center;
  }

  .footer-nav {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 44px;
    width: 100%;
    gap: 24px;
  }

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

  .footer-contacts {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-bottom: 32px;
    width: 100%;
    text-align: center;
  }

  .footer-socials.socials {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-bottom {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px 32px;
  }

  .footer-copy {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    text-align: center;
  }

  .footer-policy {
    margin: 0;
  }

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

  .intro > .container {
    min-height: 400px;
  }

  .stats-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px 20px;
  }

  .stats-item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: calc(50% - 20px);
  }

  .partners.section {
    padding-bottom: 88px;
  }

  .article-card__title {
    font-size: 24px;
  }

  .articles-bottom {
    margin-top: 32px;
  }

  .contacts > .section-bg__text.section-bg__text--bottom {
    top: 0;
  }

  .contacts-items {
    gap: 40px 30px;
  }

  .contacts-item {
    gap: 15px;
  }

  .home-intro > .container {
    min-height: 620px;
  }

  .home-intro__content {
    width: 100%;
  }

  .home-services__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .home-services__item > ._img {
    padding-bottom: 0;
    height: 380px;
  }

  .home-services__item-title {
    padding: 0 32px 28px;
  }

  .consult-content {
    width: 100%;
  }

  .reviews-item {
    padding: 24px 20px 28px;
  }

  .reviews-item__name {
    font-size: 24px;
  }

  .page-404 {
    padding: 0;
  }

  .page-404__inner {
    padding: 160px 0 120px;
    border-radius: 0;
  }

  .page-404__title {
    font-size: 35vw;
  }

  .page-404__btn {
    margin-top: 6vw;
  }
}

@media screen and (max-width: 700px) {
  .contacts-content {
    margin-bottom: 40px;
  }

  .contacts-items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contacts-socials {
    padding-top: 40px;
    border-top: 1px solid var(--color-main-50);
  }
}

@media screen and (max-width: 650px) {
  .section-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .icon-cards__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .benefits-content {
    margin-bottom: 32px;
  }

  .benefits-cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 575.98px) {
  .container {
    padding: 0 15px;
  }

  ._decor {
    bottom: 25px;
    gap: 6px;
  }

  ._decor::before,
  ._decor::after {
    width: 15px;
  }

  .section-title {
    font-size: 38px;
  }

  .section-title.section-title--mb:not(:last-child) {
    margin-bottom: 32px;
  }

  .content-editor {
    --mb: 16px;
    font-size: 14px;
    line-height: 1.7;
  }

  .content-editor.content-editor--sm,
  .content-editor.content-editor--big {
    font-size: 14px;
  }

  .content-editor h1,
  .content-editor h2,
  .content-editor h3,
  .content-editor h4,
  .content-editor h5,
  .content-editor h6 {
    margin-top: 36px;
    margin-bottom: 20px;
  }

  .content-editor h1,
  .content-editor h2 {
    margin-bottom: 24px;
    font-size: 38px;
  }

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

  .content-editor h5,
  .content-editor h6 {
    font-size: 22px;
  }

  .content-editor ul li:not(:last-child),
  .content-editor ol li:not(:last-child) {
    margin-bottom: 6px;
  }

  .content-editor ul > li {
    padding-left: 16px;
  }

  .content-editor ul > li::before {
    top: 0.6em;
    width: 6px;
    height: 6px;
  }

  .btn-close {
    width: 32px;
    height: 32px;
  }

  .form {
    padding: 36px 24px;
  }

  .form-title {
    margin-bottom: 28px;
    font-size: 32px;
  }

  .form-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .form-input {
    padding: 0 16px;
    height: 48px;
  }

  .form-input.form-input--ta {
    padding: 15px 16px;
  }

  .form-checkbox:not(:last-child) {
    margin-bottom: 24px;
  }

  .file-area__text1 {
    gap: 8px;
  }

  .file-area__text1 > span {
    font-size: 16px;
  }

  .file-area__text1 > span:first-child {
    width: 16px;
    height: 16px;
  }

  .file-area__text2 {
    font-size: 10px;
  }

  .file-area__title {
    font-size: 14px;
  }

  .file-area__filename {
    margin-top: 8px;
    font-size: 12px;
  }

  .radio-txt,
  .checkbox-txt {
    font-size: 11px;
  }

  .socials {
    gap: 15px;
  }

  .socials > li > a {
    width: 52px;
    height: 52px;
  }

  .swiper .swiper-pagination {
    margin: 36px auto 0;
    gap: 4px 8px;
  }

  .swiper .swiper-pagination > .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }

  .pic-text {
    gap: 32px;
  }

  .pic-text__img > ._img {
    padding-bottom: 88%;
    height: 0;
  }

  .icon-card {
    margin-top: 30px;
    padding: 0 15px 24px;
  }

  .icon-card__img {
    margin: -30px auto 12px;
    width: 60px;
    height: 60px;
  }

  .icon-card__title {
    font-size: 16px;
  }

  .popup-content {
    padding: 24px;
  }

  .popup-title {
    font-size: 36px;
  }

  .header-container {
    gap: 10px;
  }

  .header-item {
    font-size: 16px;
  }

  .header-item svg,
  .header-item img {
    width: 16px;
    height: 16px;
  }

  .header-bottom::before {
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
  }

  .header-logo {
    width: 140px;
    height: 32px;
  }

  .header-menu {
    padding: 108px 20px 24px;
    gap: 32px;
  }

  .header-menu__list {
    gap: 26px;
  }

  .header-menu__list > li > a {
    font-size: 18px;
  }

  .header-menu__bottom {
    padding-top: 32px;
    gap: 20px;
  }

  .header-socials {
    padding-top: 10px;
  }

  .header-socials.socials > li > a {
    width: 48px;
    height: 48px;
  }

  .header-contacts__mobile {
    gap: 10px;
  }

  .header-language .sub-menu {
    --top-gap: 10px;
  }

  .prefooter {
    padding: 72px 0 52px;
  }

  .prefooter-content {
    margin: 0 auto 36px;
  }

  .footer-top {
    padding: 52px 0 44px;
  }

  .footer-logo {
    width: 220px;
    height: 52px;
  }

  .footer-menu > li > a {
    font-size: 14px;
  }

  .footer-bottom {
    padding: 24px 0;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }

  .intro-title {
    font-size: 50px;
  }

  .stats-bg img {
    -o-object-position: 58% center;
    object-position: 58% center;
  }

  .stats-body {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -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: 52px;
  }

  .stats-item {
    width: 100%;
  }

  .stats-item__icon {
    margin: 0 auto 18px;
  }

  .stats-item__num {
    margin-bottom: 8px;
  }

  .partners.section {
    padding-bottom: 68px;
  }

  .articles-grid .article-card__img {
    height: 240px;
  }

  .article-card__img {
    height: 260px;
  }

  .article-card__title {
    padding: 0 15px;
  }

  .article-card__content {
    padding: 20px 15px 24px;
  }

  .contacts-item__icon {
    width: 52px;
    height: 52px;
  }

  .home-intro__title {
    font-size: 68px;
  }

  .home-intro__subtitle {
    margin-top: -4px;
    font-size: 24px;
  }

  .about > .container {
    gap: 32px;
  }

  .about-img > ._img {
    padding-bottom: 88%;
    height: 0;
  }

  .home-services__item > ._img {
    padding-bottom: 63%;
    height: 0;
  }

  .home-services__item-title {
    padding: 0 20px 20px;
    font-size: 24px;
  }

  .consult.section {
    padding: 76px 0;
  }

  .reviews-item {
    padding: 24px 15px;
  }

  .reviews-item__top {
    gap: 16px;
  }

  .reviews-item__icon {
    width: 48px;
    height: 48px;
  }

  .reviews-item__info {
    font-size: 14px;
  }

  .licenses-slider.swiper {
    overflow: visible;
  }

  .team-card__content {
    padding: 20px 15px;
  }

  .slr-contacts__content {
    margin-bottom: 40px;
  }

  .course-card__title {
    padding: 0 15px 0.2em;
    bottom: 15px;
  }

  .page-404__inner {
    padding: 148px 0 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (pointer: fine) {
  .content-editor a:hover {
    text-decoration: none;
  }

  .btn:hover::after {
    -webkit-transform: translate3d(-30%, -50%, 0) skew(-45deg);
    transform: translate3d(-30%, -50%, 0) skew(-45deg);
  }

  .btn-close:hover {
    background-color: var(--color-main);
  }

  .btn-close:hover::before,
  .btn-close:hover::after {
    background-color: var(--color-white);
  }

  .file-area:has(.file-input:hover) {
    background-color: var(--color-white-30);
  }

  .file-area__delete:hover {
    background-color: var(--color-white-50);
  }

  .checkbox-txt a:hover {
    text-decoration: none;
  }

  .breadcrumbs > span > span > a:hover {
    text-decoration: underline;
  }

  .pagination > .page-numbers > li > a:hover {
    color: var(--color-white);
    background-color: var(--color-main);
  }

  .socials.socials--light > li > a:hover {
    color: var(--color-main);
    background-color: var(--color-white);
  }

  .socials > li > a:hover {
    color: var(--color-white);
    background-color: var(--color-main);
  }

  .swiper-nav > .swiper-button-prev:hover,
  .swiper-nav > .swiper-button-next:hover {
    color: var(--color-white);
    background-color: var(--color-main);
  }

  .readmore-btn:hover {
    color: var(--color-accent);
  }

  .header-link:hover {
    color: var(--color-accent);
  }

  .header-menu__list > li > a:hover {
    opacity: 0.5;
  }

  .header-language .sub-menu > li > a:hover {
    color: var(--color-white);
    background-color: var(--color-main);
  }

  .footer-menu > li > a:hover {
    opacity: 0.5;
  }

  .footer-contacts__list > li > a:hover {
    opacity: 0.5;
  }

  .footer-text > a:hover {
    text-decoration: none;
  }

  .article-card__img:hover img {
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    transform: scale(1.12);
  }

  .article-card__link:hover {
    color: var(--color-accent);
  }

  .contacts-item__list > li > a:hover {
    color: var(--color-accent);
  }

  .home-services__item:has(> .home-services__link:hover) > ._img img {
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    transform: scale(1.12);
  }

  .licenses-item:hover > ._img img {
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    transform: scale(1.12);
  }

  .course-card:has(> .course-card__link:hover) > ._img img {
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    transform: scale(1.12);
  }
}
