@font-face {
  font-family: "Geometria";
  src: url("../fonts/Geometria-Medium.woff2") format("woff2"), url("../fonts/Geometria-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Geometria";
  src: url("../fonts/Geometria-Bold.woff2") format("woff2"), url("../fonts/Geometria-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Geometria";
  src: url("../fonts/Geometria.woff2") format("woff2"), url("../fonts/Geometria.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Geometria";
  src: url("../fonts/Geometria-ExtraBold.woff2") format("woff2"), url("../fonts/Geometria-ExtraBold.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button,
input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

button:focus {
  box-shadow: none !important;
}

*:focus {
  outline: none;
}

body {
  font: 400 18px "Geometria", sans-serif;
  position: relative;
  color: #575756;
}

a {
  display: inline-block;
  font: inherit;
  color: inherit;
  transition: 300ms;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

svg {
  transition: 300ms;
}

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

a img {
  border: none;
  outline: none;
}

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

.container {
  max-width: 1143px;
  margin: 0 auto;
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .container {
    max-width: 688px;
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}

.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox.field--error {
  border: 0;
}

.checkbox.field--error .checkbox__inner span {
  border: 1px solid #e30613;
}

.checkbox.field--error .checkbox__text {
  color: #e30613;
}

.checkbox.disabled {
  pointer-events: none;
  text-decoration: line-through;
  cursor: inherit;
  opacity: 0.4;
}

.checkbox__text {
  font-size: 12px;
  margin-left: 10px;
}

.checkbox__text a {
  color: #009fe3;
  text-decoration: underline;
}

.checkbox__inner span {
  text-align: center;
  width: 18px;
  height: 18px;
  display: block;
  cursor: pointer;
  border: 1px solid #575756;
  box-sizing: border-box;
  position: relative;
  transition: 300ms;
  z-index: 1;
  background: rgb(217, 217, 217);
}

.checkbox__inner span::before {
  display: block;
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #009fe3;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  opacity: 0;
  transition: 300ms;
  visibility: hidden;
}

.checkbox__inner input {
  display: none;
}

.checkbox__inner input:checked+span::before {
  opacity: 1;
  visibility: visible;
}

.field {
  display: block;
  position: relative;
  height: 50px;
  cursor: pointer;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.field-file-content {
  height: auto;
}


.field-file-content.field--error {
  border: none;
}


.field-file-content.field--error .field-file {
  border: 1px solid #e30613;
}

.field-file-content.mobile {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .field-file-content.mobile {
    display: block;
  }
}

@media only screen and (max-width: 1200px) {
  .field-file-content.tablet {
    display: none;
  }
}

.file-field-error {
  font-size: 14px;
  color: #e30613;
  padding-left: 10px;
}

.field-file-content .field-file {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 40px;
  position: relative;
  height: 184px;
  background: #f2f2f2;
  border-radius: 10px;
}

.field-file-content .field-file__icon {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.field-file-content .field-file__info {
  font-size: 14px;
}

.field-file-content .field-file__info span {
  color: #009fe3;
  text-decoration: underline;
}

.field-file-content input {
  opacity: 0;
  visibility: visible;
  z-index: 100;
  position: absolute;
  cursor: pointer;
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .field {
    margin-bottom: 30px;
  }
}

.field input,
textarea {
  border: none;
  padding-bottom: 0;
  border: 0;
  background: #ededed;
  width: 100%;
  font-size: 16px;
  height: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 10px;
  padding-left: 20px !important;
  resize: none;
}

.field-area {
  height: auto;
}

.field-area textarea {
  height: 114px;
}

.field--error {
  border: 1px solid #ca1313;
}

.field__error {
  color: #ca1313;
  font-size: 12px;
}

.form-group {
  border-radius: 10px;
}

.field__label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: 400ms;
  font-size: 18px;
  line-height: 19px;
  color: #8b8b8b;
  padding-left: 20px;
}

@media only screen and (max-width: 991px) {
  .field__label {
    font-size: 16px;
  }
}

.field__label.top {
  top: 0px;
  transform: translateY(0);
  font-size: 12px;
}

.field input:focus~.field__label {
  top: 0px;
  transform: translateY(0%);
  font-size: 12px;
}

.title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}

@media only screen and (max-width: 1200px) {
  .title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .title {
    font-size: 24px;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  transition: 300ms;
}

.btn-blue {
  background: #009fe3;
  color: #fff;
}

.btn-blue:hover {
  background: #0085be;
}

.btn-blue:active {
  background: #575756;
}

.btn-white {
  background: #fff;
  color: #015fa5;
}

.btn-white:hover {
  background: #0085be;
  color: #fff;
}

.btn-white:active {
  background: #009fe3;
}

.btn-border {
  border: 1px solid #009fe3;
  color: #009fe3;
}

.btn-border:hover {
  border: 1px solid #0085be;
  color: #0085be;
}

.btn-border:active {
  border: 1px solid #575756;
  color: #575756;
}

.header {
  background: #f2f2f2;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  right: 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.header__logo {
  display: flex;
  align-items: center;
  margin-right: 68px;
  flex-shrink: 0;
}

@media only screen and (max-width: 991px) {
  .header__logo {
    height: 35px;
    margin-right: 0;
  }
}

.header__content {
  flex-grow: 10;
}

.header__country {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.header__country:hover .header__country--arrow {
  transform: rotate(180deg);
}

.header__country:hover .header__country--dropdown {
  display: flex;
}

@media only screen and (max-width: 1200px) {
  .header__country {
    margin-bottom: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.header__country--head {
  display: flex;
  align-items: center;
  gap: 3px;
  text-transform: uppercase;
}

.header__country--arrow {
  display: flex;
  align-items: center;
  transition: 400ms;
}

.header__country--dropdown {
  position: absolute;
  border-radius: 5px;
  width: 102px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px 0;
  top: 100%;
  z-index: 10;
  display: none;
}

.header__country--dropdown.active {
  display: flex;
}

.header__aside {
  display: flex;
  align-items: center;
  flex-grow: 10;
  justify-content: flex-end;
}

.header__number {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  font-weight: 500;
  margin-right: 40px;
}

.header__mail {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  font-weight: 500;
  margin-right: 40px;
}

.header__loop {
  display: flex;
  align-items: center;
  margin-right: 25px;
  cursor: pointer;
}

@media only screen and (max-width: 1200px) {
  .header__loop {
    display: none;
  }
}

.header__loop.mobile {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .header__loop.mobile {
    display: flex;
  }
}

.header__loop svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #009fe3;
  stroke-width: 2px;
}

.header__loop svg:hover {
  stroke: #757575;
}

.header__loop svg:active {
  stroke: #575756;
}

.header__btn {
  width: 205px;
}

@media only screen and (max-width: 991px) {
  .header__btn {
    width: 100%;
  }
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.header__burger {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 20px;
  }

  .header__burger img {
    display: none;
  }

  .header__burger.active span {
    display: none;
  }

  .header__burger.active img {
    display: block;
  }

  .header__burger span {
    width: 100%;
    height: 4px;
    background: #575756;
    display: block;
    position: relative;
  }

  .header__burger span::before {
    position: absolute;
    display: block;
    content: "";
    height: 4px;
    background: #575756;
    width: 100%;
    top: -8px;
  }

  .header__burger span::after {
    position: absolute;
    display: block;
    content: "";
    height: 4px;
    background: #575756;
    width: 100%;
    top: 8px;
  }
}

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

@media only screen and (max-width: 1200px) {
  .header__nav {
    display: block;
    -moz-columns: 2;
    columns: 2;
  }

  .header__nav--tablet {
    width: 50%;
  }
}

@media only screen and (max-width: 991px) {
  .header__nav {
    flex-direction: column;
    -moz-columns: 1;
    columns: 1;
  }

  .header__nav--tablet {
    width: 100%;
  }
}

.header__nav li {
  font-size: 14px;
  position: relative;
  font-weight: 500;
  cursor: pointer;
}

@media only screen and (max-width: 1200px) {
  .header__nav li {
    font-size: 18px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .header__nav li {
    font-size: 16px;
    padding-right: 30px;
    width: fit-content;
  }
}

@media only screen and (max-width: 991px) {
  .header__nav li.hover a {
    position: relative;
  }

  .header__nav li.hover:before {
    content: "";
    display: block;
    position: absolute;
    background: url("../images/arrow-white.svg");
    width: 14px;
    height: 8px;
    background-size: cover;
    left: 110px;
    top: 10px;
    transition: 300ms;
    transform: translateY(-50%) rotate(180deg);
  }

  .header__nav li.hover.active:before {
    transform: translateY(-50%) rotate(0);
  }
}

.header__nav li.hover:hover span {
  font-weight: 700;
  color: #009fe3;
}

.header__nav li>ul {
  position: absolute;
  width: 270px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
  top: 130%;
  padding: 34px;
  border-radius: 10px;
  display: none;
}

@media only screen and (max-width: 1200px) {
  .header__nav li>ul {
    position: relative;
    width: auto;
    display: block;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .header__nav li>ul {
    display: none;
  }

  .header__nav li>ul.active {
    display: block;
  }
}

.header__nav li>ul:before {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 100%;
  transform: translateX(-50%);
  left: 48%;
  background: transparent;
  top: -5px;
}

@media only screen and (max-width: 1200px) {
  .header__nav li>ul:before {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .header__nav li>ul:before {
    display: none;
  }
}

.header__nav li>ul li {
  margin-bottom: 15px;
}

@media only screen and (max-width: 1200px) {
  .header__nav li>ul li {
    font-size: 14px;
    color: #d8d8d8;
  }
}

.header__nav li>ul li a:hover {
  text-decoration: underline;
  color: #009fe3;
}

@media only screen and (max-width: 1200px) {
  .header__content {
    display: none;
  }
}

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

.header-mobile {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .header-mobile {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: #575756;
    min-height: 100vh;
    height: 100vh;
    display: block;
    color: #fff;
    padding: 30px 0 120px;
    overflow: scroll;
    display: none;
  }

  .header-mobile.active {
    display: block;
  }
}

@media only screen and (max-width: 991px) {
  .header-mobile {
    top: 65px;
  }
}

.header__foot {
  display: flex;
  align-items: center;
  padding-top: 50px;
  border-top: 1px solid #959595;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .header__foot {
    flex-direction: column;
    gap: 40px;
    font-size: 16px;
    padding-top: 27px;
  }
}

.header__foot--content {
  display: flex;
  align-items: center;
}

.search-mobile {
  position: fixed;
  top: 0;
  left: 0;
  background: #575756;
  z-index: 101;
  width: 100%;
  color: #fff;
  height: calc(100vh - 123px);
  top: 123px;
  display: none;
}

@media only screen and (max-width: 1200px) {
  .search-mobile {
    top: 78px;
    height: calc(100vh - 78px);
  }
}

@media only screen and (max-width: 991px) {
  .search-mobile {
    top: 65px;
    height: calc(100vh - 65px);
  }
}

.search-mobile.active {
  display: block;
}

.search-mobile__close {
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  fill: #fff;
  width: 36px;
  height: 36px;
  top: 10px;
  cursor: pointer;
}

.search-mobile__close svg {
  width: 36px;
  height: 36px;
}

@media only screen and (max-width: 991px) {
  .search-mobile__close {
    width: 30px;
    height: 30px;
  }
}

.search-mobile__inner {
  position: relative;
  padding: 120px 0 40px;
}

.search-mobile__form {
  position: relative;
  margin-bottom: 20px;
}

.search-mobile__btn {
  width: 205px;
  position: absolute;
  right: 0;
  top: -20px;
  border: 0;
}

@media only screen and (max-width: 991px) {
  .search-mobile__btn {
    position: relative;
    width: 90%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.search-mobile__fixed {
  display: none;
}

.search-mobile__fixed.active {
  display: flex;
}

@media only screen and (max-width: 991px) {
  .search-mobile__fixed {
    position: fixed;
    bottom: 0;
    top: auto;
    width: 100%;
    bottom: 0;
    padding: 26px 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
  }
}

.search-mobile__field {
  display: flex;
  align-items: center;
  position: relative;
}

.search-mobile__field input.input+svg {
  display: none;
}

.search-mobile__field svg {
  position: absolute;
  width: 45px;
  height: 45px;
  left: 0;
  fill: none;
  stroke: #009fe3;
  top: -20px;
  stroke-width: 2px;
}

@media only screen and (max-width: 991px) {
  .search-mobile__field svg {
    width: 30px;
    height: 30px;
    top: -10px;
  }
}

.search-mobile__field input {
  background: none;
  border: 0;
  border-bottom: 1px solid #fff;
  box-shadow: none;
  width: 100%;
  padding-left: 55px;
  padding-bottom: 10px;
  font-size: 20px;
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .search-mobile__field input {
    font-size: 16px;
    padding-left: 35px;
  }
}

.search-mobile__field input.input {
  padding-left: 0;
}

.search-mobile__field input.input::-webkit-input-placeholder {
  color: transparent;
}

.search-mobile__field input::-webkit-input-placeholder {
  color: #b6b6b6;
}

.search-mobile__field input:-moz-placeholder {
  color: #b6b6b6;
}

.search-mobile__field input::-moz-placeholder {
  color: #b6b6b6;
}

.search-mobile__field input:-ms-input-placeholder {
  color: #b6b6b6;
}

.search-mobile__content {
  margin-bottom: 36px;
  min-height: 350px;
}

.search-mobile__content span {
  color: #009fe3;
  display: block;
  font-size: 24px;
  margin-bottom: 20px;
  text-decoration: underline;
  font-weight: 500;
}

@media only screen and (max-width: 1200px) {
  .search-mobile__content span {
    font-size: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .search-mobile__content span {
    font-size: 16px;
  }
}

.search-mobile__content span:last-child {
  margin-bottom: 0;
}

.search-mobile__content span b {
  font-weight: 700;
}

.search-mobile__label {
  display: block;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 30px;
}

@media only screen and (max-width: 991px) {
  .search-mobile__label {
    font-size: 26px;
  }
}

.search-mobile__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

@media only screen and (max-width: 1200px) {
  .search-mobile__items {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .search-mobile__items {
    grid-template-columns: 1fr;
  }
}

.search-mobile__item {
  font-size: 18px;
}

@media only screen and (max-width: 991px) {
  .search-mobile__item {
    font-size: 16px;
  }
}

.search-mobile__scroll {
  min-height: 100%;
  overflow: auto;
  height: calc(100vh - 323px);
  padding-right: 30px;
}

@media only screen and (max-width: 1200px) {
  .search-mobile__scroll {
    height: calc(100vh - 278px);
  }
}

.search-mobile__scroll::-webkit-scrollbar {
  width: 10px;
  border-radius: 50px;
  border: 1px solid #cdcdcd;
}

.search-mobile__scroll::-webkit-scrollbar-thumb {
  background: #cdcdcd;
  border-radius: 30px;
}

.showcase {
  color: #fff;
  overflow: hidden;
  position: relative;
  height: 700px;
}

@media only screen and (max-width: 991px) {
  .showcase .container {
    height: 100%;
  }
}

.showcase .swiper-pagination {
  bottom: 60px;
}

@media only screen and (max-width: 1200px) {
  .showcase .swiper-pagination {
    display: none;
  }
}

.showcase .swiper-pagination-bullet {
  border-radius: 5px;
  width: 165px;
  height: 12px;
  opacity: 1;
  background: #fff;
}

.showcase .swiper-pagination-bullet-active {
  background: #ff0000;
}

.showcase__img {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

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

.showcase__info {
  height: 100%;
}

.showcase__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase__icon {
  display: flex;
  margin-bottom: 40px;
}

@media only screen and (max-width: 991px) {
  .showcase__icon {
    height: 40px;
    margin-bottom: 20px;
  }
}

.showcase__aside {
  max-width: 749px;
}

@media only screen and (max-width: 1200px) {
  .showcase__aside {
    max-width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: 20px 0;
  }
}

.showcase__image {
  position: absolute;
  display: flex;
  align-items: center;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 1750px) {
  .showcase__image {
    height: 350px;
  }
}

@media only screen and (max-width: 1300px) {
  .showcase__image {
    bottom: 0;
    top: auto;
    transform: translateY(0);
  }
}

@media only screen and (max-width: 991px) {
  .showcase__image {
    height: 255px;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    justify-content: center;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__aside--container {
    flex-grow: 10;
  }
}

.showcase__text {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 102px;
}

.showcase__text.blue {
  color: #009fe3;
}

@media only screen and (max-width: 1200px) {
  .showcase__text {
    font-size: 36px;
    max-width: 400px;
    margin-bottom: 30px;
  }

  .showcase__text br {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__text {
    max-width: 100%;
  }
}

.showcase__btn {
  max-width: 225px;
  height: 50px;
}

@media only screen and (max-width: 767px) {
  .showcase__btn {
    width: 100%;
    max-width: 100%;
  }
}

.showcase__description ul {
  margin-bottom: 80px;
  margin-left: 30px;
  max-width: 500px;
}

@media only screen and (max-width: 1400px) {
  .showcase__description ul {
    margin-bottom: 150px;
  }
}

@media only screen and (max-width: 1200px) {
  .showcase__description ul {
    max-width: 430px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__description ul {
    margin-bottom: 200px;
  }
}

.showcase__description ul li {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 400;
  padding-left: 10px;
  list-style-type: disc;
}

@media only screen and (max-width: 991px) {
  .showcase__description ul li {
    font-size: 16px;
  }
}

@media only screen and (max-width: 360px) {
  .showcase__description ul li {
    font-size: 14px;
  }
}

.about {
  overflow: hidden;
  position: relative;
  padding-top: 348px;
  padding-bottom: 357px;
}

@media only screen and (max-width: 1200px) {
  .about {
    padding-top: 150px;
  }
}

@media only screen and (max-width: 991px) {
  .about {
    padding-top: 126px;
    padding-bottom: 80px;
  }
}

.about__bg {
  position: absolute;
  display: flex;
  align-items: center;
  left: 66px;
  top: 180px;
}

@media only screen and (max-width: 1200px) {
  .about__bg {
    height: 298px;
    top: 50px;
    left: -30px;
  }
}

@media only screen and (max-width: 991px) {
  .about__bg {
    top: 10px;
    left: -20px;
  }
}

.about__title {
  margin-bottom: 30px;
}

.about__inner {
  max-width: 487px;
}

@media only screen and (max-width: 1200px) {
  .about__inner {
    max-width: 100%;
  }
}

.about__text {
  font-size: 16px;
}

.about__img {
  display: flex;
  align-items: center;
  position: absolute;
  right: -5%;
  bottom: 4%;
}

@media only screen and (max-width: 1700px) {
  .about__img {
    right: -220px;
  }
}

@media only screen and (max-width: 1400px) {
  .about__img {
    width: 69%;
  }
}

@media only screen and (max-width: 1200px) {
  .about__img {
    right: 0;
    margin-top: 20px;
    bottom: 0;
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .about__img {
    width: 100%;
    right: auto;
    justify-content: center;
    height: 242px;
    position: relative;
  }
}

.about__img img.mobile {
  display: none;
}

@media only screen and (max-width: 991px) {
  .about__img img.mobile {
    display: block;
  }
}

.about__img img.tablet {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .about__img img.tablet {
    display: block;
  }
}

@media only screen and (max-width: 991px) {
  .about__img img.tablet {
    display: none;
  }
}

@media only screen and (max-width: 1200px) {
  .about__img img.desktop {
    display: none;
  }
}

.adva {
  background: url("../images/adva-bg.png") 50% 50% no-repeat;
  background-size: cover;
}

.adva__inner {
  padding-top: 77px;
  padding-bottom: 48px;
}

@media only screen and (max-width: 991px) {
  .adva__inner {
    padding: 60px 0;
  }
}

.adva__title {
  color: #fff;
  margin-bottom: 92px;
}

@media only screen and (max-width: 1200px) {
  .adva__title {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .adva__title {
    margin-bottom: 40px;
  }
}

.adva__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

@media only screen and (max-width: 1200px) {
  .adva__items {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .adva__items {
    grid-gap: 12px;
  }
}

.adva__item {
  background: #fff;
  padding: 45px 30px;
  border-radius: 10px;
}

@media only screen and (max-width: 991px) {
  .adva__item {
    padding: 30px 14px;
  }
}

.adva__icon {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

@media only screen and (max-width: 991px) {
  .adva__icon {
    justify-content: center;
    margin-bottom: 20px;
  }
}

.adva__subtitle {
  height: 58px;
  font-weight: 700;
  font-size: 18px;
  padding-bottom: 23px;
  margin-bottom: 23px;
  border-bottom: 1px solid #acacac;
  text-transform: uppercase;
}

@media only screen and (max-width: 991px) {
  .adva__subtitle {
    font-size: 12px;
    margin-bottom: 0;
    height: auto;
    padding-bottom: 0;
    border-bottom: none;
    text-align: center;
  }
}

@media only screen and (max-width: 991px) {
  .adva__text {
    display: none;
  }
}

.brands {
  margin: 150px 0;
}

@media only screen and (max-width: 1200px) {
  .brands {
    margin: 80px 0;
  }
}

.brands__title {
  margin-bottom: 60px;
}

@media only screen and (max-width: 1200px) {
  .brands__title {
    margin-bottom: 40px;
  }
}

.brands__item {
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  padding-right: 50px;
  display: grid;
  grid-template-columns: 360px 1fr;
  grid-gap: 121px;
  align-items: center;
}

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

@media only screen and (max-width: 1200px) {
  .brands__item {
    grid-gap: 30px;
    padding-right: 50px;
    grid-template-columns: 238px 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .brands__item {
    grid-template-columns: 1fr;
    padding: 0;
  }
}

.brands__item.reverse {
  grid-template-columns: 1fr 360px;
  grid-gap: 50px;
  padding-left: 121px;
  padding-right: 0;
}

@media only screen and (max-width: 1200px) {
  .brands__item.reverse {
    padding-left: 30px;
    grid-gap: 30px;
    grid-template-columns: 1fr 238px;
  }
}

@media only screen and (max-width: 991px) {
  .brands__item.reverse {
    grid-template-columns: 1fr;
    grid-gap: 30px;
    padding: 0;
  }
}

.brands__item.reverse .brands__img {
  order: 1;
}

@media only screen and (max-width: 991px) {
  .brands__item.reverse .brands__img {
    order: -1;
  }
}

.brands__img {
  display: flex;
  align-items: center;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  height: 100%;
}

@media only screen and (max-width: 991px) {
  .brands__img {
    height: 330px;
    width: 100%;
  }
}

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

.brands__icon {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
}

@media only screen and (max-width: 991px) {
  .brands__icon {
    margin-bottom: 30px;
  }
}

.brands__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #313131;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1200px) {
  .brands__text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .brands__text {
    font-size: 16px;
  }
}

.brands__more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-gap: 16px;
}

@media only screen and (max-width: 1200px) {
  .brands__more {
    font-size: 14px;
    grid-gap: 10px;
  }

  .brands__more img {
    width: 18px;
    height: 18px;
  }
}

.brands__more:hover span {
  color: #009fe3;
}

.brands__content {
  padding-bottom: 10px;
  border-bottom: 1px solid #757575;
}

@media only screen and (max-width: 1200px) {
  .brands__content {
    padding: 30px 0 0;
    margin-bottom: 30px;
    padding-bottom: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .brands__content {
    padding: 30px 0px 15px;
    margin: 0 30px;
    margin-bottom: 30px;
    padding-top: 0;
  }
}

.realize {
  margin-bottom: 150px;
}

@media only screen and (max-width: 1200px) {
  .realize {
    margin-bottom: 80px;
  }
}

.realize__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 35px;
  margin-bottom: 50px;
  border-bottom: 1px solid #757575;
}

@media only screen and (max-width: 1200px) {
  .realize__top {
    margin-bottom: 40px;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}

.realize__title {
  font-size: 35px;
}

@media only screen and (max-width: 1200px) {
  .realize__title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .realize__title {
    font-size: 24px;
  }
}

.realize__more {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@media only screen and (max-width: 991px) {
  .realize__more {
    display: none;
  }
}

.realize__more:hover {
  color: #009fe3;
}

.realize__more:hover svg {
  stroke: #009fe3;
}

.realize__more span {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-right: 14px;
}

@media only screen and (max-width: 1200px) {
  .realize__more span {
    font-size: 18px;
  }
}

.realize__more svg {
  fill: none;
  stroke: #575756;
  width: 40px;
  height: 40px;
  transition: 400ms;
}

.realize__contianer {
  padding: 10px;
  margin: 0 -20px;
}

@media only screen and (max-width: 991px) {
  .realize__contianer {
    margin: 0 -10px;
  }
}

.realize__item {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .realize__item {
    width: 327px;
  }
}

.realize__img {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  height: 280px;
}

@media only screen and (max-width: 1200px) {
  .realize__img {
    margin-bottom: 24px;
  }
}

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

.realize__aside {
  padding-bottom: 20px;
  border-bottom: 1px solid #757575;
  margin: 0 50px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1200px) {
  .realize__aside {
    margin: 0 28px;
    margin-bottom: 30px;
  }
}

.realize__name {
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1200px) {
  .realize__name {
    font-size: 14px;
  }
}

.realize__info--text {
  font-weight: 400;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1200px) {
  .realize__info--text {
    font-size: 13px;
  }
}

@media only screen and (max-width: 991px) {
  .realize__info--text {
    font-size: 14px;
  }
}

.realize__info--text:last-child {
  margin-bottom: 0;
}

.realize__info--text b {
  font-weight: 500;
}

.realize__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
  gap: 7px;
  color: #009fe3;
}

@media only screen and (max-width: 991px) {
  .realize__link {
    margin-top: 40px;
  }
}

.realize__link:hover {
  color: #015fa5;
}

.realize__link:hover svg {
  stroke: #015fa5;
}

.realize__link svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #009fe3;
}

.realize__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 20px;
}

@media only screen and (max-width: 991px) {
  .realize__buttons {
    display: none;
  }
}

.realize__next,
.realize__prev {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.realize__next:hover svg,
.realize__prev:hover svg {
  stroke: #009fe3;
}

.realize__next svg,
.realize__prev svg {
  width: 44px;
  height: 44px;
  stroke: #575756;
  fill: none;
  stroke-width: 2px;
}

.realize__prev {
  transform: rotate(180deg);
}

.realize__btn {
  display: none;
}

@media only screen and (max-width: 991px) {
  .realize__btn {
    display: flex;
    height: 60px;
    margin-top: 40px;
  }
}

.elite {
  background: url("../images/elite-bg2.jpg") 50% 50% no-repeat;
  background-size: cover;
}

.elite__inner {
  padding-top: 133px;
  padding-bottom: 80px;
}

@media only screen and (max-width: 1200px) {
  .elite__inner {
    padding-top: 70px;
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .elite__inner {
    padding-top: 50px;
    padding-bottom: 122px;
  }
}

.elite__img {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}

@media only screen and (max-width: 991px) {
  .elite__img {
    margin-bottom: 70px;
  }
}

.elite__title {
  /*color: #fff;*/
  margin-bottom: 40px;
  font-size: 48px;
}

@media only screen and (max-width: 991px) {
  .elite__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.elite__text {
  font-size: 20px;
/*  color: #fff;*/
  margin-bottom: 137px;
}

@media only screen and (max-width: 991px) {
  .elite__text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .elite__text {
    font-size: 16px;
    margin-bottom: 141px;
  }
}

.elite__btn {
  max-width: 300px;
  margin: 0 auto;
  height: 60px;
}

@media only screen and (max-width: 991px) {
  .elite__btn {
    max-width: 100%;
  }
}

.expert {
  background: url("../images/ex-bg.png") 50% 50% no-repeat;
  background-size: cover;
}

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

@media only screen and (max-width: 991px) {

  .expert {
    overflow: hidden;
  }

  .expert__inner {
    padding-top: 60px;
    flex-direction: column-reverse;
  }
}

.expert__img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: -100px;
  margin-right: 20px;
}

@media only screen and (max-width: 1200px) {
  .expert__img {
    height: 636px;
    margin-left: -300px;
  }
}

@media only screen and (max-width: 991px) {
  .expert__img {
    height: 399px;
    width: 437px;
    margin-left: 0;
    justify-content: center;
    margin-right: 0;
  }
}

.expert__title {
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .expert__title {
    margin-bottom: 27px;
  }
}

.expert__text {
  font-size: 20px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1200px) {
  .expert__text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .expert__text {
    font-size: 16px;
    margin-bottom: 37px;
  }
}

.expert__btn {
  height: 60px;
  max-width: 300px;
}

@media only screen and (max-width: 991px) {
  .expert__btn {
    max-width: 100%;
  }
}

.news {
  margin: 150px 0;
}

.news-blue {
  background: url("../images/bg-news.png") 50% 50% no-repeat;
  padding: 90px 0;
  background-size: cover;
}

@media only screen and (max-width: 1200px) {
  .news {
    margin: 80px 0;
  }
}

@media only screen and (max-width: 991px) {
  .news-page .news__items {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    overflow: auto;
    display: grid;
  }
}

@media only screen and (max-width: 991px) {
  .news-page .news__img {
    width: 100%;
    height: 100%;
  }

  .news-page .news__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.news__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

@media only screen and (max-width: 1200px) {
  .news__items {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .news__items {
    display: flex;
    align-items: flex-start;
    overflow: auto;
    margin-right: -15px;
    padding-right: 15px;
  }

  .news__items::-webkit-scrollbar {
    display: none;
  }
}

@media only screen and (max-width: 1200px) {
  .news__item.tablet {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .news__item {
    min-width: 303px;
  }

  .news__item.tablet {
    display: block;
  }
}

.news__img {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.news__date {
  color: #757575;
  margin-bottom: 30px;
}

.news__name {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}

.news__text {
  font-size: 14px;
  color: #757575;
}

.footer {
  background: #f2f2f2;
}

.footer__inner {
  padding: 30px 0;
}

.footer__left {
  position: relative;
}

.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}

@media only screen and (max-width: 1200px) {
  .footer__logo {
    height: 35px;
  }
}

.footer__telega {
  margin-top: 21px;
}

@media only screen and (max-width: 991px) {
  .footer__telega {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 0;
  }
}

.footer__telega span {
  font-weight: 500;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.footer__telega a:hover svg {
  fill: #575756;
}

.footer__telega a svg {
  width: 25px;
  height: 25px;
  fill: #009fe3;
}

.footer__top {
  display: grid;
  grid-template-columns: 205px 248px 1fr;
  align-items: flex-start;
  grid-gap: 50px;
}

@media only screen and (max-width: 1200px) {
  .footer__top {
    grid-template-columns: 181px 202px 1fr;
    grid-gap: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}

.footer__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 14px;
  gap: 1.875rem;
}

@media only screen and (max-width: 991px) {
  .footer__aside {
    grid-gap: 20px;
  }
}

.footer__list {
  -moz-columns: 3;
  columns: 3;
}

@media only screen and (max-width: 1200px) {
  .footer__list {
    -moz-columns: 2;
    columns: 2;
  }
}

@media only screen and (max-width: 991px) {
  .footer__list {
    display: none;
  }
}

.footer__list li {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
}

.footer__list li a:hover {
  color: #009fe3;
}

.footer__list li ul {
  margin-top: 10px;
}

@media only screen and (max-width: 1200px) {
  .footer__list li ul {
    display: none;
  }
}

.footer__list li ul li {
  font-weight: 400;
  margin-bottom: 10px;
}

.footer__list li ul li a:hover {
  color: #009fe3;
}

.footer__bot {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #757575;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

@media only screen and (max-width: 991px) {
  .footer__bot {
    grid-template-columns: 1fr 1fr;
    display: grid;
    grid-gap: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .footer__copy {
    grid-column: span 2;
  }
}

.footer__polytical:hover {
  color: #009fe3;
}

.cookie {
  position: fixed;
  bottom: 30px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  background: #fff;
  z-index: 9999;
  max-width: 700px;
  display: none;
  border-radius: 10px;
}

.cookie__inner {
  display: flex;
  align-items: center;
  padding: 25px 45px;
  font-size: 16px;
}




.cookie__btn {
  max-width: 120px;
  margin-left: 36px;
}


@media only screen and (max-width: 767px) {

  .cookie {
    max-width: calc(100% - 40px);
  }

  .cookie__inner {
    padding: 25px;
    padding: 14px 23px;
  }

  .cookie__btn  {
    margin-left: 8px;
  }

  .cookie__text {
    font-size: 12px;
  }
}

.fancybox-slide {
  overflow: hidden;
}

.modal {
  display: none;
  border-radius: 10px;
  max-width: 1140px;
  width: 100%;
  overflow: initial;
}

@media only screen and (max-width: 991px) {
  .modal {
    padding: 64px 14px;
  }
}

.modal-share {
  max-width: 360px;
}

.modal-share__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.modal-share__text {
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
  text-align: center;
}

.modal-share__btn {
  max-width: 225px;
  margin: 0 auto;
}

.modal-share__btn.active {
  background: #575756;
  pointer-events: none;
}

.modal-brand .field-area {
  height: 184px;
}

.modal-brand .field-area textarea {
  height: 100%;
}

.modal-brand .feedback__inner--item {
  grid-gap: 15px;
}

@media only screen and (max-width: 991px) {
  .modal-brand .feedback__more {
    margin-top: 0;
    flex-direction: column-reverse;
  }
}

.modal-thanks {
  padding: 144px 0;
}

@media only screen and (max-width: 991px) {
  .modal-thanks {
    padding: 155px 14px;
  }
}

.modal-thanks .modal__title {
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.modal-thanks .modal__text {
  font-size: 20px;
  text-align: center;
}

.modal__close {
  cursor: pointer;
  display: flex;
  align-items: center;
  right: 20px;
  top: 20px;
  position: absolute;
}

.modal__title {
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .modal__title {
    font-size: 24px;
  }
}

.modal__text {
  font-size: 20px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .modal__text {
    font-size: 14px;
  }
}

.feedback__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px 30px;
  align-items: flex-start;
}

@media only screen and (max-width: 1200px) {
  .feedback__inner {
    grid-template-columns: 1fr;
  }
}

.feedback__inner--item {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}

@media only screen and (max-width: 991px) {
  .feedback__inner {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

.feedback__inner .field {
  margin-bottom: 0;
}

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

@media only screen and (max-width: 991px) {
  .feedback__more {
    flex-direction: column;
    gap: 22px;
    margin-top: 45px;
  }
}

.feedback__btn {
  border: 0;
  height: 50px;
  width: 225px;
  flex-shrink: 0;
}

@media only screen and (max-width: 991px) {
  .feedback__btn {
    width: 100%;
  }
}

.fancybox__container {
  cursor: default !important;
}

.fancybox__content {
  cursor: default !important;
}

.iti {
  width: 100%;
  position: relative;
}

.iti input {
  width: 100%;
  padding: 7px;
  border-radius: 2px;
  background: #ededed;
  border-radius: 10px;
  max-width: 100%;
  height: 50px;
  border: 0;
  width: 100%;
  font-size: 16px;
}

.iti input::-moz-placeholder {
  color: #bbb;
}

.iti input::-ms-input-placeholder {
  color: #bbb;
}

.iti input::placeholder {
  color: #bbb;
}

.iti__arrow {
  order: -1;
}

.iti__flag {
  order: -1;
  background-image: url("../libs/inputTel/images/flags@2x.webp");
  width: 32px;
  height: 24px;
}

.iti__selected-flag {
  display: flex;
  align-items: center;
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  justify-content: flex-start;
  width: 89px;
  padding-left: 5px;
  height: 100%;
  cursor: pointer;
}

.phone-number {
  position: relative;
}

.iti--allow-dropdown .iti__country-list {
  position: absolute;
  width: 90%;
  top: 100%;
  z-index: 10000;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #cacaca;
  border-top: 0;
  border-top: 0;
  height: 300px;
  border-radius: 0 0 10px 10px;
  background: #ededed;
}

.iti--allow-dropdown .iti__country-list::-webkit-scrollbar {
  width: 4px;
  background: #cacaca;
}

.iti--allow-dropdown .iti__country-list::-webkit-scrollbar-thumb {
  background: #575756;
}

.iti--container {
  background: #ededed;
  left: 0;
  z-index: 100000;
  top: 50%;
  width: 90%;
  transform: translateY(-50%) translateX(-50%);
  left: 50%;
  position: fixed;
}

.iti__country:hover {
  background: #009fe3;
  color: #fff;
  cursor: pointer;
}

.iti__country:hover .iti__dial-code {
  color: #fff;
}

.iti__country-list {
  height: 90vh;
}

.iti .iti__selected-dial-code {
  margin-left: 2px;
  font-size: 16px;
}

.wrapper .iti__selected-dial-code {
  font-weight: 300;
  font-size: 16px;
}

.iti .iti__selected-dial-code {
  margin-left: 4px;
}

.fancybox-button {
  display: none;
}

.about-show {
  background: url("../images/about-bg-show.png") 50% 50% no-repeat;
  background-size: cover;
}

.about-show.margin {
  margin-top: -74px;
}

@media only screen and (max-width: 1200px) {
  .about-show.margin {
    margin-top: -64px;
  }
}

@media only screen and (max-width: 767px) {
  .about-show.margin {
    margin-top: 0;
  }
}

.about-show__inner {
  display: flex;
  padding-top: 168px;
  height: 879px;
}

@media only screen and (max-width: 1200px) {
  .about-show__inner {
    height: 756px;
  }
}

@media only screen and (max-width: 991px) {
  .about-show__inner {
    height: 777px;
    padding-top: 67px;
  }
}

.about-show__title {
  font-size: 58px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
}

@media only screen and (max-width: 1200px) {
  .about-show__title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 991px) {
  .about-show__title {
    font-size: 30px;
  }
}

.about-show__title span {
  font-weight: 400;
}

.about-climat {
  background: radial-gradient(122.94% 87.59% at 32.97% 14.08%, #6bbcdf 0%, #046f9d 100%);
  margin-bottom: 159px;
  overflow: hidden;
}

@media only screen and (max-width: 1200px) {
  .about-climat {
    margin-bottom: 80px;
  }
}

.about-climat__inner {
  padding-top: 72px;
  padding-bottom: 40px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

@media only screen and (max-width: 1200px) {
  .about-climat__inner {
    display: flex;
    flex-direction: column-reverse;
    padding-top: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .about-climat__inner {
    padding-top: 60px;
  }
}

.about-climat__img {
  display: flex;
  align-items: center;
  min-width: 458px;
  justify-content: center;
  flex-shrink: 0;
}

.about-climat__text {
  font-size: 20px;
  line-height: 150%;
}

@media only screen and (max-width: 1200px) {
  .about-climat__text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .about-climat__text {
    font-size: 16px;
  }
}

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

.about-brand__text {
  font-size: 20px;
}

@media only screen and (max-width: 1200px) {
  .about-brand__text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .about-brand__text {
    font-size: 16px;
  }
}

.about-brand__info {
  width: 100%;
  margin-top: 80px;
}

.about-brand__top {
  display: flex;
  align-items: center;
  grid-gap: 130px;
  padding-bottom: 31px;
  margin-bottom: 30px;
  border-bottom: 1px solid #757575;
}

@media only screen and (max-width: 991px) {
  .about-brand__top {
    grid-gap: 60px;
  }
}

.about-brand__top--item {
  display: flex;
  align-items: center;
  position: relative;
  height: 50px;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  .about-brand__top--item {
    height: 40px;
  }
}

.about-brand__top--item.active::before {
  opacity: 1;
  visibility: visible;
}

.about-brand__top--item:before {
  content: "";
  display: block;
  position: absolute;
  width: 124px;
  height: 8px;
  background: #ca1313;
  bottom: -39px;
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 991px) {
  .about-brand__top--item:before {
    width: 66px;
    height: 4px;
    bottom: -36px;
  }
}

.about-brand__content {
  display: none;
}

.about-brand__content.active {
  display: block;
}

.about-brand__desc {
  font-size: 20px;
  margin-bottom: 34px;
}

@media only screen and (max-width: 1200px) {
  .about-brand__desc {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .about-brand__desc {
    font-size: 16px;
  }
}

.about-brand__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

@media only screen and (max-width: 1200px) {
  .about-brand__items {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .about-brand__items {
    grid-template-columns: 1fr;
    grid-gap: 14px;
  }
}

.about-brand__item {
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 16px;
  height: 88px;
  position: relative;
}

.about-brand__aside {
  display: flex;
  align-items: center;
  max-width: 80%;
}

.about-brand__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 15px;
}

.about-brand__name {
  font-size: 16px;
}

@media only screen and (max-width: 1200px) {
  .about-brand__name {
    font-size: 14px;
  }
}

.about-brand__save {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: absolute;
  bottom: 11px;
  right: 11px;
}

.about-brand__save:hover svg {
  stroke: #009fe3;
}

.about-brand__save svg {
  width: 26px;
  height: 26px;
  stroke: #757575;
}

.about-brand__btn {
  height: 88px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  padding: 0 30px;
}

.about-brand__btn svg {
  fill: none;
  stroke-width: 2px;
  stroke: #fff;
  width: 34px;
  height: 24px;
}

.breadcrumbs {
  position: relative;
  z-index: 11;
  height: 24px;
}

@media only screen and (max-width: 767px) {
  .breadcrumbs {
    display: none;
  }
}

.breadcrumbs.gray .breadcrumbs__inner>span {
  color: #797979;
}

.breadcrumbs.gray .breadcrumbs__inner li {
  color: #363636;
}

.breadcrumbs.gray .breadcrumbs__inner li a {
  color: #797979;
}

.breadcrumbs.gray .breadcrumbs__inner li span {
  color: #797979;
}

.breadcrumbs.new-gray .breadcrumbs__inner>span {
  color: #575756;
}

.breadcrumbs.new-gray .breadcrumbs__inner li a {
  color: #575756;
}

.breadcrumbs.new-gray .breadcrumbs__inner li span {
  color: #575756;
}

.breadcrumbs__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  overflow: auto;
}

.breadcrumbs__inner>span {
  color: #fff;
}

@media only screen and (max-width: 1200px) {
  .breadcrumbs__inner {
    margin-top: 40px;
  }
}

.breadcrumbs__inner li {
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
}

.facility {
  position: relative;
  margin-bottom: 100px;
  height: 600px;
}

@media only screen and (max-width: 991px) {
  .facility .container {
    height: 100%;
  }
}

.facility-img {
  height: 600px;
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
}

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

@media only screen and (max-width: 1200px) {
  .facility {
    margin-bottom: 40px;
  }
}

.facility-margin {
  margin-top: -74px;
}

@media only screen and (max-width: 1200px) {
  .facility-margin {
    margin-top: -64px;
  }
}

@media only screen and (max-width: 767px) {
  .facility-margin {
    margin-top: 0;
  }
}

.facility-partner {
  background-image: url("../images/bg-facil.png");
  margin-top: -74px;
  padding-top: 116px;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 991px) {
  .facility-partner {
    background-position: 50% 50%;
  }
}

.facility-partner .facility__inner {
  padding-top: 0;
}

.facility-partner .facility__img {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

@media only screen and (max-width: 991px) {
  .facility-partner .facility__title {
    font-size: 28px;
  }
}

.facility-partner .facility__text {
  margin-top: 60px;
  font-size: 20px;
}

@media only screen and (max-width: 1200px) {
  .facility-partner .facility__text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .facility-partner .facility__text {
    font-size: 16px;
    margin-top: 34px;
  }
}

.facility__inner {
  color: #fff;
  padding-top: 180px;
  position: relative;
  z-index: 10;
}

@media only screen and (max-width: 991px) {
  .facility__inner {
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
  }
}

.info {
  margin: 100px 0 150px;
}

@media only screen and (max-width: 1200px) {
  .info {
    margin: 80px 0;
  }
}

@media only screen and (max-width: 991px) {
  .info {
    margin-top: 40px;
  }
}

.info__img {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.info__text {
  font-size: 20px;
  color: #757575;
}

@media only screen and (max-width: 1200px) {
  .info__text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .info__text {
    font-size: 16px;
  }
}

.info__foot {
  width: 100%;
  padding-bottom: 30px;
  border-bottom: 1px solid #757575;
  margin-top: 40px;
}

.info__foot .realize__more {
  justify-content: flex-end;
}

@media only screen and (max-width: 991px) {
  .info__foot {
    display: none;
  }
}

.info__btn {
  display: none;
}

@media only screen and (max-width: 991px) {
  .info__btn {
    display: flex;
    height: 60px;
    margin-top: 34px;
  }
}

.info__items {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

@media only screen and (max-width: 1200px) {
  .info__items {
    margin-top: 40px;
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .info__items {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
}

.info__item {
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
  border-radius: 10px;
  padding: 19px;
}

.info__item .about-brand__save {
  position: relative;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.info__item .about-brand__save span {
  font-size: 12px;
  color: #009fe3;
  margin-right: 10px;
}

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

.info__desc {
  font-weight: 700;
  font-size: 16px;
  height: 40px;
  color: #757575;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .info__desc {
    height: auto;
    margin-bottom: 30px;
  }
}

.search-select-data.active .search-select__item {
  border: 2px solid #575756;
}

.search-select-data .search-select__item {
  border: 2px solid transparent;
  background: #ededed;
  height: auto;
}

.search-select-data .search-select__item.field--error {
  border: 1px solid #e30613;
}

.search-select-data .dropdown-block {
  background: #ededed;
}

.search-select-data .select-dropdown__block {
  border: 0;
  top: 105%;
}

.search-select__price {
  display: flex;
  align-items: center;
  height: 44px;
  grid-gap: 10px;
  border: 1px solid #575756;
  padding: 9px 16px;
  border-radius: 10px;
}

@media only screen and (max-width: 1200px) {
  .search-select__price {
    grid-column: span 2;
  }
}

@media only screen and (max-width: 991px) {
  .search-select__price {
    grid-column: span 1;
  }
}

.search-select__price span {
  margin-right: 15px;
  font-size: 15px;
  display: block;
}

@media only screen and (max-width: 991px) {
  .search-select__price span {
    font-size: 14px;
    margin-right: 4px;
  }
}

.search-select__price input {
  border: 1px solid #e9e9e9;
  padding-left: 10px !important;
  background: none;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  padding: 0 10px !important;
  height: 25px;
  width: 100%;
}

.search-select__item {
  border-radius: 8px;
  border: 1px solid #575756;
  background: white;
  padding: 10px 0;
  flex: 1;
  position: relative;
  font-size: 15px;
  height: 44px;
}

.search-select__item--open {
  position: relative;
  z-index: 5;
}

.search-select__item--open .select-dropdown__block {
  display: block;
}

.search-select__info {
  display: flex;
  -moz-column-gap: 5px;
  column-gap: 5px;
  align-items: center;
  padding-bottom: 5px;
  white-space: nowrap;
}

.search-select__info-text {
  font-size: 12px;
  opacity: 0.4;
}

.search-select__name {
  font-size: 15px;
}

.search-select__close {
  display: none;
  transform: rotate(0) !important;
}

.select-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.select-dropdown img {
  transition: 400ms;
  width: 24px;
  height: 24px;
}

.select-dropdown.active img {
  transform: rotate(180deg);
}

.select-dropdown__item {
  border: none;
  outline: none;
  width: 100%;
  padding-right: 10px;
  cursor: pointer;
  background: none;
  padding: 0 !important;
  height: auto;
  font-size: 15px;
  color: #757575;
}

.select-dropdown__item::-webkit-input-placeholder {
  color: #757575;
}

.select-dropdown__item:-moz-placeholder {
  color: #757575;
}

.select-dropdown__item::-moz-placeholder {
  color: #757575;
}

.select-dropdown__item:-ms-input-placeholder {
  color: #757575;
}

.select-dropdown__icon {
  position: absolute;
  top: 5px;
  right: 0;
}

.select-dropdown__block {
  display: none;
  position: absolute;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #575756;
  top: 100%;
  background: #fff;
  margin-top: 0;
  border-radius: 0 0 5px 5px;
  padding-top: 0;
  z-index: 1000;
}

.select-dropdown__block.active {
  display: block;
}

.dropdown-block__item {
  height: 42px;
  padding: 0 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  transition: 300ms;
  cursor: pointer;
}

.dropdown-block__item:hover {
  background: #009fe3;
  color: #fff;
}

.dropdown-block .checkbox {
  margin: 16px;
}

.dropdown-block .checkbox__inner span {
  border: none;
}

.dropdown-block .checkbox__inner span::before {
  width: 18px;
  height: 18px;
}

.objects {
  margin-top: 57px;
  margin-bottom: 150px;
}

@media only screen and (max-width: 1200px) {
  .objects {
    margin-bottom: 80px;
    margin-top: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .objects {
    margin-top: 60px;
  }
}

.objects__title {
  margin-bottom: 30px;
}

@media only screen and (max-width: 1200px) {
  .objects__title {
    font-size: 42px;
  }
}

@media only screen and (max-width: 991px) {
  .objects__title {
    margin-bottom: 0;
    font-size: 28px;
  }
}

.objects__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

@media only screen and (max-width: 991px) {
  .objects__items {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .objects__items .realize__item {
    width: 100%;
  }
}

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

@media only screen and (max-width: 991px) {
  .objects__top {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .objects form {
    position: absolute;
    background: #fff;
    z-index: 10;
    padding: 20px;
    width: 100%;
    left: 0;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
    margin-top: 0;
    top: 210px;
    display: none;
  }

  .objects form.active {
    display: block;
  }
}

.filter {
  margin-bottom: 98px;
}

@media only screen and (max-width: 1200px) {
  .filter {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .filter {
    margin-bottom: 0px;
  }
}

.filter-mobile {
  align-items: center;
  display: none;
}

@media only screen and (max-width: 991px) {
  .filter-mobile {
    display: flex;
  }
}

.filter-mobile span {
  font-size: 16px;
  margin-right: 10px;
}

.filter-mobile svg {
  width: 24px;
  height: 24px;
  stroke: #757575;
  stroke-width: 2px;
  fill: none;
}

.filter__top {
  display: grid;
  grid-template-columns: 1fr 206px;
  grid-gap: 43px;
}

@media only screen and (max-width: 1200px) {
  .filter__top {
    grid-template-columns: 1fr;
  }
}

.filter .search-select {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  grid-gap: 8px;
}

@media only screen and (max-width: 1200px) {
  .filter .search-select {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .filter .search-select {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 1200px) {
  .filter__buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.filter__btn {
  border: 0;
  width: 100%;
  height: 44px;
  margin-bottom: 14px;
}

@media only screen and (max-width: 1200px) {
  .filter__btn {
    margin-bottom: 0;
    margin-right: 10px;
    max-width: 211px;
  }
}

@media only screen and (max-width: 991px) {
  .filter__btn {
    font-size: 14px;
  }
}

.filter__remove {
  display: flex;
  align-items: center;
  height: 44px;
  width: 100%;
  background: #d9d9d9;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
}

.filter__remove input {
  font-size: 15px;
  background: 0;
  border: 0;
  width: auto;
  color: rgb(117, 117, 117);
  font-weight: 400;
}

@media only screen and (max-width: 1200px) {
  .filter__remove {
    max-width: 211px;
  }
}

@media only screen and (max-width: 991px) {
  .filter__remove {
    font-size: 14px;
  }
}

.filter__remove input {
  line-height: 1;
  display: block;
  margin-right: 10px;
}

.object__content {
  display: flex;
  align-items: center;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  align-items: center;
  border-radius: 10px;
  justify-content: space-between;
  overflow: hidden;
  margin-top: 60px;
}

@media only screen and (max-width: 991px) {
  .object__content {
    margin-top: 40px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

.object__container {
  max-width: 555px;
  margin: 0;
}

@media only screen and (max-width: 1200px) {
  .object__container {
    max-width: 329px;
  }
}

@media only screen and (max-width: 991px) {
  .object__container {
    max-width: 100%;
    margin-bottom: 40px;
  }
}

.object__info {
  padding-left: 65px;
}

@media only screen and (max-width: 1200px) {
  .object__info {
    padding-left: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .object__info {
    padding: 0 20px 40px;
  }
}

.object__name {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 25px;
  display: block;
}

@media only screen and (max-width: 991px) {
  .object__name {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.object__item {
  display: flex;
  align-items: center;
  height: 355px;
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .object__item {
    height: 317px;
  }
}

@media only screen and (max-width: 991px) {
  .object__item {
    height: 239px;
  }
}

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

.object__buttons {
  display: flex;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 60px;
  justify-content: flex-end;
  gap: 20px;
}

@media only screen and (max-width: 991px) {
  .object__buttons {
    margin-top: 30px;
    justify-content: center;
  }
}

.object__next,
.object__prev {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.object__next.swiper-button-disabled,
.object__prev.swiper-button-disabled {
  opacity: 0.6;
}

.object__next.swiper-button-disabled:hover,
.object__prev.swiper-button-disabled:hover {
  pointer-events: none;
  cursor: inherit;
}

.object__next.swiper-button-disabled:hover svg,
.object__prev.swiper-button-disabled:hover svg {
  stroke: #575756;
}

.object__next:hover svg,
.object__prev:hover svg {
  stroke: #009fe3;
}

.object__next svg,
.object__prev svg {
  width: 44px;
  height: 44px;
  stroke: #575756;
  fill: none;
  stroke-width: 2px;
}

.object__prev {
  transform: rotate(180deg);
}

.object__text {
  font-size: 20px;
  color: #757575;
}

@media only screen and (max-width: 1200px) {
  .object__text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .object__text {
    font-size: 14px;
  }
}

.support {
  margin-top: 40px;
  margin-bottom: 150px;
}

@media only screen and (max-width: 991px) {
  .support {
    margin-top: 60px;
    margin-bottom: 80px;
  }
}

.support__title {
  margin-bottom: 60px;
}

@media only screen and (max-width: 1200px) {
  .support__title {
    margin-bottom: 40px;
    font-size: 42px;
  }
}

@media only screen and (max-width: 991px) {
  .support__title {
    font-size: 28px;
  }
}

.support__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  margin-bottom: 32px;
}

@media only screen and (max-width: 991px) {
  .support__items {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

.support__item {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 255px;
  padding: 0 20px;
}

.support__name {
  height: 50px;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  margin-top: 25px;
}

@media only screen and (max-width: 1200px) {
  .support__name {
    font-size: 18px;
  }
}

.support-expert {
  background: url("../images/sup-exp.png");
  height: 310px;
  border-radius: 10px;
}

@media only screen and (max-width: 1200px) {
  .support-expert {
    height: 363px;
    background: url("../images/sup-exp-2.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media only screen and (max-width: 991px) {
  .support-expert {
    background: url("../images/sup-exp-3.png");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 700px;
  }
}

.support-expert__info {
  max-width: 666px;
  margin-left: auto;
  padding-right: 66px;
  padding-top: 40px;
}

@media only screen and (max-width: 1200px) {
  .support-expert__info {
    max-width: 374px;
    padding-top: 52px;
    padding-top: 31px;
  }
}

@media only screen and (max-width: 991px) {
  .support-expert__info {
    padding: 45px 20px 0;
    max-width: 100%;
  }
}

.support-expert__info span {
  font-weight: 700;
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1200px) {
  .support-expert__info span {
    font-size: 26px;
  }
}

@media only screen and (max-width: 991px) {
  .support-expert__info span {
    font-size: 22px;
    margin-bottom: 25px;
  }
}

.support-expert__info p {
  color: #757575;
  font-size: 20px;
  margin-bottom: 26px;
}

@media only screen and (max-width: 1200px) {
  .support-expert__info p {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .support-expert__info p {
    font-size: 16px;
  }
}

.support-expert__btn {
  max-width: 205px;
  margin-left: auto;
}

@media only screen and (max-width: 991px) {
  .support-expert__btn {
    max-width: 100%;
    height: 60px;
  }
}

.support-elite {
  margin-top: 32px;
  background: url("../images/sup-el-bg.png");
  height: 310px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media only screen and (max-width: 1200px) {
  .support-elite {
    height: 363px;
  }
}

@media only screen and (max-width: 991px) {
  .support-elite {
    height: 700px;
    justify-content: space-between;
  }
}

.support-elite-gray {
  background: #757575;
  justify-content: flex-end;
  padding-bottom: 40px;
}

@media only screen and (max-width: 991px) {
  .support-elite-gray {
    height: 400px;
    justify-content: flex-end;
  }

  .support-elite-gray .support-elite__btn {
    margin-bottom: 0;
    height: 44px;
    max-width: 296px;
  }
}

@media only screen and (max-width: 991px) {
  .support-elite-new {
    height: 400px;
  }

  .support-elite-new .support-elite__name {
    font-size: 22px;
  }

  .support-elite-new .support-elite__btn {
    margin-bottom: 40px;
    height: 44px;
    max-width: 296px;
  }
}

.support-elite__info {
  display: flex;
  align-items: center;
  margin-bottom: 31px;
  padding-left: 87px;
}

@media only screen and (max-width: 1200px) {
  .support-elite__info {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 58px;
  }
}

@media only screen and (max-width: 991px) {
  .support-elite__info {
    padding-left: 20px;
    padding-top: 44px;
  }
}

.support-elite__name {
  font-weight: 700;
  font-size: 30px;
  max-width: 500px;
  margin-left: 79px;
  color: #fff;
}

@media only screen and (max-width: 1200px) {
  .support-elite__name {
    max-width: 100%;
    margin-left: 0;
    margin-top: 30px;
    font-size: 26px;
    max-width: 523px;
  }
}

@media only screen and (max-width: 991px) {
  .support-elite__name {
    max-width: 90%;
  }
}

.support-elite__img {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .support-elite__img {
    height: 113px;
  }
}

.support-elite__btn {
  max-width: 205px;
  height: 44px;
  margin-left: auto;
  margin-right: 69px;
}

@media only screen and (max-width: 1200px) {
  .support-elite__btn {
    margin-right: 52px;
  }
}

@media only screen and (max-width: 991px) {
  .support-elite__btn {
    height: 60px;
    width: 92%;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 60px;
  }
}

.sup-market {
  margin-top: 50px;
}

@media only screen and (max-width: 1200px) {
  .sup-market {
    margin-top: 40px;
  }
}

.sup-market__title {
  margin-bottom: 30px;
}

@media only screen and (max-width: 1200px) {
  .sup-market__title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .sup-market__title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}

.sup-market__text {
  margin-bottom: 80px;
  color: #757575;
  font-size: 20px;
}

@media only screen and (max-width: 1200px) {
  .sup-market__text {
    margin-bottom: 65px;
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .sup-market__text {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.sup-market .about-brand__info {
  margin-top: 0;
}

.sup-brand {
  margin-top: 60px;
}

@media only screen and (max-width: 1200px) {
  .sup-brand__inner {
    position: relative;
    padding-bottom: 150px;
  }
}

@media only screen and (max-width: 991px) {
  .sup-brand__inner {
    padding-bottom: 100px;
  }
}

.sup-brand__title {
  font-size: 35px;
  margin-bottom: 42px;
}

@media only screen and (max-width: 1200px) {
  .sup-brand__title {
    margin-bottom: 40px;
    font-size: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .sup-brand__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.sup-brand__info {
  display: grid;
  grid-template-columns: 360px 1fr;
  grid-gap: 40px;
}

@media only screen and (max-width: 1200px) {
  .sup-brand__info {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .sup-brand__info {
    grid-gap: 0;
  }
}

.sup-brand__btn {
  height: 63px;
  text-align: center;
}

@media only screen and (max-width: 1200px) {
  .sup-brand__btn {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 360px;
  }
}

@media only screen and (max-width: 991px) {
  .sup-brand__btn {
    bottom: 0;
  }
}

.sup-brand__left--new {
  max-width: 360px;
  margin-left: 100px;
}

@media only screen and (max-width: 1200px) {
  .sup-brand__left--new {
    margin-left: 0;
    max-width: 100%;
  }

  .sup-brand__left--new .sup-brand__list {
    margin-bottom: 0;
  }
}

.sup-brand__image {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1200px) {
  .sup-brand__image {
    width: 100%;
    border-radius: 10px;
    height: 491px;
    overflow: hidden;
  }

  .sup-brand__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media only screen and (max-width: 991px) {
  .sup-brand__image {
    height: 264px;
  }
}

.sup-brand__left b {
  color: #757575;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1200px) {
  .sup-brand__left b {
    font-size: 26px;
  }
}

@media only screen and (max-width: 991px) {
  .sup-brand__left b {
    font-size: 22px;
  }
}

.sup-brand__list {
  margin-left: 30px;
  margin-bottom: 33px;
}

.sup-brand__list li {
  list-style-type: disc;
  font-size: 16px;
  color: #757575;
}

@media only screen and (max-width: 1200px) {
  .sup-brand__list li {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .sup-brand__list li {
    font-size: 16px;
  }
}

.sup-brand__img {
  position: relative;
  max-width: 799px;
  height: 560px;
}

@media only screen and (max-width: 1200px) {
  .sup-brand__img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    height: auto;
    max-width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .sup-brand__img {
    grid-template-columns: 1fr;
    max-width: 70%;
    margin: 0 auto;
    grid-gap: 20px;
  }
}

.sup-brand__img img {
  position: absolute;
}

@media only screen and (max-width: 1200px) {
  .sup-brand__img img {
    position: relative;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
  }
}

.sup-brand__img img.first {
  z-index: -1;
  bottom: 0;
  left: 0;
}

.sup-brand__img img.second {
  z-index: -2;
  top: 0;
  right: -10%;
}

.sup-content {
  margin-top: 150px;
}

.sup-content-new {
  margin-top: 80px;
}

@media only screen and (max-width: 1200px) {
  .sup-content {
    margin-top: 80px;
  }
}

.sup-content__title {
  font-size: 35px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1200px) {
  .sup-content__title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .sup-content__title {
    font-size: 24px;
  }
}

.sup-content__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

@media only screen and (max-width: 1200px) {
  .sup-content__items {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .sup-content__items {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

.sup-content__item {
  background: #e9f4f8;
  border-radius: 10px;
  padding: 20px;
  position: relative;
}

.sup-content__play {
  position: absolute;
  display: flex;
  align-items: center;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.sup-content__img {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.sup-content__name {
  font-weight: 700;
  font-size: 16px;
  color: #757575;
  height: 50px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1200px) {
  .sup-content__name {
    margin-bottom: 17px;
  }
}

.sup-content__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 60px;
}

.sup-content__eyes,
.sup-content__save,
.sup-content__circle {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 400ms;
}

.sup-content__eyes:hover svg,
.sup-content__save:hover svg,
.sup-content__circle:hover svg {
  stroke: #009fe3;
}

.sup-content__eyes svg,
.sup-content__save svg,
.sup-content__circle svg {
  fill: none;
  width: 26px;
  height: 26px;
  stroke: #757575;
  stroke-width: 1.5px;
}

.sup-feedback {
  background: url("../images/feedback-bg.png") 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 150px;
}

.sup-feedback-service {
  margin-top: 0;
  background: url("../images/bg-feedback-service.png") 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.sup-feedback-service .zakaz__file-doc .file-item {
  display: flex;
  align-items: center;
  height: 50px;
  justify-content: space-between;
  background: #f2f2f2;
  border-radius: 10px;
  margin-top: 10px;
  padding: 0 20px;
  font-size: 16px;
  color: #757575;
}

.sup-feedback-service .zakaz__file-doc .file-item svg {
  cursor: pointer;
}

.sup-feedback-service .feedback__inner {
  margin-bottom: 40px;
  align-items: flex-start;
}

@media only screen and (max-width: 1200px) {
  .sup-feedback-service .feedback__inner {
    grid-gap: 15px;
  }
}

.sup-feedback-service .feedback__inner--item {
  grid-gap: 15px;
}

.sup-feedback-service .feedback__more {
  max-width: 488px;
  margin-left: auto;
}

@media only screen and (max-width: 1200px) {
  .sup-feedback-service .feedback__more {
    max-width: 100%;
  }
}

.sup-feedback-service .field-area {
  height: 184px;
}

.sup-feedback-service .field-area textarea {
  height: 100%;
}

@media only screen and (max-width: 1200px) {
  .sup-feedback {
    margin-top: 80px;
  }
}

.sup-feedback__inner {
  padding: 100px 0;
}

@media only screen and (max-width: 1200px) {
  .sup-feedback__inner {
    padding: 60px 0;
  }
}

@media only screen and (max-width: 991px) {
  .sup-feedback__inner {
    padding: 40px 0;
  }
}

.sup-feedback__container {
  padding: 60px 68px;
  background: #fff;
  border-radius: 20px;
}

@media only screen and (max-width: 1200px) {
  .sup-feedback__container {
    padding: 40px 50px;
  }
}

@media only screen and (max-width: 991px) {
  .sup-feedback__container {
    padding: 40px 15px;
  }
}

@media only screen and (max-width: 991px) {
  .sup-feedback__container .feedback__more {
    margin-top: 0;
  }
}

.sup-service {
  margin-bottom: 150px;
}

@media only screen and (max-width: 1200px) {
  .sup-service {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .sup-service {
    margin-bottom: 60px;
  }
}

.sup-service__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

@media only screen and (max-width: 1200px) {
  .sup-service__items {
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .sup-service__items {
    grid-gap: 30px;
  }
}

@media only screen and (max-width: 1200px) {
  .sup-service__item {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-gap: 0 32px;
    align-items: center;
  }
}

@media only screen and (max-width: 991px) {
  .sup-service__item {
    grid-template-columns: 77px 1fr;
    grid-gap: 0 21px;
  }
}

.sup-service__img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  height: 100px;
}

@media only screen and (max-width: 1200px) {
  .sup-service__img {
    grid-row: span 2;
    margin-bottom: 0;
  }
}

.sup-service__name {
  height: 60px;
  font-weight: 700;
  font-size: 30px;
  color: #757575;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1200px) {
  .sup-service__name {
    height: auto;
    display: block;
    text-align: left;
  }
}

@media only screen and (max-width: 991px) {
  .sup-service__name {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

.sup-service__text {
  color: #757575;
  font-size: 20px;
  text-align: center;
}

@media only screen and (max-width: 1200px) {
  .sup-service__text {
    font-size: 18px;
    text-align: left;
  }
}

@media only screen and (max-width: 991px) {
  .sup-service__text {
    font-size: 16px;
  }
}

.sup-center {
  background: url("../images/bg-news.png");
  background-size: cover;

}

.sup-center__inner {
  padding: 70px 0;
  display: grid;
  grid-template-columns: 458px 1fr;
  grid-gap: 40px;
  align-items: center;
}

@media only screen and (max-width: 1200px) {
  .sup-center__inner {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .sup-center__inner {
    padding: 60px 0 50px;
  }
}

.sup-center__title {
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
}

@media only screen and (max-width: 1200px) {
  .sup-center__title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .sup-center__title {
    font-size: 24px;
  }
}

.sup-center__list--item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

@media only screen and (max-width: 991px) {
  .sup-center__list--item {
    margin-bottom: 20px;
  }
}

.sup-center__list--item:last-child {
  margin-bottom: 0;
}

.sup-center__list--item>span {
  color: #e30613;
  font-weight: 700;
  display: block;
  text-align: right;
  font-size: 30px;
  width: 50px;
  flex-shrink: 0;
  margin-right: 30px;
}

@media only screen and (max-width: 991px) {
  .sup-center__list--item>span {
    font-size: 26px;
  }
}

.sup-center__list--info {
  font-size: 20px;
}

@media only screen and (max-width: 1200px) {
  .sup-center__list--info {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .sup-center__list--info {
    font-size: 16px;
  }
}

.sup-center__list--info b {
  margin-bottom: 15px;
  display: block;
}

.service {
  margin-top: 150px;
  margin-bottom: 150px;
}

@media only screen and (max-width: 1200px) {
  .service {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .service {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.service__title {
  font-size: 35px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1200px) {
  .service__title {
    margin-bottom: 50px;
    font-size: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .service__title {
    margin-bottom: 30px;
  }
}

.service__top {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media only screen and (max-width: 991px) {
  .service__top {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}

.service__top .search-select__item {
  max-width: 300px;
}

@media only screen and (max-width: 991px) {
  .service__top .search-select__item {
    max-width: 100%;
    width: 100%;
  }
}

.service__maps {
  margin-top: 80px;
  display: flex;
  align-items: center;
  margin-bottom: 150px;
  height: 500px;
}

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

@media only screen and (max-width: 1200px) {
  .service__maps {
    margin-top: 60px;
    height: 592px;
    margin-bottom: 70px;
  }

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

@media only screen and (max-width: 991px) {
  .service__maps {
    height: 523px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.service__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

@media only screen and (max-width: 1200px) {
  .service__items {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .service__items {
    grid-template-columns: 1fr;
  }
}

.service__item {
  border-radius: 10px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
  padding: 60px 30px 30px;
}

.service__name {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.service__map {
  font-size: 14px;
  color: #757575;
  margin-bottom: 20px;
}

.service__grid {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 30px;
}

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

.service__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 10px;
}

.service__text {
  font-size: 14px;
  color: #757575;
}

.service__btn {
  max-width: 205px;
  height: 50px;
  margin: 0 auto;
  margin-top: 50px;
}

@media only screen and (max-width: 991px) {
  .service__btn {
    margin-top: 30px;
    max-width: 100%;
  }
}

.technical {
  margin-top: 50px;
  margin-bottom: 150px;
}

@media only screen and (max-width: 1200px) {
  .technical {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .technical {
    margin-bottom: 60px;
  }
}

.technical__title {
  margin-bottom: 50px;
}

@media only screen and (max-width: 1200px) {
  .technical__title {
    margin-bottom: 40px;
    font-size: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .technical__title {
    font-size: 28px;
    margin-bottom: 34px;
  }
}

.technical__text {
  font-size: 20px;
  color: #757575;
  margin-bottom: 80px;
}

@media only screen and (max-width: 1200px) {
  .technical__text {
    margin-bottom: 40px;
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .technical__text {
    font-size: 16px;
  }
}

.technical__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  margin-bottom: 100px;
}

@media only screen and (max-width: 1200px) {
  .technical__items {
    grid-gap: 14px;
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .technical__items {
    grid-template-columns: 1fr;
  }
}

.technical__item {
  background: #f2f2f2;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px 60px 45px;
}

@media only screen and (max-width: 1200px) {
  .technical__item {
    padding: 30px 16px;
  }
}

.technical__number {
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  font-size: 20px;
}

@media only screen and (max-width: 1200px) {
  .technical__number {
    font-size: 14px;
  }
}

@media only screen and (max-width: 991px) {
  .technical__number {
    font-size: 16px;
  }
}

.technical__desc {
  text-align: center;
  margin-bottom: 40px;
  font-size: 22px;
}

@media only screen and (max-width: 1200px) {
  .technical__desc {
    font-size: 14px;
  }
}

@media only screen and (max-width: 991px) {
  .technical__desc {
    font-size: 16px;
  }
}

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

@media only screen and (max-width: 1200px) {
  .technical__img {
    max-width: 136px;
  }
}

.technical__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-gap: 30px;
  align-items: center;
  margin-bottom: 60px;
}

@media only screen and (max-width: 991px) {
  .technical__grid {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
}

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

.technical__grid.reverse {
  grid-template-columns: 1fr 1.1fr;
}

@media only screen and (max-width: 991px) {
  .technical__grid.reverse {
    grid-template-columns: 1fr;
  }
}

.technical__grid.reverse .technical__image {
  order: 1;
}

.technical__grid.reverse .technical__subtitle {
  text-align: right;
}

@media only screen and (max-width: 991px) {
  .technical__grid.reverse .technical__subtitle {
    text-align: left;
  }
}

.technical__image {
  display: flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .technical__image {
    height: 235px;
  }

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

@media only screen and (max-width: 991px) {
  .technical__image {
    order: 1;
    height: 204px;
  }
}

.technical__subtitle {
  font-size: 30px;
  font-weight: 700;
}

@media only screen and (max-width: 1200px) {
  .technical__subtitle {
    font-size: 26px;
  }
}

@media only screen and (max-width: 991px) {
  .technical__subtitle {
    font-size: 22px;
  }
}

.loyal-partner {
  margin-bottom: 150px;
}

@media only screen and (max-width: 1200px) {
  .loyal-partner {
    margin-bottom: 80px;
  }
}

.loyal-partner__desc {
  font-size: 20px;
  color: #757575;
  margin-bottom: 80px;
}

@media only screen and (max-width: 1200px) {
  .loyal-partner__desc {
    margin-bottom: 60px;
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .loyal-partner__desc {
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: 60px;
  }
}

.loyal-partner__grids {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  margin-bottom: 150px;
}

@media only screen and (max-width: 1200px) {
  .loyal-partner__grids {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    margin-bottom: 80px;
  }
}

.loyal-partner__grid {
  background: #ebf5f9;
  border-radius: 10px;
  padding: 40px;
}

@media only screen and (max-width: 991px) {
  .loyal-partner__grid {
    padding: 40px 30px;
  }
}

.loyal-partner__grid p {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}

.loyal-partner__grid span {
  color: #313131;
  display: block;
  font-size: 20px;
}

@media only screen and (max-width: 1200px) {
  .loyal-partner__grid span {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .loyal-partner__grid span {
    font-size: 16px;
  }
}

.loyal-partner__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 30px;
}

@media only screen and (max-width: 1200px) {
  .loyal-partner__items {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .loyal-partner__items {
    grid-template-columns: 1fr;
  }
}

.loyal-partner__item {
  grid-column: span 2;
  border-radius: 10px;
  background: #ebf5f9;
  border-radius: 10px;
  padding: 40px 30px;
}

@media only screen and (max-width: 1200px) {
  .loyal-partner__item {
    grid-column: span 1;
  }
}

.loyal-partner__item:nth-child(4),
.loyal-partner__item:nth-child(5) {
  grid-column: span 3;
}

@media only screen and (max-width: 1200px) {

  .loyal-partner__item:nth-child(4),
  .loyal-partner__item:nth-child(5) {
    grid-column: span 1;
  }
}

.loyal-partner__item.black {
  background: #575756;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1200px) {
  .loyal-partner__item.black {
    grid-column: span 2;
  }
}

@media only screen and (max-width: 991px) {
  .loyal-partner__item.black {
    grid-column: span 1;
  }
}

.loyal-partner__title {
  color: #fff;
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 700;
}

@media only screen and (max-width: 1200px) {
  .loyal-partner__title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .loyal-partner__title {
    font-size: 24px;
  }
}

.loyal-partner__step {
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .loyal-partner__step {
    font-size: 24px;
  }
}

.loyal-partner__subtitle {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #757575;
}

@media only screen and (max-width: 991px) {
  .loyal-partner__subtitle {
    margin-bottom: 10px;
  }
}

.loyal-partner__text {
  color: #757575;
}

@media only screen and (max-width: 991px) {
  .loyal-partner__text {
    font-size: 16px;
  }
}

.cond-sup {
  margin-bottom: 150px;
}

@media only screen and (max-width: 1200px) {
  .cond-sup {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .cond-sup {
    margin-bottom: 60px;
  }
}

.cond-sup__title {
  margin-bottom: 30px;
  font-size: 35px;
}

@media only screen and (max-width: 1200px) {
  .cond-sup__title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .cond-sup__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.cond-sup__text {
  font-size: 20px;
  color: #757575;
  margin-bottom: 60px;
}

@media only screen and (max-width: 1200px) {
  .cond-sup__text {
    margin-bottom: 40px;
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .cond-sup__text {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.cond-sup__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.cond-sup__item {
  height: 100%;
}

.cond-sup__subtitle {
  background: #009fe3;
  padding: 20px 37px;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  border-radius: 10px;
  height: 100%;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1200px) {
  .cond-sup__subtitle {
    font-size: 26px;
  }
}

@media only screen and (max-width: 991px) {
  .cond-sup__subtitle {
    font-size: 18px;
    padding: 20px 14px;
  }
}

.cond-sup__content {
  margin-top: 10px;
  background: url("../images/bg-radial.png") 50% 50% no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding: 32px 40px;
  font-size: 20px;
  color: #757575;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1200px) {
  .cond-sup__content {
    font-size: 18px;
    padding: 20px 40px;
  }
}

@media only screen and (max-width: 991px) {
  .cond-sup__content {
    font-size: 14px;
    padding: 20px 14px;
  }
}

.cond-sup__more {
  text-align: center;
  margin: 20px 0;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

@media only screen and (max-width: 1200px) {
  .cond-sup__more {
    font-size: 26px;
  }
}

@media only screen and (max-width: 991px) {
  .cond-sup__more {
    font-size: 22px;
  }
}

.cond-sup__list {
  margin-top: 30px;
  background: url("../images/bg-radial.png") 50% 50% no-repeat;
  background-size: cover;
  padding: 50px 40px;
  border-radius: 10px;
  padding-left: 70px;
}

@media only screen and (max-width: 991px) {
  .cond-sup__list {
    padding: 30px 14px;
    padding-left: 34px;
  }
}

.cond-sup__list li {
  list-style-type: disc;
  font-size: 20px;
  line-height: 150%;
  color: #757575;
}

@media only screen and (max-width: 1200px) {
  .cond-sup__list li {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .cond-sup__list li {
    font-size: 16px;
  }
}

.cond-sup__list li span {
  margin-left: 30px;
  display: block;
}

.camp__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

@media only screen and (max-width: 1200px) {
  .camp__items {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 218px;
  }
}

@media only screen and (max-width: 991px) {
  .camp__items {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
  }
}

.camp__item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

@media only screen and (max-width: 1200px) {
  .camp__item {
    grid-row: span 1;
  }
}

@media only screen and (max-width: 1200px) {
  .camp__item:first-child {
    order: -1;
  }
}

.camp__item.third {
  grid-row: span 2;
}

@media only screen and (max-width: 1200px) {
  .camp__item.third {
    grid-row: span 2;
    order: -1;
  }
}

@media only screen and (max-width: 991px) {
  .camp__item.third {
    grid-row: span 1;
  }
}

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

@media only screen and (max-width: 991px) {
  .camp__img {
    width: 100%;
  }

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

.camp__text {
  position: absolute;
  height: 68px;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(235, 245, 249, 0.95);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
}

.news-template__info {
  padding: 67px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
  border-radius: 10px;
}

@media only screen and (max-width: 1200px) {
  .news-template__info {
    padding: 50px 58px;
  }
}

@media only screen and (max-width: 991px) {
  .news-template__info {
    padding: 0;
    box-shadow: none;
  }
}

.news-template__container {
  margin-bottom: 30px;
}

.news-template__item {
  border-radius: 10px;
  overflow: hidden;
}

.news-template__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.news-template .object__buttons {
  margin: 0;
}

.news-template__next,
.news-template__prev {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.news-template__next.swiper-button-disabled,
.news-template__prev.swiper-button-disabled {
  opacity: 0.6;
}

.news-template__next.swiper-button-disabled:hover,
.news-template__prev.swiper-button-disabled:hover {
  pointer-events: none;
  cursor: inherit;
}

.news-template__next.swiper-button-disabled:hover svg,
.news-template__prev.swiper-button-disabled:hover svg {
  stroke: #575756;
}

.news-template__next:hover svg,
.news-template__prev:hover svg {
  stroke: #009fe3;
}

.news-template__next svg,
.news-template__prev svg {
  width: 44px;
  height: 44px;
  stroke: #575756;
  fill: none;
  stroke-width: 2px;
}

@media only screen and (max-width: 1200px) {

  .news-template__next svg,
  .news-template__prev svg {
    width: 36px;
    height: 36px;
  }
}

.news-template__prev {
  transform: rotate(180deg);
}

.news-template__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.news-template__date {
  font-size: 16px;
  color: #757575;
}

.news-template__text p {
  margin-bottom: 30px;
  color: #757575;
  font-size: 20px;
}

@media only screen and (max-width: 1200px) {
  .news-template__text p {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .news-template__text p {
    font-size: 16px;
  }
}

.school__items {
  margin-top: 80px;
}

@media only screen and (max-width: 991px) {
  .school__items {
    margin-top: 57px;
  }
}

.school__item {
  display: grid;
  grid-template-columns: 458px 1fr;
  background: #f2f2f2;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1200px) {
  .school__item {
    grid-template-columns: 270px 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .school__item {
    grid-template-columns: 1fr;
  }
}

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

.school__item.reverse {
  grid-template-columns: 1fr 458px;
}

@media only screen and (max-width: 1200px) {
  .school__item.reverse {
    grid-template-columns: 1fr 270px;
  }
}

@media only screen and (max-width: 991px) {
  .school__item.reverse {
    grid-template-columns: 1fr;
  }
}

.school__item.reverse .school__img {
  order: 1;
}

@media only screen and (max-width: 991px) {
  .school__item.reverse .school__img {
    order: -1;
  }
}

.school__info {
  padding: 50px 97px;
}

@media only screen and (max-width: 1200px) {
  .school__info {
    padding: 40px 30px;
  }
}

@media only screen and (max-width: 991px) {
  .school__info {
    padding: 30px 14px;
  }
}

.school__img {
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .school__img {
    height: 300px;
  }
}

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

.school__logo {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.school__title {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 30px;
  line-height: 100%;
}

@media only screen and (max-width: 1200px) {
  .school__title {
    font-size: 26px;
  }
}

@media only screen and (max-width: 991px) {
  .school__title {
    font-size: 22px;
  }
}

.school__text {
  font-size: 20px;
  color: #757575;
  min-height: 180px;
}

@media only screen and (max-width: 1200px) {
  .school__text {
    font-size: 18px;
    min-height: 144px;
  }
}

@media only screen and (max-width: 991px) {
  .school__text {
    font-size: 16px;
    min-height: auto;
  }
}

.contacts__info {
  display: grid;
  grid-template-columns: 635px 1fr;
  grid-gap: 97px;
  align-items: center;
}

@media only screen and (max-width: 1200px) {
  .contacts__info {
    grid-template-columns: 1fr;
    grid-gap: 61px;
  }
}

@media only screen and (max-width: 991px) {
  .contacts__info {
    grid-gap: 50px;
  }
}

.contacts__content {
  max-width: 390px;
}

@media only screen and (max-width: 1200px) {
  .contacts__content {
    max-width: 100%;
  }
}

.contacts__map {
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .contacts__map {
    height: 270px;
  }
}

.contacts__map iframe {
  height: 500px;
  border: 0;
}

@media only screen and (max-width: 991px) {
  .contacts__map iframe {
    height: 270px;
  }
}

.contacts .footer__aside {
  grid-gap: 50px;
}

@media only screen and (max-width: 1200px) {
  .contacts .footer__aside {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-gap: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .contacts .footer__aside {
    display: block;
  }
}

.contacts .header__number,
.contacts .header__mail {
  align-items: flex-start;
  font-size: 20px;
  font-weight: 500;
}

@media only screen and (max-width: 1200px) {

  .contacts .header__number,
  .contacts .header__mail {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {

  .contacts .header__number,
  .contacts .header__mail {
    margin-bottom: 35px;
  }
}

.contacts .header__number:last-child,
.contacts .header__mail:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1200px) {

  .contacts .header__number:first-child,
  .contacts .header__mail:first-child {
    grid-row: span 2;
  }
}

.contacts .header__number img,
.contacts .header__mail img {
  width: 26px;
  height: 30px;
  flex-shrink: 0;
}

@media only screen and (max-width: 991px) {

  .contacts .header__number img,
  .contacts .header__mail img {
    width: 20px;
    height: 24px;
  }
}

.contacts .footer__telega span {
  font-size: 20px;
  margin-bottom: 25px;
  color: #757575;
}

@media only screen and (max-width: 991px) {
  .contacts .footer__telega {
    position: relative;
  }
}

.error {
  background: url("../images/error.png") 50% 50% no-repeat;
  background-size: cover;
  height: 868px;
  position: relative;
}

@media only screen and (max-width: 1200px) {
  .error {
    background: url("../images/error-tablet.png") 50% 50% no-repeat;
    background-size: cover;
  }
}

@media only screen and (max-width: 991px) {
  .error {
    background: url("../images/error-mobile.png") 50% 50% no-repeat;
    background-size: cover;
  }
}

.error__inner {
  position: absolute;
  bottom: 137px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 748px;
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .error__inner {
    max-width: 622px;
  }
}

@media only screen and (max-width: 991px) {
  .error__inner {
    max-width: 95%;
    bottom: 20px;
  }
}

.error__text {
  font-size: 32px;
  margin-bottom: 70px;
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .error__text {
    font-size: 22px;
    margin-bottom: 50px;
  }
}

.error__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 55px;
}

@media only screen and (max-width: 991px) {
  .error__buttons {
    flex-direction: column;
    gap: 14px;
  }
}

.error__btn {
  height: 44px;
  max-width: 270px;
}

@media only screen and (max-width: 991px) {
  .error__btn {
    max-width: 100%;
    height: 60px;
  }
}

.sc-showcase {
  background: url("../images/ex-showcase.png") 50% 50% no-repeat;
  margin-top: -74px;
  height: 700px;
  margin-bottom: 150px;
  position: relative;
  overflow: hidden;
  background-size: cover;

}

.sc-showcase-brand {
  background: url("../images/ex-showcase-2.png") 100% 100% no-repeat;
  margin-top: -74px;
  background-size: cover;
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 991px) {
  .sc-showcase-brand {
    background: url("../images/ex-showcase-2.png") 74% 31px no-repeat;
  }
}

.sc-showcase-brand .sc-showcase__title {
  color: #fff;
}

.sc-showcase-brand .sc-showcase__info p {
  color: #fff;
}

.sc-showcase-new {
  background: url("../images/ex-showcase-1.png") 50% 50% no-repeat;
  background-size: cover;
}

.sc-showcase-new .sc-showcase__title {
  color: #fff;
}

.sc-showcase-new .sc-showcase__info p {
  color: #fff;
}

@media only screen and (max-width: 1800px) {
  .sc-showcase-new .sc-showcase__img {
    right: 2%;
  }
}

@media only screen and (max-width: 1200px) {
  .sc-showcase-new .sc-showcase__img {
    height: 383px;
    bottom: 0;
    right: -36%;
    left: auto;
    transform: translate(0);
  }
}

@media only screen and (max-width: 991px) {
  .sc-showcase-new .sc-showcase__img {
    height: 266px;
    right: -14%;
    bottom: 170px;
  }
}

.sc-showcase-new .sc-showcase__img img {
  display: block;
}

.sc-showcase-new .sc-showcase__img img.tablet {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .sc-showcase {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .sc-showcase {
    margin-bottom: 60px;
  }
}

.sc-showcase__inner {
  padding-top: 165px;
}

@media only screen and (max-width: 1200px) {
  .sc-showcase__inner {
    padding-top: 116px;
  }
}

.sc-showcase__info {
  max-width: 750px;
}

@media only screen and (max-width: 991px) {
  .sc-showcase__info {
    max-width: 100%;
  }
}

.sc-showcase__info p {
  font-size: 48px;
  color: #757575;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1200px) {
  .sc-showcase__info p {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .sc-showcase__info p {
    font-size: 24px;
  }
}

.sc-showcase__title {
  color: #757575;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1200px) {
  .sc-showcase__title {
    font-size: 42px;
    margin-bottom: 284px;
  }
}

@media only screen and (max-width: 991px) {
  .sc-showcase__title {
    font-size: 28px;
    margin-bottom: 210px;
    height: 175px;
  }
}

.sc-showcase__buttons {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  .sc-showcase__buttons {
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 10;
  }
}

.sc-showcase__btn {
  max-width: 225px;
  height: 50px;
  margin-right: 30px;
}

@media only screen and (max-width: 991px) {
  .sc-showcase__btn {
    margin-right: 0;
    max-width: 100%;
    height: 60px;
    margin-bottom: 10px;
  }
}

.sc-showcase__btn:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 991px) {
  .sc-showcase__btn:last-child {
    margin-bottom: 0;
  }
}

.sc-showcase__img {
  position: absolute;
  bottom: 35px;
  display: flex;
  align-items: center;
  right: 10%;
}

@media only screen and (max-width: 1200px) {
  .sc-showcase__img img {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .sc-showcase__img img {
    display: block;
  }
}

.sc-showcase__img img.tablet {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .sc-showcase__img img.tablet {
    display: block;
  }
}

@media only screen and (max-width: 991px) {
  .sc-showcase__img img.tablet {
    display: none;
  }
}

@media only screen and (max-width: 1800px) {
  .sc-showcase__img {
    right: -5%;
  }
}

@media only screen and (max-width: 1400px) {
  .sc-showcase__img {
    height: 400px;
  }
}

@media only screen and (max-width: 1200px) {
  .sc-showcase__img {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    width: 100%;
    justify-content: center;
    bottom: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .sc-showcase__img {
    bottom: 20%;
    height: 284px;
    width: 400px;
  }
}

.course {
  margin-bottom: 150px;
}

@media only screen and (max-width: 1200px) {
  .course {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .course {
    margin-bottom: 60px;
  }
}

.course__title {
  font-size: 35px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1200px) {
  .course__title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .course__title {
    font-size: 24px;
  }
}

.course__text {
  font-size: 20px;
  color: #757575;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1200px) {
  .course__text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .course__text {
    font-size: 16px;
  }
}

.course__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 30px;
}

@media only screen and (max-width: 1200px) {
  .course__items {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .course__items {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

.course__item {
  grid-column: span 2;
  background: #f7f7f7;
  border-radius: 20px;
  padding: 30px 40px;
}

@media only screen and (max-width: 1200px) {
  .course__item {
    grid-column: span 1;
    padding: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .course__item {
    padding: 30px 14px;
  }
}

.course__item p {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
}

@media only screen and (max-width: 1200px) {
  .course__item p {
    font-size: 26px;
  }
}

@media only screen and (max-width: 991px) {
  .course__item p {
    font-size: 22px;
  }
}

.course__item span {
  display: block;
  font-size: 20px;
  color: #757575;
}

@media only screen and (max-width: 1200px) {
  .course__item span {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .course__item span {
    font-size: 16px;
  }
}

.course__item.blue {
  background: #009fe3;
}

@media only screen and (max-width: 1200px) {
  .course__item.blue {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 991px) {
  .course__item.blue {
    grid-column: span 1;
    padding: 30px 14px;
  }
}

.course__item.blue .course__subtitle {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

@media only screen and (max-width: 991px) {
  .course__item.blue .course__subtitle {
    font-size: 24px;
    text-transform: uppercase;
  }
}

.course__item:nth-child(4),
.course__item:nth-child(5) {
  grid-column: span 3;
}

@media only screen and (max-width: 1200px) {

  .course__item:nth-child(4),
  .course__item:nth-child(5) {
    grid-column: span 1;
  }
}

.course__arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
}

@media only screen and (max-width: 1200px) {
  .course__arrow {
    margin-top: 0;
  }
}

.course-table {
  margin-bottom: 150px;
}

@media only screen and (max-width: 1200px) {
  .course-table {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .course-table {
    margin-bottom: 60px;
  }
}

.course-table__text {
  margin-bottom: 20px;
  font-size: 20px;
  color: #757575;
}

@media only screen and (max-width: 1200px) {
  .course-table__text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .course-table__text {
    font-size: 16px;
  }
}

.course-table__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid #b9b9b9;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  border-bottom: 0;
}

.course-table__top--item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 20px;
  border-right: 1px solid #b9b9b9;
}

@media only screen and (max-width: 1200px) {
  .course-table__top--item {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .course-table__top--item {
    font-size: 16px;
  }
}

.course-table__top--item:last-child {
  border-right: 0;
}

.course-table__items {
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.course-table__item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid #b9b9b9;
  border-bottom: 0;
}

.course-table__item:last-child {
  border-bottom: 1px solid #b9b9b9;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.course-table__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  font-size: 20px;
  border-right: 1px solid #b9b9b9;
}

@media only screen and (max-width: 1200px) {
  .course-table__item span {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .course-table__item span {
    font-size: 16px;
  }
}

.course-table__item span.gray {
  font-weight: 700;
}

.course-table__item span:last-child {
  border-right: 0;
}

.course-table__btn {
  max-width: 205px;
  margin: 0 auto;
  margin-top: 40px;
}

@media only screen and (max-width: 1200px) {
  .course-table__btn {
    margin-top: 32px;
  }
}

@media only screen and (max-width: 991px) {
  .course-table__btn {
    max-width: 100%;
    height: 60px;
    margin-top: 30px;
  }
}

.suitable {
  margin-bottom: 150px;
}

@media only screen and (max-width: 1200px) {
  .suitable {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .suitable {
    margin-bottom: 60px;
  }
}

.suitable__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  margin-top: 40px;
}

@media only screen and (max-width: 1200px) {
  .suitable__items {
    display: flex;
    align-items: flex-start;
    overflow: scroll;
    grid-gap: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .suitable__items {
    margin-right: -15px;
    padding-right: 15px;
  }
}

.suitable__item {
  border-radius: 10px;
  overflow: hidden;
  background: #f7f7f7;
}

@media only screen and (max-width: 1200px) {
  .suitable__item {
    min-height: 427px;
    width: 328px;
    flex-shrink: 0;
  }
}

@media only screen and (max-width: 991px) {
  .suitable__item {
    min-height: 359px;
  }
}

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

@media only screen and (max-width: 1200px) {
  .suitable__img {
    height: 153px;
    width: 100%;
  }

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

.suitable__info {
  padding: 30px;
}

.suitable__info p {
  font-weight: 700;
  font-size: 30px;
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 26px;
}

@media only screen and (max-width: 1200px) {
  .suitable__info p {
    font-size: 26px;
  }
}

@media only screen and (max-width: 991px) {
  .suitable__info p {
    font-size: 20px;
    height: auto;
  }
}

.suitable__info span {
  font-size: 20px;
  color: #7f7f7f;
  line-height: 150%;
  display: block;
}

@media only screen and (max-width: 1200px) {
  .suitable__info span {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .suitable__info span {
    font-size: 16px;
  }
}

.sc-work {
  background: url("../images/bg-radial.png") 50% 50% no-repeat;
  background-size: cover;
  margin-bottom: 150px;
}

.sc-work-brand .sc-work__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

@media only screen and (max-width: 991px) {
  .sc-work-brand .sc-work__btns {
    flex-direction: column;
  }
}

.sc-work-brand .sc-work__btns .sc-showcase__btn {
  max-width: 240px;
}

@media only screen and (max-width: 991px) {
  .sc-work-brand .sc-work__btns .sc-showcase__btn {
    max-width: 100%;
  }
}

.sc-work-brand .sc-work__item {
  margin-bottom: 50px;
}

@media only screen and (max-width: 991px) {
  .sc-work-brand .sc-work__item {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 1200px) {
  .sc-work {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .sc-work {
    margin-bottom: 60px;
  }
}

.sc-work__inner {
  padding: 80px 0;
}

@media only screen and (max-width: 991px) {
  .sc-work__inner {
    padding: 60px 0;
  }
}

.sc-work__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}

@media only screen and (max-width: 1200px) {
  .sc-work__items {
    grid-template-columns: 1fr;
  }
}

.sc-work__number {
  display: flex;
  color: #e30613;
  font-weight: 700;
  font-size: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #757575;
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .sc-work__number {
    font-size: 24px;
  }
}

.sc-work__text {
  font-size: 20px;
  line-height: 150%;
  color: #757575;
}

@media only screen and (max-width: 1200px) {
  .sc-work__text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .sc-work__text {
    font-size: 16px;
  }
}

.prog-course {
  margin-bottom: 150px;
}

@media only screen and (max-width: 1200px) {
  .prog-course {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .prog-course {
    margin-bottom: 60px;
  }
}

.prog-course__info {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

@media only screen and (max-width: 1200px) {
  .prog-course__info {
    display: block;
    margin-top: 30px;
  }
}

.prog-course__img {
  display: flex;
  align-items: center;
  width: 450px;
  flex-shrink: 0;
  margin-left: -100px;
  margin-right: 30px;
}

@media only screen and (max-width: 1200px) {
  .prog-course__img {
    display: none;
  }
}

.prog-course__items {
  margin-left: 30px;
}

@media only screen and (max-width: 991px) {
  .prog-course__items {
    margin-left: 20px;
  }
}

.prog-course__items li {
  border-radius: 10px;
  margin-bottom: 10px;
  list-style-type: decimal;
  font-size: 22px;
  font-weight: 500;
  color: #757575;
  position: relative;
  z-index: 1;
  padding: 10px;
}

@media only screen and (max-width: 991px) {
  .prog-course__items li {
    font-size: 14px;
  }
}

.prog-course__items li:before {
  content: "";
  display: block;
  position: absolute;
  background: #fafafa;
  z-index: -1;
  left: -40px;
  width: 110%;
  height: 100%;
  border-radius: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 991px) {
  .prog-course__items li:before {
    left: -27px;
    width: 107%;
  }
}

.prog-course__items li:last-child {
  margin-bottom: 0;
}

.work-course {
  margin-bottom: 150px;
}

@media only screen and (max-width: 1200px) {
  .work-course {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .work-course {
    margin-bottom: 60px;
  }
}

.work-course .course-table__text {
  max-width: 750px;
}

.work-course .course-table__text span {
  font-weight: 700;
  display: block;
}

.work-course__info {
  display: grid;
  grid-template-columns: 460px 1fr;
  grid-gap: 30px;
  margin-top: 50px;
}

@media only screen and (max-width: 1200px) {
  .work-course__info {
    grid-template-columns: 1fr;
    grid-gap: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .work-course__info {
    margin-top: 30px;
    grid-gap: 30px;
  }
}

.work-course__img {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1200px) {
  .work-course__img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
  }

  .work-course__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media only screen and (max-width: 991px) {
  .work-course__img {
    height: 162px;
  }
}

@media only screen and (max-width: 1200px) {
  .work-course__item {
    margin-bottom: 20px;
  }

  .work-course__item:last-child {
    margin-bottom: 0;
  }
}

.work-course__item p {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1200px) {
  .work-course__item p {
    font-size: 26px;
  }
}

@media only screen and (max-width: 991px) {
  .work-course__item p {
    font-size: 22px;
  }
}

.work-course__item span {
  font-size: 20px;
}

@media only screen and (max-width: 1200px) {
  .work-course__item span {
    font-size: 16px;
  }
}

.work-course__item ul,
.sup-brand__left ul {
  margin-left: 25px;
  margin-top: 10px;
}

.sup-brand__left ul {
  margin-bottom: 20px;
}

.work-course__item ul li,
.sup-brand__left ul li {
  list-style: disc;
  font-size: 20px;
  margin-bottom: 5px;
}

@media only screen and (max-width: 1200px) {

  .work-course__item ul li,
  .sup-brand__left ul li {
    font-size: 16px;
  }
}

.sc-reviews {
  background: url("../images/bg-radial.png") 50% 50% no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
}

.sc-reviews__inner {
  padding: 80px 0;
}

@media only screen and (max-width: 767px) {
  .sc-reviews__inner {
    padding: 60px 0;
  }
}

.sc-reviews__container {
  padding-top: 80px;
}

@media only screen and (max-width: 767px) {
  .sc-reviews__container {
    margin: 0 -15px;
    padding-top: 50px;
  }
}

.sc-reviews__items {
  margin-bottom: 90px;
}

@media only screen and (max-width: 767px) {
  .sc-reviews__items {
    margin-bottom: 40px;
  }
}

.sc-reviews__item {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.9);
}

@media only screen and (max-width: 1200px) {
  .sc-reviews__item {
    transform: scale(0.7);
  }
}

@media only screen and (max-width: 767px) {
  .sc-reviews__item {
    width: 370px;
    transform: scale(1);
    height: 370px;
  }

  .sc-reviews__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.sc-reviews__item.swiper-slide-active {
  transform: scale(1.4);
}

@media only screen and (max-width: 1200px) {
  .sc-reviews__item.swiper-slide-active {
    transform: scale(1);
  }
}

@media only screen and (max-width: 767px) {
  .sc-reviews .swiper-info {
    padding: 0 15px;
  }
}

.sc-reviews .swiper-info #swiper-name {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  display: block;
  margin-bottom: 14px;
}

@media only screen and (max-width: 1200px) {
  .sc-reviews .swiper-info #swiper-name {
    font-size: 26px;
  }
}

@media only screen and (max-width: 767px) {
  .sc-reviews .swiper-info #swiper-name {
    font-size: 22px;
  }
}

.sc-reviews .swiper-info #swiper-desc {
  text-align: center;
  display: block;
  margin: 0 auto;
  font-size: 20px;
  max-width: 700px;
  height: 270px;
}

@media only screen and (max-width: 1200px) {
  .sc-reviews .swiper-info #swiper-desc {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .sc-reviews .swiper-info #swiper-desc {
    font-size: 16px;
    height: auto;
  }
}

.sc-reviews__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

@media only screen and (max-width: 767px) {
  .sc-reviews__buttons {
    margin-top: 40px;
  }
}

.sc-reviews__next,
.sc-reviews__prev {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sc-reviews__next:hover svg,
.sc-reviews__prev:hover svg {
  stroke: #009fe3;
}

.sc-reviews__next svg,
.sc-reviews__prev svg {
  width: 44px;
  height: 44px;
  stroke: #575756;
  fill: none;
  stroke-width: 2px;
}

.sc-reviews__prev {
  transform: rotate(180deg);
}

.etap {
  margin: 150px 0;
  position: relative;
}

.etap:before {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  top: 244px;
  background: #575756;
}

@media only screen and (max-width: 1200px) {
  .etap:before {
    top: 167px;
  }
}

@media only screen and (max-width: 991px) {
  .etap:before {
    top: 179px;
  }
}

@media only screen and (max-width: 1200px) {
  .etap {
    margin: 80px 0;
  }
}

@media only screen and (max-width: 991px) {
  .etap {
    margin: 60px 0;
  }
}

.etap__inner {
  position: relative;
}

.etap__title {
  font-size: 35px;
  margin-bottom: 130px;
}

@media only screen and (max-width: 1200px) {
  .etap__title {
    font-size: 30px;
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .etap__title {
    font-size: 24px;
    min-height: 60px;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .etap__container {
    margin-right: -15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .etap__item {
    width: 327px;
  }
}

.etap__buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 1200px) {
  .etap__buttons {
    top: 105%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 767px) {
  .etap__buttons {
    display: none;
  }
}

.etap__next,
.etap__prev {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.etap__next:hover svg,
.etap__prev:hover svg {
  stroke: #009fe3;
}

.etap__next svg,
.etap__prev svg {
  width: 44px;
  height: 44px;
  stroke: #575756;
  fill: none;
  stroke-width: 2px;
}

.etap__prev {
  transform: rotate(180deg);
}

.etap__number {
  font-weight: 700;
  font-size: 35px;
  text-transform: uppercase;
  margin-bottom: 52px;
  position: relative;
}

.etap__number:before {
  content: "";
  display: block;
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #575756;
  left: 0;
  bottom: -32px;
}

.etap__name {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  height: 40px;
  margin-bottom: 16px;
}

.etap__list {
  margin-left: 20px;
}

.etap__list li {
  font-size: 18px;
  list-style: disc;
  color: #757575;
  line-height: 150%;
}

@media only screen and (max-width: 991px) {
  .etap__list li {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1200px) {
  .sertificat {
    margin-top: 120px;
  }
}

@media only screen and (max-width: 767px) {
  .sertificat {
    margin-top: 0;
  }
}

.sertificat__title {
  font-size: 35px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1200px) {
  .sertificat__title {
    font-size: 30px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .sertificat__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.sertificat__items {
  display: grid;
  grid-template-columns: 1fr 390px;
  grid-gap: 30px;
  align-items: center;
}

@media only screen and (max-width: 1200px) {
  .sertificat__items {
    grid-template-columns: 1fr 328px;
    grid-gap: 20px;
    align-items: flex-end;
  }
}

@media only screen and (max-width: 991px) {
  .sertificat__items {
    grid-template-columns: 1fr;
  }
}

.sertificat__info p {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1200px) {
  .sertificat__info p {
    font-size: 26px;
    white-space: nowrap;
  }
}

@media only screen and (max-width: 991px) {
  .sertificat__info p {
    white-space: normal;
    font-size: 22px;
  }
}

.sertificat__info span {
  font-size: 20px;
  color: #757575;
  margin-bottom: 20px;
  display: block;
}

@media only screen and (max-width: 1200px) {
  .sertificat__info span {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .sertificat__info span {
    font-size: 16px;
  }
}

.sertificat__info span:last-child {
  margin-bottom: 0;
}

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

@media only screen and (max-width: 991px) {
  .sertificat__img {
    width: 100%;
    height: 100%;
  }

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

.student {
  background: url("../images/bg-stud.png") 50% 50% no-repeat;
  background-size: cover;
  padding: 80px 0;
  margin-bottom: 150px;
}

@media only screen and (max-width: 1200px) {
  .student {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .student {
    padding: 60px 0;
    margin-bottom: 60px;
  }
}

.student__inner {
  background: #fff;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 80px 68px;
}

@media only screen and (max-width: 1200px) {
  .student__inner {
    padding: 80px 30px;
  }
}

@media only screen and (max-width: 991px) {
  .student__inner {
    padding: 60px 13px;
  }
}

.student__title {
  margin-bottom: 60px;
  font-size: 35px;
}

@media only screen and (max-width: 1200px) {
  .student__title {
    font-size: 30px;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .student__title {
    font-size: 24px;
    margin-bottom: 35px;
  }
}

.student__items {
  display: grid;
  grid-template-columns: 1fr 626px;
  grid-gap: 20px;
  grid-template-rows: 286px 286px;
}

@media only screen and (max-width: 1200px) {
  .student__items {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .student__items {
    grid-template-columns: 1fr;
  }
}

.student__item {
  position: relative;
}

.student__item.row {
  grid-row: span 2;
}

@media only screen and (max-width: 1200px) {
  .student__item.row {
    grid-row: span 1;
    grid-column: span 2;
    order: 1;
  }
}

@media only screen and (max-width: 991px) {
  .student__item.row {
    grid-column: span 1;
  }
}

.student__img {
  width: 100%;
  height: 100%;
}

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

.student__subtitle {
  background: #ededed;
  position: absolute;
  bottom: 0;
  height: 57px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 10px 10px;
  font-size: 20px;
  width: 100%;
  font-weight: 700;
}

@media only screen and (max-width: 1200px) {
  .student__subtitle {
    height: 48px;
  }
}

.brand-sc {
  margin-bottom: 150px;
}

@media only screen and (max-width: 1200px) {
  .brand-sc {
    margin-bottom: 80px;
    margin-top: 160px;
  }
}

@media only screen and (max-width: 991px) {
  .brand-sc {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .brand-sc {
    margin-top: 0;
  }
}

.brand-sc__title {
  font-size: 35px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1200px) {
  .brand-sc__title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .brand-sc__title {
    font-size: 24px;
  }
}

.brand-sc__items {
  display: grid;
  grid-template-columns: 1fr 164px;
  grid-gap: 128px;
  align-items: center;
}

@media only screen and (max-width: 1200px) {
  .brand-sc__items {
    grid-template-columns: 1fr 110px;
  }
}

@media only screen and (max-width: 991px) {
  .brand-sc__items {
    grid-template-columns: 1fr;
    grid-gap: 60px;
  }
}

.brand-sc__text {
  font-size: 20px;
  color: #757575;
  position: relative;
  line-height: 133%;
}

@media only screen and (max-width: 1200px) {
  .brand-sc__text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .brand-sc__text {
    font-size: 16px;
  }
}

.brand-sc__text:before {
  content: "";
  display: block;
  position: absolute;
  right: -74px;
  width: 2px;
  height: 90%;
  background: #757575;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 991px) {
  .brand-sc__text:before {
    right: 0;
    height: 2px;
    width: 100%;
    top: -32px;
    transform: translate(0);
  }
}

.brand-sc__img {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .brand-sc__img {
    order: -1;
    justify-content: center;
    width: 110px;
    height: 110px;
    margin: 0 auto;
  }
}

.search-select__item {
  cursor: pointer;
}

.radio {
  display: block;
  margin: 16px;
}

.radio__text {
  cursor: pointer;
}

.radio.disabled {
  opacity: 0.5;
  pointer-events: none;
  text-decoration: line-through;
}

#sup-video {
  overflow: initial;
  background: transparent;
  padding: 0;
  height: 90%;
}

@media only screen and (max-width: 991px) {
  #sup-video {
    height: auto;
  }
}

#sup-video video {
  width: 100%;
  height: 100%;
}

.sup-video__close {
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.facility__inner-new {
  max-width: 848px;
}

.facility__inner-new .facility__title {
  color: rgba(87, 87, 86, 1);
}

.facility__inner-new .facility__text {
  color: #757575;
}

@media only screen and (max-width: 991px) {
  .facility__inner-new {

    flex-direction: column;
  }


}

.service__maps {
  position: relative;
}

.service__maps > div {
  position: absolute;
  width: 100%;
  height: 100%;

}



.inputselect {
  border: 0;
  padding: 0 15px;
  padding-left: 20px;
  border-radius: 10px;
  width: 100%;
  background: #ededed;
  height: 50px;
  cursor: pointer;
  font-size: 18px;
  color: #8b8b8b;
}


.inputselect option {
  font-size: 18px;
  color: #8b8b8b;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  .modal__inner {
    height: calc(100vh - 125px);
    overflow: auto;
  }
}