:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif,
    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    'Liberation Mono', 'Courier New', monospace;
  --bs-gradient: linear-gradient(
    180deg,
    hsla(0, 0%, 100%, 0.15),
    hsla(0, 0%, 100%, 0)
  );
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

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

body {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  margin: 0;
  text-align: var(--bs-body-text-align);
}

hr {
  background-color: currentColor;
  border: 0;
  color: inherit;
  margin: 1rem 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  margin-top: 0;
}

abbr[data-bs-original-title],
abbr[title] {
  cursor: help;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  font-style: normal;
  line-height: inherit;
  margin-bottom: 1rem;
}

ol,
ul {
  padding-left: 2rem;
}

dl,
ol,
ul {
  margin-bottom: 1rem;
  margin-top: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  background-color: #fcf8e3;
  padding: 0.2em;
}

sub,
sup {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}

a:hover {
  color: #0a58ca;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  direction: ltr;
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  font-size: 0.875em;
  margin-bottom: 1rem;
  margin-top: 0;
  overflow: auto;
}

pre code {
  color: inherit;
  font-size: inherit;
  word-break: normal;
}

code {
  word-wrap: break-word;
  color: #d63384;
  font-size: 0.875em;
}

a > code {
  color: inherit;
}

kbd {
  background-color: #212529;
  border-radius: 0.2rem;
  color: #fff;
  font-size: 0.875em;
  padding: 0.2rem 0.4rem;
}

kbd kbd {
  font-size: 1em;
  font-weight: 700;
  padding: 0;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  caption-side: bottom;
}

caption {
  color: #6c757d;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border: 0 solid;
  border-color: inherit;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button,
select {
  text-transform: none;
}

[role='button'] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

[type='button'],
[type='reset'],
[type='submit'],
button {
  -webkit-appearance: button;
}

[type='button']:not(:disabled),
[type='reset']:not(:disabled),
[type='submit']:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

textarea {
  resize: vertical;
}

fieldset {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

legend {
  float: left;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
  margin-bottom: 0.5rem;
  padding: 0;
  width: 100%;
}

legend + * {
  clear: left;
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  cursor: pointer;
  display: list-item;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

::-webkit-input-placeholder {
  color: #666;
}

::-moz-placeholder {
  color: #666;
}

:-ms-input-placeholder {
  color: #666;
}

::-ms-input-placeholder {
  color: #666;
}

::placeholder {
  color: #666;
}

::-moz-selection {
  background-color: #ff4040;
  color: #fff;
}

::selection {
  background-color: #ff4040;
  color: #fff;
}

input,
textarea {
  outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
  border-color: red;
}

input:required:valid,
textarea:required:valid {
  border-color: green;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000;
  font-family: Nunito, sans-serif;
  font-size: 1.6rem;
  height: 100%;
  line-height: 1.44;
  min-width: 320px;
  overflow-x: hidden;
  position: relative;
}

body.lock {
  padding-right: 17px;
}

body.lock,
body.lock-mobile {
  overflow: hidden;
}

body.fade:after {
  background-color: rgba(65, 65, 65, 0.4);
  opacity: 1;
  z-index: 50;
}

:root {
  scroll-behavior: auto;
}

html {
  font-size: 10px;
  height: 100%;
  scroll-behavior: auto;
}

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

main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding-top: 12.9rem;
}

footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #002a36;
  /* background-color: #fff; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 12.9rem;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.header .container-1762 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.header .c-btn {
  height: 4.4rem;
  max-width: 18.1rem;
  width: 100%;
}

.header__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  top: 0.5rem;
}

.header__meta {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-flex: 0;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  gap: 4rem;
  margin-left: 16rem;
  max-width: 40.5rem;
  width: 100%;
}

.header__phone {
  color: #fff;
  /* color: #1f2922; */
  display: inline-block;
  font-family: Montserrat;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 2.3rem;
}

.header__phone:before {
  background: url(../images/dist/header_phone.svg) 50% / cover no-repeat;
  content: '';
  display: inline-block;
  height: 1.8rem;
  margin-right: 1rem;
  position: relative;
  top: 3px;
  width: 1.8rem;
}

.header__phone:hover {
  /* color: #ff4040; */
}

.header__menu {
  margin-left: 13.2rem;
  margin-right: auto;
}

.header__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__menu ul li {
  margin-right: 3.8rem;
}

.header__menu ul li:last-of-type {
  margin-right: 0;
}

.header__menu ul li a {
  color: #fff;
  /* color: #1f2922; */
  font-family: Montserrat, sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 2.1rem;
}
.header__menu .menu-lvl-2 ul li a {
  color: #fff;
}
.header__menu ul li a:hover {
  color: #ff4040;
}

.header__menu ul li.has-lvl-2 {
  position: relative;
}

.header__menu ul li.has-lvl-2:after {
  background-color: #ff4040;
  background-color: #ff4040;
  content: '';
  height: 4px;
  position: absolute;
  right: -1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4px;
}

.header__menu ul li.has-lvl-2:hover .menu-lvl-2 {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.menu-lvl-2 {
  background-color: #ff4040;
  left: -2rem;
  opacity: 0;
  padding: 2rem;
  position: absolute;
  top: 100%;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  visibility: hidden;
  width: 30rem;
  z-index: -1;
  background: #ff4040;
}

.menu-lvl-2:after {
  content: '';
  height: 2rem;
  left: 0;
  position: absolute;
  top: -1rem;
  width: 100%;
}

.menu-lvl-2 ul {
  display: block;
  font-size: 1.6rem;
}

.menu-lvl-2 ul li {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.menu-lvl-2 ul li:last-of-type {
  margin-bottom: 0;
}

.menu-lvl-2 ul li a {
  font-size: 1.4rem;
}

.menu-lvl-2 ul li a:hover {
  color: #fff;
  opacity: 0.8;
}

.header__social .social-block {
  gap: 5px;
  margin-right: -1.3rem;
}

.social-block {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social-block__item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
  height: 4rem;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 4rem;
}

.social-block__item:hover {
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}

.social-block__item.--vk {
  background-image: url(../images/dist/vk_icon.svg);
  background-size: 18px 18px;
}

.social-block__item.--youtube {
  background-image: url(../images/dist/youtube_icon.svg);
  background-size: 21px 18px;
}

.social-block__item.--whatsapp {
  background-image: url(../images/dist/whatsapp_icon.svg);
  background-size: 18px 18px;
}

.social-block__item.--telegram {
  background-image: url(../images/dist/telegram_icon.svg);
  background-size: 18px 18px;
}

.header-mobile {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
  left: 0;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
  z-index: 9999;
}

.header-mobile__logo {
  padding-top: 2px;
}

.header-mobile__logo img {
  max-width: 120px;
}

.header-mobile.active {
  background-color: #f8f8f8;
}

.header-mobile__cnt {
  width: 100%;
}

.header-mobile__meta {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: center;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
}

.header-mobile__meta-icons {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-mobile__burger {
  background: url(../images/dist/burger.svg) 100% 50%/24px 19px no-repeat;
  cursor: pointer;
  height: 40px;
  margin-left: 5px;
  width: 35px;
}

.header-mobile__call,
.header-mobile__search-icon {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  justify-content: center;
  margin-left: 5px;
  width: 35px;
}

.header-mobile__burger.active {
  background: url(../images/dist/burger_close.svg) 90% 50%/30px 23px no-repeat;
  display: block;
}

.header-mobile-menu {
  background-color: #fff;
  height: calc(100vh - 60px);
  left: 0;
  left: -100%;
  opacity: 0;
  overflow: scroll;
  padding-bottom: 60px;
  position: fixed;
  top: 60px;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  visibility: hidden;
  width: 100%;
  z-index: 999;
  z-index: -1;
}

.header-mobile-menu .header-mobile-menu__list {
  list-style: none;
  margin: 60px 0 0;
  overflow: scroll;
  padding: 0 40px;
  text-align: left;
}

.header-mobile-menu .header-mobile-menu__list li {
  margin-bottom: 20px;
}

.header-mobile-menu .header-mobile-menu__list li a {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  text-transform: none;
}

.header-mobile-menu .header-mobile-menu__list .menu-lvl-2 {
  background-color: transparent;
  left: 0;
  margin-top: 15px;
  opacity: 1;
  padding: 0;
  position: relative;
  top: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  visibility: visible;
  width: 100%;
  z-index: 1;
}

.header-mobile-menu .header-mobile-menu__list .menu-lvl-2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-mobile-menu .header-mobile-menu__list .menu-lvl-2 ul li {
  margin-bottom: 8px;
}

.header-mobile-menu .header-mobile-menu__list .menu-lvl-2 ul li a {
  font-size: 15px;
}

.header-mobile-menu .header-mobile-menu__list .menu-lvl-2:after {
  display: none;
}

.header-mobile-menu .header-mobile-menu__list li.active a {
  font-weight: 700;
}

.header-mobile-menu .header-mobile-center {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 7vh;
  padding: 0 40px;
  text-align: left;
}

.header-mobile-menu .header__phone {
  color: #000;
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-top: 2vh;
}

.header-mobile-menu .header__phone:first-of-type {
  font-size: 24px;
}

.header-mobile-menu .header__phone:before {
  display: none;
}

.header-mobile-menu .social-block {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  gap: 10px;
  justify-content: flex-start;
  margin-left: -8px;
  margin-right: 0;
  margin-top: 2vh;
  padding: 0;
}

.header-mobile-menu .social-block__item.--vk {
  background-image: url(../images/dist/vk_icon_red.svg);
  background-size: 70%;
}

.header-mobile-menu .social-block__item.--youtube {
  background-image: url(../images/dist/youtube_icon_red.svg);
  background-size: 70%;
}

.header-mobile-menu .social-block__item.--whatsapp {
  background-image: url(../images/dist/whatsapp_icon_red.svg);
  background-size: 70%;
}

.header-mobile-menu .social-block__item.--telegram {
  background-image: url(../images/dist/telegram_icon_red.svg);
  background-size: 70%;
}

.header-mobile-menu.scroll {
  height: calc(100vh - 60px);
  top: 60px;
}

.header-mobile-menu.active {
  left: 0;
  opacity: 1;
  visibility: visible;
  z-index: 999;
}

.header-mobile__btns {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  justify-content: space-between;
  padding: 13px 40px;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.header-mobile__btns .c-btn {
  font-size: 12px;
  max-width: 100%;
  min-height: 32px;
  width: 100%;
}

.header-mobile__btns.disabled {
  display: none;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

input[type='search']::-ms-clear {
  display: none;
  height: 0;
  width: 0;
}

input[type='search']::-ms-reveal {
  display: none;
  height: 0;
  width: 0;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  display: none;
}

*,
button {
  outline: none;
}

.c-input,
.c-textarea {
  background-color: transparent;
  border: none;
  color: #000;
  font-size: 1.7rem;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}

.c-textarea {
  padding: 1.6rem 2.4rem;
  resize: none;
}

.c-input::-webkit-input-placeholder,
.c-textarea::-webkit-input-placeholder {
  color: #6d6d6d;
}

.c-input::-moz-placeholder,
.c-textarea::-moz-placeholder {
  color: #6d6d6d;
  opacity: 1;
}

.c-input:-ms-input-placeholder,
.c-textarea:-ms-input-placeholder {
  color: #6d6d6d;
}

.c-input:-moz-placeholder,
.c-textarea:-moz-placeholder {
  color: #6d6d6d;
  opacity: 1;
}

.link {
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.5rem;
  position: relative;
}

.link:hover {
  color: #ff4040;
}

.link:after {
  background: #434343;
  bottom: 0;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.link:hover:after {
  width: 0;
}

.h2 {
  color: #1f2922;
  font-family: Montserrat;
  font-size: 3.8rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.21;
}

.h2.--white {
  color: #fff;
}

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

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

a:hover {
  color: #000;
}

.container-1762 {
  margin: 0 auto;
  max-width: 1842px;
  padding-left: 40px;
  padding-right: 40px;
}

.container-1286 {
  margin: 0 auto;
  max-width: 1366px;
  padding-left: 40px;
  padding-right: 40px;
}

.container-1158 {
  margin: 0 auto;
  max-width: 1238px;
  padding-left: 40px;
  padding-right: 40px;
}

.container-1543,
.our-clients__slider.owl-carousel {
  margin: 0 auto;
  max-width: 1683px;
  padding-left: 40px;
  padding-right: 40px;
}

.container-1468 {
  margin: 0 auto;
  max-width: 1548px;
  padding-left: 40px;
  padding-right: 40px;
}

.container {
  margin: 0 auto;
  max-width: 1520px;
  padding-left: 40px;
  padding-right: 40px;
}

.c-btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  background-color: #ff4040;
  border: 1.5px solid transparent;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: normal;
  line-height: 2.2rem;
  padding: 0;
  text-shadow: none;
  text-transform: none;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  border-radius: 4px;
  background: #ff4040;
}

.c-btn:hover {
  background-color: #83c4ad;
  background-color: #ee3131;;
  color: #fff;
}

.hero {
  background-color: #00232d;
  display: block;
  height: 72.7rem;
  margin-bottom: 7.8rem;
  margin-top: -12.9rem;
}

.hero-slider {
  height: 100%;
  position: relative;
}

.hero-slider__span {
  margin-bottom: 1.5rem;
}

.hero-slider__span span {
  color: #fff;
  display: inline-block;
  font-family: Montserrat;
  font-size: 3rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.23;
  position: relative;
}

.hero-slider__span span:after {
  background-color: #ff4040;
  content: '';
  height: 15px;
  position: absolute;
  right: -25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 15px;
}

.hero-slider__text {
  max-width: 100%;
  padding-left: 16.8rem;
}

.hero-slider__text h1,
.hero-slider__text h2 {
  color: #dedede;
  /* font-family: Montserrat; */
  font-size: 7rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.14;
  text-transform: uppercase;
}
.hero-slider__text h2 p {
  /* font-size: 3.5rem; */
  /*  margin-bottom: 2rem; */
}
.hero-slider__text h1 span,
.hero-slider__text h2 span {
  color: #fff;
}

.hero-slider__slide,
.hero-slider__slide-item {
  height: 100%;
  width: 100%;
}

.hero-slider__slide-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  /* padding-left: 27.8rem; */
  padding-top: 10.8rem;
}

.hero-slider__slide-wrap {
  margin: 0 auto;
  max-width: 1366px;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
}

.hero-slider .swiper-pagination-bullet {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0;
  background: #d9d9d9;
  opacity: 1;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.hero-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ff4040;
}

.swiper-container-horizontal.hero-slider > .swiper-pagination-bullets {
  bottom: 4.5rem;
}

.swiper-container-horizontal.hero-slider
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 0.9rem;
}

.category-links {
  display: block;
  margin-bottom: 9.3rem;
}

.category-links__grid {
  -ms-grid-columns: 1fr 5.6rem 1fr 5.6rem 1fr;
  -ms-grid-rows: auto;
  display: -ms-grid;
  display: grid;
  gap: 5.6rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  max-width: 1465px;
  margin: 0 auto;
}

.category-links__grid > :first-child {
  -ms-grid-column: 1;
  -ms-grid-row: 1;
}

.category-links__grid > :nth-child(2) {
  -ms-grid-column: 3;
  -ms-grid-row: 1;
}

.category-links__grid > :nth-child(3) {
  -ms-grid-column: 5;
  -ms-grid-row: 1;
}

.category-links__item {
  background-color: #fbfbfb;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: relative;
  box-shadow: 0px 4px 30px 0px rgba(166, 166, 166, 0.3);
  max-width: 698px;
}

.category-links__item:hover img {
  transform: scale(1.06);
}

/* .category-links__item:after {
  border-radius: 5px;
  border-bottom-right-radius: 0;
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  border-top-left-radius: 0;
  content: "";
  height: 5.4rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 5.4rem;
}

.category-links__item:before {
  border-bottom: 2px solid #000;
  border-radius: 5px;
  border-bottom-left-radius: 0;
  border-right: 2px solid #000;
  border-top-right-radius: 0;
  bottom: 0;
  content: "";
  height: 5.4rem;
  position: absolute;
  right: 0;
  width: 5.4rem;
} */

.category-links__item:hover .category-links__item-body-litle {
  color: #ff4040;
}

.category-links__item:hover .category-links__item-photo:after {
  /* background: #ff4040;
  width: 100%; */
}

.category-links__item.--links:hover .category-links__item-body-litle {
  color: inherit;
}

.category-links__item.--links:hover .category-links__item-photo:after {
  /* background: #004659;
  width: 19px; */
}

.category-links__item-photo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}

.category-links__item-photo:after {
  /* background: #004659;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.85;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 19px; */
}

.category-links__item-photo img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 218px;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transform-origin: center;
  will-change: transform;
}

.category-links__item-body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  padding: 2.7rem 3rem 2.7rem 4.2rem;
  position: relative;
  z-index: 2;
}

.category-links__item-body-litle {
  font-family: Montserrat;
  font-family: Nunito, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 3.4rem;
  text-transform: uppercase;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.category-links__item-body-text p {
  margin-bottom: 0;
  max-width: 16.4rem;
  max-width: 27rem;
}

.category-links__item-body-text a {
  display: block;
}

.category-links__item-body-text a:hover {
  color: #ff4040;
}

.about-company {
  background: url(../images/dist/about_bg.png) 50%/1158px 562px no-repeat;
  /* background: url(../images/new/about_comp.png) 50%/1920px 588px no-repeat; */
  background-color: #053744;
  display: block;
  padding-bottom: 6.2rem;
  padding-top: 6.2rem;
}

.about-company .c-btn {
  height: 4.5rem;
  margin-top: 5rem;
  max-width: 18.1rem;
  width: 100%;
  border-radius: 4px;
  background: #ff4040;
}

.about-company__wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding-left: 6.3rem;
  padding-right: 13rem;
}

.about-company__text {
  margin-top: 6.3rem;
  max-width: 37.6rem;
  width: 100%;
}

.about-company__text p {
  color: #fff;
  /* color: #1f2922; */
  font-size: 2rem;
  line-height: 1.35;
  margin-top: 3.6rem;
}

.about-company__items {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4.4rem;
  justify-content: space-between;
  max-width: 63.2rem;
  width: 100%;
}

.about-company__item {
  cursor: pointer;
  height: 21rem;
  max-width: 29.4rem;
  padding-top: 4.3rem;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.about-company__item:hover .about-company__item-front-back {
  -webkit-transform: rotateY(1turn);
  transform: rotateY(1turn);
}

.about-company__item:hover .about-company__item-front {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.about-company__item-front,
.about-company__item-front-back {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  align-items: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: rgba(0, 70, 89, 0.85);
  /* background: #fff; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  width: 100%;
  border-radius: 4px;
}

.about-company__item-front-back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.about-company__item-hover {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ff4040;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  left: 0;
  padding: 1.5rem 1.6rem;
  position: absolute;
  top: 0;
  width: 100%;
  border-radius: 4px;
  background: #ff4040;
}

.about-company__item-hover p {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.3571428571;
  margin-bottom: 0;
}

.about-company__item-icon {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
  min-height: 5.9rem;
}

.about-company__item-span {
  color: #fff;
  /* color: #1f2922; */
  font-family: Montserrat;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.our-courses,
.our-projects {
  background-color: #f4f4f4;
  padding-bottom: 7.8rem;
  padding-top: 11.8rem;
}

.our-projects-tab-header,
.reviews-tab-header {
  padding-bottom: 7.8rem;
  padding-top: 4.6rem;
}

.our-courses {
  background-color: #fff;
  padding-bottom: 0;
  padding-top: 6.7rem;
}

.our-courses__header,
.our-projects__header,
.reviews__header {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-bottom: 4.7rem;
  padding-left: 6.1rem;
  padding-right: 25.5rem;
}

.our-courses__header .h2,
.our-projects__header .h2,
.reviews__header .h2 {
  margin-bottom: 0;
}

.our-courses__header {
  margin-bottom: 6.9rem;
}

.owl-nav-custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
}

.owl-custom-next,
.owl-custom-prev {
  background-color: #fff;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 50%;
  cursor: pointer;
  height: 5.7rem;
  width: 5.7rem;
}

.owl-custom-prev {
  background-image: url(../images/dist/slider_custom_arrow_left.svg);
  background-size: 14px 9px;
}

.owl-custom-next {
  background-image: url(../images/dist/slider_custom_arrow_right.svg);
  background-size: 14px 9px;
}

.our-courses-slider.owl-carousel img,
.our-projects-slider.owl-carousel img {
  /* -webkit-filter: grayscale(100%);
  filter: grayscale(100%); */
  height: 337px;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 429px;
  border-radius: 5px;
}

.our-courses-slider.owl-carousel .our-courses-slider__item-desc-logo img,
.our-courses-slider.owl-carousel .our-projects-slider__item-desc-logo img,
.our-projects-slider.owl-carousel .our-courses-slider__item-desc-logo img,
.our-projects-slider.owl-carousel .our-projects-slider__item-desc-logo img {
  -webkit-filter: none;
  filter: none;
  height: auto;
  -o-object-fit: none;
  object-fit: none;
  width: auto;
}

.our-courses-slider.owl-carousel .owl-item img {
  -webkit-filter: none;
  filter: none;
  width: 100%;
}

.our-courses-slider.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.our-courses-slider.owl-carousel .owl-stage-outer:after {
  background-color: #fff;
  content: '';
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  width: 100%;
}

.our-courses-slider__item-desc-date {
  color: #fff;
  font-family: Montserrat;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.our-courses-slider__item-desc-logo img {
  -webkit-filter: none;
  filter: none;
  height: auto;
  -o-object-fit: none;
  object-fit: none;
  width: auto;
}

.our-courses-slider__item,
.our-projects-slider__item {
  position: relative;
}

.our-courses-slider__item:after,
.our-projects-slider__item:after {
  background-color: rgba(0, 70, 89, 0.15);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.our-courses-slider__item:hover img,
.our-projects-slider__item:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.our-courses-slider__item:hover .our-projects-slider__item-desc,
.our-projects-slider__item:hover .our-projects-slider__item-desc {
  bottom: 3.3rem;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.our-courses-slider__item:hover .our-courses-slider__item-desc-arrow {
  -webkit-transform: translateY(-50%) translateX(8px);
  -ms-transform: translateY(-50%) translateX(8px);
  transform: translateY(-50%) translateX(8px);
}

.our-courses-slider__item-desc,
.our-projects-slider__item-desc {
  background-color: #ff4040;
  bottom: 3.3rem;
  bottom: -30px;
  left: 7.3rem;
  max-width: 25.6rem;
  opacity: 0;
  padding: 2.5rem;
  position: absolute;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  visibility: hidden;
  width: 100%;
  z-index: -1;
  border-radius: 4px;
  background: #ff4040;
  color: #000;
}

.our-courses-slider__item-desc {
  bottom: 0;
  bottom: 2.3rem;
  left: auto;
  opacity: 1;
  right: 2rem;
  visibility: visible;
  z-index: 2;
}

.our-courses-slider__item-desc-logo,
.our-projects-slider__item-desc-logo {
  margin-bottom: 0.6rem;
}

.our-courses-slider__item-desc-text,
.our-projects-slider__item-desc-text {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2142857143;
  max-width: 16.8rem;
}
.our-projects-slider__item-desc-text span {
  color: #fff;
}
.our-projects-slider__item-desc-logo {
  display: none;
}

.our-courses-slider__item-desc-text {
  font-weight: 400;
  max-width: 18.4rem;
}

.our-courses-slider__item-desc-arrow,
.our-projects-slider__item-desc-arrow {
  background: url(../images/dist/arrow_desc.svg) 50%/14px 9px no-repeat;
  height: 3rem;
  position: absolute;
  right: 1.7rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 3rem;
}

.our-courses-slider__item-desc-arrow {
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.our-clients {
  padding-bottom: 7.5rem;
  padding-top: 8.9rem;
}

.our-clients-tab-header {
  background-color: #f4f4f4;
  padding-bottom: 7rem;
  padding-top: 4.6rem;
}

.owl-nav__our-clients .owl-custom-next,
.owl-nav__our-clients .owl-custom-prev,
.owl-nav__our-courses .owl-custom-next,
.owl-nav__our-courses .owl-custom-prev {
  background-color: #f4f4f4;
}

.our-clients__slider.owl-carousel {
  left: -3rem;
  margin-top: 9.5rem;
  position: relative;
}

.our-clients__slider.owl-carousel img {
  -webkit-filter: saturate(0) opacity(0.15);
  filter: saturate(0) opacity(0.15);
  max-height: 105px;
  max-width: 173px;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.our-clients__slider.owl-carousel .owl-item img {
  width: auto;
}

.our-clients__slider-item,
.our-clients__slider.owl-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.our-clients__slider-item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  cursor: pointer;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 23rem;
}

.our-clients__slider-item:hover img {
  -webkit-filter: none;
  filter: none;
}

.footer-form {
  background: url(../images/dist/footer_form_bg.jpg) 50% / cover no-repeat;
}

.footer-form .c-input {
  background-color: #fff;
  height: 6.8rem;
  max-width: 100%;
  width: 50%;
}

.footer-form .c-textarea {
  background-color: #fff;
  height: 18rem;
  width: 100%;
}

.footer-form__wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  padding-bottom: 6.2rem;
  padding-top: 9.8rem;
  gap: 4.2rem;
}

.footer-form__text {
  max-width: 37.8rem;
  padding-top: 8.9rem;
  width: 100%;
}

.footer-form__text h4 {
  color: #ff4040;
  color: #1f2922;
  font-size: 2rem;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 6rem;
  /* text-transform: uppercase; */
}

.footer-form__text p {
  font-size: 2rem;
  line-height: 1.3529411765;
  margin-bottom: 2.4rem;
}

.footer-form__form {
  max-width: 94.2rem;
  width: 100%;
}

.footer-form__form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-form__form-row.--last {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  justify-content: space-between;
  margin-top: 2.4rem;
}

.footer-form__form-row.--last p {
  color: #6d6d6d;
  font-family: Montserrat;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2142857143;
  margin: 0 auto;
  margin-bottom: 0;
}

.footer-form__form-row.--last p a {
  color: #ff4040;
  text-decoration: underline;
  /* color: #6d6d6d; */
}

.footer-form__form-row.--last .c-btn {
  height: 4.5rem;
  max-width: 18.1rem;
  border-radius: 4px;
  width: 100%;
  background: #ff4040;
}

.select-box {
  display: block;
  font-size: 1.7rem;
  position: relative;
  width: 50%;
}

.select-box__current {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border: none;
  border-radius: 0;
  color: #363636;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.7rem;
  font-weight: 400;
  height: 6.8rem;
  outline: none;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  position: relative;
}

.select-box__current:focus + .select-box__list {
  -webkit-animation-name: none;
  animation-name: none;
  opacity: 1;
}

.select-box__current:focus + .select-box__list .select-box__option {
  cursor: pointer;
}

.select-box__current:focus .select-box__icon {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.select-box__icon {
  position: absolute;
  right: 2.3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  width: 1.7rem;
}

.select-box__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.select-box__value:first-of-type .select-box__input-text {
  color: #6d6d6d;
}

.select-box__input {
  display: none;
}

.select-box__input:checked + .select-box__input-text {
  display: block;
}

.select-box__input-text {
  background-color: #fff;
  display: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.select-box__list {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  -webkit-animation-duration: 0.1s;
  animation-duration: 0.1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: HideList;
  animation-name: HideList;
  -webkit-animation-timing-function: step-start;
  animation-timing-function: step-start;
  background-color: #fff;
  border: none;
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  font-size: 1.7rem;
  list-style: none;
  opacity: 0;
  padding: 1em 0 1rem;
  position: absolute;
  width: 100%;
}

.select-box__option {
  background-color: #fff;
  display: block;
  padding: 1rem 2.4rem;
}

.select-box__option:focus,
.select-box__option:hover {
  background-color: #fbfbfb;
  color: #363636;
}

@-webkit-keyframes HideList {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 1;
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
}

@keyframes HideList {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 1;
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
}

.page-info {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-position: 50%;
  background-position: 80%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -12.9rem;
  min-height: 70rem;
  min-height: 44.2rem;
  padding-top: 12.9rem;
  width: 100%;
}

.page-info .container-1158 {
  padding-bottom: 3.2rem;
  width: 100%;
}

.page-info h1 {
  color: #fff;
  /* font-family: Montserrat; */
  font-size: 7rem;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.7rem;
  text-transform: uppercase;
}

.page-info p {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.35;
  margin-bottom: 0;
  max-width: 75.3rem;
  font-weight: 300;
  position: relative;
}

.page-info p:after {
  /* background-color: #ff4040;
  background-color: #ff4040;
  content: "";
  height: 1.5rem;
  left: -2.7rem;
  position: absolute;
  top: 0.6rem;
  width: 1.5rem; */
}

.links-pages {
  background-color: #f4f4f4;
  padding: 8.4rem 0;
}

.links-pages__href-more {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin-bottom: -2rem;
  margin-top: 5.6rem;
}

.links-pages__href-more a {
  font-size: 1.6rem;
  line-height: 1.2;
}

.links-pages__grid {
  -ms-grid-columns: 1fr 4.4rem 1fr 4.4rem 1fr;
  -ms-grid-rows: auto;
  display: -ms-grid;
  display: grid;
  gap: 5rem 4.4rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}

.links-pages__grid > :first-child {
  -ms-grid-column: 1;
  -ms-grid-row: 1;
}

.links-pages__grid > :nth-child(2) {
  -ms-grid-column: 3;
  -ms-grid-row: 1;
}

.links-pages__grid > :nth-child(3) {
  -ms-grid-column: 5;
  -ms-grid-row: 1;
}

.links-pages__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.links-pages__item:hover .links-pages__item-text {
  color: #000;
}

.links-pages__item:hover .links-pages__item-photo:after {
  width: 100%;
}

.links-pages__item-photo {
  position: relative;
}

.links-pages__item-photo img {
  height: 128px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 358px;
}

.links-pages__item-photo:after {
  background-color: #ff4040;
  content: '';
  height: 100%;
  left: 0;
  opacity: 0.85;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 0;
}

.links-pages__item-text {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  background-color: #fff;
  color: #1f2922;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* font-family: Montserrat; */
  font-size: 2rem;
  font-weight: 600;
  height: 100%;
  justify-content: center;
  line-height: 1.2;
  padding: 3rem 0;
  text-align: center;
  /* text-transform: uppercase; */
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.subtitles {
  padding-top: 9.6rem;
}

.subtitles .c-btn {
  height: 4.5rem;
  margin-top: 4rem;
  max-width: 18.1rem;
  width: 100%;
}
.subtitles .c-btn.--only-desktop {
  margin: 0 auto;
}
.subtitles ol,
.subtitles ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.2rem;
}

.subtitles ol li,
.subtitles ul li {
  margin-bottom: 0.7rem;
  position: relative;
}

.subtitles ol li:after,
.subtitles ul li:after {
  background: #ff4040;
  border-radius: 50%;
  content: '';
  height: 12px;
  left: -2rem;
  position: absolute;
  top: 0.5rem;
  width: 12px;
}

.subtitles__item {
  margin-bottom: 4rem;
}

.subtitles__item:last-of-type {
  margin-bottom: 8rem;
}

.subtitles__header {
  margin-top: 3.7rem;
}

.subtitles__header h2 {
  color: #1f2922;
  font-family: Montserrat, sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2105263158;
  margin-bottom: 2.2rem;
}

.subtitles__body-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.subtitles__body-left {
  max-width: 55.5rem;
  width: 100%;
}

.subtitles__body-text {
  margin-bottom: 2.3rem;
}

.subtitles__body-right {
  padding-left: 7.2rem;
  max-width: 55.5rem;
}

.subtitles__body-right h3 {
  color: #000;
  /* font-family: Montserrat, sans-serif; */
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.4rem;
  max-width: 50.9rem;
  /* text-transform: uppercase; */
}

.subtitles__body-right p {
  /*  margin-top: 1rem; */
  max-width: 50.9rem;
  padding-left: 1.2rem;
}

.subtitles__body-right span {
  color: #ff4040;
}

.subtitles__item.--synchronous .c-btn {
  margin-top: 5.6rem;
}

.subtitles__item.--synchronous .subtitles__body-right p {
  margin-top: 0;
  padding-left: 0;
}

.about-page__info {
  background-color: #f4f4f4;
  padding-bottom: 9.3rem;
  padding-top: 8.4rem;
}

.about-page__info-wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-page__info-photo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.about-page__info-photo img {
  height: 569px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 208px;
}

.about-page__info-text {
  padding-left: 11.5rem;
  padding-right: 14.7rem;
  padding-top: 1rem;
}

.about-page__info-text .h2 {
  margin-bottom: 2.1rem;
}

.faq {
  background-color: #053744;
  color: #fff;
  padding: 8.7rem 0 3.3rem;
}

.faq__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.5rem;
  margin-top: 6.1rem;
}

.faq__flex-left,
.faq__flex-right {
  max-width: 55.1rem;
  width: 100%;
}

.faq__item {
  margin-bottom: 2.9rem;
  max-width: 55.1rem;
  position: relative;
}

.faq__item:before {
  background-color: #f4f4f4;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  top: -1.7rem;
  width: 100%;
}

.faq__item-header {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding-right: 0.5rem;
}

.faq__item-header-h4 {
  font-family: Montserrat;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.faq__item-header-arrow {
  background: url(../images/dist/faq_arrow.svg) 50%/2rem no-repeat;
  cursor: pointer;
  height: 2rem;
  margin-left: 3rem;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  width: 2rem;
  flex: 0 0 auto;
}

.faq__item-header-arrow.active {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq__item-body {
  -webkit-animation: fadein 1s;
  animation: fadein 1s;
  display: none;
}

.faq__item-body p {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.35;
  margin: 0;
  padding-bottom: 10px;
}

.faq__item-body.active {
  -webkit-animation: fadein 1s;
  animation: fadein 1s;
  display: block;
}

.about-page__text-block {
  margin-top: 9.2rem;
}

.about-page__text-block .subtitles__body-right p {
  margin-top: 0;
  max-width: 100%;
}

.about-page__text-block .subtitles__body-left {
  max-width: 54.3rem;
}

.about-page__text-block .subtitles__body-right {
  max-width: 60rem;
  padding-left: 4.4rem;
}

.courses-founder {
  background-color: #f4f4f4;
  padding-bottom: 9.3rem;
  padding-top: 8.4rem;
}

.courses-founder .h2 {
  color: #ff4040;
  left: -0.3rem;
  position: relative;
}

.courses-founder__wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.courses-founder__photo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.courses-founder__photo img {
  height: 569px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 413px;
}

.courses-founder__text {
  padding-left: 12rem;
  padding-right: 11.7rem;
}

.courses-founder__text-h4 {
  color: #bdbdbd;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4375;
  margin-bottom: 4.1rem;
  margin-top: 5px;
}

.courses-block,
.our-projects-block {
  margin-top: 10rem;
}

.courses-block .c-btn,
.our-projects-block .c-btn {
  height: 6.2rem;
  margin-top: 3.4rem;
  max-width: 22.1rem;
  width: 100%;
}

.courses-block .subtitles__header,
.our-projects-block .subtitles__header {
  margin-top: 4.4rem;
}

.courses-block .subtitles__header h2,
.our-projects-block .subtitles__header h2 {
  margin-bottom: 1.7rem;
}

.courses-block .subtitles__item,
.our-projects-block .subtitles__item {
  -webkit-animation: fadeOut 1.2s;
  animation: fadeOut 1.2s;
  display: none;
}

.courses-block .subtitles__item.active,
.our-projects-block .subtitles__item.active {
  -webkit-animation: fadein 1.2s;
  animation: fadein 1.2s;
  display: block;
}

.our-projects-block,
.reviews-block {
  margin-top: -1rem;
}

.our-projects-block .subtitles__item,
.reviews-block .subtitles__item {
  margin-bottom: 6.7rem;
}

.our-projects-block .subtitles__header {
  margin-top: 5.6rem;
}

.courses-block-date {
  color: #ff4040;
  font-family: Montserrat, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.25;
}

.contacts-info {
  padding-bottom: 5.3rem;
  padding-top: 8.7rem;
}

.contacts-info .footer__info p {
  font-size: 2rem;
}

.contacts-info .footer__info p a {
  color: #000;
}

.contacts-info__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contacts-info-left {
  padding-left: 4rem;
  padding-top: 0.2rem;
  width: 50%;
}

.contacts-info-left .footer__geo:before {
  height: 1.7rem;
  left: -3.9rem;
  width: 1.7rem;
}

.contacts-info-left .footer__time:before {
  height: 1.7rem;
  left: -3.8rem;
  width: 1.7rem;
}

.contacts-info-left .footer__phone {
  margin-bottom: 0.9rem;
}

.contacts-info-left .footer__phone:before {
  height: 1.7rem;
  left: -3.7rem;
  width: 1.6rem;
}

.contacts-info-left .footer__mail:before {
  height: 1.9rem;
  left: -3.9rem;
  width: 1.9rem;
}

.contacts-info-right {
  padding-left: 4.6rem;
  width: 50%;
}

.contacts-info-right .h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.contacts-map {
  height: 59.7rem;
  height: 29.7rem;
}

.ymaps-layers-pane {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.subtitles-video {
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.subtitles-video:hover {
  opacity: 0.97;
}

.subtitles-video:hover .subtitles-video__play {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
  -ms-transform: translate(-50%, -50%) scale(1.05);
  transform: translate(-50%, -50%) scale(1.05);
}

.subtitles-video__wrap {
  position: relative;
}

.subtitles-video__play {
  background: url(../images/dist/play_video.svg) 50% / cover no-repeat;
  border-radius: 50%;
  height: 11.7rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 11.7rem;
}

.page-clients-block {
  background-color: #f4f4f4;
  padding-bottom: 9.3rem;
  padding-top: 8.4rem;
}

.page-clients-block__wrap {
  background-color: #fff;
}

.page-clients-block__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8.6rem 0 3.2rem;
}

.page-clients-block__item-logo {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  margin-top: -5.2rem;
  max-width: 53.6rem;
  padding-right: 4rem;
  width: 100%;
}

.page-clients-block__item-logo img {
  max-height: 29.1rem;
  max-width: 29.1rem;
}

.page-clients-block__item-logo-title {
  margin-top: 3.6rem;
}

.page-clients-block__item-text {
  max-width: 81.8rem;
  width: 100%;
}

.page-clients-block__item-text p {
  margin-bottom: 20px;
}

.page-clients-block__item-tab {
  -webkit-animation: fadeOut 1.2s;
  animation: fadeOut 1.2s;
  display: none;
}

.page-clients-block__item-tab.active {
  -webkit-animation: fadeIn 1.2s;
  animation: fadeIn 1.2s;
  display: block;
}

.reviews-block .subtitles__item {
  -webkit-animation: fadeOut 1.2s;
  animation: fadeOut 1.2s;
  display: none;
}

.reviews-block .subtitles__item.active {
  -webkit-animation: fadeIn 1.2s;
  animation: fadeIn 1.2s;
  display: block;
}

.our-projects-slider__item-desc-date {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.3571428571;
  margin-bottom: 2px;
}

.news-items .our-projects-slider__item-desc {
  padding: 2.8rem 1.5rem 2.9rem;
}

.news-items .our-projects-block .subtitles__header {
  margin-top: 4.7rem;
}

.news__items-date {
  color: #ff4040;
  font-family: Montserrat, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 3px;
}

.reviews-slider.owl-carousel .owl-item img {
  height: 235px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-fit: contain;
  object-fit: contain;
  width: 175px;
}

.reviews-tab-header {
  background-color: #f4f4f4;
}

.reviews-slider__item {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.2rem;
  padding: 4.8rem 6.1rem 5.4rem 4.8rem;
}

.reviews-slider__item:hover .c-btn {
  background-color: #ff6464;
  background-color: #ff4040;
  color: #fff;
}

.reviews-slider__item .c-btn {
  height: 4.5rem;
  margin-top: auto;
  max-width: 18.1rem;
  width: 100%;
}

.reviews-slider__item-photo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.reviews-slider__item-text {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: -0.5rem;
}

.reviews-slider__item-date {
  color: #bdbdbd;
  font-size: 1.7rem;
  line-height: 1.3529411765;
  margin-bottom: 0.5rem;
}

.reviews-slider__item-name {
  margin-bottom: 2.3rem;
}

.reviews-slider__item-name h4 {
  color: #000;
  font-family: Montserrat;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.2352941176;
  margin-bottom: 0;
}

.reviews-slider__item-p {
  max-height: 9.4rem;
  overflow: hidden;
}

.reviews-slider__item-p p {
  margin-bottom: 0;
}

.text-flex {
  padding-bottom: 9.5rem;
  padding-top: 7.6rem;
}

.text-flex p {
  margin-bottom: 20px;
  position: relative;
}

.text-flex ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.text-flex ol li {
  margin-bottom: 2.4rem;
  padding-left: 2rem;
  position: relative;
}

.text-flex ol li:before {
  color: #ff4040;
  content: counter(list-item);
  font-size: 2rem;
  font-weight: 600;
  left: 0;
  line-height: 1.15;
  position: absolute;
  top: -0.2rem;
}

.text-flex ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.3rem;
}

.text-flex ul li {
  margin-bottom: 2.4rem;
  padding-left: 1rem;
  position: relative;
}

.text-flex ul li:before {
  background: #ff4040;
  border-radius: 50%;
  content: '';
  height: 0.6rem;
  left: -1rem;
  position: absolute;
  top: 0.8rem;
  width: 0.6rem;
}

.text-flex__header {
  margin-bottom: 1.6rem;
}

.text-flex__header .h2 {
  margin-bottom: 0;
}

.text-flex__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.text-flex__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 54.3rem;
  width: 100%;
}

.text-flex__right {
  padding-left: 6.5rem;
}

.our-clients-page-slider.owl-carousel .owl-item,
.our-clients-page-slider.owl-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.our-clients-page-slider.owl-carousel .owl-item {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.our-clients-page-slider__item {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  max-width: 46.7rem;
  padding: 5.3rem 3.8rem 5rem 4.9rem;
  width: 100%;
}

.our-clients-page-slider__item-photo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.our-clients-page-slider__item-photo img {
  max-height: 10.6rem;
  max-width: 10.6rem;
}

.our-clients-page-slider__item-text {
  padding-left: 5rem;
}

.our-clients-page-slider__item-text-title h4 {
  font-family: Montserrat, sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.2352941176;
  margin-bottom: 2.2rem;
}

.our-clients-page-slider__item-text-p p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4375;
}

.footer {
  background-color: #002a36;
  /* background: #364245; */
  color: #fff;
  padding-bottom: 6.3rem;
  padding-top: 7.6rem;
  padding-top: 15.2rem;
}

.footer .c-btn {
  height: 5.6rem;
  max-width: 20.2rem;
  width: 100%;
}

.footer__wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding-right: 3rem;
}

.footer__col.--1 {
  max-width: 20.2rem;
  padding-top: 6px;
  width: 100%;
}

.footer__col.--1 p {
  color: #aaa;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.9rem;
  margin-bottom: 0;
  margin-top: 14.1rem;
}

.footer__col.--2 {
  left: 3.2rem;
  max-width: 22.7rem;
  position: relative;
  width: 100%;
}

.footer__col.--3 {
  left: -3.9rem;
  max-width: 31.7rem;
  position: relative;
  width: 100%;
}

.footer__col.--4 {
  left: 1.2rem;
  max-width: 33rem;
  position: relative;
  width: 100%;
}

.footer__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__menu ul li {
  margin-bottom: 2.1rem;
}

.footer__menu ul li:last-of-type {
  margin-bottom: 0;
}

.footer__menu ul li a {
  color: #fff;
  font-size: 1.7rem;
  line-height: 2.3rem;
}

.footer__menu ul li a:hover {
  color: #ff4040;
}

.footer__menu-title {
  color: #fff;
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.7rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer__info p {
  font-size: 1.7rem;
  line-height: 2.3rem;
}

.footer__info p a {
  color: #fff;
}

.footer__info p a:hover {
  color: #ff4040;
}

.footer__geo {
  position: relative;
}

.footer__geo:before {
  background: url(../images/dist/footer_geo.svg) 50% / cover no-repeat;
  content: '';
  display: block;
  height: 1.6rem;
  left: -4.7rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1.6rem;
}

.footer__time {
  margin-bottom: 3rem;
  position: relative;
}

.footer__time:before {
  background: url(../images/dist/footer_time.svg) 50% / cover no-repeat;
  content: '';
  display: block;
  height: 1.6rem;
  left: -4.7rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1.6rem;
}

.footer__phone {
  margin-bottom: 4px;
  position: relative;
}

.footer__phone:before {
  background: url(../images/dist/footer_phone.svg) 50% / cover no-repeat;
  content: '';
  display: block;
  height: 1.6rem;
  left: -4.6rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1.5rem;
}

.footer__mail {
  margin-bottom: 5.6rem;
  position: relative;
}

.footer__mail:before {
  background: url(../images/dist/footer_mail.svg) 50% / cover no-repeat;
  content: '';
  display: block;
  height: 1.8rem;
  left: -4.6rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1.8rem;
}

.footer__mail a {
  text-decoration: underline;
}

.footer__bd {
  margin-top: 3.5rem;
}

.footer__social {
  margin-left: -1.2rem;
  margin-top: 12.5rem;
}

.footer__social .social-block {
  gap: 1.5rem;
}

.--only-mobile {
  display: none;
}

#callbackmodal {
  padding: 0;
  max-width: 540px;
  width: 95;
}
#callbackmodal form {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  align-items: center;
  border: 1px solid;
  padding: 20px 50px;
  background: url(../images/dist/footer_form_bg.jpg) 50% / cover no-repeat;
}
#callbackmodal form h2 {
  font-size: 3.4rem;
  color: #0c0c0c;
  text-align: center;
  margin: 15px 0;
}
#callbackmodal form input,
#callbackmodal form textarea {
  background-color: #fff;
  height: 5.5rem;
  padding: 10px 15px;
  width: 100%;
  color: #1d1d1e;
  border: 1px solid #7e7f7e;
  resize: none;
}
#callbackmodal form textarea {
  height: 9rem;
}
input.hidinput {
  display: none;
}
#callbackmodal form div {
  display: flex;
  grid-gap: 40px;
}
#callbackmodal form p {
  font-size: 1.2rem;
  color: black;
}

@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  legend {
    font-size: 1.5rem;
  }
}

@media (max-width: 1800px) {
  .header__logo img {
    max-width: 16rem;
  }

  .header__meta {
    gap: 3.5rem;
    margin-left: auto;
    margin-right: 0;
  }
}

@media (max-width: 1680px) {
  .our-clients__slider.owl-carousel {
    left: 0;
    max-width: 100%;
  }
}

@media (max-width: 1600px) {
  .header__menu {
    margin-left: auto;
  }

  .header__menu ul li {
    margin-right: 2.5rem;
  }

  .category-links__grid {
    -ms-grid-columns: (1fr) [2];
    -ms-grid-rows: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .category-links__grid > :first-child {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
  }

  .category-links__grid > :nth-child(2) {
    -ms-grid-column: 2;
    -ms-grid-row: 1;
  }

  .category-links__item-body-text p {
    max-width: 100%;
    padding-right: 3rem;
  }

  .page-clients-block__item-logo {
    padding-right: 0;
  }
}

@media (max-width: 1500px) {
  html {
    font-size: 9px;
  }

  .our-courses-slider.owl-carousel img,
  .our-projects-slider.owl-carousel img {
    height: 300px;
  }

  .our-clients-tab-header {
    padding-bottom: 7.5rem;
  }

  .our-clients__slider.owl-carousel img {
    -webkit-transform: scale(0.85);
    -ms-transform: scale(0.85);
    transform: scale(0.85);
  }

  .text-flex__left {
    max-width: 46%;
  }
}

@media (max-width: 1400px) {
  .swiper-container-horizontal.hero-slider > .swiper-pagination-bullets {
    bottom: 3rem;
  }

  .hero-slider__span span {
    font-size: 2.5rem;
  }

  .hero-slider__text h1,
  .hero-slider__text h2 {
    font-size: 6.6rem;
  }

  .our-courses-slider.owl-carousel img,
  .our-projects-slider.owl-carousel img {
    height: 285px;
  }

  .our-clients__slider-item {
    width: 21rem;
  }

  .page-clients-block__item-logo {
    max-width: 45rem;
  }

  .our-clients-page-slider__item-text {
    padding-left: 4rem;
  }

  .footer__col.--3 {
    left: 0;
  }
}

@media (max-width: 1700px) {
  .hero-slider__text {
    padding-left: 8rem;
  }
}

@media (max-width: 1500px) {
  .hero-slider__text {
    padding-left: 13rem;
  }
}

@media (max-width: 1300px) {
  main {
    padding-top: 6rem;
  }

  .header {
    display: none;
  }

  .header-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .hero {
    margin-top: 0;
  }

  .container-1468.clients-page-container {
    padding-right: 0;
  }
}

@media (max-width: 1260px) {
  .footer__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer__col.--1 {
    display: none;
  }

  .footer__col.--2 {
    left: 0;
  }

  .footer__col.--4 {
    left: 0;
  }

  .footer__geo:before {
    left: -2.7rem;
  }

  .footer__time:before {
    left: -2.7rem;
  }

  .footer__phone:before {
    left: -2.7rem;
  }

  .footer__mail:before {
    left: -2.7rem;
  }
}

@media (max-width: 1200px) {
  .hero-slider__span {
    padding-left: 13px;
    padding-right: 13px;
  }

  .hero-slider__text {
    padding-left: 13px;
    padding-right: 13px;
  }

  .hero-slider__slide-item {
    padding: 0;
  }

  .about-company__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  .about-company__text {
    margin-bottom: 5rem;
    margin-top: 0;
    max-width: 100%;
  }

  .about-company__text p {
    font-size: 14px;
    line-height: inherit;
    margin-bottom: 0;
    margin-top: 0;
  }

  .about-company__items {
    margin-top: 2rem;
    max-width: 100%;
  }

  .about-company__item {
    max-width: 47%;
  }

  .page-clients-block__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 40px;
  }

  .page-clients-block__item-logo {
    margin-bottom: 30px;
    margin-top: 0;
    padding-right: 0;
  }

  .page-clients-block__item-text {
    max-width: 100%;
  }

  .reviews .container-1468 {
    padding-right: 0;
  }

  .our-clients-page-slider__item {
    max-width: 100%;
  }
}

@media (max-width: 1100px) {
  .wrapper {
    overflow-x: hidden;
  }

  .about-company__item:hover .about-company__item-front-back {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .about-company__item:hover .about-company__item-front {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .about-company__item-front-back {
    display: none;
  }

  .footer-form {
    background: #f9f9f9;
  }

  .footer-form__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 3rem;
    padding-top: 3rem;
  }

  .footer-form__text {
    max-width: 100%;
    padding-top: 0;
  }

  .footer-form__text h4 {
    margin-bottom: 3rem;
  }

  .footer-form__form {
    max-width: 100%;
  }

  .page-info .container-1158 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .links-pages__item-photo img {
    height: 60px;
  }

  .links-pages__item-text {
    padding: 20px;
  }

  .subtitles__body-left {
    max-width: 50%;
  }

  .subtitles__body-right {
    max-width: 50%;
  }

  .about-page__info-text {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .courses-founder__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px 0;
  }

  .courses-founder__text {
    margin-top: 30px;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
  }
}

@media (max-width: 960px) {
  .category-links__grid {
    -ms-grid-columns: 1fr;
    -ms-grid-rows: auto;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
  }

  .category-links__grid > :first-child {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
  }

  .category-links__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
  }

  .category-links__item:after {
    display: none;
  }

  .category-links__item:before {
    display: none;
  }

  .category-links__item-photo:after {
    border-bottom-left-radius: 0;
  }

  .category-links__item-photo img {
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    height: 150px;
    max-width: 100%;
    width: 100%;
  }

  .category-links__item-body {
    padding: 25px 13px;
  }

  .category-links__item-body-litle {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .category-links__item-body-text p {
    font-size: 14px;
    padding-right: 0;
  }

  .category-links__item-body-text a {
    font-size: 14px;
  }

  .our-courses__header,
  .our-projects__header,
  .reviews__header {
    margin-bottom: 25px;
    padding-left: 0;
    padding-right: 0;
  }

  .our-courses__header {
    margin-bottom: 25px;
    padding-left: 0;
    padding-right: 0;
  }

  .our-clients__slider-item {
    width: 16rem;
  }

  .subtitles .c-btn {
    margin-top: 3rem;
  }

  .subtitles .c-btn.--only-desktop {
    display: none;
  }

  .subtitles .c-btn.--only-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

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

  .subtitles__body-left {
    max-width: 100%;
  }

  .subtitles__body-right {
    margin-top: 5px;
    max-width: 100%;
    padding-left: 0;
  }

  .about-page__info-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
  }

  .about-page__info-photo img {
    width: 100%;
  }

  .about-page__info-photo.--only-desktop {
    display: none;
  }

  .about-page__info-photo.--only-mobile {
    display: block;
  }

  .about-page__info-text {
    margin-top: 20px;
    padding: 20px 0;
  }

  .about-page__text-block .subtitles__body-right p {
    padding-left: 0;
  }

  .about-page__text-block .subtitles__body-left {
    max-width: 100%;
  }

  .about-page__text-block .subtitles__body-right {
    max-width: 100%;
    padding-left: 0;
  }

  .courses-block .c-btn.--only-desktop,
  .our-projects-block .c-btn.--only-desktop {
    display: none;
  }

  .courses-block .c-btn.--only-mobile,
  .our-projects-block .c-btn.--only-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .courses-block .subtitles__item,
  .our-projects-block .subtitles__item {
    margin-bottom: 50px;
  }

  .contacts-info-left {
    padding-right: 30px;
  }

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

  .text-flex__left {
    max-width: 100%;
  }

  .text-flex__right {
    margin-top: 20px;
    padding-left: 0;
  }

  .footer__col.--4 {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  #callbackmodal form {
    padding: 20px;
  }
  #callbackmodal form h2 {
    font-size: 2.4rem;
  }
  html {
    font-size: 10px;
  }

  .swiper-container-horizontal.hero-slider
    > .swiper-pagination-bullets
    .swiper-pagination-bullet {
    margin: 0 4px;
  }

  .swiper-container-horizontal.hero-slider > .swiper-pagination-bullets {
    bottom: 10px;
  }

  .hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .header-mobile__meta {
    padding-left: 13px;
    padding-right: 13px;
  }

  .header-mobile-menu .header-mobile-menu__list {
    padding: 0 25px;
  }

  .header-mobile-menu .header-mobile-center {
    padding: 0 25px;
  }

  .header-mobile__btns {
    padding-left: 13px;
    padding-right: 13px;
  }

  .h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .container-1762 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container-1286 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container-1158 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container-1543,
  .our-clients__slider.owl-carousel {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container-1468 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .c-btn {
    font-size: 16px;
    line-height: 1;
    min-height: 44px;
    padding: 0;
  }

  .hero {
    height: 250px;
    margin-bottom: 30px;
  }

  .hero-slider__span span {
    font-size: 15px;
  }

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

  .hero-slider__text h1 br,
  .hero-slider__text h2 br {
    display: none;
  }

  .hero-slider__slide-wrap {
    padding-left: 13px;
    padding-right: 13px;
  }

  .category-links {
    margin-bottom: 30px;
  }

  .about-company {
    background: #053744;
    padding-bottom: 25px;
    padding-top: 25px;
  }

  .about-company .c-btn {
    margin-top: 20px;
    max-width: 100%;
  }

  .about-company__text {
    margin-bottom: 30px;
  }

  .about-company__items {
    gap: 15px;
    margin-top: 0;
  }

  .about-company__item {
    height: auto;
    margin-bottom: 5px;
    max-width: 47%;
    padding: 73px 20px;
  }

  .about-company__item-icon {
    height: 4rem;
    margin-bottom: 25px;
    min-height: 4rem;
  }

  .about-company__item-icon img {
    max-height: 43px;
    max-width: 50px;
  }

  .about-company__item-span {
    font-size: 12px;
    line-height: inherit;
  }

  .our-courses,
  .our-projects {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .our-projects-tab-header,
  .reviews-tab-header {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .our-courses {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .owl-custom-next,
  .owl-custom-prev {
    height: 40px;
    width: 40px;
  }

  .owl-carousel .owl-stage {
    -webkit-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) !important;
    -o-transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) !important;
    transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) !important;
  }

  .our-courses-slider.owl-carousel img,
  .our-projects-slider.owl-carousel img {
    height: 250px;
  }

  .our-courses-slider__item-desc-date {
    font-size: 14px;
    line-height: inherit;
  }

  .our-courses-slider__item-desc {
    left: 0;
    margin-left: auto;
    margin-right: auto;
    right: 0;
  }

  .our-courses-slider__item-desc-text {
    font-size: 12px;
  }

  .our-clients {
    padding-bottom: 20px;
    padding-top: 30px;
  }

  .our-clients-tab-header {
    padding-bottom: 20px;
  }

  .our-clients__slider.owl-carousel {
    margin-top: 0;
  }

  .our-clients__slider.owl-carousel img {
    max-height: 60px;
    max-width: 50px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .our-clients__slider-item {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 80px;
  }

  .footer-form .c-input {
    font-size: 14px;
    height: 48px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }

  .footer-form .c-textarea {
    font-size: 14px;
    padding: 12px 15px;
    width: 100%;
  }

  .footer-form__text h4 {
    margin-bottom: 10px;
    text-transform: none;
  }

  .footer-form__text p {
    font-size: 14px;
    line-height: inherit;
    margin-bottom: 10px;
  }

  .footer-form__form {
    margin-top: 10px;
  }

  .footer-form__form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }

  .footer-form__form-row:last-of-type {
    margin-bottom: 0;
  }

  .footer-form__form-row.--last p {
    font-size: 11px;
    line-height: inherit;
    margin-bottom: 15px;
  }

  .footer-form__form-row.--last .c-btn {
    height: 48px;
    max-width: 100%;
  }

  .select-box {
    font-size: 14px;
    width: 100%;
  }

  .select-box__current {
    font-size: 14px;
    height: 48px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .select-box__icon {
    right: 15px;
    width: 14px;
  }

  .select-box__list {
    font-size: 13px;
  }

  .select-box__option {
    padding: 8px 15px;
  }

  .page-info {
    margin-top: 0;
    min-height: auto;
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .page-info .container-1158 {
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-info h1 {
    font-size: 30px;
    line-height: inherit;
  }

  .page-info p {
    font-size: 14px;
    line-height: inherit;
    max-width: 100%;
  }

  .links-pages {
    padding: 30px 0;
  }

  .links-pages__href-more {
    margin-bottom: 0;
    margin-top: 30px;
  }

  .links-pages__href-more a {
    font-size: 14px;
  }

  .links-pages__grid {
    -ms-grid-columns: calc(50% - 7.5px) 15px calc(50% - 7.5px);
    -ms-grid-rows: auto;
    gap: 15px;
    grid-template-columns: repeat(2, calc(50% - 7.5px));
    grid-template-rows: auto;
  }

  .links-pages__grid > :first-child {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
  }

  .links-pages__grid > :nth-child(2) {
    -ms-grid-column: 3;
    -ms-grid-row: 1;
  }

  .links-pages__item-text {
    font-size: 12px;
    padding: 20px 5px;
  }

  .subtitles {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .subtitles .c-btn {
    height: 48px;
    margin-top: 20px;
    max-width: 100%;
  }

  .subtitles ol,
  .subtitles ul {
    font-size: 14px;
  }

  .subtitles ol li:after,
  .subtitles ul li:after {
    left: -12px;
    top: 7px;
  }

  .subtitles__item {
    margin-bottom: 50px;
  }

  .subtitles__item:last-of-type {
    margin-bottom: 0;
  }

  .subtitles__item p {
    font-size: 14px;
  }

  .subtitles__header {
    margin-top: 25px;
  }

  .subtitles__header h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .subtitles__body-left p {
    margin-bottom: 10px;
  }

  .subtitles__body-right h3 {
    font-size: 16px;
  }
  .subtitles__body-right {
    margin-top: 0;
  }

  .subtitles__body-right p {
    /*   margin-top: 10px; */
    margin-top: 0;
    padding-left: 0;
  }

  .subtitles__item.--synchronous .c-btn {
    margin-top: 20px;
  }

  .about-page__info {
    padding: 30px 0;
  }

  .about-page__info-wrap {
    padding: 15px 15px 0;
  }

  .about-page__info-photo.--only-mobile {
    width: 100%;
  }

  .about-page__info-photo.--only-mobile img {
    height: 150px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
  }

  .about-page__info-text {
    margin-top: 0;
    padding: 15px 0;
  }

  .about-page__info-text .h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .about-page__info-text p {
    font-size: 14px;
  }

  .faq {
    padding: 30px 0;
  }

  .faq .h2 {
    font-size: 22px;
  }

  .faq__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
  }

  .faq__flex-left,
  .faq__flex-right {
    max-width: 100%;
  }

  .faq__item {
    max-width: 100%;
  }

  .faq__item-header-h4 {
    font-size: 16px;
    margin-bottom: 0;
  }

  .faq__item-body p {
    font-size: 14px;
    line-height: inherit;
    padding-bottom: 0;
    padding-top: 10px;
  }

  .about-page__text-block {
    margin-top: 30px;
    padding-bottom: 20px;
  }

  .about-page__text-block .subtitles__body-left p {
    margin-bottom: 5px;
  }

  .courses-founder {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .courses-founder .h2 {
    left: 0;
    margin-bottom: 0;
  }

  .courses-founder__wrap {
    padding: 0;
  }

  .courses-founder__photo img {
    height: auto;
    width: 100%;
  }

  .courses-founder__text {
    margin: 0;
    padding: 15px 15px 10px;
    text-align: left;
  }

  .courses-founder__text p {
    font-size: 14px;
  }

  .courses-founder__text-h4 {
    font-size: 14px;
    line-height: inherit;
    margin-bottom: 10px;
    margin-top: 0;
  }

  .courses-block,
  .our-projects-block {
    margin-top: 0;
  }

  .courses-block .c-btn,
  .our-projects-block .c-btn {
    height: 48px;
    margin-top: 20px;
    max-width: 100%;
  }

  .courses-block .subtitles__header,
  .our-projects-block .subtitles__header {
    margin-top: 25px;
  }

  .courses-block .subtitles__header h2,
  .our-projects-block .subtitles__header h2 {
    margin-bottom: 10px;
  }

  .courses-block .subtitles__item,
  .our-projects-block .subtitles__item {
    margin-bottom: 20px;
  }

  .courses-block .about-page__text-block,
  .our-projects-block .about-page__text-block {
    margin-top: 0;
  }

  .our-projects-block .about-page__text-block,
  .reviews-block .about-page__text-block {
    padding-bottom: 0;
  }

  .reviews-block .subtitles__item {
    margin-bottom: 20px;
  }

  .courses-block-date {
    margin-bottom: 10px;
  }

  .contacts-info {
    padding-bottom: 20px;
    padding-top: 30px;
  }

  .contacts-info .footer__info p {
    font-size: 16px;
  }

  .contacts-info__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .contacts-info-left {
    max-width: 100%;
    padding: 0;
    width: 100%;
  }

  .contacts-info-left .footer__geo:before {
    left: 0;
  }

  .contacts-info-left .footer__time {
    margin-bottom: 10px;
  }

  .contacts-info-left .footer__time:before {
    left: 0;
  }

  .contacts-info-left .footer__phone:before {
    left: 0;
  }

  .contacts-info-left .footer__mail:before {
    left: 0;
  }

  .contacts-info-right {
    margin-top: 25px;
    max-width: 100%;
    padding: 0;
    width: 100%;
  }

  .contacts-info-right p {
    font-size: 14px;
  }

  .contacts-info-right .h2 {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .contacts-map {
    height: 250px;
  }

  .subtitles-video {
    margin-top: 30px;
  }

  .subtitles-video__play {
    height: 6.7rem;
    width: 6.7rem;
  }

  .page-clients-block {
    padding-bottom: 0;
    padding-top: 50px;
  }

  .page-clients-block .container-1468 {
    margin-left: -15px;
    margin-right: -15px;
  }

  .page-clients-block__item {
    padding: 30px 15px 20px;
  }

  .page-clients-block__item-logo {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 0;
    max-width: 100%;
  }

  .page-clients-block__item-logo img {
    max-height: 150px;
    max-width: 150px;
  }

  .page-clients-block__item-logo-title {
    font-size: 22px;
    margin-top: 15px;
  }

  .page-clients-block__item-text p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .news-items .our-projects-block .subtitles__header {
    margin-top: 25px;
  }

  .reviews-slider.owl-carousel .owl-item img {
    margin: 0 auto;
  }

  .reviews-slider__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
    padding: 30px 20px;
  }

  .reviews-slider__item .c-btn {
    height: 45px;
    margin-top: 15px;
    max-width: 100%;
  }

  .reviews-slider__item-date {
    font-size: 14px;
  }

  .reviews-slider__item-name {
    margin-bottom: 10px;
  }

  .reviews-slider__item-name h4 {
    font-size: 16px;
  }

  .reviews-slider__item-p {
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }

  .reviews-slider__item-p p {
    font-size: 14px;
  }

  .text-flex {
    padding-bottom: 20px;
    padding-top: 30px;
  }

  .text-flex p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .text-flex ol {
    font-size: 14px;
  }

  .text-flex ol li {
    margin-bottom: 10px;
    padding-left: 20px;
  }

  .text-flex ol li:before {
    font-size: 16px;
    top: -1px;
  }

  .text-flex ul {
    font-size: 14px;
  }

  .text-flex ul li {
    margin-bottom: 10px;
    padding-left: 8px;
  }

  .text-flex__header {
    margin-bottom: 10px;
  }

  .text-flex__header .h2 {
    font-size: 22px;
  }

  .our-clients-page-slider__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px 20px 20px;
  }

  .our-clients-page-slider__item-photo img {
    margin: 0 auto;
    max-height: 80px;
    max-width: 80px;
  }

  .our-clients-page-slider__item-text {
    margin-top: 25px;
    padding-left: 0;
  }

  .our-clients-page-slider__item-text-title h4 {
    margin-bottom: 10px;
  }

  .our-clients-page-slider__item-text-p p {
    font-size: 14px;
    line-height: inherit;
  }

  .footer {
    padding-bottom: 35px;
    padding-top: 35px;
  }

  .footer__wrap {
    padding-right: 0;
  }

  .footer__col.--2 {
    max-width: 100%;
  }

  .footer__col.--3 {
    max-width: 100%;
  }

  .footer__col.--4 {
    margin-top: 10px;
    max-width: 100%;
  }

  .footer__menu {
    margin-bottom: 20px;
  }

  .footer__menu ul li {
    margin-bottom: 5px;
  }

  .footer__menu ul li a {
    font-size: 14px;
    line-height: inherit;
  }

  .footer__menu-title {
    font-size: 18px;
    line-height: inherit;
    margin-bottom: 10px;
  }

  .footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__info p {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    font-size: 16px;
    line-height: inherit;
    order: 1;
    padding-left: 26px;
  }

  .footer__info p:last-of-type {
    margin-bottom: 0;
  }

  .footer__geo:before {
    left: 0;
  }

  .footer__time:before {
    left: 0;
  }

  .footer__phone:before {
    left: 0;
  }

  .footer__mail {
    margin-bottom: 25px;
  }

  .footer__mail:before {
    left: 0;
  }

  .footer__social {
    margin-bottom: 30px;
    margin-left: 0;
    margin-top: 25px;
  }

  .footer__social .social-block {
    gap: 25px;
  }

  .footer__social .social-block__item {
    background-size: contain;
    height: 30px;
    width: 30px;
  }

  .--only-desktop {
    display: none;
  }

  .--only-mobile {
    display: block;
  }
}

@media (max-width: 360px) {
  .header-mobile__burger {
    margin-left: 10px;
    margin-left: 0;
  }

  .header-mobile-menu .header__phone {
    margin-top: 2vh;
  }

  .about-company__item-span {
    font-size: 9px;
  }

  .our-courses-slider__item-desc {
    max-width: 90%;
    width: 100%;
  }
}

@media (max-width: 320px) {
  .header-mobile__logo img {
    max-width: 100px;
  }

  .header-mobile-menu .header-mobile-menu__list {
    margin-top: 20px;
  }

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

  .header-mobile-menu .header__phone {
    font-size: 18px;
  }

  .header-mobile-menu .header__phone:first-of-type {
    font-size: 18px;
  }

  .header-mobile__btns .c-btn {
    font-size: 10px;
  }

  .our-courses-slider.owl-carousel .owl-item img {
    height: 190px;
  }

  .links-pages__item-text {
    font-size: 12px;
    word-break: break-word;
  }
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }

  :root {
    scroll-behavior: auto;
  }
}
.c-btn a {
  color: #fff;
}
.footer .c-btn a {
  color: #fff;
}
.header__menu ul li a {
  color: #fff !important;
}
.header__phone {
  white-space: nowrap;
}
.faq__item-body a {
  color: #fff;
}
@media (max-width: 420px) {
  .header-mobile__meta .header__phone {
    font-size: 1.3rem;
  }
}
.category-links__item-body-litle span {
  position: relative;
}
.category-links__item-body-litle span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  background-image: url(../images/title_slash2.svg);
  width: 15px;
  height: 14px;
}
.swiper-container-horizontal.hero-slider > .swiper-pagination-bullets {
  bottom: 25.7rem;
  left: auto;
  right: 15.4%;
  max-width: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
.hero-slider__span {
  display: none;
}

.hero-slider .swiper-pagination-bullet {
  border-radius: 2px;
}

@media (max-width: 767px) {
  .hero-slider__text h2 p {
    margin-bottom: 10px;
  }
  .hero-slider__text h2 p {
    font-size: 30px;
  }
  .hero-slider__text h1,
  .hero-slider__text h2 {
    font-size: 21px;
  }
}

.subtitles__body-left.--full_text {
  max-width: 100%;
  width: 100%;
}
.subtitles__body-right a {
  color: #ff4040;
}
.subtitles__body-left a {
  color: #ff4040;
}

.courses-info {
  padding-top: 8.4rem;
  padding-bottom: 9.3rem;
  background: #f4f4f4;
}

.courses-info__wrap {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
}

.courses-info__photo {
  max-width: 49.8rem;
  width: 100%;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  overflow: hidden;
  flex: 0 0 auto;
}
.courses-info__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.courses-info__text {
  flex: 1 1 auto;
  background: #fff;
  padding: 11.9rem 13rem 9.3rem 8.1rem;
  font-family: Nunito, sans-serif;
}

.courses-info__text .h2 {
  color: #1f2922;
  max-width: 51rem;
  font-size: 3.8rem;
  line-height: 1.4;
  text-transform: none;
  font-weight: 700;
  margin-bottom: 3.2rem;
  font-family: Nunito, sans-serif;
}

.courses-info__text p {
  font-size: 1.8rem;
  line-height: 1.833;
  color: #515151;
  margin-bottom: 2rem;
}

.courses-info__text p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .courses-info__wrap {
    flex-direction: column;
  }
  .courses-info__photo {
    max-width: 100%;
  }
  .courses-info__photo img {
    height: 35rem;
    object-position: top;
  }
}

@media (max-width: 767px) {
  .courses-info {
    padding: 30px 0;
  }
  .courses-info__photo img {
    height: 160px;
  }
  .courses-info__text {
    padding: 30px 24px;
  }
  .courses-info__text .h2 {
    line-height: 1.2;
    font-size: 23px;
    margin-bottom: 15px;
  }
  .courses-info__text p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}

.about-page-bl {
  padding: 8.4rem 0;
  background: #f4f4f4;
  font-family: Nunito, sans-serif;
}
.about-page-bl__photo {
  max-width: 47.6rem;
  width: 100%;
  flex: 0 0 auto;
}
.about-page-bl__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page-bl__wrap {
  display: flex;
}
.about-page-bl__text {
  flex: 1 1 auto;
  padding: 6.3rem 6rem 6.3rem 1.9rem;
  background: #fff;
}
.about-page-bl__text .h2 {
  font-family: Nunito, sans-serif;
  margin-bottom: 3.2rem;
}

.about-page-bl__text ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 0.8rem;
}

.about-page-bl__text ul li {
  margin-bottom: 1.3rem;
  position: relative;
  padding-left: 2rem;
  font-size: 1.8rem;
}

.about-page-bl__text ul li:after {
  content: '';
  width: 1rem;
  height: 1rem;
  background: #ff4040;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.7rem;
}

.about-page__director {
  padding: 4.3rem 0;
  font-family: Nunito, sans-serif;
}
.about-page__director-info {
  display: flex;
  gap: 4.1rem;
  align-items: center;
}
.about-page__director-info-photo {
  max-width: 41.1rem;
  width: 100%;
  flex: 0 0 auto;
}
.about-page__director-info-photo img {
  border-radius: 0.4rem;
}
.about-page__director-info-text {
  padding-bottom: 2rem;
}

.about-page__director-info-text h2::after{
  content:',';
}

.about-page__director-info-text .h2 {
  font-family: Nunito, sans-serif;
  font-size: 3.8rem;
  font-weight: 600;
  margin-bottom: 0;
}

.about-page__director-info-text .h3 {
  font-family: Nunito, sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 4.1rem;
}

.about-page__director-info-text p {
  font-size: 1.6rem;
  margin-bottom: 0;
  max-width: 48.1rem;
}

.about-page__director-chanels {
  display: flex;
  gap: 2.1rem;
  padding-top: 8.5rem;
  align-items: flex-start;
  padding-bottom: 5rem;
}
.about-page__director-chanels-left {
  max-width: 67.1rem;
  width: 100%;
  display: grid;
  grid-template-columns: 35rem 32.1rem;
  gap: 3.8rem 0;
}
.about-page__director-chanels-left
  .about-page__director-chanels-item:nth-of-type(1) {
  max-width: 30.2rem;
  gap: 2.3rem;
}
.about-page__director-chanels-left
  .about-page__director-chanels-item:nth-of-type(2) {
  max-width: 32.1rem;
  gap: 1.2rem;
}
.about-page__director-chanels-left
  .about-page__director-chanels-item:nth-of-type(3) {
  max-width: 35rem;
  gap: 1.3rem;
}
.about-page__director-chanels-item {
  display: flex;
  align-items: center;
}
.about-page__director-chanels-item p {
  margin-bottom: 0;
  font-size: 1.6rem;
}
.about-page__director-chanels-right {
  max-width: 46.5rem;
  width: 100%;
  border-radius: 4px;
  background: #ff4040;
  padding: 1.7rem 1.6rem 2.4rem 3.2rem;
  margin-top: -2.3rem;
}

.about-page__director-chanels-right img{
  display: block;margin-bottom: 1.5rem;
}

.about-page__director-chanels-right p{
  margin-bottom: 0;
  font-size: 1.6rem;
  color: #fff;
}


.about-page__director-text {
  font-family: Nunito, sans-serif;
  max-width: 91.5rem;
}

.about-page__director-text p{
  font-size: 1.6rem;
  line-height: 1.75;
  margin-bottom: 3.5rem;
}


@media (max-width:960px){
   .about-page-bl__wrap{
    flex-direction: column;
   }
   .about-page-bl__photo{
    max-width: 100%;
   }
   .about-page-bl__photo img{
    height: 40rem;
    object-position: top;
   }
   .about-page__director-chanels{
    flex-direction: column;
   }
   .about-page__director-chanels-left{
    grid-template-columns: repeat(2,1fr);
    margin-bottom: 4rem;
   }
   .about-page__director-info-photo{
    max-width: 34rem;
   }
}

@media (max-width:767px){
  .about-page-bl{
    padding: 30px 0;
  }
  .about-page-bl__photo img{
    height: 160px;
  }
  .about-page-bl__text{
    padding: 30px 24px;
  }
  .about-page-bl__text .h2{
    margin-bottom: 15px;
    font-size: 23px;
  }
  .about-page-bl__text ul li{
    font-size: 15px;
  }
  .about-page-bl__text ul{
    padding-left: 3px;
  }
  .about-page__director{
    padding: 30px 0;
  }
  .about-page__director-info{
    flex-direction: column;
    gap:20px;
  }
  .about-page__director-info-text .h2{
    font-size: 25px;
    margin-bottom: 5px;
  }
  .about-page__director-info-text .h3{
    font-size: 18px;
    margin-bottom: 15px;
  }
  .about-page__director-info-text p{
    font-size: 15px;
  }
  .about-page__director-chanels{
    padding: 0;
  }
  .about-page__director-chanels-left{
    display: block;
  }
  .about-page__director-chanels-item img{
    max-width: 40px;
    max-height: 30px;
    min-width: 40px;
    object-fit: contain;
  }
  .about-page__director-chanels-item{
    gap:15px !important;
    margin-bottom: 15px;
  }
  .about-page__director-chanels-item p{
    font-size: 15px;
  }
  .about-page__director-chanels-left{
    margin-bottom: 20px;
  }
  .about-page__director-chanels-right{
    padding: 24px;
  }
  .about-page__director-chanels-right p{
    font-size: 15px;
  }
  .about-page__director-chanels-right img{
    max-width: 100px;
  }
  .about-page__director-text{
    margin-top: 20px;
  }
  .about-page__director-text p{
    font-size: 15px;
    margin-bottom: 10px;
  }
}


.about-page__director-social{
  display: flex;
  align-items: center;
  gap:2rem;
  margin-top: 4rem;
}

.about-page__director-social span{
  font-family: Nunito, sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
}

.about-page__director-social .social-block__item.--vk{
  background-size: contain;
}


.about-page__director-social .social-block__item.--telegram{
  background-size: contain;
}

@media (max-width:767px){
  .about-page__director-social span{
    font-size: 15px;
  }
  .about-page__director-social .social-block__item.--vk,
  .about-page__director-social .social-block__item.--telegram{
    width: 30px;
    height: 30px;
  }
  .about-page__director-social{
    gap:10px;
    margin-top: 15px;
    margin-bottom: 10px;
  }
}