@import "fancybox.css";
@import "owl-carousel.css";

/**

*
  Сброс CSS стилей
*
**/
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
}

html {
  -webkit-text-size-adjust: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

body {

  &.__hidden {
    overflow: hidden;
  }

}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

input,
textarea,
button,
select {
  resize: none;
  border: none;
  background-color: transparent;
  outline: none;
  padding: 0;
}

img {
  border: 0;
  vertical-align: top;
}

html,body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}





/**
*
  Flex
*
**/
.flex_w {
  display: flex;
  flex-wrap: wrap;

  &.__ai_fs {
    align-items: flex-start;
  }

  &.__ai_fe {
    align-items: flex-end;
  }

  &.__ai_c {
    align-items: center;
  }

  &.__jc_sa {
    justify-content: space-around;
  }

  &.__jc_sb {
    justify-content: space-between;
  }

  &.__jc_c {
    justify-content: center;
  }
}







/**
*
  Функции
*
**/
.radius(@radius: 5px) {
  -webkit-border-radius: @radius;
  -moz-border-radius: @radius;
  -ms-border-radius: @radius;
  -o-border-radius: @radius;
  border-radius: @radius;
}

.transition(@properties: all .6s) {
  -webkit-transition: @properties;
  -moz-transition: @properties;
  -ms-transition: @properties;
  -o-transition: @properties;
  transition: @properties;
}

.text-shadow (@string: 0 1px 3px rgba(0, 0, 0, 0.25)) {
  text-shadow: @string;
}

.box-shadow (@string) {
  -webkit-box-shadow: @string;
  -moz-box-shadow: @string;
  box-shadow: @string;
}

.box-shadow2 (@string, @string) {
  -webkit-box-shadow: @string, @string;
  -moz-box-shadow: @string, @string;
  box-shadow: @string, @string;
}

.drop-shadow (@x: 0, @y: 1px, @blur: 2px, @spread: 0, @alpha: 0.25) {
  -webkit-box-shadow: @x @y @blur @spread rgba(0, 0, 0, @alpha);
  -moz-box-shadow: @x @y @blur @spread rgba(0, 0, 0, @alpha);
  box-shadow: @x @y @blur @spread rgba(0, 0, 0, @alpha);
}

.inner-shadow (@x: 0, @y: 1px, @blur: 2px, @spread: 0, @alpha: 0.25) {
  -webkit-box-shadow: inset @x @y @blur @spread rgba(0, 0, 0, @alpha);
  -moz-box-shadow: inset @x @y @blur @spread rgba(0, 0, 0, @alpha);
  box-shadow: inset @x @y @blur @spread rgba(0, 0, 0, @alpha);
}

.box-sizing (@type: border-box) {
  -webkit-box-sizing: @type;
  -moz-box-sizing: @type;
  box-sizing: @type;
}

.border-radius (@radius: 5px) {
  -webkit-border-radius: @radius;
  -moz-border-radius: @radius;
  border-radius: @radius;

  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.opacity (@opacity: 0.5) {
  -webkit-opacity: @opacity;
  -moz-opacity: @opacity;
  opacity: @opacity;
}

.gradient (@startColor: #eee, @endColor: white) {
  background-color: @startColor;
  background: -webkit-gradient(linear, left top, left bottom, from(@startColor), to(@endColor));
  background: -webkit-linear-gradient(top, @startColor, @endColor);
  background: -moz-linear-gradient(top, @startColor, @endColor);
  background: -ms-linear-gradient(top, @startColor, @endColor);
  background: -o-linear-gradient(top, @startColor, @endColor);
}

.horizontal-gradient (@startColor, @endColor) {
  background-color: @startColor;
  background-image: -webkit-gradient(linear, left top, right top, from(@startColor), to(@endColor));
  background-image: -webkit-linear-gradient(left, @startColor, @endColor);
  background-image: -moz-linear-gradient(left, @startColor, @endColor);
  background-image: -ms-linear-gradient(left, @startColor, @endColor);
  background-image: -o-linear-gradient(left, @startColor, @endColor);
}

.vertical-gradient (@startColor, @endColor) {
  background-color: @endColor;
  background-image: -webkit-gradient(linear, top, bottom, from(@startColor), to(@endColor));
  background-image: -webkit-linear-gradient(bottom, @startColor, @endColor);
  background-image: -moz-linear-gradient(bottom, @startColor, @endColor);
  background-image: -ms-linear-gradient(bottom, @startColor, @endColor);
  background-image: -o-linear-gradient(bottom, @startColor, @endColor);
}

.animation (@name, @duration: 300ms, @delay: 0, @ease: ease) {
  -webkit-animation: @name @duration @delay @ease;
  -moz-animation: @name @duration @delay @ease;
  -ms-animation: @name @duration @delay @ease;
}

.transition (@transition) {
  -webkit-transition: @transition;
  -moz-transition: @transition;
  -ms-transition: @transition;
  -o-transition: @transition;
}

.transform(@string) {
  -webkit-transform: @string;
  -moz-transform: @string;
  -ms-transform: @string;
  -o-transform: @string;
  transform: @string;
}

.scale (@factor) {
  -webkit-transform: scale(@factor);
  -moz-transform: scale(@factor);
  -ms-transform: scale(@factor);
  -o-transform: scale(@factor);
  transform: scale(@factor);
}

.rotate (@deg) {
  -webkit-transform: rotate(@deg);
  -moz-transform: rotate(@deg);
  -ms-transform: rotate(@deg);
  -o-transform: rotate(@deg);
  transform: rotate(@deg);
}

.skew (@deg, @deg2) {
  -webkit-transform: skew(@deg, @deg2);
  -moz-transform: skew(@deg, @deg2);
  -ms-transform: skew(@deg, @deg2);
  -o-transform: skew(@deg, @deg2);
  transform: skew(@deg, @deg2);
}

.translate (@x, @y: 0) {
  -webkit-transform: translate(@x, @y);
  -moz-transform: translate(@x, @y);
  -ms-transform: translate(@x, @y);
  -o-transform: translate(@x, @y);
  transform: translate(@x, @y);
}

.translate3d (@x, @y: 0, @z: 0) {
  -webkit-transform: translate3d(@x, @y, @z);
  -moz-transform: translate3d(@x, @y, @z);
  -ms-transform: translate3d(@x, @y, @z);
  -o-transform: translate3d(@x, @y, @z);
  transform: translate3d(@x, @y, @z);
}

.perspective (@value: 1000) {
  -webkit-perspective: @value;
  -moz-perspective: @value;
  -ms-perspective: @value;
  perspective: @value;
}

.transform-origin (@x: center, @y: center) {
  -webkit-transform-origin: @x @y;
  -moz-transform-origin: @x @y;
  -ms-transform-origin: @x @y;
  -o-transform-origin: @x @y;
}

.background(@path, @position: center center, @repeat: no-repeat) {
  background: url(@path) @position @repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.text-overflow(@lineClamp, @lineHeight) {
  display: -webkit-box;
  display: -moz-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: @lineClamp;
  overflow: hidden;
  height: @lineClamp * @lineHeight;
}

.placeholder-style(@placeholder-font, @placeholder-color) {

  &::-webkit-input-placeholder {
    font: @placeholder-font;
    color: @placeholder-color;
  }

  &::-moz-placeholder {
    font: @placeholder-font;
    color: @placeholder-color;
  }

  &:-moz-placeholder {
    font: @placeholder-font;
    color: @placeholder-color;
  }

  &:-ms-input-placeholder {
    font: @placeholder-font;
    color: @placeholder-color;
  }

}



/**
*
  Подключение шрифтов
*
**/
@font-face {
  font-family: "Golos Text";
  src: url('../fonts/GolosText-Medium.ttf');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url('../fonts/Onest-Bold.ttf');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url('../fonts/Onest-ExtraBold.ttf');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "Onest";
  src: url('../fonts/Onest-Medium.ttf');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url('../fonts/Onest-Regular.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url('../fonts/Onest-SemiBold.ttf');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}




/**
*
  Общие классы
*
**/
.show {
  display: block !important;
}

.hide,
.xs-show,
.sm-show,
.md-show {
  display: none !important;
}

.flf {
  float: left !important;
}

.flr {
  float: right !important;
}

.clear {
  display: block;
  clear: both;
}

.t_center {
  text-align: center;
}

.t_right {
  text-align: right;
}

.pos_rel {
  position: relative;
}

.ypos_ab {
  position: absolute;
  top: 50%;
  .translate(0, -50%);
}

.xpos_ab {
  position: absolute;
  left: 50%;
  .translate(-50%, 0);
}

.pos_absc {
  position: absolute;
  top: 50%;
  left: 50%;
  .translate(-50%, -50%);
}

.c_img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.b_img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.psevdo-item {
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
}

/**
*
  Pop Up
*
**/
.popup_block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: fadeout(#2d2733, 30%);
  z-index: 80;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 0;

  .close_field {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    cursor: pointer;
  }

  .inner {
    background-color: #fff;
    padding: 25px;
  }

  .wrapper {
    z-index: 51;

    //width: 600px;
    background: #fff;
    padding: 30px;
    position: relative;

    .title {
      font: 42px/44px;
      margin-bottom: 30px;
    }

    .field {
      width: 100%;

      .input {
        border: 2px solid #eaeff4;
        font: 14px;
      }

    }

    .logo_img {
      position: absolute;
      top: 20px;
      right: 30px;
    }

    .btn {
      background-color: #ee1c25;
      color: #fff;
      padding: 16px 0;
      text-align: center;
      cursor: pointer;
      .radius(50px);
    }

    &.__small {
      max-width: 372px;

      .btn {
        width: 100%;
      }

    }

    &.__wide {
      max-width: 1170px;
    }

    &:after {
      content: '';
      display: block;
      clear: both;
    }

  }

  .close_popup_icon {
    position: absolute;
    top: 0;
    right: -52px;
    width: 20px;
    height: 20px;
    z-index: 1;

    path {
      fill: #a5adbc;
    }

  }

  &.__visible {
    display: flex;
    opacity: 1;
    visibility: visible;
  }

}




#cookie-banner {
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
  background: #FFF;
  padding: 60px 100px;
}


#cookie-accept {
  display: flex;
  padding: 26px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #1F5A76;
  color: #FFF;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  .transition;

  &:hover {
    background: #42ABDD;
  }
}

#cookie-decline {
  margin-left: 10px;
  padding: 8px 18px;
  background: #f44336;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.standart-content {
  font-family: sans-serif;

  h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #000;
  }

  h2 {
    font-size: 2rem;
    font-weight: bold;
    margin: 2rem 0 1rem 0;
    color: #000;
  }

  h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1.5rem 0 0.5rem 0;
    color: #000;
  }

  h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 1.25rem 0 0.5rem 0;
    color: #000;
  }

  h5 {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 1rem 0 0.5rem 0;
    color: #000;
  }

  h6 {
    font-size: 1rem;
    font-weight: bold;
    margin: 0.75rem 0 0.5rem 0;
    color: #000;
  }

  p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #000;
  }

  img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 4px;
  }

  blockquote {
    border-left: 4px solid #000;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    background-color: #000;
    padding: 1rem;
    border-radius: 0 4px 4px 0;
  }

  ul,
  ol {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.6;
    list-style: none;
    padding: 0;
    margin-left: 0px;
  }

  ul {
    li {
      margin-bottom: 0.5rem;
      color: #000;
      position: relative;
      padding-left: 1.5rem;

      &:before {
        content: "•";
        position: absolute;
        left: 0;
        color: #000;
        font-weight: bold;
      }
    }
  }

  ol {
    counter-reset: item;

    li {
      margin-bottom: 0.5rem;
      color: #000;
      position: relative;
      padding-left: 2rem;
      counter-increment: item;

      &:before {
        content: counter(item) ".";
        position: absolute;
        left: 0;
        color: #000;
        font-weight: bold;
      }
    }
  }

  em {
    font-style: italic;
    color: #000;
  }

  strong {
    font-weight: bold;
    color: #000;
  }
}

.error-404-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 {
  text-align: center;
  width: 100%;
}

.error-404__code {
  font-size: 6rem;
  margin-bottom: 0.5em;
}

.error-404__title {
  font-size: 2rem;
  margin-bottom: 1em;
}

.error-404__desc {
  margin-bottom: 2em;
}

.error-404__btn {
  display: inline-block;
  margin-top: 2em;
  padding: 12px 32px;
  background: #222;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background 0.2s;
}

.error-404__btn:hover {
  background: #444;
}

body {
  background-color: #F5F5F5;
  color: #1B2F38;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.container {
  width: 1740px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
}


header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;

  .container {
    display: flex;
    align-items: center;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.06);
  padding: 9px 16px;
  width: 290px;
}

.header__logo-img {
  width: 57px;
  height: 68px;
}

.header__logo-name {
  margin-bottom: 4px;
  color: #1E5A76;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
}


.header__logo-info {
  width: 181px;
}

.header__logo-description {
  color: #798286;
  font-family: Onest;
  font-size: 9px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.header__menu {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 0 26px;

  a {
    color: #5B6468;
    font-family: Onest;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
  }
}

.header__menu>ul {
  display: flex;
  align-items: center;
}

.header__menu li {
  position: relative;
  list-style: none;
}

.header__menu li:has(> ul)>a {
  position: relative;

  &::after {
    content: '';
    position: absolute;
    background-image: url("../imgs/icons/li-icon.svg");
    background-repeat: no-repeat;
    background-position: right center;
    .ypos_ab;
    right: -24px;
    width: 14px;
    height: 8px;
    .transition;
  }
}

.header__menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFF;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  z-index: 10;
  display: none;
  flex-direction: column;
  width: calc(100% + 300px);
  max-width: 100000px;
}

.header__menu li:hover>ul {
  display: block;
}

.header__menu li ul li a {
  display: block;
  padding: 8px 16px;
  white-space: wrap;
}



.header__info {
  display: flex;
  align-items: center;
}

.header__menu>ul>li>a {
  padding: 33px 0;
  display: inline-block;
}

.header__menu>ul {
  gap: 62px;
}

.header__phone-arrow.active {
  transform: translateY(-50%) scaleY(-1);
}

.header__menu>ul>li:has(> ul):hover>a::after {
  transform: translateY(-50%) scaleY(-1);
  background-image: url("../imgs/icons/li-icon2.svg");
}

.header__menu>ul>li:has(> ul):hover>a {
  color: #1E5A76;
}


.header__menu a {
  transition: color 0.3s ease;

  &:hover {
    color: #1E5A76;
  }
}

.header__menu li ul {
  top: calc(100% + 10px);
}

.header__menu>ul>li:has(> ul)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
  background: transparent;
  z-index: 9;
  cursor: pointer;
}

.header__search-wr {
  border-radius: 10px;
  background: #D9E6ED;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  padding: 31px 26px;
  width: 145px;
  cursor: auto;

  input {
    color: #1E5A76;
    font-family: Onest;
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    font-style: normal;

    &::placeholder {
      color: #1E5A76;
    }
  }
}

.header__search-icon {
  display: flex;
  flex-shrink: 0;
  margin-right: 20px;
  width: 24px;
  height: 24px;
}


.header__center {
  position: relative;
}

.header__search-close {
  display: none;
  cursor: pointer;
  width: 19px;
  height: 20px;
  flex-shrink: 0;
  .transition;
  margin-left: 10px;
}

.header__center {
  padding-right: 149px;

  .header__search-wr {
    right: 0;
    position: absolute;
  }
}

.header__search-wr.active {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100%;

  .header__search-close {
    display: flex;
  }
}



.header__search-wr input {
  width: 100%;
}


.header__btn {
  border-radius: 10px;
  width: 189px;
  background: #1F5A76;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  padding: 31px 26px;
  justify-content: center;
  align-items: center;
  gap: 20px;

  svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
  }

  color: #FFF;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  transition: background 0.3s ease;
  cursor: pointer;

  svg {
    path {
      .transition;
    }
  }

  &:hover {
    background: #FFF;

    svg {
      path {
        fill: #1F5A76;
      }
    }

    color: #1F5A76;
  }
}


.header__phone-top {
  padding: 30px 26px;
  border-radius: 10px;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 20px;

  a {
    .transition;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #000;
    font-family: Onest;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    svg {
      width: 26px;
      height: 26px;
      flex-shrink: 0;
      display: flex;
    }

    &:hover {
      color: #1E5A76;
    }
  }
}

.header__phone-arrow {
  display: flex;
  flex-shrink: 0;
  cursor: pointer;
  .transition;
}

.header__center {
  display: flex;
  align-items: center;
  gap: 6px;
}

header {
  .container {
    gap: 6px;
    padding-top: 19px;
    padding-bottom: 19px;
  }
}

.header__info {
  gap: 6px;

}

.header__phone-wr {
  position: relative;
  width: 320px;
  background: #FFF;
  border-radius: 10px;
}

.header__menu {
  width: 751px;
}

.header__search-icon {
  cursor: pointer;
}


.header__menu>ul>li:has(> ul)::after {
  cursor: pointer;
}


.header__phone-bottom {
  border-radius: 0px 0px 10px 10px;
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  top: calc(100% - 10px);
  background: #FFF;
  padding: 0px 26px 27px 26px;
  z-index: 20;
}

.header__phone-wr.active {
  .header__phone-arrow {
    transform: translateY(-50%) scaleY(-1);
  }
}

.main-slider {
  .owl-nav {
    position: absolute;

    gap: 10px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    bottom: 80px;
    right: 80px;
  }

  .owl-prev,
  .owl-next {
    display: flex;
    width: 70px;
    height: 70px;
    padding: 22px 19px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    aspect-ratio: 1/1;
    border-radius: 10px;
    background: #FFF !important;
    display: flex;
    .transition;
    cursor: pointer;

    &:hover {
      background: #1F5A76 !important;

      svg {
        path {
          stroke: #FFF !important;
        }
      }
    }
  }
}

.header-mail {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #1B2F38;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-bottom: 16px;
  .transition;

  &:hover {
    color: #1E5A76;
  }

  svg {
    width: 26px;
    height: 26px;
  }
}

.header__socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
}

header {
  z-index: 100;
}

.header__cosial {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #1B2F38;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  .transition;

  &:hover {
    color: #1E5A76;
  }

  img {
    width: 26px;
    height: 26px;
    display: flex;
    flex-shrink: 0;
  }
}

.header__phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 26px 24px;
  border-radius: 10px;
  background: #1F5A76;
  color: #FFF;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  .transition;
  border: 1px solid transparent;
  width: 100%;

  &:hover {
    background: #FFF;
    color: #1F5A76;
    border: 1px solid #1F5A76;
  }
}

.header-shadow {
  height: 124px;
}

.main {
  margin-bottom: 140px;
}

.main__slide {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 722px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px;
  padding-left: 40px;
}

.main__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.main__shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #1F5A76;
}

.main__content {
  position: relative;
  z-index: 10;
}

.main__content {
  width: 980px;
}

.main__title {
  margin-bottom: 16px;
  color: #FFF;
  font-family: Onest;
  font-size: 58px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}

.main__text {
  width: 667px;
  margin-bottom: 57px;
  color: #FFF;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}


.main__nav {
  display: flex;
  gap: 10px;
  position: relative;
  top: 4px;
}

.main__link {
  display: flex;
  padding: 26px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #FFF;
  .transition;
  cursor: pointer;
  color: #1F5A76;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: 0.42px;
  text-transform: uppercase;

  &:hover {
    background: #1F5A76;
    color: #FFF;
  }
}

.main__btn {
  border-radius: 10px;
  border: 2px solid #FFF;
  display: flex;
  padding: 26px 22px;
  justify-content: center;
  align-items: center;
  .transition;
  cursor: pointer;
  color: #FFF;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: 0.42px;
  text-transform: uppercase;

  &:hover {
    background: #FFF;
    color: #1F5A76;
  }
}

.company {
  margin-bottom: 147px;
}

.company__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 20px;
}

.company__subtitle {
  color: #1B2F38;
  font-family: Onest;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.company__title {
  width: 1288px;
  color: #1B2F38;
  font-family: Onest;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;

  span {
    color: #1A83B5;
  }
}

.company__slider {
  display: flex;
  gap: 20px;
  margin-bottom: 80px;
}

.company__img {
  width: 560px;
  height: 422px;
  border-radius: 10px;
  object-fit: cover;
}

.company__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-left: 15px;
  padding-right: 15px;
}

.company__link {
  display: flex;
  padding: 26px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #1F5A76;
  color: #FFF;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  .transition;
  cursor: pointer;

  &:hover {
    background: #42ABDD;
    color: #fff;
  }
}


.header-active {
  .header__logo-description {
    display: none;
  }

  .header__logo-img {
    width: 42px;
    height: 50px;
  }

  .header__logo-info {
    width: 194px;
  }

  .header__logo-name {
    margin-bottom: 0;
  }

  .header__menu>ul>li>a {
    padding: 24px 0;
    display: inline-block;
  }

  .header__search-wr {
    padding: 22px 26px;
  }

  .header__btn {
    padding: 22px 26px;
  }

  .header__phone-top {
    padding: 20px 26px;
  }
}

.company__content-text {
  width: 1288px;
  color: #1B2F38;
  font-family: Onest;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.company__subtitle {
  padding-top: 15px;
}


.bg-blue {
  padding-top: 140px;
  padding-bottom: 140px;
  overflow: hidden;
  background: linear-gradient(107deg, #1F5A76 0%, #367FA1 100%);
}


.training__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.training .company__subtitle {
  color: #FFF;
}

.training__head-info {
  width: 1288px;
}

.training__title {
  margin-bottom: 40px;
  color: #FFF;
  font-family: Onest;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.training__text {
  width: 856px;
  color: #FFF;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.training__head {
  margin-bottom: 80px;
}


.training__blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 10;
}


.training__block {
  padding: 40px;
  width: 24.56%;
  height: 287px;
  border-radius: 10px;
  background: #e0e9ede8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  justify-content: space-between;
  .transition;
  cursor: pointer;
}

.training__block.psevdo {
  background-color: transparent;

  &:hover {
    background-color: transparent;
  }
}


.training__block-name {
  color: #1F5A76;
  font-family: Onest;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  .transition;
}

.training__block-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.training__block-info {
  p {
    color: #8E9DA4;
    font-family: Onest;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    .transition;
    line-height: 140%;
    position: relative;
    top: 13px;
  }

  span {
    color: #8E9DA4;
    font-family: Onest;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    .transition;
    line-height: 140%;
  }
}

.training__block-arrow {
  display: none;
  .transition;
}

.training__block-kr {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #1F5A76;
  .transition;
}

.training__block-arrow {
  display: none;
  align-items: center;
  width: 70px;
  height: 70px;
  justify-content: center;
  border-radius: 10px;
  background: #FFF;
  .transition;
}


.training__block:hover {
  background: #42ABDD;

  .training__block-name {
    color: #FFF;
  }

  .training__block-info p {
    color: #FFF;
  }

  .training__block-info span {
    color: #FFF;
  }

  .training__block-kr {
    display: none;
  }

  .training__block-arrow {
    display: flex;
  }
}

.training {
  .container {
    position: relative;
  }
}

.training__blocks {
  position: relative;
}

.training__text-img {
  position: absolute;
  .pos_absc;
  max-width: 100000px;
}

.training__block {
  position: relative;
  z-index: 10;
}

.training {
  margin-bottom: 140px;
}

.help-you__wr {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 60px;
  display: flex;
  justify-content: space-between;
}

.help-you__img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.help-you__content {
  position: relative;
  z-index: 10;
}

.help-you__form {
  position: relative;
  z-index: 10;
}

.help-you__shadow {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 54, 80, 0.75) 0%, rgba(0, 54, 80, 0.75) 100%);
  z-index: 6;
}

.help-you__content {
  width: 735px;
}

.help-you__form {
  width: 795px;
}

.help-you__title {
  color: #FFF;
  font-family: Onest;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.help-you__icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.help-you__text {
  color: #FFF;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  width: 395px;
}

.help-you__form {
  border-radius: 10px;
  background: #FFF;
  backdrop-filter: blur(5px);
  padding: 40px;
}


.help-you__block {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  width: 100%;
  flex-direction: column;

  span {
    margin-bottom: 10px;
    color: #889BA4;
    font-family: Onest;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  input {
    color: #889BA4;
    font-family: Onest;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 10px;
    border: 2px solid #889BA4;
    padding: 22px 25px;
    width: 100%;
  }
}

.help-you__bottom {
  gap: 40px;
}

.help-you__bottom {
  margin-top: 31px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.help-you__btn {
  display: flex;
  padding: 26px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #1F5A76;
  color: #FFF;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  .transition;
  cursor: pointer;

  &:hover {
    background: #42ABDD;
  }
}

.checkbox__parent {
  width: 484px;
}


.checkbox__icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px solid #1F5A76;
  cursor: pointer;
  position: relative;
  margin-right: 11px;
}

.checkbox__parent {
  display: flex;
  position: relative;
  align-items: flex-start;
}

.checkbox__parent input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  margin: 0;
  opacity: 0;

  &:checked+.checkbox__icon {
    background: #1F5A76;
  }
}

.checkbox__icon svg {
  max-width: 90%;
  opacity: 0;
  .transition;
  .pos_absc;
}

.checkbox__parent input:checked+.checkbox__icon svg {
  opacity: 1;
}

.consult__text {
  color: #889BA4;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  cursor: pointer;

  a {
    color: #42ABDD;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Onest;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    .transition;

    &:hover {
      color: #1E5A76;
    }
  }
}

.help-you__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.bg-blue {
  margin-bottom: 140px;
}

.services__head {
  .training__title {
    color: #1B2F38;
  }
}

.services {
  margin-bottom: 140px;
}

.services__blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.services__block {
  width: 24.6%;
  border-radius: 10px;
  background: rgba(31, 90, 118, 0.85);
  backdrop-filter: blur(5px);
  height: 312px;
  .transition;
  padding: 40px;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;

  &:hover {
    background: #42ABDD;

    .training__block-kr {
      display: none;
    }

    .training__block-arrow {
      display: flex;
    }
  }
}

.training__block-arrow {
  .transition;
}

.services__name {
  color: #FFF;
  font-family: Onest;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.services__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  .training__block-kr {
    background: #FFF;
  }
}

.services__img {
  width: 100px;
  height: 100px;
}

.services__head {
  margin-bottom: 80px;

  .training__title {
    margin-bottom: 0;
  }
}


.blog__block-big .blog__info{

  margin-bottom: 80px;
}

.services__img-wr {
  .pos_absc;
  z-index: -1;
}

.services__blocks {
  position: relative;
}

.scheme-training {
  margin-bottom: 140px;
}

.scheme-training__blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scheme-training__block {
  width: 33%;
  padding: 40px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.04);
  min-height: 320px;
}

.scheme-training__num {
  margin-bottom: 39px;
  color: #009ED0;
  font-family: Onest;
  font-size: 64px;
  font-style: normal;
  font-weight: 200;
  line-height: 100%;
  display: block;
  text-transform: uppercase;
}

.scheme-training__name {
  color: #1F5A76;
  font-family: Onest;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}

.scheme-training__text {
  color: #1B2F38;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.reviews__blocks {
  gap: 10px;
  display: flex;
}

.reviews__block {
  width: 423px;
  background: #FFF;
  padding: 40px;
  display: flex!important;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
}

.reviews__img {
  width: 293px;
  height: 413px;
  border-radius: 10px;
  box-shadow: 0 4px 22px 0 rgba(0, 0, 0, 0.11);
  margin-bottom: 71px;
}

.reviews__name {
  color: #1F5A76;
  font-family: Onest;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 20px;
}

.reviews__text {
  color: #1B2F38;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.reviews {
  margin-bottom: 140px;
}

.documents {
  margin-bottom: 140px;
}

.documents {
  .training__title {
    color: #1B2F38;
  }
}

.documents__head-text {
  color: #1B2F38;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;

  a {
    color: #42ABDD;
    font-family: Onest;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    .transition;

    &:hover {
      color: #1E5A76;
    }
  }
}

.documents__blocks {
  display: flex;
  gap: 10px;
}

.documents__block {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.04);
  padding: 15px 21px;
}

.documents__img {
  height: 372px;
  width: 100%;
  object-fit: cover;
}

.teachers__blocks {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.teachers__block {
  border-radius: 10px;
  width: 423px;
  cursor: pointer;
  background: #FFF;
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.04);
}

.teachers__img-wr {
  .transition;
  height: 425px;
  border-radius: 10px;
  overflow: hidden;

  img {
    .transition;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.teachers__content {
  padding: 40px;
}

.teachers__name {
  margin-bottom: 20px;
  color: #1F5A76;
  font-family: Onest;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.teachers {
  margin-bottom: 137px;
}

.teachers__text {
  margin-bottom: 20px;
  color: #1B2F38;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.teachers__link {
  color: #42ABDD;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  .transition;
}


.teachers__block:hover {
  .teachers__img-wr img {
    transform: scale(1.05);
  }

  .teachers__link {
    color: #1E5A76;
  }
}

.status-info {
  margin-bottom: 140px;

  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}


.status-info__img {
  width: 180px;
  height: 189px
}

.status-info__text {
  width: 1288px;

  p {
    color: #1B2F38;
    font-family: Onest;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 24px;

    &:last-child {
      margin-bottom: 0;
    }
  }
}

.licenses {
  margin-bottom: 140px;
}

.licenses__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 24px;
  border-radius: 10px;
  border: 2px solid #FFF;
  color: #FFF;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  .transition;

  &:hover {
    background: #FFF;
    color: #1F5A76;
  }
}

.training__head-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.licenses__blocks {
  display: flex;
  gap: 10px;
}

.licenses__block {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.04);
  padding: 20px;
  width: 423px;
  height: 571px;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}

.licenses {
  .company__subtitle {
    color: #FFF;
  }
}

.advantages {
  .company__subtitle {
    color: #fff;
  }
}

.advantages {
  margin-bottom: 140px;
}

.advantages__blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.advantages__block,
.advantages__block-img {
  width: 24.5%;
  min-height: 473px;
  border-radius: 10px;
  overflow: hidden;
}

.advantages__block-img {
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.advantages__block {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.04);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.advantages__icon {
  width: 100px;
  height: 100px;
}

.advantages__name {
  margin-bottom: 20px;
  color: #1F5A76;
  font-family: Onest;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.advantages__text {
  color: #1B2F38;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.advantages {
  .training__title {
    margin-bottom: 0;
  }
}


.geography__map {
  height: 954px;
  margin-top: -98px;
  margin-bottom: 11px;

  img {
    width: 1779px;
    height: 100%;
    position: relative;
    left: -28px;
    max-width: 100000px;
  }
}

.geography__head-text {
  color: #FFF;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}


.geography__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.geography__link {
  padding: 26px 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #FFF;
  color: #1F5A76;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  .transition;

  &:hover {
    background: #42ABDD;
    color: #fff;
  }
}

.geography {
  .company__subtitle {
    color: #FFF;
  }
}


.geography__blocks {
  display: flex;
  gap: 60px;
  width: 1288px;
}

.geography__block {
  width: 389px;
}

.geography__num {
  margin-bottom: 10px;
  color: #FFF;
  font-family: Onest;
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  display: block;
}

.geography__text {
  color: #FFF;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.other-questions {
  margin-bottom: 80px;
  margin-top: -60px;

  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.other-questions__content {
  width: 820px;
}

.other-questions__name {
  color: #1B2F38;
  font-family: Onest;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 40px;
}

.other-questions__text {
  color: #1B2F38;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  width: 575px;
}


.other-questions {
  .help-you__form {
    width: 819px;
  }

  .checkbox__parent {
    width: 508px;
  }
}

footer {
  background: #FFF;
}

.footer__top .container {
  padding: 30px 10px;
  display: flex;
  justify-content: space-between;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 20px;

  img {
    width: 69px;
    height: 82px;
  }
}

.footer__name {
  color: #1E5A76;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  text-transform: uppercase;
}


.footer__contacts {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.footer__contacts {
  width: 777px;
  padding-left: 0;
  padding-top: 11px;
}

.footer__socials {
  padding-top: 11px;
  max-width: 270px;
}

.footer__contacts-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  a {
    color: #151617;
    margin-bottom: 8px;
    font-family: Onest;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    .transition;

    &:hover {
      color: #42ABDD;
    }
  }

  span {
    color: #889BA4;
    font-family: Onest;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}

.footer__contacts-block-email {
  a {
    color: #151617;
    font-family: Onest;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }
}


.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__social {
  border-radius: 6px;
  width: 54px;
  height: 54px;
}

.footer__center {
  .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer__menu {
  width: 1275px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.footer__address {
  width: 385px;
}

.footer__menu-block {
  width: 385px;

  ul {
    display: flex;
    flex-direction: column;
    gap: 11px;

    a {
      color: #151617;
      font-family: Onest;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      .transition;

      &:hover {
        color: #42ABDD;
      }
    }
  }
}

.footer__menu-strong {
  margin-bottom: 25px;
  color: #151617;
  font-family: Onest;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: block;
  .transition;

  &:hover {
    color: #42ABDD;
  }
}

.footer__menu-block-sights {
  ul {
    gap: 26px;
  }

  a {
    font-weight: 600 !important;
    .transition;

    &:hover {
      color: #42ABDD;
    }
  }
}

.footer__address {
  span {
    display: block;
    margin-bottom: 10px;
    color: #151617;
    font-family: Onest;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
  }

  address {
    color: #151617;
    font-family: Onest;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }
}

.footer__center {
  padding-top: 37px;
  padding-bottom: 36px;
  border-top: 1px solid #D1D9DB;
  border-bottom: 1px solid #D1D9DB;
}

.footer__menu-block-sights ul {
  gap: 20px;
}

.footer__bottom {
  padding-top: 30px;
  padding-bottom: 30px;

  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__copyright {
  color: #727272;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.footer__bottom-links {
  display: flex;
  justify-content: space-between;
  width: 753px;

  a {
    color: #5F949D;
    font-family: Onest;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    .transition;

    &:hover {
      color: #42ABDD;
    }
  }
}

.arrow-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  border: 1px solid #2A9E9F;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #fff;
  .transition;

  svg {
    .transition;

    path {
      .transition;
    }
  }

  &:hover {
    background: #2A9E9F;

    svg {
      path {
        stroke: #fff;
      }
    }
  }
}

.rev-modal {
  padding: 40px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.06);
  width: 820px;

  .help-you__form {
    padding: 0;
  }
}


.rev-modal {
  .pos_absc;
  z-index: 120;
  display: none;
  position: fixed;
  display: none;
}


.rev-modal__title {
  margin-bottom: 20px;
  color: #1B2F38;
  font-family: Onest;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.rev-modal__text {
  color: #1B2F38;
  font-family: Onest;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  width: 680px;
}

.rev-modal__info {
  margin-bottom: 30px;
}


.fancybox__content>.f-button.is-close-btn {
  opacity: 1;
  top: 18px;
  right: 17px;
  --f-button-border-radius: 0;
  --f-button-svg-width: 28px;
  --f-button-svg-height: 27px;
  --f-button-width: 42px;
  --f-button-height: 43px;
}

.f-button svg {
  stroke: #969696;
}

.cookie-banner-wr {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner-text {
  color: #1B2F38;
  font-family: Onest;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

#cookie-banner .cookie-banner-text a {
  color: #1A83B5;
  font-family: Onest;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  .transition;

  &:hover {
    color: #1E5A76;
  }
}

#cookie-more {
  display: flex;
  padding: 26px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 2px solid #1F5A76;
  .transition;
  cursor: pointer;
  color: #1F5A76;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: 0.28px;
  text-transform: uppercase;

  &:hover {
    background: #1F5A76;
    color: #fff;
  }
}


.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider__standart{

  .owl-next{
    right: -40px;
    
  }
  .owl-prev{
    left: -40px;
    display: none!important;
    
  }

  .owl-prev,.owl-next{
    
    .ypos_ab;
    
    display: flex;
    width: 70px;
    height: 70px;
    padding: 22px 19px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: 10px;
    .transition;
    path{
      .transition;
    }
background: #1F5A76!important;
    &:hover{
      background: #FFF!important;
      svg{
        path{
          stroke: #1F5A76!important;
        }
      }
    }
  }

  .owl-item>a{
    display: block;
    width: 100%;
  }
  .owl-item>div{
    width: 100%;
  }

  .owl-stage-outer{
    overflow: visible;
  }
  .owl-item{
    opacity: 0;
    .transition;
    &.active{
      opacity: 1;
    
      &+.owl-item{
        opacity: 1;
      
        &+.owl-item{
          opacity: 1;
        
          &+.owl-item{
            opacity: 1;
          }
        }

      }
    }

  }
}

.reviews__img{
  object-fit: cover;
}

.header__burger{
  display: none;
  flex-direction: column;
  width: 30px;
  gap: 8px;
  div{
width: 100%;
height: 3px;
background-color: #1F5A76;
  }
}


.burger-menu {
  width: 84% !important;
  position: fixed;
  right: 0;
  padding-top: 0px;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 300;
  top: 0;
  .transition(0.2s);
  transform: translateX(100%);

  &.active {
    transform: translateX(0%);
  }

  padding: 30px 20px;
  bottom: 0;
  background: white;
  color: #1C1C1C;
}

.dark {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
  background: #000;
  opacity: 0.64;

  display: block;
}

.burger-close {
  position: absolute;
  top: 13px;
  right: 7px;
  height: 37px;
  width: 37px;
}

.burger-menu__logo{
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 15px;
  img{
    width: 56px;
    height: 67px;
  }
}

.burger-menu-info{
  span{
    color: #1E5A76;
    font-family: Onest;
    font-size: 17px;
    margin-bottom: 7px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    display: block;
    text-transform: uppercase;
  }
  p{
    color: #798286;
    font-family: Onest;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
  }
}


.burger-menu__list a{
  color: #5B6468;
font-family: Onest;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 120%;
}

.burger-menu__list{
  ul{
    display: flex;
    flex-direction: column;
    gap: 8px;
    li{
      ul{
        padding-left: 20px;
        padding-top: 10px;
      }
    }
  }
}

.burger-menu-wr{
  height: 100%;
}

.burger-menu__head{
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
  height: 100%;
}

.burger-menu__bottom{
  padding-bottom: 20px;
  .header-mail{
    display: flex;
  align-items: center;
  gap: 14px;
  color: #000;
font-family: Onest;
margin-bottom: 10px;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: normal;
  }
}


.burger-menu__tel{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
font-family: Onest;
margin-bottom: 10px;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: normal;
.transition;
&:hover{
  color: #1A83B5;
}
}


.header__burger{
  width: 73px;
  height: 73px;
  padding: 21px;
  background-color: #fff;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}

.header-active .header__burger{
  height: 61px;
  padding: 15px;
  width: 61px;
}

.footer-wr{
  display: flex;
  width: 1170px;
  justify-content: space-between;
}

.standart-nav{
  display: flex;
  align-items: center;
  gap: 4px;
  span{
    color: #8C8C8C;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 140%;
  }
}

.standart-nav__link{
  color: #8C8C8C;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 140%;
}

.standart-nav__link.active{
  color: #1F5A76;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 140%;
.transition;
&:hover{
  color: #1F5A76;
}
}

.learning{
  padding-top: 23px;
}

.standart-nav{
  margin-bottom: 30px;
}

.learning__title{
 margin-bottom: 60px;
 color: #1B2F38;
font-family: Onest;
font-size: 64px;
font-style: normal;
font-weight: 600;
line-height: 110%;
}

.learning__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.learning__block{
  border-radius: 10px;
background: rgba(255, 255, 255, 0.82);
box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.04);
padding: 40px;
}

.learning__top-name{
  margin-bottom: 10px;
  color: #1F5A76;
font-family: Onest;
font-size: 36px;
font-style: normal;
font-weight: 600;
line-height: 120%;
.transition;
}

.learning__top-text{
  color: #8E9DA4;
font-family: Onest;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 120%;
}

.learning__top-arrow{
  border-radius: 10px;
  width: 70px;
height: 70px;
background: #D9E6ED;
width: 70px;
height: 70px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
position: relative;
top: -6px;
.transition;
svg{
  path{
    .transition;
  }
}
}

.learning__top{
  cursor: pointer;
}

.learning__content-blocks{
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.learning__content-block{
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
background: #FFF;
box-shadow: 0 3px 10px 0 rgba(31, 90, 118, 0.15);
padding: 26px 30px;
.transition;
span{
  .transition;
  color: #42ABDD;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 800;
line-height: 90%;
letter-spacing: 0.28px;
text-transform: uppercase;
}
p{
  .transition;
  color: #1F5A76;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 800;
line-height: 120%;
letter-spacing: 0.28px;
text-transform: uppercase;
}
&:hover{
  background: #42ABDD;
  span,p{
    color: #fff;
  }
}
}


.learning__block{
  margin-bottom: 10px;
  &:last-child{
    margin-bottom: 0;
  }
}

.learning__content{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.learning__link{
  color: #FFF;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 800;
line-height: 120%;
letter-spacing: 0.28px;
text-transform: uppercase;
border-radius: 10px;
background: #1F5A76;
display: flex;
padding: 26px 24px;
justify-content: center;
align-items: center;
.transition;
margin-top: 40px;
&:hover{
  background: #42ABDD;
}
}

.learning__block{
  .transition;
  &:hover{
    .learning__top-name{
      color: #42ABDD;
    }
    .learning__top-arrow{
      background: #42ABDD;   
      svg{
        path{
          stroke: #fff;
        }
      }
    }
  }
}

.learning__block.active{
.learning__top-name{
  color: #1F5A76;
}
.learning__top-arrow{
  background: #D9E6ED;
  svg{
    transform: rotate(180deg);
    path{
      stroke: #1F5A76;
    }
  }
}
}


.learning__top-info{
  width: 90%;
}

.learning{
  margin-bottom: 140px;
}

.reviews2{
  margin-bottom: 278px;
}

.reviews2 + .bg-blue .advantages{
  margin-bottom: 0;
}

.reviews2 + .bg-blue + .help-you{
  margin-bottom: 143px;
}

.documents{
  .owl-dots{
    display: none;
  }
}


.standart-learning{
  margin-bottom: 108px;
}

.standart-learning__wr{
  border-radius: 10px;
background: linear-gradient(107deg, #1F5A76 0%, #367FA1 100%);
padding: 10px;
padding-left: 100px;
display: flex;
align-items: center;
justify-content: space-between;
}

.standart-learning__info{
  width: 708px;
  display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-self: stretch;
}

.standart-learning__title{
  color: #FFF;
font-family: Onest;
font-size: 58px;
font-style: normal;
font-weight: 600;
line-height: 110%; 
}

.standart-learning__text{
  color: #FFF;
font-family: Onest;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 140%;
}

.standart-learning__img{
  width: 732px;
  border-radius: 10px;
  height: 662px;
object-fit: cover;
}

.standart-learning{
  margin-top: 30px;
}

.standart-learning__info{
  padding-bottom: 89px;
  padding-top: 92px;
}

.general-information{
  margin-bottom: 140px;
  .container{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
  }
}

.general-information__subtitle{
  color: #1B2F38;
font-family: "Golos Text";
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 120%;
letter-spacing: 0.6px;
text-transform: uppercase;
}

.general-information__subtitle-wr{
  width: 263px;
}

.standart-content{
  h2{
    margin-bottom: 40px;
    color: #1B2F38;
font-family: Onest;
font-size: 36px;
font-style: normal;
font-weight: 500;
line-height: 120%;
  }
  p{
    margin-bottom: 24px;
    color: #1B2F38;
font-family: Onest;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 140%;
&:last-child{
  margin-bottom: 0;
}
  }
  h3{
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1B2F38;
font-family: Onest;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 140%;
  }
 ul{
  li{
    margin-bottom: 14px;
    color: #1B2F38;
font-family: Onest;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 140%;
padding-left: 20px;
position: relative;
&:after{
  position: absolute;
  top: 7px;
  content: "";
  width: 10px;
height: 10px;
border-radius: 10px;
background: #42ABDD;
left: 0;
}
&:last-child{
  margin-bottom: 0;
}
  }
 }
 ol{
  li{
    margin-bottom: 14px;
    color: #1B2F38;
font-family: Onest;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 140%;
padding-left: 20px;
position: relative;
&:last-child{
  margin-bottom: 0;
}
  }
 }
}

.general-information__wr{
  width: 1288px;
}

.general-information__subtitle-wr{
  padding-top: 45px;
}

.bg-blue{
.company__subtitle{
  color: #fff;
}
}

.training-programs{
  .training__title{
    margin-bottom: 0;
  }
}

.training-programs__block{
  margin-bottom: 10px;
  width: 100%;
  border-radius: 10px;
background: #FFF;
padding: 20px 40px;
display: flex;
align-items: center;
cursor: pointer;
justify-content: space-between;
min-height: 110px;
padding-right: 20px;
.training__block-kr{
  margin-right: 20px;
}
.transition;
  &:last-child{
    margin-bottom: 10px;
  }
  &:hover{
    background: #42ABDD;
    span,p{
      color: #fff;
    }
    .training__block-kr{
      display: none;
    }
    .training__block-arrow{
      display: flex;
    }
  }
}

.training-programs__block-info{
  display: flex;
align-items: center;
gap: 40px;
width: 90%;
span{
  color: #42ABDD;
  font-family: Onest;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 90%;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  .transition;
}
p{
  color: #1F5A76;
  font-family: Onest;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  .transition;
}
}

.training-programs{
  margin-bottom: 140px;
}

.training-programs + .help-you{
  margin-bottom: 140px;
}

.bg-blue{
  .training__title{
    color: #fff;
  }
  .reviews + .advantages{
    margin-bottom: 0;
  }
}

.bg-blue2{
  margin-bottom: 0;
}
.standart-content ul li:before{
  display: none;
}


.standart-nav__link {
  display: block;
  max-width: 45ch;
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;
}

.programm{
  .standart-learning__title{
    color: #FFF;
font-family: Onest;
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: 110%;
  }
}

.standart-learnin__btn{
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
  padding: 26px 24px;
  color: #1F5A76;
  font-family: Onest;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
background: #FFF;
  .transition;
  &:hover{
    color: #fff;
    background: #42ABDD;
  }
}

.standart-learning__info{
  align-items: flex-start;
}

.general-information__btn{
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  .transition;
  color: #FFF;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 800;
line-height: 120%;
letter-spacing: 0.28px;
text-transform: uppercase;
padding: 26px 24px;
border-radius: 10px;
background: #1F5A76;
&:hover{
  background: #42ABDD;
}
}

.general-information__btn{
margin-top: 120px;
}

.about-courses__blocks{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}


.about-courses__block{
  width: 32.8%;
  border-radius: 10px;
background: #FFF;
box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.04);
padding: 40px;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 40px;
}

.about-courses__icon{
  width: 100px;
height: 100px;
}

.about-courses__info{
  span{
    display: block;
    margin-bottom: 20px;
    color: #1B2F38;
font-family: Onest;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 140%;
  }
  p{
    color: #1F5A76;
    font-family: Onest;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
  }
}

.standart-content{
  li{
    a{
      color: #1A83B5;
font-family: Onest;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 140%;
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: auto;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
.transition;
&:hover{
  color: #1F5A76;
}
    }

  }
}


.process{
  margin-bottom: 140px;
}


.documents__head-text{
  margin-top: 40px;
  color: #1B2F38;
font-family: Onest;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 140%; 
}

.process__wr{
  display: flex;
  justify-content: space-between;
}

.process__content{
  width: 566px;
  border-radius: 10px;
background: linear-gradient(107deg, #1F5A76 0%, #367FA1 100%);
}

.process__blocks{
  width: 1144px;
}

.process__content-block{
  margin-bottom: 10px;
  padding: 40px;
  min-height: 335px;
  &:last-child{
    margin-bottom: 0;
  }
}

.process__content-icon{
  margin-bottom: 40px;
  width: 82px;
height: 82px;
}


.process__content-name{
  margin-bottom: 20px;
  color: #FFF;
font-family: Onest;
font-size: 30px;
font-style: normal;
font-weight: 600;
line-height: 120%;
}

.process__content-text{
  color: #FFF;
font-family: Onest;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 140%;
}

.process__blocks{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.process__block{
  width: 49.5%;
  border-radius: 10px;
background: #FFF;
box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.04);
padding: 40px;
min-height: 333px;
}

.process__num{
  margin-bottom: 38px;
  color: #009ED0;
font-family: Onest;
font-size: 64px;
font-style: normal;
font-weight: 200;
line-height: 100%;
text-transform: uppercase;
display: block
}

.process__name{
  margin-bottom: 20px;
  color: #1F5A76;
font-family: Onest;
font-size: 30px;
font-style: normal;
font-weight: 600;
line-height: 120%;
}

.process__text{
  color: #1B2F38;
font-family: Onest;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 140%;
}

.course-program{
.container{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
}

.course-program__wr{
  width: 1288px;
}

.course-program__left{
  width: 278px;
}


.course-program__btn{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 122px;
  padding: 26px 24px;
  border-radius: 10px;
  border: 2px solid #FFF;
  color: #FFF;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 800;
line-height: 120%;
letter-spacing: 0.42px;
text-transform: uppercase;
.transition;
&:hover{
  background: #FFF;
  color: #1F5A76;
}
}

.course-program__left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.course-program__wr{
   table{
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 43px;
    th:nth-child(1){
      width: 144px;
    }
    th:nth-child(2){
      width: 956px;
    }
    th:nth-child(3){
      width: 188px;
    }
    th{
      padding: 24px 32px;
      color: #102D5D;
      text-align: center;
      font-family: Onest;
      font-size: 16px;
      font-style: normal;
      font-weight: 600;
      line-height: 140%;
      border: 1px solid #E6E6E6;
    }
    td:nth-child(1){
      width: 144px;
    }
      th:nth-child(2){
      width: 956px;
    }
    td:nth-child(3){
      width: 188px;
    }
    td{
      color: #102D5D;
text-align: center;
font-family: Onest;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 140%;
padding: 23px 32px;
border: 1px solid #E6E6E6;
    }
   }
}

.bg-blue{
  .standart-content{
    p,a,h3,h2.h4,h5,h6,li,strong{
      color: #fff;
    }
  }
}

.course-program__btn{
  text-align: center;
}

.course-program{
  margin-bottom: 140px;
}

.admission{
  .container{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .help-you__form{
    margin-top: 37px;
    width: 100%;
  }
  .checkbox__parent {
    width: 80%;
}
}

.bg-blue{
  .standart-content{
    strong{
      color: #fff;
    }
  }
}

.standart-content{
  strong{
    color: #000;
font-family: Onest;
font-size: 22px;
font-style: normal;
font-weight: 600;
line-height: 140%;
  }
}

.help-you__form__name{
  margin-bottom: 31px;
  color: #102D5D;
font-family: Onest;
font-size: 36px;
font-style: normal;
font-weight: 600;
line-height: 120%;
}

.documents{
  .training__title{
    margin-bottom: 0;
  }
}

.documents + .help-you{
margin-bottom: 140px;
}

.services__title{
  margin-bottom: 60px;
  color: #1B2F38;
font-family: Onest;
font-size: 64px;
font-style: normal;
font-weight: 600;
line-height: 110%;
}


.services + .help-you{
  margin-bottom: 140px;
}


.services{
  margin-top: 20px;
}

.standart-learning-top{
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.standart-learning-bottom{
  display: flex;
  align-items: center;
  gap: 40px;
}

.standart-learni__price{
  color: #FFF;
font-family: Onest;
font-size: 30px;
font-style: normal;
font-weight: 500;
line-height: 110%;
}

.cost__blocks{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cost__block{
  width: 32.9%;
}

.cost{
  margin-bottom: 140px;
}

.cost__block{
  border-radius: 10px;
background: #FFF;
box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.04);
padding: 40px;
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 20px;
min-height: 624px;
}

.cost__head{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.cost__name{
  margin-bottom: 14px;
  color: #1F5A76;
text-align: center;
font-family: Onest;
font-size: 36px;
font-style: normal;
font-weight: 600;
line-height: 120%;
}

.cost__subtitle{
  color: #889BA4;
text-align: center;
font-family: Onest;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.cost__price{
  color: #1F5A76;
text-align: center;
font-family: Onest;
font-size: 50px;
font-style: normal;
font-weight: 400;
line-height: 120%;
margin-bottom: 30px;
}

.cost__info{
  ul{
    li{
      margin-bottom: 14px;
      color: #1B2F38;
      padding-left: 32px;
font-family: Onest;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 140%;
position: relative;
span{
  font-weight: 700;
  color: #1A83B5;
}
&::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
height: 23px;
background-image: url("../imgs/icons/cost-icon.svg");
}
      &:last-child{
        margin-bottom: 0;
      }
    }
  }
}

.cost__btn{
  border-radius: 10px;
background: #1F5A76;
display: flex;
padding: 26px 24px;
justify-content: center;
align-items: center;
width: 100%;
color: #FFF;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 800;
cursor: pointer;
line-height: 120%;
letter-spacing: 0.28px;
text-transform: uppercase;
.transition;
&:hover{
  background: #42ABDD;
}
}


.cost__garant{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  p{
    color: #1B2F38;
text-align: center;
font-family: Onest;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 140%;
margin-bottom: 14px;
strong{
  font-weight: 700;
}
&:last-child{
  margin-bottom: 0;
}
  }
}

.cost__var{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cost__var-name{
  margin-bottom: 6px;
  color: #1A83B5;
text-align: center;
font-family: Onest;
font-size: 36px;
font-style: normal;
font-weight: 500;
line-height: 120%;
}


.cost__var-text{
  color: #1A83B5;
text-align: center;
font-family: Onest;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 140%;
}


.proceeding__blocks{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  .process__block{
    width: 32.9%;
  }
}

.proceeding{
  margin-bottom: 140px;
}

.bg-blue + .help-you{
  margin-bottom: 140px;
}

.intelligence{
  margin-bottom: 140px;
  margin-top: 20px;
}

.intelligence__title{
  margin-bottom: 60px;
  color: #1B2F38;
font-family: Onest;
font-size: 64px;
font-style: normal;
font-weight: 600;
line-height: 110%;
}

.intelligence__wr{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.intelligence__links{
  width: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.intelligence__content{
  border-radius: 10px;
background: #FFF;
box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.04);
padding: 40px;
width: 1287px;
}


.intelligence__link{
  border-radius: 10px;
border: 1px solid #AABDC7;
display: flex;
padding: 16px;
justify-content: flex-start;
align-items: center;
color: #1F5A76;
font-family: Onest;
font-size: 12px;
font-style: normal;
font-weight: 800;
line-height: 120%;
letter-spacing: 0.24px;
text-transform: uppercase;
width: 100%;
.transition;
&:hover{
  background: #1F5A76;
  color: #FFF;
  border-color: #1F5A76;
}
&.active{
  background: #1F5A76;
  color: #FFF;
  border-color: #1F5A76;
}
}

.intelligence__content-title{
  color: #1B2F38;
font-family: Onest;
font-size: 36px;
font-style: normal;
font-weight: 600;
line-height: 120%;
margin-bottom: 40px;
}

.intelligence__docs{
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.intelligence__doc{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  &:last-child{
    margin-bottom: 0;
  }
  svg{
    width: 40px;
height: 40px;
  }
    color: #1F5A76;
font-family: Onest;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 140%;
.transition;
&:hover{
  color: #1A83B5;
}
}

.intelligence{
  .standart-content{
    margin-bottom: 60px;
  }
}

.intelligence__docs-wr-title{
  margin-bottom: 40px;
  color: #1B2F38;
font-family: Onest;
font-size: 36px;
font-style: normal;
font-weight: 600;
line-height: 120%;
}

.intelligence__docs-imgs{
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.intelligence__docs-img{
  width: 375px;
  height: 265px;
}

.intelligence__docs-img{
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.license{
  margin-bottom: 140px;
  margin-top: 20px;
}

.license__title{
  margin-bottom: 60px;
  color: #1B2F38;
font-family: Onest;
font-size: 64px;
font-style: normal;
font-weight: 600;
line-height: 110%;
}

.license__imgs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
}

.license__img{
  width: 32.9%;
  border-radius: 10px;
background: #FFF;
box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.04);
height: 400px;
padding: 20px;
img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
}

.license__wr{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.license__link{
  display: flex;
  width: 278px;
  padding: 26px 24px;
  justify-content: center;
  align-items: center; 
  border-radius: 10px;
border: 2px solid #1F5A76;
color: #1F5A76;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 800;
line-height: 120%;
letter-spacing: 0.28px;
text-transform: uppercase;
.transition;
&:hover{
  background: #1F5A76;
  color: #FFF;
  border-color: #1F5A76;
}
}

.license__content{
  width: 1288px;
  p{
    color: #1B2F38;
font-family: Onest;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 140%;
margin-bottom: 24px;
strong{
  font-weight: 700;
}
  }
  a{
    margin-bottom: 24px;
    color: #1A83B5;
font-family: Onest;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 140%;
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: auto;
// display: block;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
.transition;
&:last-child{
  margin-bottom: 0;
}
&:hover{
  color: #1F5A76;
}
  }

}

.license__content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog{
  margin-top: 20px;
  margin-bottom: 140px;
}

.blog__title{
  margin-bottom: 60px;
  color: #1B2F38;
font-family: Onest;
font-size: 64px;
font-style: normal;
font-weight: 600;
line-height: 110%;
}

.blog__tags{
  flex-wrap: wrap;
  display: flex;
  gap: 9px;
  margin-bottom: 64px;
}

.blog__tag{
  display: flex;
padding: 16px;
justify-content: center;
align-items: center;
border-radius: 10px;
border: 1px solid #AABDC7;
cursor: pointer;
.transition;
color: #1F5A76;
font-family: Onest;
font-size: 12px;
font-style: normal;
font-weight: 800;
line-height: 120%;
letter-spacing: 0.24px;
text-transform: uppercase;
&:hover{
  background: #1F5A76;
  color: #FFF;
  border-color: #1F5A76;
}
&.active{
  background: #1F5A76;
  color: #FFF;
  border-color: #1F5A76;
}
}

.blog__blocks{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog__block-big{
  width: 74.9%;
  border-radius: 10px;
background: #FFF;
box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.07);
display: flex;
align-items: center;
.transition;
cursor: pointer;
justify-content: space-between;
&:hover{
  .blog__name{
    color: #1A83B5;
  }
}
}

.blog-big__img{
  height: 100%;
  border-radius: 10px;
width: 643px;
img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
}

.blog__wr{
  width: 643px;
  padding: 40px;
}

.blog__tegs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 74px;
}

.blog__teg{
  border-radius: 10px;
border: 1px solid #AABDC7;
background: #FFF;
display: flex;
padding: 12px;
justify-content: center;
align-items: center;
color: #1F5A76;
font-family: Onest;
font-size: 9px;
font-style: normal;
font-weight: 700;
line-height: 120%;
text-transform: uppercase;
}

.blog__name{
  margin-bottom: 17px;
  color: #1B2F38;
font-family: Onest;
font-size: 36px;
font-style: normal;
font-weight: 600;
line-height: 120%;
.transition;
display: -webkit-box;
-webkit-box-orient: vertical; 
-webkit-line-clamp: 4;
overflow: hidden;
text-overflow: ellipsis;
}

.blog__text{
color: #3F3F3F;
font-family: Onest;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 140%;
display: -webkit-box;
-webkit-box-orient: vertical; 
-webkit-line-clamp: 4;
overflow: hidden;
text-overflow: ellipsis;
}

.blog__block-name{
  display: -webkit-box;
-webkit-box-orient: vertical; 
-webkit-line-clamp: 3;
overflow: hidden;
text-overflow: ellipsis;
}

.blog__bottom{
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.blog__data{
  color: #969696;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 16px;
}

.blog__time{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #969696;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 16px;
svg{
  width: 19px;
height: 17px;
}
}

.blog__wr{
  display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
}

.blog__block{
  width: 24.5%;
  border-radius: 10px;
background: #FFF;
box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.04);
cursor: pointer;
.transition;
&:hover{
  .blog__block-name{
    color: #1A83B5;
  }
}
}

.blog__block-img{
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
}

.blog__block-tags{
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  z-index: 10;
}

.blog__block-tag{
  display: flex;
  padding: 11px;
justify-content: center;
align-items: center;
border-radius: 10px;
border: 1px solid #AABDC7;
background: #FFF;
color: #1F5A76;
font-family: Onest;
font-size: 9px;
font-style: normal;
font-weight: 700;
line-height: 120%;
text-transform: uppercase;
}

.blog__block-info{
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 213px;
  gap: 20px;
}

.blog__block-name{
  color: #1B2F38;
font-family: Onest;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 120%;
.transition;
}

.blog__bottom{
  width: 100%;
}

.blog__blocks{
  margin-bottom: 59px;
}

.blog__nav-wr{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog__btn-more{
  display: flex;
padding: 26px 24px;
justify-content: center;
align-items: center;
border-radius: 10px;
border: 2px solid #1F5A76;
color: #1F5A76;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 800;
line-height: 120%;
letter-spacing: 0.28px;
text-transform: uppercase;
.transition;
cursor: pointer;
&:hover{
  background: #1F5A76;
  color: #FFF;
  border-color: #1F5A76;
}
}

.blog__nubmers{
  display: flex;
  gap: 10px;
}

.blog__num{
  display: flex;
width: 60px;
height: 60px;
align-items: center;
justify-content: center;
cursor: pointer;
border-radius: 10px;
border: 1px solid #969696;
color: #151617;
text-align: center;
font-family: Onest;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 140%;
.transition;
&:hover{
  background: #1F5A76;
  color: #FFF;
  border-color: #1F5A76;
}
&.active{
  background: #1F5A76;
  color: #FFF;
  border-color: #1F5A76;
}
}

.blog__blocks{
  border-radius: 10px;
  overflow: hidden;
}

.blog-big__img img{
  border-radius: 10px;
}

.article{
  margin-top: 20px;
  margin-bottom: 140px;
}

.article__title{
  margin-bottom: 60px;
  color: #1B2F38;
font-family: Onest;
font-size: 64px;
font-style: normal;
font-weight: 600;
line-height: 110%;
}

.article__wr{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.article__left{
  width: 278px;
}

.article__right{
  width: 1287px;
}

.article__data{
  margin-bottom: 30px;
  span{
display: block;
margin-bottom: 10px;
color: #878384;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 140%;
  }
  p{
    color: #151617;
    font-family: Onest;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
  }
}

.article__more{
  margin-bottom: 30px;
  span{
display: block;
margin-bottom: 10px;
color: #878384;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 140%;
  }
}

.article__socials{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.article__social{
  width: 36px;
height: 36px;
}

.article__tags-wr{
  span{
    margin-bottom: 10px;
    color: #878384;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 140%;
display:block;
  }
}

.article__tags{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.article__tag{
  border-radius: 10px;
border: 1px solid #AABDC7;
display: flex;
padding: 16px;
justify-content: center;
align-items: center;
color: #1F5A76;
font-family: Onest;
font-size: 12px;
font-style: normal;
font-weight: 800;
line-height: 120%;
letter-spacing: 0.24px;
text-transform: uppercase;
}

.article__img-big{
  width: 100%;
  height: 723px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 20px;
}

.standart-content{
  p{
    a{
      color: #1A83B5;
      text-decoration-line: underline;
      text-decoration-style: solid;
      text-decoration-skip-ink: auto;
      text-decoration-thickness: auto;
      text-underline-offset: auto;
      text-underline-position: from-font;
    }

  }
  ol{
    margin-bottom: 40px;
    
  }
  ol li{
    padding-left: 35px;
  }
  ol li::before {
    color: #42ABDD;
  }
}

.article__slider{
 margin-top: 60px;
 margin-bottom: 150px;
 display: flex;
 gap: 20px; 
}

.article__slide{
  width: 582px;
height: 328px;
object-fit: cover;
border-radius: 8px;
}


.standart-content blockquote{
  border: none;
  border-radius: 0;
  margin: 0;
  background-color: transparent;
  padding: 0;
  padding-left: 90px;
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
  &::after{
    position: absolute;
    content: "";
    top: -13px;
    left: 0;
    width: 65px;
    height: 50px;
    background-image: url(../imgs/icons/blocq-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  p{
    margin-bottom: 0;
    color: #151617;
font-family: Onest;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 140%;
margin-top: 20px;
  }
  span{
    color:#878384;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 140%;
  }
}

.related-articles{
  margin-bottom: 140px;
}

.contacts{
  margin-top: 20px;
  margin-bottom: 240px;
}

.contacts__title{
margin-bottom: 60px;
color: #1B2F38;
font-family: Onest;
font-size: 64px;
font-style: normal;
font-weight: 600;
line-height: 110%;
}

.contacts__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.contacts__top__blocks{
  width: 1113px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 100px;
}

.contacts__top-soc{
  width: 506px;
}

.contacts__top-block{
  width: 45.5%;
  span{
    display: block;
    margin-bottom: 10px;
    color: #889BA4;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
  }
  address,p{
    color: #000;
font-family: Onest;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 100%;
  }
  a{
    color: #000;
font-family: Onest;
font-size: 30px;
font-style: normal;
font-weight: 400;
line-height: 110%;
.transition;
&:hover{
  color: #42ABDD;
}
  }
  .contacts-mail{
    color: #000;
font-family: Onest;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 110%;
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: auto;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
  }
}

.contacts__top-soc{
  span{
    display: block;
    margin-bottom: 20px;
    color: #889BA4;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
  }
}

.contacts__top-socials{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contacts-social{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #FFF;
font-feature-settings: 'liga' off, 'clig' off;
font-family: Onest;
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: 100%;
cursor: pointer;
padding: 15px;
border-radius: 10px;
background: #3C97E1;
  img{
    width: 20px;
height: 20px;
  }
}

.contacts__map{
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 30px 0 rgba(235, 236, 242, 0.25);
  height: 640px;
overflow: hidden;
margin-bottom: 60px;
iframe{
  width: 100%;
  height: 100%;
}
}

.contacts__top{
  margin-bottom: 60px;
}

.contacts__bottom-blocks{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 100px;
}

.contacts__bottom-block{
  width: 355px;
  span{
    display: block;
    margin-bottom: 10px;
    color: #889BA4;
    font-family: Onest;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  p{
    color: #000;
font-family: Onest;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 110%;
  }
}

.contacts{
  margin-bottom: 60px;
}

.contacts + .help-you{
  margin-bottom: 140px;
}

.error{
  margin-top: 20px;
  margin-bottom: 140px;
}

.error__wr{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 107px 60px;
}

.error__info{
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error__bg{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.error__shadow{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 54, 80, 0.75) 0%, rgba(0, 54, 80, 0.75) 100%);
z-index: 6;
}

.error__num{
  margin-bottom: 30px;
  color: #FFF;
text-align: center;
font-family: Onest;
font-size: 250px;
font-style: normal;
font-weight: 600;
line-height: 80%;
}

.error__text{
  margin-bottom: 40px;
  color: #FFF;
text-align: center;
font-family: Onest;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 140%;
}

.error__link{
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  .transition;
  padding: 26px 24px;
  border-radius: 10px;
  background: #FFF;
  color: #1F5A76;
font-family: Onest;
font-size: 14px;
font-style: normal;
font-weight: 800;
line-height: 120%;
letter-spacing: 0.42px;
text-transform: uppercase;
&:hover{
  background: #42ABDD;
  color: #FFF;
}
}

.error__wr{
  margin-top: 55px;
}

.result{
  margin-top: 20px;
  margin-bottom: 140px;
}

.result__title{
  margin-bottom: 30px;
  color: #1B2F38;
font-family: Onest;
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: 110%;
}

.result__request{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 60px;
}

.result__request-title{
  color: #889BA4;
font-family: Onest;
font-size: 22px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.result__request-text{
  color: #1A83B5;
font-family: Onest;
font-size: 22px;
font-style: normal;
font-weight: 600;
line-height: 140%;
}

.result__blocks{
  margin-bottom: 60px;
}

.result__block{
  margin-bottom: 38px;
  padding-bottom: 30px;
  display: block;
  color: #000;
  border-bottom: 1px solid #889BA4;
  &:last-child{
    margin-bottom: 0;
  }
}

.result__name{
  margin-bottom: 16px;
  color: #1C1C1C;
font-family: Onest;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 120%;
}

.result__text{
  overflow: hidden;
color: #1C1C1C;
text-overflow: ellipsis;
font-family: Onest;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 140%;
}

.result__blocks{
  width: 1432px;
}

.policy{
  margin-top: 20px;
  margin-bottom: 140px;
}

.standart-content h1{
  color: #1B2F38;
font-family: Onest;
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: 110%;
margin-bottom: 40px;
}

.article__slider{
  width: 1180px!important;
}

.license .licenses__blocks{
  margin-bottom: 80px;
}

/**
*
  Адаптивка
*
**/

@media only screen and(max-width: 1739px) {

  .container{
    width: 1440px;
  }
  .header__logo-img {
    width: 44px;
    height: 50px;
}
.header__logo-name{
  font-size: 12px;
}
.header__logo{
  gap: 13px;
}
.header__logo-info {
  width: 159px;
}
.header__menu a{
  font-size: 15px;
}
.header__menu > ul {
  gap: 40px;
}
.header__menu li:has(> ul) > a::after{
  width: 13px;
  height: 7px;
}
.header__menu li:has(> ul) > a::after{
  right: -19px;
}
.header__menu{
  padding: 0 20px;
}
.header__menu {
  width: 610px;
}
.header__search-wr input{
  font-size: 15px;
}
.header__search-icon{
  width: 19px;
  margin-right: 18px;
  height: 19px;
}
.header__search-wr{
  padding: 28px 21px;
    width: 124px;
}
.header__center {
  padding-right: 131px;
}
.header__btn{
  font-size: 15px;
  gap: 16px;
 svg{
  width: 21px;
  height: 21px;
 }
}
.header__btn{
  padding: 27px 20px;
  width: 159px;
  gap: 12px;
}
.header__phone-top a{
  grid-area: 12px;
}
.header__phone-top a svg {
  width: 21px;
  height: 21px;
}
.header__phone-top a{
  font-size: 17px;
}
.header__phone-top{
  gap: 12px;
  padding: 26px 19px;
}
.header__logo{
  width: 236px;
}
.header__phone-wr{
  width: 266px;
}
.header__menu > ul > li > a{
  padding: 28px 0;
}
.header__logo{
  padding: 10px 16px;
}
.header-active{
  .header__logo{
    padding: 8px 16px;
    width: 220px;
  }
  .header__phone-wr{
    width: 282px;
  }
  .header__phone-top a{
    font-size: 17px;
  }
}
.header-active .header__btn {
  padding: 22px 18px;
}
header .container {
  gap: 6px;
  padding-top: 11px;
  padding-bottom: 11px;
}
.header-shadow {
  height: 97px;
}
.main__title{
  font-size: 53px;
}
.main__link{
  padding: 16px 24px;
}
.main__btn{
  padding: 22px 20px
}
.main__slide{
  padding: 55px;
}
.main-slider .owl-prev, .main-slider .owl-next{
  width: 60px;
  height: 60px;
}
.main__slide{
  min-height: 629px;
}
.main-slider .owl-nav{
  bottom: 49px;
  right: 49px;
}
.main {
  margin-bottom: 120px;
}
.company__title{
  font-size: 31px;
}
.company__title{
  width: 1107px;
}
.main__content {
  width: 896px;
}
.company__subtitle{
  font-size: 18px;
}
.company__subtitle {
  padding-top: 10px;
}
.company__img {
  width: 470px;
  height: 333px;
}
.company__content-text{
  font-size: 30px;
  width: 1018px;
}
.company__link{
  padding: 23px 20px
}
.company__slider{
  margin-bottom: 60px;
}
.company {
  margin-bottom: 120px;
}
.training__title{
  font-size: 43px;
}
.training__head-info {
  width: 1035px;
}
.training__head {
  margin-bottom: 60px;
}
.training__title{
  margin-bottom: 30px;
}
.training__block{
  padding: 30px;
    width: 24.47%;
}
.training__block-name{
  font-size: 27px;
}
.training__block-info p{
  font-size: 40px;
}
.training__block-info span{
  font-size: 15px;
}
.training__block-kr{
  width: 18px;
  height: 18px;
}
.training__block-arrow{
  width: 60px;
  height: 60px;
}
.training__block{
  height: 240px;
}
.training__text-img{
  max-width: none;
}
.training {
  margin-bottom: 120px;
}
.help-you__wr{
  padding: 40px;
}
.help-you__form{
  padding: 30px;
}
.help-you__form {
  width: 687px;
}
.help-you__block input{
  padding: 20px;
}
.checkbox__icon{
  width: 22px;
  height: 22px;
}
.checkbox__icon svg{
  max-width: 66%;
}
.consult__text{
  font-size: 13px;
}
.consult__text a{
  font-size: 13px;
}
.help-you__btn{
  padding: 20px;
}
.help-you__bottom {
  gap: 19px;
}
.checkbox__parent {
  width: 431px;
}
.help-you__btn{
  font-size: 13px;
  padding: 18px 17px;
}
.help-you__content {
  width: 597px;
}
.help-you__title{
  font-size: 29px;
}
.help-you__icon {
  width: 84px;
  height: 84px;
  margin-bottom: 17px;
}
.help-you__text{
  font-size: 17px;
  width: 365px;
}
.bg-blue{
  padding-top: 120px;
  padding-bottom: 120px;
  margin-bottom: 120px;
}
.training__text-img{
  width: 94%;
}
.services__block{
  padding: 30px;
}
.services__name{
  font-size: 24px;
}
.services__img {
  width: 76px;
  height: 76px;
}
.services__block{
  width: 24.52%;
  height: 244px;
}
.services__img {
  width: 68px;
  height: 68px;
}
.services__img-wr{
  max-width: 48%;
}
.services {
  margin-bottom: 120px;
}
.scheme-training__block {
  width: 32.9%;
  padding: 30px;
}
.scheme-training__num{
  font-size: 54px;
  margin-bottom: 23px;
}
.scheme-training__name{
  font-size: 28px;
}
.scheme-training__text{
  font-size: 17px;
}
.scheme-training__block{
  min-height: 264px; 
}
.scheme-training {
  margin-bottom: 120px;
}
.reviews__block{
  padding: 30px;
}
.reviews__img{
  width: 264px;
    height: 373px;
    margin-bottom: 40px;
}
.reviews__name{
  font-size: 26px;
  margin-bottom: 15px;
}
.reviews__text{
  font-size: 16px;
}
.slider__standart .owl-prev, .slider__standart .owl-next{
  width: 55px;
  height: 55px;
}
.slider__standart .owl-next {
  right: 0px;
}
.reviews {
  margin-bottom: 120px;
}
.documents__block{
  padding: 12px 15px;
}
.documents__img {
  height: 309px;
}
.documents {
  margin-bottom: 120px;
}
.teachers__img-wr{
  height: 344px;
}
.teachers__content {
  padding: 26px;
}
.teachers__name{
  font-size: 25px;
  margin-bottom: 16px;
}
.teachers__text{
  font-size: 17px;
  margin-bottom: 16px;
}
.teachers__link{
  font-size: 17px;
}
.teachers {
  margin-bottom: 120px;
}
.status-info__img {
  width: 150px;
  height: 159px;
}
.status-info__text {
  width: 1183px;
}
.status-info__text p{
  margin-bottom: 20px;
}
.status-info {
  margin-bottom: 120px;
}
.licenses__link{
  padding: 23px 20px;
}
.licenses__block{
  height: 457px;
}
.licenses {
  margin-bottom: 120px;
}
.advantages__block{
  padding: 30px;
}
.advantages__block, .advantages__block-img{
  width: 24.4%;
  min-height: 400px;
}
.advantages__icon {
  width: 80px;
  height: 80px;
}
.advantages__name{
  font-size: 26px;
  margin-bottom: 15px;
}
.advantages__text{
  font-size: 17px;
}
.advantages {
  margin-bottom: 120px;
}
.geography__map img {
  width: 100%;
  height: 100%;
}
.geography__map {
  height: 865px;
  margin-top: -113px;
  margin-bottom: 8px;
}
.geography__num{
  font-size: 80px;
}
.geography__text{
  font-size: 17px;
}
.geography__block {
  width: 313px;
}
.geography__blocks {
  gap: 40px;
  width: 1020px;
}
.geography__link{
  padding: 23px 30px;
}
.other-questions .help-you__form {
  width: 760px;
}
.other-questions__content {
  width: 627px;
}
.other-questions__name{
  font-size: 33px;
}
.other-questions__text{
  font-size: 17px;
}
.footer__menu {
  width: 1033px;
  gap: 47px
}
.footer__menu-block {
  width: 313px;
}
.footer__address {
  width: 347px;
}
.header__phone-bottom{
  padding: 0px 15px 15px 15px;
}
.header-mail{
  font-size: 16px;
}
.header-mail{
  gap: 14px;
}
.header-mail svg {
  width: 21px;
  height: 21px;
}
.header__cosial{
  gap: 14px;
}
.header__cosial img{
  width: 21px;
  height: 21px;
}
.header__phone-btn{
  font-size: 13px;
  padding: 18px 18px;
}
.header-active .header__phone-bottom {
  padding: 5px 25px 20px 25px;
}
.geography__map img{
  left: 0;
}
.rev-modal .help-you__form{
width: 100%!important;
.checkbox__parent {
  width: 506px;
}
.consult__text {
  font-size: 14px;
}
.help-you__btn {
  font-size: 13px;
  padding: 24px 21px;
}
.consult__text a {
  font-size: 14px;
}
}
.footer-wr{
  width: 1086px;
}
.learning__title{
  font-size: 58px;
  margin-bottom: 50px;
}
.learning__top-arrow{
  width: 65px;
  height: 65px;
}
.learning__top-name{
  font-size: 32px;
}
.learning__top-text{
  font-size: 21px;
}
.learning__block{
padding: 30px;
}
.learning__content-block{
  padding: 22px 19px;
  gap: 15px;
}
.learning__link{
  margin-top: 30px;
  padding: 22px 21px;
}
.reviews2 + .bg-blue + .help-you {
  margin-bottom: 100px;
}
.standart-learning__wr{
  padding-left: 30px;
}
.standart-learning__img{
  width: 656px;
  height: 600px;
}
.standart-learning__title{
  font-size: 50px;
}
.standart-learning__info {
  padding-bottom: 65px;
  padding-top: 50px;
  width: 670px;
}
.standart-learning {
  margin-bottom: 90px;
}
.general-information__wr {
  width: 1110px;
}
.standart-content h2{
  font-size: 33px;
  margin-bottom: 30px;
}
.general-information {
  margin-bottom: 100px;
}
.standart-content h3{
  margin-top: 30px;
  margin-bottom: 17px;
}
.training-programs__block-info{
  gap: 30px;
}
.training-programs__block-info span{
  font-size: 21px;
}
.training-programs__block-info p{
  font-size: 22px;
}
.training-programs__block{
  min-height: 100px;
}
.training-programs {
  margin-bottom: 100px;
}
.training-programs + .help-you {
  margin-bottom: 100px;
}
.bg-blue2{
  margin-bottom: 0;
}
.programm .standart-learning__title{
  font-size: 40px;
}
.about-courses{
  .standart-content h2{
    font-size: 31px;
  }
}
.about-courses__block{
  width: 32.7%;
  padding: 30px;
  gap: 30px;
}
.about-courses__icon {
  width: 80px;
  height: 80px;
}
.about-courses__info p{
  font-size: 27px;
}
.process__content{
  width: 479px;
}
.process__blocks {
  width: 933px;
}
.process__block{
  width: 49.4%;
}
.process__content-block{
  padding: 30px;
}
.process__block{
  padding: 30px;
}
.process__num{
  font-size: 58px;
  margin-bottom: 30px;
}
.process__name{
  font-size: 28px;
}
.process__text{
  font-size: 17px;
}
.process__block{
  min-height: 272px;
}
.process__content-block{
  min-height: 290px;
}
.process__content-icon {
  margin-bottom: 30px;
  width: 72px;
  height: 72px;
}
.process__content-name{
  font-size: 28px;
}
.process__content-text{
  font-size: 17px;
}
.process {
  margin-bottom: 120px;
}
.about-courses{
  .general-information__wr {
    width: 1027px;
}
}
.about-courses__block {
  width: 32.6%;
  padding: 27px;
  gap: 30px;
}
.course-program__wr {
  width: 1056px;
}
.course-program__wr table th:nth-child(1) {
  width: 138px;
}
.course-program__wr table th:nth-child(2) {
  width: 751px;
}
.course-program__wr table th:nth-child(3) {
  width: 184px;
}

.course-program__wr table td:nth-child(1) {
  width: 138px;
}
.course-program__wr table td:nth-child(2) {
  width: 751px;
}
.course-program__wr table td:nth-child(3) {
  width: 184px;
}
.course-program__wr table{
  margin-bottom: 30px;
}
.help-you__form__name{
  font-size: 32px;
  margin-bottom: 28px;
}
.course-program {
  margin-bottom: 120px;
}
.documents + .help-you {
  margin-bottom: 120px;
}
.services__title{
  font-size: 58px;
  margin-bottom: 50px;
}
.services + .help-you {
  margin-bottom: 120px;
}
.cost__block {
  width: 32.8%;
}
.cost__block{
  padding: 30px;
}
.cost__name{
  font-size: 30px;
  margin-bottom: 10px;
}
.cost__price{
  font-size: 44px;
}
.cost__head{
  margin-bottom: 17px;
}
.cost__price{
  margin-bottom: 24px;
}
.cost__btn{
  padding: 23px 22px;
}
.cost__block{
  min-height: 590px;
}
.cost {
  margin-bottom: 120px;
}
.proceeding__blocks .process__block {
  width: 32.8%;
  .process__text{
    br{
      display: none;
    }
  }
}
.proceeding {
  margin-bottom: 120px;
}
.bg-blue + .help-you {
  margin-bottom: 120px;
}
.intelligence__title{
  font-size: 58px;
  margin-bottom: 50px;
}
.intelligence__content{
  width: 990px;
  padding: 30px;
}
.intelligence__content-title{
  font-size: 32px;
  margin-bottom: 30px;
}
.intelligence__docs-wr-title{
  font-size: 32px;
  margin-bottom: 30px;
}
.intelligence__docs-imgs{
  gap: 25px;
}
.intelligence__docs-img {
  width: 293px;
  height: 205px;
}
.intelligence{
  margin-bottom: 120px;
}
.license__title{
  font-size: 58px;
  margin-bottom: 50px;
}
.license__img{
  width: 32.8%;
  padding: 15px;
  height: 337px;
}
.license__content {
  width: 1056px;
}
.license{
  margin-bottom: 120px;
}
.blog__title{
  font-size: 58px;
  margin-bottom: 50px;
}
.blog__tags{
  margin-bottom: 50px;
}
.blog__block-big{
  width: 74.7%;
}
.blog__block{
  width: 24.4%;
}
.blog__block-info{
  padding: 25px;
}
.blog__wr{
  padding: 35px;
  width: 536px;
}
.blog-big__img{
  width: 520px;
}
.blog__name{
  font-size: 33px;
}
.blog__block-name{
  font-size: 22px;
}
.blog__tegs{
  margin-bottom: 57px;
}
.blog__block-tags{
  padding: 15px;
}
.blog__block-img{
  height: 268px;
}
.blog{
  margin-bottom: 120px;
}
.article__title{
  font-size: 56px;
  margin-bottom: 50px;
}
.article__right {
  width: 1040px;
}
.article__img-big{
  height: 577px;
  margin-bottom: 10px;
}
.article__slide{
  width: 534px;
    height: 309px;
}
.article__slider{
  margin-top: 50px;
  margin-bottom: 120px;
}
.article{
margin-bottom: 120px;
}
.related-articles {
  margin-bottom: 120px;
}

.contacts__top-soc {
  width: 400px;
}
.contacts__top__blocks {
  width: 950px;
  gap: 28px 80px;
}
.contacts__top-block a{
  font-size: 25px;
}
.contacts__top-block address, .contacts__top-block p{
  font-size: 18px;
}
.contacts__title{
  margin-bottom: 50px;
  font-size: 52px;
}
.contacts__top{
  margin-bottom: 50px;
}
.contacts__map{
  margin-bottom: 50px;
  height: 540px;
}
.contacts__bottom-blocks{
  gap: 20px 53px;
}
.contacts__bottom-block {
  width: 315px;
}
.contacts + .help-you {
  margin-bottom: 120px;
}
.error__wr {
  margin-top: 30px;
}
.error{
  margin-bottom: 100px;
}
.error__num{
  font-size: 200px;
}
.error__link{
  padding: 22px 18px;
}

.result__blocks {
  width: 100%;
  margin-bottom: 50px;
}
.result__title{
  font-size: 45px;
  margin-bottom: 25px;
}
.result__request-title{
  font-size: 21px;
}.result__request-text{
  font-size: 21px;
}
.result__request{
  margin-bottom: 50px;
}
.result__block{
  margin-bottom: 33px;
  padding-bottom: 23px;
}
.result{
  margin-bottom: 120px;
}
.policy{
  margin-bottom: 120px;
}
.standart-content h1{
  font-size: 44px;
  margin-bottom: 35px;
}
}


@media only screen and(max-width: 1439px) {
  .container{
    width: 1200px;
  }
  .header__menu a {
    font-size: 14px;
}
.header__menu li:has(> ul) > a::after{
  background-size: contain;
}
.header__menu li:has(> ul) > a::after {
  width: 13px;
  height: 7px;
}
.header__menu li:has(> ul) > a::after {
  right: -17px;
}
.header__menu > ul {
  gap: 30px;
}
.header__menu > ul > li > a {
  padding: 23px 0;
}
.header__search-wr input {
  font-size: 14px;
}
.header__search-icon {
  width: 17px;
  margin-right: 18px;
  height: 17px;
}
.header__menu {
  width: 535px;
}

.header__search-wr {
  padding: 23px 16px;
  width: 105px;
}
.header__center {
  padding-right: 113px;
}
.header__btn {
  padding: 28px 13px;
  width: 154px;
  gap: 13px;
  font-size: 15px;
}
.header__center{
  display: none;
}
header .container{
  justify-content: space-between;
}
.header-active .header__btn {
  padding: 22px 18px;
  gap: 11px;
}
.header__burger{
  display: flex;
}
.burger-menu{
  width: 40% !important;
}
.main__title {
  font-size: 47px;
}
.main__btn {
  padding: 19px 18px;
}
.main__link {
  padding: 19px 18px;
}
.main__text{
  margin-bottom: 40px;
}
.main-slider .owl-prev, .main-slider .owl-next {
  width: 50px;
  height: 50px;
}
.main__slide {
  padding: 47px;
}
.main-slider .owl-nav {
  bottom: 44px;
  right: 44px;
}
.main__slide {
  min-height: 546px;
}
.main__content {
  width: 809px;
}
.main {
  margin-bottom: 100px;
}
.company__title {
  font-size: 28px;
}
.company__title {
  width: 903px;
}
.company__subtitle {
  padding-top: 6px;
  font-size: 17px;
}
.company__head{
  margin-bottom: 60px;
}
.company__img {
  width: 380px;
  height: 284px;
}

.company__content-text {
  font-size: 25px;
  width: 750px;
}
.company__link {
  padding: 20px 16px;
}
.company__content{
  padding-left: 0;
  padding-right: 0;
}
.company__slider {
  margin-bottom: 50px;
}
.company {
  margin-bottom: 100px;
}
.bg-blue {
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 100px;
}
.training__title {
  font-size: 40px;
}
.training__head-info {
  width: 891px;
}
.training__block.psevdo{
  display: none;
}
.training__block {
  padding: 30px;
  width: 32.7%;
}
.training {
  margin-bottom: 100px;
}
.help-you__wr {
  padding: 30px;
}
.help-you__form {
  padding: 23px;
}
.help-you__title {
  font-size: 28px;
}
.help-you__content {
  width: 438px;
}
.help-you__form {
  width: 620px;
}
.checkbox__parent input{
  width: 21px;
    height: 21px;
}
.consult__text {
  font-size: 12px;
}
.consult__text a {
  font-size: 12px;
}
.checkbox__parent {
  width: 403px;
}
.help-you__btn {
  font-size: 12px;
  padding: 17px 13px;
}
.help-you__icon {
  width: 68px;
  height: 68px;
  margin-bottom: 14px;
}
.help-you__text{
  font-size: 16px;
}
.help-you__block input{
  font-size: 15px;
}
.services__block {
  width: 24.4%;
  height: 209px;
}
.services__block {
  padding: 25px;
}
.services__img {
  width: 62px;
  height: 62px;
}
.services {
  margin-bottom: 100px;
}
.scheme-training__block {
  width: 32.8%;
  padding: 25px;
}
.scheme-training__num {
  font-size: 46px;
  margin-bottom: 19px;
}
.services__name {
  font-size: 22px;
}
.training__head {
  margin-bottom: 50px;
}
.scheme-training__name {
  font-size: 26px;
  margin-bottom: 16px;
}
.scheme-training__text {
  font-size: 16px;
}
.scheme-training__block {
  min-height: 249px;
}
.reviews__block {
  padding: 20px;
}
.reviews__img {
  width: 100%;
  height: 350px;
  margin-bottom: 29px;
}
.reviews__name {
  font-size: 23px;
  margin-bottom: 13px;
}
.reviews__text {
  font-size: 15px;
}
.reviews {
  margin-bottom: 100px;
}
.documents__img {
  height: 246px;
}
.teachers__img-wr {
  height: 287px;
}
.teachers__content {
  padding: 20px;
}
.teachers__name {
  font-size: 22px;
  margin-bottom: 13px;
}
.teachers__text {
  font-size: 15px;
  margin-bottom: 9px;
}
.teachers__link {
  font-size: 15px;
}
.teachers {
  margin-bottom: 100px;
}
.status-info__img {
  width: 130px;
  height: 130px;
}
.status-info__text p{
  font-size: 16px;
}
.status-info__text {
  width: 973px;
}
.status-info__text p {
  margin-bottom: 12px;
}
.status-info {
  margin-bottom: 100px;
}
.licenses__block{
  padding: 15px;
}
.licenses__block {
  height: 388px;
}
.licenses {
  margin-bottom: 100px;
}
.advantages__block, .advantages__block-img {
  width: 24.3%;
  min-height: 331px;
}
.advantages__icon {
  width: 60px;
  height: 60px;
}
.advantages__name {
  font-size: 22px;
  margin-bottom: 13px;
}
.advantages__text {
  font-size: 15px;
}
.advantages__block{
  padding: 20px;
}
.advantages {
  margin-bottom: 100px;
}
.geography__map {
  height: 755px;
}
.geography__num {
  font-size: 64px;
}
.geography__block {
  width: 260px;
}
.geography__blocks {
  gap: 33px;
  width: 847px;
}
.geography__link {
  padding: 21px 26px;
}
.other-questions .help-you__form {
  width: 624px;
}
.other-questions .checkbox__parent {
  width: 401px;
}
.other-questions__content {
  width: 526px;
}
.other-questions__text {
  font-size: 16px;
  width: 100%;
}
.other-questions__name {
  font-size: 30px;
}
.other-questions{
  margin-bottom: 50px;
}
.footer__contacts {
  width: 602px;
  padding-left: 0;
  padding-top: 11px;
}
.footer__contacts-block a{
  font-size: 22px;
}
.footer__contacts-block-email a{
  font-size: 22px;
}
.footer__logo img {
  width: 60px;
  height: 74px;
}
.footer__social{
  width: 48px;
    height: 48px;
}
.footer__menu-block ul a{
  font-size: 15px;
}
.footer__menu-strong{
  margin-bottom: 15px;
}
.footer__menu-block ul{
  gap: 8px;
}
.footer__menu-block-sights ul {
  gap: 17px;
}
.footer__address {
  width: 316px;
}
.footer__menu {
  width: 850px;
  gap: 26px;
}
.footer__menu-block {
  width: 288px;
  &:last-child{
    width: 227px;
  }
}
.footer__bottom-links{
  width: 489px;
}
.footer__copyright{
  font-size: 13px;
}
.rev-modal .help-you__form{
  width: 100%!important;
  .checkbox__parent {
    width: 506px;
  }
  .consult__text {
    font-size: 14px;
  }
  .help-you__btn {
    font-size: 13px;
    padding: 24px 21px;
  }
  .consult__text a {
    font-size: 14px;
}
  }
  .footer-wr {
    width: 859px;
}
.learning__content-blocks{
  padding-top: 30px;
}
.learning__title {
  font-size: 50px;
  margin-bottom: 40px;
}
.learning__top-name {
  font-size: 30px;
}
.learning__top-text {
  font-size: 19px;
}

.learning__content-block {
  padding: 19px 16px;
  gap: 13px;
}
.learning__top-arrow {
  width: 55px;
  height: 55px;
  border-radius: 8px;
}
.learning__top-name {
  font-size: 28px;
}
.learning__top-text {
  font-size: 17px;
}
.learning {
  margin-bottom: 100px;
}
.standart-learning__info {
  padding-bottom: 30px;
  padding-top: 30px;
  width: 558px;
}
.standart-learning__img {
  width: 522px;
  height: 471px;
}
.standart-learning__title {
  font-size: 43px;
}
.standart-learning {
  margin-bottom: 60px;
}
.standart-content h2 {
  font-size: 31px;
  margin-bottom: 26px;
}
.general-information__subtitle{
  font-size: 18px;
}
.general-information__wr {
  width: 875px;
}
.standart-content h2 {
  font-size: 26px;
  margin-bottom: 22px;
}
.standart-content p{
  font-size: 17px;
  margin-bottom: 21px;
}
.standart-content h3{
  font-size: 18px;
}
.standart-content ul li{
  font-size: 17px;
}
.standart-content ul li:after{
  width: 8px;
    height: 8px;
}
.general-information {
  margin-bottom: 80px;
}
.standart-learning {
  margin-top: 20px;
}
.general-information__subtitle-wr {
  padding-top: 30px;
}
.training__title {
  font-size: 38px;
}
.training-programs__block:hover .training__block-arrow {
  display: flex;
  width: 52px;
  height: 52px;
}
.training-programs__block {
  min-height: 91px;
}
.training-programs__block-info {
  gap: 26px;
}
.training-programs__block{
  padding: 15px 30px;
}
.training-programs__block .training__block-kr {
  margin-right: 10px;
}
.training-programs {
  margin-bottom: 90px;
}
.training-programs + .help-you {
  margin-bottom: 90px;
}
.bg-blue2{
  margin-bottom: 0;
}
.about-courses .general-information__wr {
  width: 875px;
}
.about-courses .standart-content h2 {
  font-size: 26px;
}
.about-courses__block {
  width: 32.5%;
  padding: 23px;
  gap: 25px;
}
.about-courses__icon {
  width: 70px;
  height: 70px;
}
.about-courses__info span{
  font-size: 17px;
  margin-bottom: 16px;
}
.about-courses__info p {
  font-size: 24px;
}
.about-courses__blocks{
  margin-bottom: 30px;
}
.process__content {
  width: 409px;
}
.process__blocks {
  width: 762px;
}
.process__block {
  width: 49.3%;
}
.process__block {
  padding: 24px;
}
.process__num {
  font-size: 49px;
  margin-bottom: 20px;
}
.process__text {
  font-size: 16px;
}
.process__content-block {
  padding: 23px;
}
.process__content-icon {
  margin-bottom: 26px;
  width: 62px;
  height: 62px;
}
.process__content-name {
  font-size: 26px;
  margin-bottom: 15px;
}
.process__content-text {
  font-size: 16px;
}
.process__block {
  min-height: 226px;
}
.process__content-block {
  min-height: 257px;
}
.process {
  margin-bottom: 100px;
}
.course-program__wr {
  width: 840px;
}
.course-program__wr table th:nth-child(1) {
  width: 136px;
}
.course-program__wr table th:nth-child(2) {
  width: 545px;
}
.course-program__wr table th:nth-child(3) {
  width: 181px;
}
.course-program__wr table td:nth-child(1) {
  width: 136px;
}
.course-program__wr table td:nth-child(2) {
  width: 545px;
}
.course-program__wr table td:nth-child(3) {
  width: 181px;
}
.course-program__wr table th{
  padding: 16px 20px;
}
.course-program__wr table td{
padding: 17px 15px;
}
.course-program {
  margin-bottom: 100px;
}
.admission .checkbox__parent {
  width: 75%;
}
.documents + .help-you {
  margin-bottom: 100px;
}
.services__title {
  font-size: 51px;
  margin-bottom: 40px;
}
.services + .help-you {
  margin-bottom: 100px;
}
.cost__block {
  width: 32.7%;
}
.cost__block {
  padding: 25px;
}
.cost__name {
  font-size: 25px;
  margin-bottom: 8px;
}
.cost__subtitle{
  font-size: 17px;
}
.cost__price {
  font-size: 37px;
  margin-bottom: 20px;
}
.cost__garant p{
  font-size: 17px;
  margin-bottom: 10px;
}
.cost__garant{
  margin-bottom: 25px;
}
.cost__var-name{
  font-size: 31px;
}

.cost__btn {
  padding: 20px 22px;
}
.cost__block {
  min-height: 530px;
}
.cost {
  margin-bottom: 100px;
}
.proceeding__blocks .process__block {
  width: 32.7%;
}
.proceeding {
  margin-bottom: 100px;
}
.bg-blue + .help-you {
  margin-bottom: 100px;
}
.intelligence__title {
  font-size: 48px;
  margin-bottom: 40px;
}
.intelligence__links{
  width: 350px;
}
.intelligence__content {
  width: 800px;
  padding: 25px;
}
.intelligence__content-title {
  font-size: 25px;
  margin-bottom: 26px;
}
.intelligence__doc svg {
  width: 35px;
  height: 35px;
}
.intelligence__doc{
  font-size: 17px;
}
.intelligence .standart-content {
  margin-bottom: 40px;
}
.intelligence__docs-wr-title {
  font-size: 25px;
  margin-bottom: 26px;
}
.intelligence__docs-imgs {
  gap: 20px;
}
.intelligence__docs-img {
  width: 236px;
  height: 169px;
}
.intelligence {
  margin-bottom: 100px;
}
.license__title {
  font-size: 50px;
  margin-bottom: 40px;
}
.license__img{
  padding: 12px;
}
.license__img {
  width: 32.7%;
  padding: 12px;
  height: 278px;
}
.license__content {
  width: 835px;
}
.license {
  margin-bottom: 100px;
}
.license__content p{
  font-size: 17px;
}
.license__content a{
  font-size: 17px;
  margin-bottom: 19px;
}
.license__content p{
  margin-bottom: 19px;
}
.license__imgs{
  margin-bottom: 50px;
}
.blog__title {
  font-size: 52px;
  margin-bottom: 35px;
}
.blog__tag{
  padding: 15px;
}
.blog__tags {
  margin-bottom: 40px;
}
.blog__block-big {
  width: 70%;
}
.blog__block {
  width: 24.3%;
}
.blog__block-big {
  width: 74.8%;
}
.blog__wr{
  width: 400px;
}
.blog-big__img {
  width: 430px;
}
.blog__wr {
  padding: 28px;
  width: 453px;
}
.blog__teg{
  padding: 11px;
}
.blog__block-tags {
  padding: 11px;
}
.blog__tegs {
  margin-bottom: 38px;
}
.blog__name {
  font-size: 29px;
}
.blog__text{
  font-size: 15px;
}
.blog__data{
  font-size: 13px;
}
.blog__time{
  font-size: 13px;
  gap: 7px;
}
.blog__time svg {
  width: 17px;
  height: 15px;
}
.blog__block-info {
  padding: 20px;
}
.blog__block-img {
  height: 236px;
}
.blog__block-name {
  font-size: 18px;
}
.blog__block-info{
  height: 160px;
}
.blog__blocks {
  margin-bottom: 40px;
}
.blog__btn-more{
  padding: 21px 20px;
}
.blog__num{
  width: 55px;
  height: 55px;
}
.blog {
  margin-bottom: 100px;
}
.article__title {
  font-size: 49px;
  margin-bottom: 47px;
}
.article__right {
  width: 840px;
}
.article__img-big {
  height: 456px;
}
.article__data p{
  font-size: 22px;
}
.article__socials{
  gap: 15px;
}
.article__slide {
  width: 464px;
  height: 278px;
}
.article__slider {
  margin-top: 40px;
  margin-bottom: 90px;
}
.article {
  margin-bottom: 100px;
}
.related-articles {
  margin-bottom: 100px;
}
.contacts__top__blocks {
  width: 771px;
  gap: 31px 65px;
}
.contacts__top-soc {
  width: 311px;
}
.contacts__title {
  margin-bottom: 40px;
  font-size: 46px;
}
.contacts__top-block a {
  font-size: 20px;
}
.contacts__top-block address, .contacts__top-block p {
  font-size: 17px;
}
.contacts__top-block .contacts-mail{
  font-size: 19px;
}
.contacts-social{
  gap: 16px;
  padding: 13px;
}
.contacts__top {
  margin-bottom: 40px;
}
.contacts__map {
  margin-bottom: 40px;
  height: 480px;
}
.contacts__bottom-block {
  width: 280px;
}
.contacts__bottom-blocks {
  gap: 20px 20px;
}
.contacts__bottom-block p{
  font-size: 18px;
}
.contacts {
  margin-bottom: 50px;
}
.contacts + .help-you {
  margin-bottom: 100px;
}
.error {
  margin-bottom: 80px;
}
.error__num {
  font-size: 176px;
}
.error__wr{
  padding: 90px 30px;
}
.result__title {
  font-size: 41px;
}
.result__request {
  margin-bottom: 40px;
}
.result {
  margin-bottom: 100px;
}
.policy {
  margin-bottom: 100px;
}
}


@media only screen and(max-width: 1199px) {

  .md-show {
    display: block !important;
  }

  #cookie-banner{
    padding: 40px;
  }


  .md-hide {
    display: none !important;
  }
  .blog__block-big .blog__info{

    margin-bottom: 0px;
  }

  .container{
    width: 768px;
  }
  .header__btn {
    padding: 25px 13px;
    width: 154px;
    gap: 13px;
    font-size: 15px;
}
.header__logo-name{
  margin-bottom: 1px;
}
.header__phone-top{
  padding: 24px 19px;
}
.header__burger{
  width: 70px;
  height: 70px;
  padding: 18px;
}
.header-active .header__btn{
  width: 166px;
}
.main__slide {
  padding: 30px;
}
.main__nav{
  top: 0;
}
.main-slider .owl-nav {
  bottom: 36px;
  right: 20px;
}
.main__title {
  font-size: 39px;
}
.main__content {
  width: 611px;
}
.main__title {
  font-size: 36px;
  margin-bottom: 14px;
}
.main__slide {
  min-height: 460px;
}
.main {
  margin-bottom: 70px;
}
.burger-menu {
  width: 72% !important;
}
.company__head{
  flex-direction: column;
}
.company__title {
  width: 100%;
}
.company__head {
  margin-bottom: 40px;
}
.company__img {
  width: 364px;
  height: 263px;
}
.company__content-text {
  font-size: 20px;
  width: 481px;
}
.company__slider {
  margin-bottom: 40px;
}
.company {
  margin-bottom: 70px;
}
.bg-blue {
  padding-top: 70px;
  padding-bottom: 70px;
  margin-bottom: 70px;
}
.training__head{
  display: flex;
  flex-direction: column;
}
.training__title {
  font-size: 35px;
  margin-bottom: 27px;
}
.training__text{
  width: 100%;
}
.training__head {
  margin-bottom: 40px;
}
.training__block {
  padding: 24px;
  width: 49.3%;
  height: 220px;
}
.training__block-name {
  font-size: 25px;
}
.training__block-info p {
  font-size: 38px;
}
.training {
  margin-bottom: 70px;
}
.help-you__wr{
  flex-direction: column;
}
.help-you__content {
  width: 100%;
}
.help-you__title{
  margin-bottom: 31px;
}
.help-you__content{
  margin-bottom: 30px;
}
.help-you__form {
  width: 100%;
}
.consult__text {
  font-size: 13px;
}
.consult__text a {
  font-size: 13px;
}
.checkbox__parent {
  width: 441px;
}
.help-you__btn {
  font-size: 12px;
  padding: 19px 16px;
}
.services__block {
  width: 49.4%;
  height: 193px;
}
.services__img-wr {
  max-width: 76%;
}
.services {
  margin-bottom: 70px;
}
.scheme-training__block {
  width: 49.4%;
  padding: 25px;
}
.scheme-training__num {
  font-size: 40px;
}
.scheme-training__name{
  font-size: 24px;
}
.scheme-training__block {
  min-height: auto;
}
.scheme-training {
  margin-bottom: 70px;
}
.reviews__block {
  padding: 13px;
}
.reviews__img {
  width: 100%;
  height: 308px;
  margin-bottom: 20px;
}
.reviews__name {
  font-size: 20px;
  margin-bottom: 8px;
}
.reviews__text {
  font-size: 14px;
}
.reviews {
  margin-bottom: 70px;
}
.documents__img {
  height: 240px;
}
.documents {
  margin-bottom: 60px;
}
.teachers__content {
  padding: 17px;
}
.teachers__name {
  font-size: 20px;
  margin-bottom: 10px;
}
.teachers__link {
  font-size: 13px;
}
.status-info__img{
  display: none;
}
.status-info__text {
  width: 100%;
}
.teachers {
  margin-bottom: 70px;
}
.status-info {
  margin-bottom: 70px;
}
.licenses__link {
  padding: 18px 17px;
}
.licenses__block {
  padding: 13px;
}
.licenses__block {
  height: 325px;
}
.licenses {
  margin-bottom: 70px;
}
.advantages__block, .advantages__block-img {
  width: 49%;
  height: 290px;
  min-height: auto;
}
.advantages {
  margin-bottom: 70px;
}
.geography__head-text{
  font-size: 17px;
}
.geography__map {
  height: auto;
  margin-top: -11px;
  margin-bottom: 35px;
}
.geography__info{
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 20px;
}
.geography__blocks{
  width: 100%;
}
.geography__num {
  font-size: 54px;
}
.other-questions .container{
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.other-questions {
  margin-bottom: 70px;
  margin-top: 0;
}
.other-questions__content {
  width: 100%;
}
.other-questions__name{
  margin-bottom: 28px;
}
.other-questions .help-you__form {
  width: 100%;
}
.other-questions .checkbox__parent {
  width: 473px;
}
.consult__text {
  font-size: 14px;
}
.consult__text a {
  font-size: 14px;
}
.footer__top .container{
  flex-direction: column;
  padding: 24px 10px;
}
.footer__logo{
  margin-bottom: 15px;
}
.footer__contacts {
  width: 66%;
  padding-left: 0;
  padding-top: 11px;
  justify-content: flex-start;
  gap: 28px;
  margin-bottom: 0;
}
.footer-wr {
  width: 100%;
}
.footer-wr{
  gap: 20px;
}
.footer__center .container{
  flex-direction: column;
  gap: 27px;
}
.footer__menu {
  width: 100%;
  gap: 35px;
}
.footer__address {
  width: 335px;
}
.footer__bottom {
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer__bottom .container{
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer__bottom-links {
  width: 100%;
  justify-content: flex-start;
  gap: 20px;
}
.rev-modal{
  padding: 30px;
  width: 650px;
}
.rev-modal__title{
  font-size: 32px;
}
.rev-modal__text{
  width: 100%;
  font-size: 17px;
}
.rev-modal .help-you__form .checkbox__parent {
  width: 369px;
}
.rev-modal .help-you__form .help-you__btn {
  font-size: 13px;
  padding: 22px 20px;
}
.fancybox__content > .f-button.is-close-btn{
  --f-button-svg-width: 25px;
    --f-button-svg-height: 24px;
    --f-button-width: 38px;
    --f-button-height: 38px;
    top: 13px;
    right: 12px;
}
.learning__title {
  font-size: 45px;
  margin-bottom: 30px;
}
.learning__block {
  padding: 20px;
}
.learning__top-name {
  font-size: 25px;
}
.learning__top-text {
  font-size: 16px;
}
.learning__top-arrow{
  top: 0;
  width: 52px;
  height: 52px;
  border-radius: 5px;
}
.learning__top-arrow{
  svg{
    width: 17px;
  }
}
.learning__content-block p{
  font-size: 13px;
}
.learning__content-block {
  padding: 17px 14px;
  gap: 11px;
}
.learning__link {
  margin-top: 25px;
  padding: 17px 21px;
}
.learning {
  margin-bottom: 80px;
}
.reviews2 + .bg-blue + .help-you {
  margin-bottom: 80px;
}
.standart-learning__wr {
  padding-left: 15px;
}
.standart-learning__img {
  width: 326px;
  height: 355px;
}
.standart-learning__info {
  padding-bottom: 20px;
  padding-top: 20px;
  width: 370px;
}
.standart-learning__title {
  font-size: 34px;
}
.standart-learning__text{
  font-size: 16px;
}
.standart-learning {
  margin-top: 10px;
}
.standart-learning {
  margin-bottom: 70px;
}
.general-information .container{
  flex-direction: column;
}
.general-information__subtitle-wr {
  padding-top: 0;
  width: 100%;
}
.general-information__subtitle {
  font-size: 17px;
}
.standart-content h2{
  margin-top: 0;
}
.standart-content h2 {
  font-size: 28px;
  margin-bottom: 26px;
}
.training-programs__block-info p {
  font-size: 21px;
}
.training-programs__block {
  padding: 15px 24px;
}
.training-programs__block-info {
  gap: 22px;
}
.training-programs {
  margin-bottom: 70px;
}
.training-programs + .help-you {
  margin-bottom: 70px;
}
.bg-blue2{
  margin-bottom: 0;
}
.standart-nav{
  flex-wrap: wrap;
}
.general-information__wr {
  width: 100%;
}

.programm .standart-learning__title {
  font-size: 26px;
}
.general-information__btn {
  margin-top: 0;
}
.general-information__subtitle-wr{
  display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: space-between;
          margin-bottom: 20px;
}
.general-information__btn{
  padding: 20px 19px;
}
.about-courses .general-information__wr {
  width: 100%;
}

.about-courses__block {
  width: 32.4%;
  padding: 20px;
  gap: 20px;
}
.about-courses__icon {
  width: 62px;
  height: 62px;
}
.about-courses__info span {
  font-size: 16px;
  margin-bottom: 14px;
}
.about-courses__info p {
  font-size: 22px;
}
.process__wr{
  flex-direction: column;
}
.process__content-block {
  min-height: auto;
  margin-bottom: 0;
  width: 49.3%;
}
.process__content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.process__content-icon {
  margin-bottom: 23px;
  width: 57px;
  height: 57px;
}
.process__content-name {
  font-size: 24px;
  margin-bottom: 13px;
}
.process__content-text {
  font-size: 15px;
}
.process__num {
  font-size: 42px;
  margin-bottom: 17px;
}
.process__name {
  font-size: 24px;
  margin-bottom: 17px;
}
.process {
  margin-bottom: 80px;
}
.course-program .container{
  flex-direction: column;
}
.course-program__btn{
  margin-top: 0;
}
.course-program__left {
  width: 100%;
}
.course-program__left {
  justify-content: space-between;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 30px;
}
.course-program__btn{
  padding: 20px 19px;
}
.course-program__wr {
  width: 100%;
}
.course-program__wr table th:nth-child(1) {
  width: 127px;
}
.course-program__wr table th:nth-child(2) {
  width: 498px;
}
.course-program__wr table th:nth-child(3) {
  width: 127px;
}

.course-program__wr table td:nth-child(1) {
  width: 127px;
}
.course-program__wr table td:nth-child(2) {
  width: 498px;
}
.course-program__wr table td:nth-child(3) {
  width: 127px;
}
.course-program__wr table th {
  padding: 15px 14px;
}
.course-program__wr table td {
  padding: 14px 13px;
  font-size: 15px;
}
.admission .container{
  flex-direction: column;
}
.course-program {
  margin-bottom: 80px;
}
.help-you__form__name {
  font-size: 29px;
  margin-bottom: 26px;
}
.documents + .help-you {
  margin-bottom: 80px;
}
.services__title {
  font-size: 45px;
  margin-bottom: 30px;
}
.services + .help-you {
  margin-bottom: 70px;
}
.standart-learning-bottom{
  flex-direction: column-reverse;
}
.standart-learning-top{
  gap: 20px;
}
.standart-learning-bottom{
  gap: 20px;
}
.standart-learnin__btn{
  padding: 19px 20px;
}
.cost__block {
  width: 49.3%;
}
.cost__info ul li{
  padding-left: 27px;
}
.cost__block {
  padding: 23px;
}
.cost__price {
  font-size: 34px;
  margin-bottom: 18px;
}
.cost__info ul li{
  font-size: 17px;
  width: 93%;
  br{
    display: none;
  }
}
.cost__var-name {
  font-size: 27px;
}
.cost__var-text{
  font-size: 17px;
}
.cost__block {
  min-height: 450px;
}
.cost {
  margin-bottom: 80px;
}
.proceeding__blocks .process__block {
  width: 49.3%;
}
.proceeding {
  margin-bottom: 80px;
}
.bg-blue + .help-you {
  margin-bottom: 80px;
}
.intelligence__title {
  font-size: 37px;
  margin-bottom: 35px;
}
.intelligence__wr{
  flex-direction: column;
}
.intelligence__links {
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.intelligence__link{
  width: auto;
  padding: 14px;
  font-size: 11px;
}
.intelligence__content{
  width: 100%;
}
.intelligence__content-title {
  font-size: 24px;
  margin-bottom: 24px;
}
.intelligence__doc svg {
  width: 30px;
  height: 30px;
}
.intelligence__doc {
  font-size: 16px;
}
.intelligence__docs{
  margin-bottom: 20px;
}
.intelligence__docs-wr-title {
  font-size: 24px;
  margin-bottom: 20px;
}
.intelligence__docs-imgs {
  gap: 14px;
}
.intelligence__docs-img {
  width: 223px;
  height: 156px;
}
.intelligence {
  margin-bottom: 80px;
}
.license__title {
  font-size: 43px;
  margin-bottom: 30px;
}
.license__img {
  width: 49.3%;
  padding: 12px;
  height: 259px;
}
.license__imgs {
  margin-bottom: 40px;
}
.license__wr{
  flex-direction: column;
}
.license__link{
  margin-bottom: 20px;
  padding: 12px 20px;
}
.license__content {
  width: 100%;
}
.license {
  margin-bottom: 80px;
}

.blog__block-big {
  width: 100%;
}
.blog__block {
  width: 49.3%;
}
.blog__title {
  font-size: 46px;
  margin-bottom: 30px;
}
.blog__tags {
  margin-bottom: 33px;
}
.blog__tag {
  padding: 14px;
}
.blog__wr {
  padding: 22px;
  width: 409px;
}
.blog-big__img {
  width: 340px;
}
.blog__tegs {
  margin-bottom: 20px;
}
.blog__name {
  font-size: 26px;
  -webkit-line-clamp: 3;
}
.blog__text{
  margin-bottom: 25px;
}
.blog__time svg {
  width: 16px;
  height: 14px;
}
.blog__block-name {
  font-size: 21px;
}
.blog__block-img {
  height: 217px;
}
.blog__num {
  width: 45px;
  height: 45px;
  font-size: 14px;
}
.blog__nubmers{
  gap: 6px;
}
.blog__btn-more {
  padding: 16px 17px;
}
.blog__blocks {
  margin-bottom: 35px;
}
.blog {
  margin-bottom: 80px;
}
.article__wr{
  flex-direction: column;
}
.article__title {
  font-size: 34px;
  margin-bottom: 28px;
}
.article__left {
  width: 100%;
}
.article__left {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 63px;
}
.article__tags-wr{
  width: 100%;
}
.article__data{
  margin-bottom: 0;
}
.article__more{
  margin-bottom: 0;
}
.article__tags{
  flex-direction: row;
}
.article__left{
  margin-bottom: 30px;
}
.article__right {
  width: 100%;
}
.article__img-big {
  height: 410px;
  margin-bottom: 30px;
}
.article__slide {
  width: 404px;
  height: 247px;
}
.article__slider{
  margin-bottom: 70px;
}
.standart-content blockquote{
  padding-left: 60px;
  margin-bottom: 30px;
  strong{
    font-size: 20px;
  }
}
.standart-content blockquote::after{
  top: -15px;
  left: 0;
  width: 47px;
  height: 42px;
}
.article {
  margin-bottom: 80px;
}
.related-articles {
  margin-bottom: 80px;
}
.contacts__title {
  margin-bottom: 30px;
  font-size: 38px;
}
.contacts__top{
  flex-direction: column;
}
.contacts__top__blocks {
  width: 100%;
  gap: 27px 46px;
}
.contacts__top-block {
  width: 46.9%;
}
.contacts__top-block address, .contacts__top-block p {
  font-size: 18px;
}
.contacts__top__blocks{
  margin-bottom: 25px;
}
.contacts__map {
  margin-bottom: 40px;
  height: 390px;
}
.contacts__bottom-block {
  width: 48%;
}
.contacts__top {
  margin-bottom: 30px;
}
.contacts__map{
  margin-bottom: 30px;
}
.contacts {
  margin-bottom: 40px;
}
.contacts + .help-you {
  margin-bottom: 80px;
}
.error__num {
  font-size: 120px;
  margin-bottom: 25px;
}
.error__text{
  margin-bottom: 30px;
}
.error__link {
  padding: 19px 18px;
}
.error__wr {
  padding: 73px 30px;
}
.result__title {
  font-size: 35px;
  margin-bottom: 23px;
}
.result__request-title {
  font-size: 20px;
}
.result__request-text {
  font-size: 20px;
}
.result__request {
  margin-bottom: 35px;
}
.result__text{
  font-size: 15px;
}
.result__name{
  margin-bottom: 13px;
}
.result__block {
  margin-bottom: 23px;
  padding-bottom: 17px;
}
.result {
  margin-bottom: 80px;
}
.result__request{
  flex-wrap: wrap;
}
.standart-content h1 {
  font-size: 40px;
  margin-bottom: 27px;
}
.policy {
  margin-bottom: 80px;
}
}



@media only screen and(max-width: 767px) {

  .xs-show {
    display: block !important;
  }
  .teachers__text{
    font-size: 12px;
  }

  .teachers__link {
    font-size: 12px;
}
.teachers__img-wr {
  height: 240px;
}
  #cookie-banner{
    padding: 20px;
  }
  .cookie-banner-wr{
    display: block;
  }
  .cookie-banner-text{
    font-size: 18px;
    a{
      font-size: inherit!important;
    }
  }
  .cookie-banner-buttons{
    margin-top: 20px;
  }
  .xs-hide {
    display: none !important;
  }
  #cookie-more,
  #cookie-accept{
    padding: 14px 12px;
  }
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
header .header__btn{
  display: none;
}
.header__phone-wr{
  display: none;
}
.burger-menu {
  width: 100% !important;
}
.header__burger {
  width: 64px;
  height: 70px;
  padding: 15px;
  gap: 7px;
}
.main__slide {
  padding: 25px;
}
.main__content {
  width: 100%;
}
.main__nav{
  flex-direction: column;
}
.main__title {
  font-size: 29px;
  margin-bottom: 13px;
}
.main__text {
  margin-bottom: 30px;
  font-size: 17px;
  width: 100%;
  br{
    display: none;
  }
}
.main__slide{
  min-height: 0px;
  // padding-bottom: 110px;
}
.main-slider .owl-nav {
  bottom: 36px;
  right: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.header__logo {
  width: 280px;
}
.main {
  margin-bottom: 60px;
}
header .container{
  background-color: #F5F5F5;
}
.header-active .header__burger{
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.06);
}
.company__subtitle {
  padding-top: 0;
  font-size: 15px;
}
.company__title {
  font-size: 26px;
}
.main__title{
  font-size: 25px;
}
.main__text{
  margin-bottom: 25px;
  font-size: 16px;
}
.main__btn {
  padding: 17px 18px;
}
.company__title {
  font-size: 19px;
}
.company__head {
  margin-bottom: 35px;
}
.company__img {
  width: 100%;
  height: 250px;
}
.company__slider {
  margin-bottom: 20px;
}
.company__content{
  flex-direction: column;
}
.company__link {
  padding: 17px 14px;
  width: 100%;
  font-size: 13px;
}
.company__content-text {
  font-size: 17px;
  width: 100%;
}
.company {
  margin-bottom: 60px;
}
.bg-blue {
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 60px;
}
.training__title {
  font-size: 30px;
  margin-bottom: 25px;
}
.training__text{
  font-size: 17px;
}
.training__block {
  padding: 24px;
  width: 100%;
  height: 189px;
}
.training__block-name {
  font-size: 23px;
}
.training__text-img{
  display: none;
}
.training__block-info p {
  font-size: 36px;
}
.training {
  margin-bottom: 60px;
}
.help-you__wr {
  padding: 20px;
}
.help-you__title {
  font-size: 23px;
}

.help-you__form {
  padding: 20px;
}
.help-you__block input {
  padding: 16px;
}
.help-you__bottom{
  flex-direction: column;
}
.help-you__btn {
  font-size: 12px;
  padding: 19px 16px;
  width: 100%;
}
.help-you__bottom{
  margin-top: 20px;
}
.consult__text {
  font-size: 13px;
}
.consult__text a {
  font-size: 13px;
}
.training__title{
  font-size: 28px;
}
.services__block {
  width: 100%;
  height: 193px;
}
.services__img-wr{
  display: none;
}
.services {
  margin-bottom: 60px;
}
.scheme-training__block {
  width: 100%;
  padding: 22px;
}
.reviews__img {
  width: 213px;
  height: 308px;
  margin-bottom: 20px;
}
.reviews__name {
  font-size: 22px;
  margin-bottom: 8px;
}
.reviews__text {
  font-size: 15px;
}
.documents__head-text{
  font-size: 16px;
}
.documents{
  .training__title {
    font-size: 26px;
}
}
.training__head {
  margin-bottom: 30px;
}
.arrow-top{
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
}
.documents__img {
  height: 227px;
}
.slider__standart .owl-prev, .slider__standart .owl-next {
  width: 50px;
  height: 50px;
}
.documents{
  .owl-dots{
    display: none!important;
  }
}
.teachers {
  margin-bottom: 60px;
}
.status-info__text p {
  font-size: 15px;
}
.status-info {
  margin-bottom: 60px;
}
.licenses{
  .training__title {
    font-size: 26px;
}
}
.licenses__link {
  padding: 15px 10px;
  font-size: 11px;
}
.licenses__block{
  height: 449px;
}
.advantages__block, .advantages__block-img {
  width: 100%;
  height: auto;
  min-height: 223px;
}
.advantages__block-img{
  height: 300px;
}
.geography__blocks{
  gap: 22px;  
}
.geography__block {
  width: 104px;
}
.geography__num {
  font-size: 34px;
}
.geography__text {
  font-size: 14px;
}
.geography__link {
  padding: 19px 20px;
  width: 100%;
  font-size: 13px;
}
.other-questions__text{
  br{
    display: none;
  }
}
.other-questions__name {
  margin-bottom: 23px;
  font-size: 29px;
}
.other-questions{
  margin-bottom: 60px;
}
.footer-wr{
  flex-direction: column;
}
.footer__contacts{
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.footer__contacts-block a {
  font-size: 20px;
}
.footer__contacts-block span{
  font-size: 13px;
}
.footer-wr {
  gap: 16px;
}
.footer__menu{
  flex-direction: column;
}
.footer__menu-block {
  width: 100%;
}
.footer__menu{
  gap: 30px;
}
.footer__bottom-links{
  flex-direction: column;
}
.footer__bottom-links{
  gap: 10px;
}
.footer__copyright {
  font-size: 12px;
}
.footer__bottom .container{
  gap: 15px;
}
.rev-modal {
  padding: 20px;
  width: 320px;
}
.rev-modal__title {
  font-size: 25px;
  width: 90%;
  margin-bottom: 15px;
}
.is-compact .fancybox__content>.f-button.is-close-btn{
top: 2px;
right: -1px;
--f-button-bg: transparent;
    --f-button-active-bg: transparent;
    --f-button-hover-bg: transparent;
    --f-button-svg-width: 21px;
    --f-button-svg-height: 22px;
  }
  .rev-modal__text{
    font-size: 15px;
  }
  .rev-modal__info {
    margin-bottom: 20px;
}
.rev-modal .help-you__form .help-you__btn {
  font-size: 13px;
  padding: 17px 17px;
}
.help-you__block{
  margin-bottom: 12px;
}
.rev-modal .help-you__form .consult__text {
  font-size: 13px;
}
.rev-modal .help-you__form .consult__text a {
  font-size: 13px;
}
.checkbox__icon {
  width: 20px;
  height: 19px;
}
.help-you__bottom {
  margin-top: 15px;
}
.learning {
  padding-top: 10px;
}
.standart-nav {
  margin-bottom: 20px;
}
.learning__title {
  font-size: 37px;
  margin-bottom: 27px;
}
.learning__top-name {
  font-size: 22px;
}
.learning__top-text {
  font-size: 14px;
}
.learning__top-arrow {
  width: 49px;
  height: 49px;
}
.learning__block {
  padding: 16px;
}
.learning__content-blocks {
  padding-top: 20px;
}
.learning__content-block{
  width: 100%;
}
.learning__link {
  margin-top: 20px;
  padding: 16px 20px;
  font-size: 13px;
}
.learning__top-info {
  width: 81%;
}
.learning {
  margin-bottom: 60px;
}
.reviews2 + .bg-blue + .help-you {
  margin-bottom: 60px;
}
.standart-learning__wr{
  display: flex;
  flex-direction: column;
}
.standart-learning__title {
  font-size: 30px;
  margin-bottom: 20px;
}
.standart-learning__text {
  font-size: 17px;
}
.standart-learning__img {
  width: 100%;
  height: 294px;
}
.standart-learning__wr{
  padding: 18px;
}
.standart-learning__info{
  padding-top: 10px;
}
.standart-learning {
  margin-bottom: 60px;
}
.standart-content h2{
  font-size: 22px;
  margin-bottom: 26px;
}
.general-information__subtitle {
  font-size: 16px;
}
.general-information .container{
  gap: 17px;
}
.standart-content p {
  font-size: 16px;
  margin-bottom: 17px;
}
.standart-content ul li {
  font-size: 16px;
}
.standart-content ul li:after{
  top: 11px;
}
.standart-content h3 {
  margin-top: 17px;
  margin-bottom: 11px;
}
.general-information {
  margin-bottom: 60px;
}
.training-programs__block .training__block-kr {
  margin-right: 0;
  width: 13px;
  height: 13px;
}
.training-programs__block-info span {
  font-size: 19px;
}
.training-programs__block-info {
  gap: 17px;
}
.training-programs__block-info p {
  font-size: 20px;
}
.training-programs__block {
  padding: 15px;
}
.training-programs__block-info{
  width: 89%;
}
.training-programs__block {
  min-height: 85px;
}
.training-programs {
  margin-bottom: 60px;
}
.reviews {
  margin-bottom: 60px;
}
.bg-blue2{
  margin-bottom: 0;
}
.programm .standart-learning__title {
  font-size: 26px;
}
.standart-learnin__btn{
  width: 100%;
  padding: 18px 18px;
}
.general-information__btn {
  padding: 18px 16px;
  font-size: 13px;
}
.general-information__subtitle {
  font-size: 16px;
}
.general-information__subtitle-wr{
  margin-bottom: 10px;
}
.about-courses__blocks{
  flex-direction: column;
}
.about-courses__block {
  width: 100%;
  padding: 22px;
  gap: 15px;
}
.about-courses__info span {
  font-size: 18px;
  margin-bottom: 9px;
}
.about-courses__info p {
  font-size: 24px;
}
.about-courses__icon {
  width: 57px;
  height: 57px;
}
.documents__head-text{
  margin-top: 25px;
}
.process__content-block{
  width: 100%;
}
.process__block {
  width: 100%;
}
.process__content{
  margin-bottom: 15px;
}
.process {
  margin-bottom: 60px;
}
.course-program__left{
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
.course-program__btn {
  padding: 15px 16px;
}
.course-program__left{
  margin-bottom: 25px;
}
.training__title {
  font-size: 27px;
}
.course-program__wr table th{
  font-size: 15px;
}
.course-program__wr table th:nth-child(1) {
  width: 88px;
}
.course-program__wr table th:nth-child(2) {
  width: 192px;
}
.course-program__wr table th:nth-child(3) {
  width: 88px;
}
.course-program__wr table td:nth-child(1) {
  width: 88px;
}
.course-program__wr table td:nth-child(2) {
  width: 183px;
}
.course-program__wr table td:nth-child(3) {
  width: 88px;
}
.course-program__wr table th {
  padding: 12px 10px;
}
.course-program__wr table td {
  padding: 11px 10px;
  font-size: 14px;
  line-height: normal;
  vertical-align: middle;
}
.course-program {
  margin-bottom: 60px;
}
.standart-content strong{
  font-size: 18px;
}
.help-you__form__name {
  font-size: 25px;
  margin-bottom: 22px;
}
.admission .checkbox__parent {
  width: 100%;
}
.documents + .help-you {
  margin-bottom: 60px;
}
.services {
  margin-top: 10px;
}
.services__title {
  font-size: 39px;
  margin-bottom: 24px;
}
.services + .help-you {
  margin-bottom: 60px;
}
.standart-learni__price{
  font-size: 27px;
}
.standart-learning-top{
  margin-bottom: 20px;
}
.standart-learning-top{
  gap:0;
  align-items: flex-start;
}
.standart-learning-bottom{
  width: 100%;
}
.standart-learning-bottom{
  align-items: flex-start;
}
.cost__block {
  width: 100%;
}
.cost__block {
  min-height: auto;
}
.cost__garant p {
  font-size: 16px;
  margin-bottom: 10px;
}
.cost__info ul li {
  font-size: 17px;
  width: 98%;
}
.cost {
  margin-bottom: 60px;
}
.proceeding__blocks .process__block {
  width: 100%;
}
.proceeding {
  margin-bottom: 60px;
}
.bg-blue + .help-you {
  margin-bottom: 60px;
}
.intelligence{
  margin-top: 10px;
}
.intelligence__title {
  font-size: 33px;
  margin-bottom: 25px;
}
.intelligence__link {
  width: auto;
  padding: 13px;
  font-size: 11px;
}
.intelligence__content{
  padding: 20px;
}
.intelligence__content-title {
  font-size: 23px;
  margin-bottom: 20px;
}
.intelligence__doc svg {
  width: 26px;
  height: 26px;
}
.intelligence__doc {
  font-size: 15px;
  gap: 10px;
}
.intelligence__docs-wr-title{
  font-size: 23px;
}
.intelligence__docs-img {
  width: 100%;
  height: 221px;
}
.intelligence {
  margin-bottom: 60px;
}
.license {
  margin-bottom: 60px;
  margin-top: 10px;
}
.license__title {
  font-size: 38px;
  margin-bottom: 25px;
}
.license__img {
  width: 100%;
  padding: 12px;
  height: 236px;
  height: auto;
}
.license__link {
  margin-bottom: 20px;
  padding: 12px 20px;
  font-size: 13px;
  width: 240px;
}
.license__content p {
  font-size: 16px;
}
.license__content p {
  margin-bottom: 15px;
}
.license__content a {
  font-size: 16px;
  margin-bottom: 17px;
}
.blog {
  margin-bottom: 60px;
  margin-top: 10px;
}
.blog__title {
  font-size: 41px;
  margin-bottom: 25px;
}
.blog__tag {
  padding: 10px;
  font-size: 11px;
}
.blog__tags {
  margin-bottom: 30px;
}
.blog__block {
  width: 100%;
}
.blog__block-big{
  flex-direction: column;
}
.blog-big__img {
  width: 100%;
  height: 283px;
}
.blog__wr {
  padding: 17px;
  width: 100%;
}
.blog-big__img {
  width: 100%;
  height: 257px;
}
.blog__tegs{
  gap: 8px;
}
.blog__teg {
  padding: 9px;
}
.blog__name{
  font-size: 24px;
}
.blog__block-info {
  padding: 18px;
}
.blog__nav-wr{
  flex-direction: column-reverse;
}
.blog__nubmers.xs-show{
  display: flex!important;
  margin-bottom: 25px;
}
.article {
  margin-bottom: 60px;
  margin-top: 10px;
}
.article__title {
  font-size: 27px;
  margin-bottom: 24px;
}
.article__data{
  width: 100%;
}
.article__more{
  width: 100%;
}
.article__data p {
  font-size: 20px;
}
.article__social {
  width: 30px;
  height: 30px;
}
.article__tag{
  padding: 14px;
}
.article__left {
  margin-bottom: 25px;
}
.article__img-big {
  height: 323px;
  margin-bottom: 24px;
}
.article__slide {
  width: 100%;
  height: 213px;
}
.article__slider {
  margin-bottom: 50px;
  margin-top: 30px;
}
.standart-content ol li{
  font-size: 16px;
  margin-bottom: 8px;
}
.standart-content ol li {
  padding-left: 25px;
}
.standart-content ol {
  margin-bottom: 30px;
}
.standart-content blockquote {
  padding-left: 32px;
  margin-bottom: 27px;
}
.standart-content blockquote strong {
  font-size: 18px;
}
.standart-content blockquote::after {
  top: -15px;
  left: 0;
  width: 31px;
  height: 33px;
}
.standart-content blockquote p{
  font-size: 15px;
}
.standart-content blockquote span{
  font-size: 13px;
}
.standart-content blockquote{
  margin-bottom: 23px;
}
.related-articles {
  margin-bottom: 60px;
}
.contacts {
  margin-bottom: 35px;
  margin-top: 10px;
}
.contacts__title {
  margin-bottom: 20px;
  font-size: 35px;
}
.contacts__top__blocks {
  width: 100%;
  gap: 15px;
}
.contacts__top-block {
  width: 100%;
}
.contacts__top-soc span{
  margin-bottom: 15px;
}
.contacts__bottom-block {
  width: 100%;
}
.contacts__bottom-blocks {
  gap: 13px;
}
.contacts + .help-you {
  margin-bottom: 60px;
}
.error__num {
  font-size: 84px;
  margin-bottom: 21px;
}
.error__wr {
  padding: 73px 13px;
}
.error {
  margin-bottom: 60px;
}
.error__link {
  padding: 17px 17px;
  font-size: 13px;
}
.error__text {
  margin-bottom: 25px;
}
.error{
  margin-top: 10px;
}
.error__wr{
  margin-top: 20px;
}.result__title {
  font-size: 29px;
  margin-bottom: 20px;
}
.result__request-title {
  font-size: 17px;
}
.result__request-text {
  font-size: 18px;
}
.result__request{
  gap: 6px;
}
.result__request {
  margin-bottom: 30px;
}
.result{
  margin-top: 10px;
  margin-bottom: 60px;
}
.result__blocks{
  margin-bottom: 30px;
}
.policy {
  margin-bottom: 60px;
  margin-top: 10px;
}
.standart-content h1 {
  font-size: 33px;
  margin-bottom: 24px;
}
}


@media only screen and(max-width: 375px) {}


@media only screen and(max-width: 320px) {}