@charset "UTF-8";

@import url(../assets/int-tel-input/css/intlTelInput.min.css);
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url("../assets/fonts/Montserrat-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat-Semi-Bold";
  src: url("../assets/fonts/Montserrat-SemiBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Roboto Slab";
  src: url("../assets/fonts/RobotoSlab-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Roboto Slab Medium";
  src: url("../assets/fonts/RobotoSlab-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Roboto Slab Bold";
  src: url("../assets/fonts/RobotoSlab-Bold.ttf");
  font-display: swap;
}
* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
ul,
ol,
hr,
pre,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;

  background-color: #ffffff;
  display: grid;
  grid-template-areas: "nav main";
  grid-template-columns: 282px calc(100% - 282px);
}
@media screen and (min-width: 1366px) {
  body {
    margin: 0 auto;
    max-width: 1366px;
  }
}
@media screen and (max-width: 1360px) {
  body {
    grid-template-columns: 205px calc(100% - 205px);
  }
}
@media screen and (max-width: 768px) {
  body {
    display: block;
  }
}

.active-pop-up {
  overflow: hidden;
}

.active-mini-call {
  overflow: hidden;
}

.active-call-page {
  overflow: hidden;
}

.main {
  grid-area: main;
}

.nav {
  grid-area: nav;
}

.nav {
  display: grid;
  grid-template-areas: ".      logo            ." "list   list            ." ".      logoes-wrapper  .";

  grid-template-columns: 50px 185px 46px;
  grid-template-rows: repeat(3, auto);
  border-right: 1px solid #e9e9e9;

  height: 668px;
  position: fixed;
  z-index: 2;
  opacity: 1;
}
@media screen and (min-height: 800px) {
  .nav {
    height: 800px;
  }
}
@media screen and (max-width: 1360px) {
  .nav {
    grid-template-columns: 20px 185px 0;
  }
}
@media screen and (max-width: 768px) {
  .nav {
    overflow: auto;
    top: 0;
    right: 0;
    position: fixed;
    width: 419px;

    height: 100vh;
    border-right: none;

    z-index: 1;
    opacity: 0;
    visibility: hidden;

    transition: opacity 0.5s ease-out;
    background-color: #ffffff;

    grid-template-areas: "tel-close      tel-close     tel-close " "list           list          ." ".              lang          ." ".              btn           .";

    grid-template-columns: 49px 1fr 41px;

    grid-template-rows: 123px 615px 81px 138px;
  }
}
@media screen and (max-width: 768px) and (max-height: 920px) {
  .nav {
    grid-template-rows: 70px 380px 60px auto;
  }
}

@media screen and (max-width: 575px) {
  .nav {
    width: 100%;
    grid-template-columns: auto;

    grid-template-rows: 290px 13px;
    row-gap: 40px;
    grid-template-areas: "list list" "lang lang";
  }
}
.nav__logo {
  grid-area: logo;
  margin: 30px 0 55px;
  cursor: pointer;
  width: 80px;
  height: 51px;
}
@media screen and (min-height: 800px) {
  .nav__logo {
    margin: 30px 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .nav__logo {
    display: none;
  }
}
.nav__tel-close-wrapper {
  display: none;
}
@media screen and (max-width: 768px) {
  .nav__tel-close-wrapper {
    grid-area: tel-close;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #e9e9e9;
    padding: 0 41px 0 49px;
  }
}
@media screen and (max-width: 575px) {
  .nav__tel-close-wrapper {
    display: none;
  }
}
.nav__tel-close-wrapper_tel-wrapper {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .nav__tel-close-wrapper_tel-wrapper {
    margin-right: 62px;
  }
}
.nav__tel-close-wrapper_tel-img {
  width: 23px;
  height: 24px;
}
.nav__tel-close-wrapper_tel {
  font-family: "Montserrat-Semi-Bold";
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #323e48;
  margin-left: 15px;
}
.nav__tel-close-wrapper_close-img {
  cursor: pointer;
}
.nav__list {
  grid-area: list;
  font-family: "Montserrat-Medium";
  font-size: 11px;
  line-height: 100%;
  text-transform: uppercase;
  color: #323e48;
  margin-bottom: 70px;
}
@media screen and (min-height: 800px) {
  .nav__list {
    margin-bottom: 40px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .nav__list {
    margin-top: 45px;
    font-size: 18px;

    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) and (max-height: 920px) {
  .nav__list {
    margin-top: 10px;
    font-size: 14px;
  }
}

@media screen and (max-width: 575px) {
  .nav__list {
    margin-bottom: 0;
    font-size: 11px;
    margin-top: 0;
  }
}
.nav__list_element {
  cursor: pointer;
  padding: 15px 0 15px 50px;
  transition: background-color 0.1s linear, color 0.1s linear;
  list-style-type: none;
  outline: none;
}
@media screen and (max-width: 1360px) {
  .nav__list_element {
    padding: 15px 0 15px 20px;
  }
}
@media screen and (min-height: 800px) {
  .nav__list_element {
  }
}
@media screen and (min-height: 800px) and (min-width: 1366px) {
  .nav__list_element {
    padding: 25px 0 25px 50px;
  }
}

@media screen and (max-width: 768px) {
  .nav__list_element {
    padding: 15px 0 15px 50px;
  }
}
@media screen and (max-width: 575px) {
  .nav__list_element {
    padding: 10px 0 10px 21px;
  }
}
.nav__list_element:hover {
  background-color: #323e48;
  color: #ffffff;
}
@media (pointer: coarse), (pointer: none) {
  .nav__list_element:hover {
    background-color: transparent;
    color: #323e48;
  }
}
@media screen and (max-width: 768px) {
  .nav__list_element {
    margin: 20px 0;
  }
}
@media screen and (max-width: 768px) and (max-height: 920px) {
  .nav__list_element {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .nav__list_element:first-child {
    margin: 0;
  }
  .nav__list_element:last-child {
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 575px) {
  .nav__list_element {
    margin: 6px 0;
  }
  .nav__list_element:first-child {
    margin: 0;
  }
  .nav__list_element:last-child {
    margin: 6px 0 0;
  }
}
.nav__logoes-wrapper {
  grid-area: logoes-wrapper;
  display: flex;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .nav__logoes-wrapper {
    display: none;
  }
}
.nav__logoes-wrapper_perf-group {
  cursor: pointer;
}
.nav__logoes-wrapper_vline-wrapper {
  display: flex;
  align-items: center;
}
.nav__logoes-wrapper_vline {
  margin-left: 13px;
  height: 22px;
}
@media screen and (min-height: 800px) {
  .nav__logoes-wrapper_vline {
    height: 35px;
  }
}
.nav__logoes-wrapper_edelburg {
  margin-left: 14px;
  cursor: pointer;
}
.nav__lang-wrapper {
  grid-area: lang;
  display: none;
}
@media screen and (max-width: 768px) {
  .nav__lang-wrapper {
    display: block;
  }
}
@media screen and (max-width: 575px) {
  .nav__lang-wrapper {
    padding-left: 21px;
  }
}
.nav__lang-wrapper_ru {
  margin-left: 50px;
}
@media screen and (max-width: 575px) {
  .nav__lang-wrapper_ru {
    margin-left: 27px;
  }
}
.nav .langs {
  font-family: "Montserrat-Medium";
  line-height: 100%;
  color: #323e48;

  font-size: 17px;
  letter-spacing: -0.03em;
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 575px) {
  .nav .langs {
    font-size: 13px;
  }
}
.nav .red-langs {
  color: #cc2d22;
}
.nav__btn {
  grid-area: btn;
  width: 235px;
  height: 50px;
  background-color: #cc2d22;
  color: #ffffff;
  border: none;
  font-family: "Montserrat-Medium";
  font-style: normal;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: -0.03em;
  margin-bottom: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease-out;
  display: none;
}
@media screen and (max-width: 768px) {
  .nav__btn {
    display: inline-block;
    width: 305px;
    height: 78px;
    font-size: 22px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .nav__btn {
    display: none;
  }
}
.nav__btn:hover {
  background-color: #323e48;
}
@media screen and (max-width: 768px) and (pointer: coarse),
  screen and (max-width: 768px) and (pointer: none) {
  .nav__btn:hover {
    background-color: #cc2d22;
    color: #ffffff;
  }
}

.logoes-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

@media screen and (min-height: 800px) {
  .logoes {
    width: 65px;
  }
}

.main {
  padding: 47px 50px 0 50px;

  transition: opacity 0.5s linear;
  overflow-x: hidden;
}
@media screen and (max-width: 1360px) {
  .main {
    padding: 47px 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .main {
    padding: 0 41px 40px;
  }
}
@media screen and (max-width: 575px) {
  .main {
    min-width: 575px;
    padding: 0 21px 30px;
  }
}
.main * {
  z-index: 2;
}
.main button {
  outline: none !important;
}
.main .headers {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: normal;
  font-size: 35px;
  line-height: 130%;
  color: #323e48;
}
@media screen and (max-width: 768px) {
  .main .headers {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  .main .headers {
    font-size: 24px;
    margin-bottom: 20px !important;
  }
}
.main .subheaders {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #323e48;
}
@media screen and (max-width: 768px) {
  .main .subheaders {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .main .subheaders {
    font-size: 14px;
    min-width: 211px;
  }
}
.main .times {
  font-family: "Montserrat-Medium";
  line-height: 100%;
  color: #323e48;
  font-size: 11px;
  margin-left: 10px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .main .times {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .main .times {
    font-size: 10px;
  }
}
.main__contacts-language {
  display: flex;
  justify-content: space-between;
  transition: transform 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .main__contacts-language {
    height: 123px;

    border-bottom: 3px solid #e9e9e9;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    padding: 25px 41px;

    z-index: 3;

    background-color: #ffffff;
  }
}
@media screen and (max-width: 768px) and (max-height: 920px) {
  .main__contacts-language {
    height: 70px;
    padding: 14px 41px;
  }
}

@media screen and (max-width: 575px) {
  .main__contacts-language {
    padding: 14px 21px;
  }
}
.main .mobile-contacts-language {
  transform: translateY(-100%);
}
.main__left-side {
  display: flex;
  align-items: center;

  text-decoration: none;
}
.main__left-side_text {
  font-family: "Montserrat-Medium";
  line-height: 100%;
  color: #323e48;
  font-size: 15px;
  letter-spacing: -0.03em;
  margin-left: 15px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .main__left-side_text,
  .main__left-side_img {
    display: none;
  }
}
.main__left-side_logo {
  display: none;
}
@media screen and (max-width: 768px) {
  .main__left-side_logo {
    display: block;
    width: 116px;
    height: 73px;
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) and (max-height: 920px) {
  .main__left-side_logo {
    width: 65px;
    height: 42px;
  }
}

@media screen and (max-width: 575px) {
  .main__left-side_logo {
    width: 65px;
    height: 42px;
  }
}
.main__right-side {
  display: flex;
}
@media screen and (max-width: 575px) {
  .main__right-side {
    align-items: center;
  }
}
.main__right-side_tel-wrapper {
  margin-right: 109px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
@media screen and (max-width: 992px) {
  .main__right-side_tel-wrapper {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .main__right-side_tel-wrapper {
    margin-right: 62px;
    z-index: 4;
  }
  .main__right-side_tel-wrapper * {
    z-index: 4;
  }
}
@media screen and (max-width: 575px) {
  .main__right-side_tel-wrapper {
    margin-right: 43px;
  }
}
.main__right-side_close {
  display: none;
  width: 26px;
  height: 25px;
}
.main__right-side_img-wrapper {
  margin-right: 15px;
  display: flex;
  align-items: center;
  padding-left: 1px;
}
.main__right-side_tel-img {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .main__right-side_img-wrapper {
    display: block;
    padding-left: 0;
  }
}
@media screen and (max-width: 575px) {
  .main__right-side_img-wrapper {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .main__right-side_tel-img {
    width: 23px;
    height: 24px;
  }
}
@media screen and (max-width: 575px) {
  .main__right-side_tel-img {
    width: 25px;
    height: 30px;
    cursor: pointer;
  }
}
.main__right-side_tel {
  font-family: "Montserrat-Semi-Bold";
  font-size: 15px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #323e48;
  display: flex;
  align-items: center;

  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .main__right-side_tel {
    font-size: 18px;
  }
}
@media screen and (max-width: 575px) {
  .main__right-side_tel {
    display: block !important;
    font-size: 1px;
    color: transparent;
  }
}
.main__right-side_lang-triangle-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .main__right-side_lang-triangle-wrapper {
    display: none;
  }
}
.main__right-side_lang-wrapper {
  cursor: pointer;
  outline: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Montserrat-Medium";
  line-height: 100%;
  color: #323e48;
  letter-spacing: -0.03em;
  font-size: 15px;

  width: 48px;
  background-color: transparent;
}
.main__right-side_lang {
  font-family: "Montserrat-Medium";
  line-height: 100%;
  color: #323e48;
  font-size: 15px;
  letter-spacing: -0.03em;

  width: 54px;
  text-decoration: none;
  cursor: pointer;
}
.main__right-side .hidden-lang {
  position: absolute;
  top: 30px;
  visibility: hidden;
}
.main__right-side .hidden-lang:hover {
  color: #cc2d22;
}
.main__right-side_triangle-wrapper {
  position: absolute;
  z-index: 1;
  right: 0;
}
.main__right-side_triangle-img {
  transition: transform 0.3s ease-out;
}
.main__right-side .triangle-active {
  transform: rotate(180deg);
}
.main__right-side_transparent-background {
  position: absolute;

  height: 50px;
  width: 56px;

  top: 47px;
  right: 50px;
}
.main__right-side_double-line-wrapper {
  display: none;
}
@media screen and (max-width: 768px) {
  .main__right-side_double-line-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
  }
}
.main__right-side_line {
  width: 65px;
  height: 4px;
  background-color: #323e48;
}
@media screen and (max-width: 575px) {
  .main__right-side_line {
    width: 40px;
    height: 2px;
  }
}
.main__right-side_line:first-of-type {
  margin-bottom: 12px;
}
@media screen and (max-width: 575px) {
  .main__right-side_line:first-of-type {
    margin-bottom: 6px;
  }
}
.main__start-block {
  display: grid;

  grid-template-areas: "header   subheader" ".        time-wrapper" "figure figure" "text-wrapper .";
  grid-template-columns: 508px 1fr;

  grid-template-rows: repeat(4, auto);
  margin-top: 78px;

  margin-bottom: 135px;
}
@media screen and (max-width: 1360px) {
  .main__start-block {
    grid-template-columns: none;
    grid-template-rows: none;
    grid-template-areas: "header       header" "subheader    subheader" "time-wrapper time-wrapper" "figure       figure" "text-wrapper .";
  }
}
@media screen and (max-width: 768px) {
  .main__start-block {
    margin-top: 0;

    padding-top: 173px;
    grid-template-columns: 100%;
    margin-bottom: 0;
    grid-template-areas: "header " "subheader" "time-wrapper" "figure" "text-wrapper";
  }
}
@media screen and (max-width: 768px) and (max-height: 920px) {
  .main__start-block {
    padding-top: 110px;
  }
}

@media screen and (max-width: 575px) {
  .main__start-block {
    margin-top: 113px;
    margin-bottom: 316px;
  }
}
.main__start-block_header {
  grid-area: header;
}
@media screen and (max-width: 768px) {
  .main__start-block_header {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 575px) {
  .main__start-block_header {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 575px) {
  .main__start-block .mobile-top-header {
    width: auto;
  }
}
@media screen and (max-width: 250px) {
  .main__start-block .mobile-top-header {
    width: 211px;
  }
}
.main__start-block_subheader {
  grid-area: subheader;
  padding: 0 0 0 78px;
  padding-top: 7px;

  width: 401px;
}
@media screen and (max-width: 1360px) {
  .main__start-block_subheader {
    padding: 20px 0 0;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .main__start-block_subheader {
    padding: 0 0 30px;
    width: 426px;
  }
}
@media screen and (max-width: 575px) {
  .main__start-block_subheader {
    padding: 0 0 20px;
    width: auto;
  }
}
.main__start-block_time-wrapper {
  grid-area: time-wrapper;
  padding: 0 0 0 78px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1360px) {
  .main__start-block_time-wrapper {
    padding: 20px 0 0;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .main__start-block_time-wrapper {
    padding: 0;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 575px) {
  .main__start-block_time-wrapper {
    flex-direction: column;
  }
}
.main__start-block_left-side,
.main__start-block_right-side {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .main__start-block_left-side {
    margin-bottom: 9px;
  }
}
.main__start-block_right-side {
  margin-left: 42px;
}
@media screen and (max-width: 575px) {
  .main__start-block_right-side {
    margin-left: 0;
  }
}
.main__start-block_img-wrapper {
  display: flex;
}
.main__start-block_trc-img {
  width: 12px;
  height: 15px;
}
.main__start-block_metro-img {
  width: 15px;
  height: 10px;
}
.main__start-block_figure {
  grid-area: figure;
  margin-top: 30px;
  position: relative;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .main__start-block_figure {
    height: 450px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 575px) {
  .main__start-block_figure {
    margin-top: 21px;
    height: 300px;

    min-width: 220px;
  }
}
.main__start-block_complex-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 575px) {
  .main__start-block_complex-img {
    display: none;
    object-position: top;
  }
}
@media screen and (max-width: 320px) {
  .main__start-block_complex-img {
    object-position: left;
  }
}
.main__start-block .mobile-img-building {
  display: none;
}
@media screen and (max-width: 575px) {
  .main__start-block .mobile-img-building {
    display: block;
  }
}
.main__start-block_select-btn {
  cursor: pointer;
  width: 232px;
  height: 232px;
  border-radius: 50%;
  background-color: #cc2d22;

  transition: background-color 0.3s ease-out;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;

  font-family: "Roboto Slab Medium";
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  right: 0;
  bottom: 0;
  transform: translate(-94px, 50%);
}
@media screen and (max-width: 1360px) {
  .main__start-block_select-btn {
    transform: translate(0px, 50%);
  }
}
@media screen and (max-width: 768px) {
  .main__start-block_select-btn {
    width: 228px;
    height: 228px;
    font-size: 16px;
    transform: translateY(50%);
  }
}
@media screen and (max-width: 575px) {
  .main__start-block_select-btn {
    width: 206px;
    height: 206px;
    font-size: 14px;
    right: 50%;
    transform: translate(50%, 305px);
  }
}
.main__start-block_select-btn:hover {
  background-color: #323e48;
}
@media (pointer: coarse), (pointer: none) {
  .main__start-block_select-btn:hover {
    background-color: #cc2d22;
    color: #ffffff;
  }
}
.main__start-block_text-wrapper {
  grid-area: text-wrapper;
  margin-top: 30px;
  display: flex;
}
@media screen and (max-width: 620px) {
  .main__start-block_text-wrapper {
    flex-direction: column;
  }
}
@media screen and (max-width: 575px) {
  .main__start-block_text-wrapper {
    flex-direction: row;
  }
}
.main__start-block_text-wrapper .text-column {
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 575px) {
  .main__start-block_text-wrapper .text-column {
    margin-bottom: 0;
    text-align: left;
  }
}
@media screen and (max-width: 650px) {
  .main__start-block .russian-columns {
    align-items: center;
  }
}
@media screen and (max-width: 575px) {
  .main__start-block .russian-columns {
    align-items: flex-start;
  }
}
@media screen and (max-width: 650px) {
  .main__start-block .russian-start-text-wrapper {
    width: 265px;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 575px) {
  .main__start-block .russian-start-text-wrapper {
    margin-bottom: 0;

    flex-direction: row;
    width: auto;
    align-items: flex-start;
  }
}
.main__start-block .right-side {
  margin-left: 86px;
}
@media screen and (max-width: 990px) {
  .main__start-block .right-side {
    margin-left: 50px;
  }
}
@media screen and (max-width: 768px) {
  .main__start-block .right-side {
    margin-left: 82px;
  }
}
@media screen and (max-width: 660px) {
  .main__start-block .right-side {
    margin-left: 20px;
  }
}
@media screen and (max-width: 620px) {
  .main__start-block .right-side {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 575px) {
  .main__start-block .right-side {
    margin-left: 49px;
    margin-top: 0;
  }
}
@media screen and (max-width: 300px) {
  .main__start-block .right-side {
    margin-left: 26px;
  }
}
@media screen and (max-width: 810px) {
  .main__start-block .russian-text-column {
    margin-left: 16px;
  }
}
@media screen and (max-width: 650px) {
  .main__start-block .russian-text-column {
    margin-left: 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 575px) {
  .main__start-block .russian-text-column {
    margin-top: 0;
    margin-left: 49px;
  }
}
.main__start-block_header {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 120%;

  color: #98999b;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .main__start-block_header {
    font-size: 18px;

    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 575px) {
  .main__start-block_header {
    font-size: 14px;
    margin-bottom: 5px !important;
  }
}
.main__start-block .column-headers {
  margin-bottom: 6px !important;
}
.main__start-block_date,
.main__start-block_area {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 120%;

  letter-spacing: 0.03em;
  color: #323e48;
}
@media screen and (max-width: 768px) {
  .main__start-block_date,
  .main__start-block_area {
    font-size: 18px;
  }
}
@media screen and (max-width: 575px) {
  .main__start-block_date,
  .main__start-block_area {
    font-size: 14px;
  }
}
.main__start-block_area {
  color: #cc2d22;
}
@media screen and (max-width: 300px) {
  .main__start-block_area {
    width: 100px;
  }
}
.main__about-block {
}
@media screen and (max-width: 768px) {
  .main__about-block {
    padding-top: 135px;
  }
}
@media screen and (max-width: 575px) {
  .main__about-block {
    padding-top: 80px;
  }
}
.main__about-block_header {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .main__about-block_header {
    margin-bottom: 70px;
  }
}
.main__about-block_subheader-text {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .main__about-block_subheader-text {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  .main__about-block_subheader-text {
    margin-bottom: 15px;
  }
}
.main__about-block_img-wrapper {
  height: 500px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main__about-block_img-wrapper {
    height: 450px;
  }
}
@media screen and (max-width: 575px) {
  .main__about-block_img-wrapper {
    height: 300px;
    min-width: 220px;
  }
}
.main__about-block_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease-out;
  position: absolute;
}
@media screen and (max-width: 320px) {
  .main__about-block_img {
    object-position: left;
  }
}
.main__about-block_btns-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;

  margin-bottom: 60px;
}
@media screen and (max-width: 1360px) {
  .main__about-block_btns-wrapper {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1253px) {
  .main__about-block_btns-wrapper {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .main__about-block_btns-wrapper {
    margin-bottom: 60px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 575px) {
  .main__about-block_btns-wrapper {
    margin: 20px 0 40px;
    flex-wrap: nowrap;
  }
}
.main__about-block_btn {
  padding: 0 22px;
  width: auto;
  height: 50px;
  border: 1px solid #425c71;
  background-color: transparent;
  cursor: pointer;
  font-family: "Montserrat-Medium";
  line-height: 100%;
  color: #323e48;
  font-size: 15px;
  letter-spacing: -0.03em;
  color: #425c71;
  transition: background-color 0.3s ease-out, color 0.3s ease-out,
    transform 0.3s ease-out;
}
@media screen and (max-width: 1360px) {
  .main__about-block_btn:not(:last-child) {
    margin-right: 14px;
  }
  .main__about-block_btn:nth-child(2),
  .main__about-block_btn:nth-child(3) {
    margin-bottom: 14px;
  }
  .main__about-block_btn:nth-child(4) {
    margin-right: 14px;
  }
}
@media screen and (max-width: 768px) {
  .main__about-block_btn {
    height: 60px;
    font-size: 17px;
  }
  .main__about-block_btn:not(:last-child) {
    margin-right: 30px;
  }
  .main__about-block_btn:nth-child(3) {
    margin-right: 0;
  }
  .main__about-block_btn:nth-child(2),
  .main__about-block_btn:nth-child(3) {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 750px) {
  .main__about-block_btn:nth-child(3) {
    margin-right: 30px;
  }
}
@media screen and (max-width: 575px) {
  .main__about-block_btn {
    flex-shrink: 0;
    height: 48px;
    font-size: 14px;
  }
  .main__about-block_btn:nth-child(2) {
    margin: 0;
  }
  .main__about-block_btn:nth-child(4) {
    margin-right: 0;
  }
  .main__about-block_btn:not(:last-child) {
    margin-right: 0;
  }
  .main__about-block_btn:not(:nth-child(1)) {
    margin-left: 20px;
  }
  .main__about-block_btn:nth-child(2),
  .main__about-block_btn:nth-child(3) {
    margin-bottom: 0;
  }
}
.main__about-block_btn:hover {
  background-color: #323e48 !important;
  color: #ffffff !important;
}
.main__conditions-block {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .main__conditions-block {
    margin-bottom: 0;
  }
}
.main__conditions-block_subheader {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .main__conditions-block_subheader {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  .main__conditions-block_subheader {
    margin-bottom: 20px;
  }
}
.main__conditions-block_img-container {
  display: grid;
  grid-template-areas: "figure1 figure2 figure4" "figure1 figure3 figure4" "figure1 figure3 timer-block";

  grid-template-columns: 326px 232px 326px;

  grid-template-rows: 167px 90px 133px;
  gap: 50px;
}
@media screen and (max-width: 1360px) {
  .main__conditions-block_img-container {
    grid-template-columns: repeat(3, minmax(247px, 1fr));
    gap: 1em;
  }
}
@media screen and (max-width: 1050px) {
  .main__conditions-block_img-container {
    grid-template-areas: "figure1  figure2" "figure1  figure3" "figure4  timer-block";
    grid-template-rows: 217px 320px 180px;
    grid-template-columns: repeat(2, minmax(247px, 1fr));
    gap: 0.5em;
  }
}
@media screen and (max-width: 768px) {
  .main__conditions-block_img-container {
    gap: 0;

    grid-template-areas: "figure1    figure1       figure2" "figure1    figure1       figure3" "figure4    timer-block   timer-block";

    grid-template-columns: 48% 12% 40%;
    grid-template-rows: 217px 320px 180px;
  }
}
@media screen and (max-width: 575px) {
  .main__conditions-block_img-container {
    display: block;

    min-width: 220px;
  }
}
@media screen and (max-width: 1150px) {
  .main__conditions-block .russian-conditions-img-container {
    grid-template-areas: "figure1  figure2" "figure1  figure3" "figure4  timer-block";
    grid-template-rows: 217px 320px 180px;
    grid-template-columns: repeat(2, minmax(247px, 1fr));
    gap: 0.5em;
  }
}
@media screen and (max-width: 850px) {
  .main__conditions-block .russian-conditions-img-container {
    grid-template-areas: "figure1  figure1" "figure2  figure3" "figure4  timer-block";
    grid-template-rows: 300px 320px 180px;
    grid-template-columns: repeat(2, minmax(247px, 1fr));
    gap: 0.5em;
  }
}
@media screen and (max-width: 768px) {
  .main__conditions-block .russian-conditions-img-container {
    gap: 0;
    grid-template-areas: "figure1    figure1       figure2" "figure1    figure1       figure3" "figure4    timer-block   timer-block";
    grid-template-columns: 48% 12% 40%;
    grid-template-rows: 217px 320px 180px;
  }
}
@media screen and (max-width: 650px) {
  .main__conditions-block .russian-conditions-img-container {
    row-gap: 50px;
    column-gap: 27px;
    grid-template-rows: 320px 217px 180px;
    grid-template-columns: calc(48% - 18px) calc(12% - 18px) calc(40% - 18px);
    grid-template-areas: "figure1  figure1         figure1" "figure2  figure3         figure3" "figure4  timer-block     timer-block";
  }
}
.main__conditions-block_figure {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .main__conditions-block_figure {
    height: 325px;
    margin-bottom: 15px;
  }
}
.main__conditions-block_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .main__conditions-block_img {
    object-position: bottom;
  }
}
@media screen and (max-width: 850px) {
  .main__conditions-block .russian-comdition-img-1 {
    height: 110%;
    object-position: bottom;
  }
}
@media screen and (max-width: 768px) {
  .main__conditions-block .russian-comdition-img-1 {
    height: 100%;
  }
}
.main__conditions-block .condition-flower-img {
  height: 134%;
  object-position: 80%;
}
@media screen and (max-width: 1050px) {
  .main__conditions-block .condition-flower-img {
    height: 100%;
    object-position: bottom;
  }
}
@media screen and (max-width: 768px) {
  .main__conditions-block .condition-flower-img {
    height: 128%;
    object-position: right;
  }
}
@media screen and (max-width: 575px) {
  .main__conditions-block .condition-flower-img {
    height: 100%;
  }
}
@media screen and (max-width: 850px) {
  .main__conditions-block .russsian-conditions-img {
    object-position: right;
  }
}
.main__conditions-block .mobile-img {
  display: none;
}
@media screen and (max-width: 575px) {
  .main__conditions-block .mobile-img {
    display: block !important;
    object-position: bottom;
  }
}
@media screen and (max-width: 575px) {
  .main__conditions-block .mobile-credit-img {
    object-position: center;
  }
}
@media screen and (max-width: 1050px) {
  .main__conditions-block .desktop-version-img4 {
    height: 125%;
  }
}
@media screen and (max-width: 768px) {
  .main__conditions-block .desktop-version-img4 {
    display: none;
  }
}
.main__conditions-block .phablet-version-img3 {
  object-position: 0;
}
@media screen and (max-width: 1360px) {
  .main__conditions-block .phablet-version-img3 {
    object-position: bottom;
  }
}
.main__conditions-block .phablet-version-img4 {
  display: none;
}
@media screen and (max-width: 768px) {
  .main__conditions-block .phablet-version-img4 {
    display: block;
    height: 140%;
  }
}
@media screen and (max-width: 575px) {
  .main__conditions-block .phablet-version-img4 {
    height: 100%;
  }
}
@media screen and (max-width: 390px) {
  .main__conditions-block .phablet-version-img4 {
    object-position: right;
  }
}
.main__conditions-block_figcaption {
  position: absolute;
  top: 30px;
  left: 30px;
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 120%;

  font-size: 20px;
  line-height: 100%;
  color: #323e48;
}
@media screen and (max-width: 768px) {
  .main__conditions-block_figcaption {
    font-size: 22px;
    top: 25px;
    left: 25px;
  }
}
@media screen and (max-width: 575px) {
  .main__conditions-block_figcaption {
    font-size: 20px;
    top: 20px;
    left: 24px;
  }
}
.main__conditions-block_first-text-block {
  margin-bottom: 10px;
}
@media screen and (max-width: 330px) {
  .main__conditions-block .russian-text-discount {
    padding: 0 5px 0 0;
  }
}
@media screen and (max-width: 323px) {
  .main__conditions-block .russian-text-discount {
    line-height: 130%;
  }
}
@media screen and (max-width: 323px) {
  .main__conditions-block .russian-text-cash {
    display: none;
  }
}
.main__conditions-block_inner-russian-text {
  display: none;
}
@media screen and (max-width: 323px) {
  .main__conditions-block_inner-russian-text {
    display: inline;
  }
}
.main__conditions-block_bold-text {
  font-family: "Roboto Slab Bold";
  font-size: 24px;
  line-height: 100%;
}
@media screen and (max-width: 575px) {
  .main__conditions-block_bold-text {
    font-size: 22px;
  }
}
.main__conditions-block .figure1 {
  grid-area: figure1;
}
@media screen and (max-width: 768px) {
  .main__conditions-block .figure1 {
    padding: 0 27px 47px 0;
  }
}
@media screen and (max-width: 575px) {
  .main__conditions-block .figure1 {
    padding: 0;
  }
}
.main__conditions-block .figure2 {
  grid-area: figure2;
}
@media screen and (max-width: 768px) {
  .main__conditions-block .figure2 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 575px) {
  .main__conditions-block .figure2 {
    padding: 0;
    margin-bottom: 15px;
  }
}
.main__conditions-block .figure3 {
  grid-area: figure3;
}
@media screen and (max-width: 768px) {
  .main__conditions-block .figure3 {
    padding-bottom: 47px;
  }
}
@media screen and (max-width: 575px) {
  .main__conditions-block .figure3 {
    padding: 0;
  }
}
.main__conditions-block .figure4 {
  grid-area: figure4;
}
@media screen and (max-width: 650px) {
  .main__conditions-block .russian-figure1,
  .main__conditions-block .russian-figure2,
  .main__conditions-block .russian-figure3 {
    padding: 0;
  }
}
@media screen and (max-width: 650px) {
  .main__conditions-block .russian-figure2 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .main__conditions-block .russian-figure2 {
    margin-bottom: 15px;
  }
}
.main__conditions-block_timer-block {
  grid-area: timer-block;
  background-color: #323e48;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .main__conditions-block_timer-block {
    margin-left: 27px;
  }
}
@media screen and (max-width: 575px) {
  .main__conditions-block_timer-block {
    margin-left: 0;
    height: 133px;
  }
}
@media screen and (max-width: 650px) {
  .main__conditions-block .russian-timer-block {
    margin-left: 0;
  }
}
.main__conditions-block_timer-text {
  font-family: "Montserrat-Medium";
  line-height: 100%;
  color: #323e48;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  text-align: center;
  padding: 0 5px;
}
@media screen and (max-width: 768px) {
  .main__conditions-block_timer-text {
    font-size: 17px;
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 575px) {
  .main__conditions-block_timer-text {
    font-size: 15px;
    margin-bottom: 12px;
  }
}
.main__conditions-block_timer-wrapper {
  display: flex;
}
.main__conditions-block .sections {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  color: #323e48;
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 120%;

  font-size: 20px;
  line-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .main__conditions-block .sections {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}
@media screen and (max-width: 575px) {
  .main__conditions-block .sections {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
.main__conditions-block_colon {
  font-family: "Roboto Slab Bold";
  font-style: normal;
  font-weight: bold;
  font-size: 21px;
  line-height: 100%;
  color: #ffffff;
  display: flex;
  align-items: center;
  margin: 0 15px;
}
@media screen and (max-width: 768px) {
  .main__conditions-block_colon {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .main__conditions-block_colon {
    margin: 0 10px;
  }
}
@media screen and (max-width: 575px) {
  .main__conditions-block_colon {
    font-size: 21px;
  }
}
.main__apartments-block {
  position: relative;
}
@media screen and (max-width: 768px) {
  .main__apartments-block {
    padding-top: 90px;
  }
}
@media screen and (max-width: 575px) {
  .main__apartments-block {
    padding-top: 80px;
  }
}
@media screen and (max-width: 319px) {
  .main__apartments-block {
    min-width: 250px;
  }
}
.main__apartments-block_header {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .main__apartments-block_header {
    margin-bottom: 40px;
  }
}
.main__apartments-block_btns-wrapper {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .main__apartments-block_btns-wrapper {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  .main__apartments-block_btns-wrapper {
    margin-bottom: 30px;
  }
}
.main__apartments-block .btns {
  width: 80px;
  height: 40px;
  border: 1px solid #425c71;
  cursor: pointer;
  background-color: transparent;
  font-family: "Montserrat-Medium";
  line-height: 100%;
  color: #323e48;
  transition: background-color 0.3s ease-out;
  font-size: 15px;
  letter-spacing: -0.03em;
  color: #425c71;
}
@media screen and (max-width: 768px) {
  .main__apartments-block .btns {
    width: 94px;
    height: 47px;
    font-size: 17px;
  }
}
@media screen and (max-width: 575px) {
  .main__apartments-block .btns {
    width: 70px;
    min-width: 54px;
    height: 40px;
    font-size: 14px;
  }
}
.main__apartments-block .btns:not(:first-of-type) {
  margin-left: 21px;
}
@media screen and (max-width: 768px) {
  .main__apartments-block .btns:not(:first-of-type) {
    margin-left: 24px;
  }
}
@media screen and (max-width: 575px) {
  .main__apartments-block .btns:not(:first-of-type) {
    margin-left: 20px;
  }
}
.main__apartments-block .btns:hover {
  background-color: #323e48;
  color: #ffffff;
}
.main__apartments-block_arrows-wrapper {
  display: flex;
  position: absolute;

  top: 75px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .main__apartments-block_arrows-wrapper {
    top: 185px;
  }
}
@media screen and (max-width: 575px) {
  .main__apartments-block_arrows-wrapper {
    top: auto;
    bottom: 0;
    transform: translateY(50%);
  }
}
.main__apartments-block_left-arrow-btn {
  margin-right: 50px;
}
@media screen and (max-width: 600px) {
  .main__apartments-block_left-arrow-btn {
    margin-right: 30px;
  }
}
@media screen and (max-width: 575px) {
  .main__apartments-block_left-arrow-btn {
    margin-right: 34px;
  }
}
.main__apartments-block_cards-container {
  position: relative;
  height: 500px;

  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .main__apartments-block_cards-container {
    height: 504px;
  }
}
@media screen and (max-width: 575px) {
  .main__apartments-block_cards-container {
    height: 480px;
    margin-bottom: 33px;
  }
}
@media screen and (max-width: 320px) {
  .main__apartments-block_cards-container {
    height: 530px;
  }
}
.main__apartments-block_cards-wrapper {
  position: absolute;
  display: flex;
  overflow-x: hidden;

  width: 1034px;
  height: 100%;
}
@media screen and (max-width: 1360px) {
  .main__apartments-block_cards-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main__apartments-block_cards-wrapper {
    width: 687px;
  }
}
.main__apartments-block_card:not(:first-of-type) {
  margin-left: 40px;
}
@media screen and (max-width: 1360px) {
  .main__apartments-block_card:not(:first-of-type) {
    margin-left: 35px;
  }
}
@media screen and (max-width: 768px) {
  .main__apartments-block_card:not(:first-of-type) {
    margin-left: 27px;
  }
}
.main__apartments-block_card {
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  width: 282px;

  border: 1px solid #323e48;

  padding: 15px 0 0;
  cursor: pointer;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .main__apartments-block_card {
    width: 330px;
  }
}
@media screen and (max-width: 575px) {
  .main__apartments-block_card {
    width: 278px;

    padding: 15px 0 0;
  }
}
@media screen and (max-width: 319px) {
  .main__apartments-block_card {
    width: 202px;
    text-align: center;
  }
}
.main__apartments-block_card-section1 {
  padding: 0 0 57px 15px;
}
@media screen and (max-width: 768px) {
  .main__apartments-block_card-section1 {
    padding: 0 0 57px 15px;
  }
}
@media screen and (max-width: 575px) {
  .main__apartments-block_card-section1 {
    padding: 0 0 57px 15px;
  }
}
.main__apartments-block_card-section2 {
  border-top: 1px solid #323e48;

  padding: 10px 20px 0;
  display: grid;

  grid-template-areas: "header       header" "subheader1   subheader2" "text1        text2";
}
@media screen and (max-width: 768px) {
  .main__apartments-block_card-section2 {
    padding: 25px 25px 0;
  }
}
@media screen and (max-width: 575px) {
  .main__apartments-block_card-section2 {
    padding: 20px 20px 0;
  }
}
@media screen and (max-width: 319px) {
  .main__apartments-block_card-section2 {
    padding: 20px 10px 0;
  }
}
.main__apartments-block_card-header {
  grid-area: header;
}
.main__apartments-block_card-subheader1 {
  grid-area: subheader1;
}
.main__apartments-block_card-subheader2 {
  grid-area: subheader2;
}
.main__apartments-block_card-subheader3 {
  grid-area: subheader3;
}
.main__apartments-block_card-text1 {
  grid-area: text1;
}
.main__apartments-block_card-text2 {
  grid-area: text2;
}
.main__apartments-block_card-text3 {
  grid-area: text3;
}
.main__apartments-block .card-discounts {
  background-color: #cc2d22;
  border-radius: 30px;
  height: 30px;
  width: 56px;
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 120%;

  line-height: 100%;
  color: #ffffff;

  display: none;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}
.main__apartments-block .card-img-wrappers {
  display: flex;
  justify-content: flex-end;

  width: 90%;
  height: 250px;

  position: relative;
}
@media screen and (max-width: 575px) {
  .main__apartments-block .card-img-wrappers {
    height: 245px;
    width: 95%;
  }
}
.main__apartments-block .card-imgs {
  width: 100%;
  object-fit: contain;

  display: block;
}
.main__apartments-block .card-headers {
  font-family: "Roboto Slab Medium";
  font-size: 20px;
  line-height: 120%;
  color: #323e48;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .main__apartments-block .card-headers {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 575px) {
  .main__apartments-block .card-headers {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.main__apartments-block .card-subheaders {
  font-family: "Montserrat-Medium";
  line-height: 100%;
  color: #323e48;
  font-size: 11px;
  line-height: 120%;
  color: #98999b;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .main__apartments-block .card-subheaders {
    font-size: 13px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 575px) {
  .main__apartments-block .card-subheaders {
    font-size: 11px;
    margin-bottom: 6px;
  }
}
.main__apartments-block .card-texts {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 120%;

  line-height: 100%;
  color: #323e48;
}
@media screen and (max-width: 768px) {
  .main__apartments-block .card-texts {
    font-size: 17px;
  }
}
@media screen and (max-width: 575px) {
  .main__apartments-block .card-texts {
    font-size: 15px;
    margin-bottom: 6px;
  }
}
.main__apartments-block .card-texts:not(:nth-last-of-type(-n + 2)) {
  margin-bottom: 20px;
}
.main__apartments-block_nav-line-wrapper {
  width: 256px;
  height: 1px;
  background-color: #c7c7c7;

  margin-bottom: 90px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main__apartments-block_nav-line-wrapper {
    width: 330px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .main__apartments-block_nav-line-wrapper {
    width: 134px;

    margin-bottom: 0;
  }
}
.main__apartments-block_nav-line {
  height: 1px;
  background-color: #cc2d22;
  position: absolute;
  top: 0;
  transition: transform 0.2s ease-out;
}
.main__advantages-block {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 156px 1fr;
  column-gap: 41px;
  grid-template-areas: "header content-wrapper";
}
@media screen and (max-width: 1190px) {
  .main__advantages-block {
    grid-template-areas: "header header" "content-wrapper content-wrapper";
  }
}
@media screen and (max-width: 768px) {
  .main__advantages-block {
    padding-top: 90px;
  }
}
.main__advantages-block_header {
  margin-bottom: 40px;
  grid-area: header;
}
@media screen and (max-width: 575px) {
  .main__advantages-block .mobile-adv-header {
    margin-bottom: 30px !important;
  }
}
.main__advantages-block_content-wrapper {
  grid-area: content-wrapper;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1020px) {
  .main__advantages-block_content-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .main__advantages-block_content-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media screen and (max-width: 750px) {
  .main__advantages-block_content-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 520px) {
  .main__advantages-block_content-wrapper {
    height: auto;
    justify-content: center;
  }
}
.main__advantages-block_sections {
  width: 232px;
}
@media screen and (max-width: 1190px) {
  .main__advantages-block_sections {
    margin: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .main__advantages-block_sections:not(:first-of-type) {
    margin: 0 10px;
  }
  .main__advantages-block_sections:first-of-type {
    margin: 0 10px 0 0;
  }
}
@media screen and (max-width: 750px) {
  .main__advantages-block_sections {
    width: auto;
  }
  .main__advantages-block_sections:first-of-type {
    margin: 0;
  }
}
@media screen and (max-width: 590px) {
  .main__advantages-block_sections {
    margin: 0;
  }
}
.main__advantages-block .bus-novus-section {
}
@media screen and (max-width: 520px) {
  .main__advantages-block .bus-novus-section {
    position: static;
    right: auto;
    transform: translateX(0);
    bottom: auto;
  }
}
.main__advantages-block_circle {
  width: 232px;
  height: 232px;
  border: 1px solid #323e48;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  margin-bottom: 41px;
  position: relative;
}
@media screen and (max-width: 1020px) {
  .main__advantages-block_circle {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .main__advantages-block_circle {
    width: 210px;
    height: 210px;
  }
}
@media screen and (max-width: 750px) {
  .main__advantages-block_circle {
    width: 240px;
    height: 240px;
  }
}
@media screen and (max-width: 575px) {
  .main__advantages-block_circle {
    width: 210px;
    height: 210px;
  }
}
.main__advantages-block_circle:hover img {
  opacity: 1;
}
.main__advantages-block_circle:hover p {
  opacity: 0;
}
.main__advantages-block_circle p {
  transition: opacity 0.3s ease-out;
  opacity: 1;
}
.main__advantages-block_imgs {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: opacity 0.3s ease-out;
  clip-path: circle(50% at 50% 50%);
  opacity: 0;
}
.main__advantages-block_text-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 110px;
}
.main__advantages-block_text-wrapper {
  text-align: center;
}
.main__advantages-block_text {
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #323e48;
  font-family: "Montserrat";
}
.main__advantages-block .centre-text-wrapper {
  padding-top: 10px;
}
.main__advantages-block .prospect-text,
.main__advantages-block .novus-text {
  margin-top: 7px;
}
.main__advantages-block_subheader {
  font-family: "Roboto Slab Medium";
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #cc2d22;
}
.main__advantages-block .outer-subheaders {
  margin-bottom: 10px;
}
.main__advantages-block_hrs {
  background-color: #323e48;
  border: none;
  height: 1px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1020px) {
  .main__advantages-block_hrs {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .main__advantages-block_hrs {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .main__advantages-block_hrs {
    display: none;
  }
}
@media screen and (max-width: 1020px) {
  .main__advantages-block_bottom-sections {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .main__advantages-block_bottom-sections {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .main__advantages-block_bottom-sections {
    display: none;
  }
}
.main__advantages-block_hidden-section {
  display: none;
}
@media screen and (max-width: 1020px) {
  .main__advantages-block_hidden-section {
    display: block;
    width: 232px;
  }
  .main__advantages-block_hidden-section * {
    display: block;
  }
  .main__advantages-block_hidden-section .hidden-text {
    margin-bottom: 40px;
  }
  .main__advantages-block_hidden-section .hidden-bus-text {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .main__advantages-block_hidden-section {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .main__advantages-block_hidden-section {
    display: block;
  }
}
@media screen and (max-width: 575px) {
  .main__advantages-block_hidden-section {
    max-width: 290px;
    width: 100%;
  }
}
.main .russian-advantages-block {
  grid-template-columns: 178px 1fr;
}
.main__shopping-block {
}
.main__shopping-block_subheader {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .main__shopping-block_subheader {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  .main__shopping-block_subheader {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .main__shopping-block .shopping-subheader {
    display: none;
  }
}
.main__shopping-block .shopping-subheader-mobile {
  display: none;
}
@media screen and (max-width: 575px) {
  .main__shopping-block .shopping-subheader-mobile {
    display: block;
    min-width: 102px;
    word-break: break-word;
  }
}
.main__shopping-block_img-wrapper {
  margin-bottom: 90px;
  display: grid;
  grid-template-columns: 326px 232px 326px;
  grid-template-rows: repeat(3, 326px);
  gap: 50px;
  grid-template-areas: "figure1 figure2 figure2" "figure3 figure3 figure4" "figure5 figure6 figure6";
}
@media screen and (max-width: 1360px) {
  .main__shopping-block_img-wrapper {
    grid-template-columns: 1fr 0.71fr 1fr;
  }
}
@media screen and (max-width: 1250px) {
  .main__shopping-block_img-wrapper {
    gap: 1em;
    grid-template-areas: "figure2 figure2 figure2 figure2" "figure3 figure3 figure3 figure3" "figure1 figure1 figure1 figure1" "figure4 figure4 figure5 figure5" "figure6 figure6 figure6 figure6";
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 326px);
  }
}
@media screen and (max-width: 768px) {
  .main__shopping-block_img-wrapper {
    margin-bottom: 0;
    gap: 27px;

    grid-template-columns: calc(40% - 18px) calc(20% - 18px) calc(40% - 18px);
    grid-template-rows: 278px repeat(2, 326px);
    grid-template-areas: "figure1 figure2 figure2" "figure3 figure3 figure4" "figure5 figure6 figure6";
  }
}
@media screen and (max-width: 575px) {
  .main__shopping-block_img-wrapper {
    display: block;

    margin-bottom: 0;
    min-width: 220px;
  }
}
.main__shopping-block .shop-figures {
  position: relative;
}
@media screen and (max-width: 575px) {
  .main__shopping-block .shop-figures {
    height: 200px;
  }
  .main__shopping-block .shop-figures:not(:last-child) {
    margin-bottom: 15px;
  }
}
.main__shopping-block .shop-imgs {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 575px) {
  .main__shopping-block .shop-imgs {
    display: none;
  }
}
@media screen and (max-width: 1250px) {
  .main__shopping-block_img5,
  .main__shopping-block_img6 {
    object-position: top;
  }
}
.main__shopping-block .shop-imgs-mobile {
  display: none;
}
@media screen and (max-width: 575px) {
  .main__shopping-block .shop-imgs-mobile {
    display: block;
  }
}
.main__shopping-block .shop-figcaptions {
  position: absolute;
  left: 30px;
  bottom: 30px;
  padding: 0 5px;
}
@media screen and (max-width: 710px) {
  .main__shopping-block .shop-figcaptions {
    left: 10px;
    bottom: 30px;
  }
}
@media screen and (max-width: 575px) {
  .main__shopping-block .shop-figcaptions {
    left: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 750px) {
  .main__shopping-block .russian-shop-figcaptions {
    width: 196px;
  }
}
@media screen and (max-width: 620px) {
  .main__shopping-block .russian-shop-figcaption-shopping {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .main__shopping-block_figcaption1,
  .main__shopping-block_figcaption4,
  .main__shopping-block_figcaption5 {
    width: 219px;
  }
}
@media screen and (max-width: 768px) {
  .main__shopping-block_figcaption2,
  .main__shopping-block_figcaption3,
  .main__shopping-block_figcaption6 {
    width: 321px;
  }
}
@media screen and (max-width: 575px) {
  .main__shopping-block_figcaption2,
  .main__shopping-block_figcaption3,
  .main__shopping-block_figcaption6 {
    width: auto;
  }
}
.main__shopping-block .figcaption-subheaders {
  font-family: "Roboto Slab Medium";
  font-size: 20px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .main__shopping-block .figcaption-subheaders {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 575px) {
  .main__shopping-block .figcaption-subheaders {
    font-size: 20px;
  }
}
@media screen and (max-width: 650px) {
  .main__shopping-block .health-beauty-header {
    width: 197px;
  }
  .main__shopping-block .health-beauty-text {
    width: 178px;
  }
  .main__shopping-block .entertainments-text {
    width: 277px;
  }
  .main__shopping-block .shopping-text {
    width: 170px;
  }
  .main__shopping-block .fitness-text {
    width: 273px;
  }
}
.main__shopping-block .figcaption-texts {
  font-family: "Montserrat-Medium";
  line-height: 100%;
  color: #323e48;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .main__shopping-block .figcaption-texts {
    font-size: 17px;
  }
}
@media screen and (max-width: 575px) {
  .main__shopping-block .figcaption-texts {
    font-size: 14px;
    width: 238px;
  }
}
.main__shopping-block .figure-gradients {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}
.main__shopping-block_figure1 {
  grid-area: figure1;
}
.main__shopping-block_figure2 {
  grid-area: figure2;
}
.main__shopping-block_figure3 {
  grid-area: figure3;
}
.main__shopping-block_figure4 {
  grid-area: figure4;
}
.main__shopping-block_figure5 {
  grid-area: figure5;
}
.main__shopping-block_figure6 {
  grid-area: figure6;
}
.main__shopping-block_figcaption3-text,
.main__shopping-block_figcaption6-text {
  width: 390px;
}
@media screen and (max-width: 768px) {
  .main__shopping-block_figcaption3-text,
  .main__shopping-block_figcaption6-text {
    width: auto;
  }
}
@media screen and (max-width: 300px) {
  .main__shopping-block .restaurant-text,
  .main__shopping-block .fitness-text,
  .main__shopping-block .business-text,
  .main__shopping-block .entertainments-text,
  .main__shopping-block .health-beauty-text {
    width: 200px;
  }
}
.main__shopping-block_figure-gradient5 {
  height: 234px !important;
  bottom: 0;
}
.main__shopping-block_figure-gradient6 {
  height: 126px !important;
  bottom: 0;
}
.main__gallery-block {
  position: relative;

  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .main__gallery-block {
    padding-top: 90px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .main__gallery-block {
    padding-top: 80px;
    min-width: 220px;
  }
}
.main__gallery-block_header {
  margin-bottom: 30px;
}
.main__gallery-block_arrows-wrapper {
  display: flex;
  position: absolute;
  top: 4px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .main__gallery-block_arrows-wrapper {
    top: 97px;
  }
}
@media screen and (max-width: 575px) {
  .main__gallery-block_arrows-wrapper {
    top: 83px;
  }
}
.main__gallery-block_left-arrow-btn {
  margin-right: 50px;
}
@media screen and (max-width: 575px) {
  .main__gallery-block_left-arrow-btn {
    margin-right: 34px;
  }
}
.main__gallery-block_img-wrapper {
  overflow: hidden;
  height: 500px;
  display: grid;
  gap: 50px;
  grid-template-columns: 702px 232px;
  grid-template-rows: 133px 134px 133px;
  grid-template-areas: "img1 img2" "img1 img3" "img1 img4";
}
@media screen and (max-width: 1360px) {
  .main__gallery-block_img-wrapper {
    grid-template-columns: 1fr 0.33fr;
  }
}
@media screen and (max-width: 1260px) {
  .main__gallery-block_img-wrapper {
    grid-template-areas: "img1 img1 img1" "img2 img3 img4";
    gap: 30px;

    grid-template-columns: repeat(2, calc(100% / 3 - 30px)) 33%;
    grid-template-rows: 337px 133px;
  }
}
@media screen and (max-width: 768px) {
  .main__gallery-block_img-wrapper {
    gap: 30px;

    grid-template-columns: calc(33% - 20px) calc(34% - 20px) calc(33% - 20px);
    grid-template-rows: 450px 133px;
    height: 613px;
    grid-template-areas: "img1 img1 img1" "img2 img3 img4";
  }
}
@media screen and (max-width: 575px) {
  .main__gallery-block_img-wrapper {
    gap: 19px;

    grid-template-columns: calc(33% - 12px) calc(34% - 12px) calc(33% - 12px);
    grid-template-rows: 200px 58px;
    height: 278px;
  }
}
.main__gallery-block_img1 {
  grid-area: img1;
}
.main__gallery-block_img2 {
  grid-area: img2;
}
.main__gallery-block_img3 {
  grid-area: img3;
}
.main__gallery-block_img4 {
  grid-area: img4;
}
.main__gallery-block .gallery-imgs {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.main__progress-block {
  position: relative;

  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .main__progress-block {
    padding-top: 90px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .main__progress-block {
    padding-top: 80px;
    min-width: 220px;
  }
}
.main__progress-block_header {
  margin-bottom: 40px;
}
@media screen and (max-width: 650px) {
  .main__progress-block .russian-progress-block-header {
    width: 386px;
  }
}
.main__progress-block_arrows-wrapper {
  display: flex;
  position: absolute;
  top: 4px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .main__progress-block_arrows-wrapper {
    top: 98px;
  }
}
@media screen and (max-width: 575px) {
  .main__progress-block_arrows-wrapper {
    top: auto;
    bottom: 0;
    transform: translateY(50%);
  }
}
.main__progress-block_left-arrow-btn {
  margin-right: 50px;
}
@media screen and (max-width: 600px) {
  .main__progress-block_left-arrow-btn {
    margin-right: 30px;
  }
}
@media screen and (max-width: 575px) {
  .main__progress-block_left-arrow-btn {
    margin-right: 34px;
  }
}
@media screen and (max-width: 300px) {
  .main__progress-block_left-arrow-btn {
    margin-right: 14px;
  }
}
.main__progress-block_img-wrapper {
  display: flex;
  width: 1034px;

  overflow: hidden;
}
@media screen and (max-width: 1360px) {
  .main__progress-block_img-wrapper {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .main__progress-block_img-wrapper {
    width: 727px;
  }
}
@media screen and (max-width: 575px) {
  .main__progress-block_img-wrapper {
    width: 278px;
  }
}
.main__progress-block_nav-line-wrapper {
  width: 256px;
  height: 1px;
  background-color: #c7c7c7;

  margin-bottom: 90px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main__progress-block_nav-line-wrapper {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .main__progress-block_nav-line-wrapper {
    width: 134px;
  }
}
.main__progress-block_nav-line {
  height: 1px;
  background-color: #cc2d22;
  position: absolute;
  top: 0;
  transition: transform 0.2s ease-out;
}
@media screen and (max-width: 575px) {
  .main__progress-block_nav-line {
    width: 67px;
  }
}
.main__progress-block .progress-figures {
  margin-bottom: 40px;
  transition: transform 0.3s ease-out;
  cursor: pointer;
}
@media screen and (max-width: 575px) {
  .main__progress-block .progress-figures {
    flex-shrink: 0;
    width: 278px;
  }
}
.main__progress-block .progress-figures:not(:first-of-type) {
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .main__progress-block .progress-figures:not(:first-of-type) {
    margin-left: 28px;
  }
}
.main__progress-block .progress-imgs {
  display: block;
  margin-bottom: 15px;
  width: 326px;
  height: 200px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .main__progress-block .progress-imgs {
    width: 380px;
    height: 233px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 575px) {
  .main__progress-block .progress-imgs {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
  }
}
.main__progress-block .progress-texts {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 120%;

  font-size: 18px;
  line-height: 100%;
  color: #323e48;
}
@media screen and (max-width: 768px) {
  .main__progress-block .progress-texts {
    font-size: 21px;
  }
}
@media screen and (max-width: 575px) {
  .main__progress-block .progress-texts {
    font-size: 18px;
  }
}
.main__news-stocks-block {
  position: relative;
}
@media screen and (max-width: 768px) {
  .main__news-stocks-block {
    padding-top: 90px;
  }
}
@media screen and (max-width: 575px) {
  .main__news-stocks-block {
    padding-top: 80px;
    min-width: 220px;
  }
}
.main__news-stocks-block_header {
  margin-bottom: 40px;
}
@media screen and (max-width: 620px) {
  .main__news-stocks-block .russian-news-stocks-header {
    width: 220px;
  }
}
.main__news-stocks-block_btns-wrapper {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main__news-stocks-block_btns-wrapper {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  .main__news-stocks-block_btns-wrapper {
    margin-bottom: 30px;
  }
}
.main__news-stocks-block .btns {
  width: 145px;
  height: 50px;
  border: 1px solid #425c71;
  cursor: pointer;
  background-color: transparent;
  font-family: "Montserrat-Medium";
  line-height: 100%;
  color: #323e48;
  transition: background-color 0.3s ease-out;
  font-size: 15px;
  letter-spacing: -0.03em;
  color: #425c71;
}
@media screen and (max-width: 768px) {
  .main__news-stocks-block .btns {
    width: 150px;
    height: 55px;
    font-size: 17px;
  }
}
@media screen and (max-width: 575px) {
  .main__news-stocks-block .btns {
    width: 110px;
    height: 40px;
    font-size: 14px;
    color: #323e48;
  }
}
.main__news-stocks-block .btns:not(:first-of-type) {
  margin-left: 36px;
}
@media screen and (max-width: 768px) {
  .main__news-stocks-block .btns:not(:first-of-type) {
    margin-left: 40px;
  }
}
@media screen and (max-width: 575px) {
  .main__news-stocks-block .btns:not(:first-of-type) {
    margin-left: 20px;
  }
}
.main__news-stocks-block .btns:hover {
  background-color: #323e48;
  color: #ffffff;
}
.main__news-stocks-block_arrows-wrapper {
  position: absolute;
  top: 92px;
  right: 0;
  display: none;
}
@media screen and (max-width: 768px) {
  .main__news-stocks-block_arrows-wrapper {
    top: 120px;
  }
}
@media screen and (max-width: 575px) {
  .main__news-stocks-block_arrows-wrapper {
    top: auto;
    bottom: 0;
    transform: translateY(calc(33px + 50%));
  }
}
.main__news-stocks-block_left-arrow-btn {
  margin-right: 50px;
}
@media screen and (max-width: 575px) {
  .main__news-stocks-block_left-arrow-btn {
    margin-right: 34px;
  }
}
@media screen and (max-width: 300px) {
  .main__news-stocks-block_left-arrow-btn {
    margin-right: 14px;
  }
}
.main__news-stocks-block_cards-container {
  position: relative;
  width: 1034px;

  height: 240px;

  margin-bottom: 90px;
  overflow-x: hidden;
}
@media screen and (max-width: 1360px) {
  .main__news-stocks-block_cards-container {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .main__news-stocks-block_cards-container {
    width: 727px;
    height: 280px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .main__news-stocks-block_cards-container {
    width: 278px;
    height: 200px;

    margin-bottom: 0;
  }
}
.main__news-stocks-block_cards-wrapper {
  position: absolute;
  display: flex;
  overflow-x: hidden;

  width: 1034px;
}
@media screen and (max-width: 1360px) {
  .main__news-stocks-block_cards-wrapper {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .main__news-stocks-block_cards-wrapper {
    width: 100%;
    height: 100%;
  }
}
.main__news-stocks-block_card:not(:first-of-type) {
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .main__news-stocks-block_card:not(:first-of-type) {
    margin-left: 27px;
  }
}
.main__news-stocks-block_card {
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .main__news-stocks-block_card {
    width: 381px;
    height: 100%;

    flex-shrink: 0;
  }
}
@media screen and (max-width: 575px) {
  .main__news-stocks-block_card {
    width: 100%;
  }
}
.main__news-stocks-block .stocks-wrapper {
  z-index: 1;
  visibility: hidden;
}
.main__news-stocks-block .news-cards {
  width: 326px;
  height: 240px;

  overflow-y: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .main__news-stocks-block .news-cards {
    width: 381px;
    height: 100%;
  }
}
@media screen and (max-width: 575px) {
  .main__news-stocks-block .news-cards {
    width: 278px;
  }
}
@media screen and (max-width: 300px) {
  .main__news-stocks-block .news-cards {
    width: 100%;
  }
}
.main__news-stocks-block .news-stocks-content-wrappers {
  padding: 0 20px 25px;
}
@media screen and (max-width: 575px) {
  .main__news-stocks-block .news-stocks-content-wrappers {
    padding: 0 20px 17px 25px;
  }
}
@media screen and (max-width: 300px) {
  .main__news-stocks-block .news-stocks-content-wrappers {
    padding: 0 17px 0 17px;
  }
}
.main__news-stocks-block .news-stocks-imgs {
  display: block;
  width: 326px;

  height: 240px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .main__news-stocks-block .news-stocks-imgs {
    width: 381px;
    height: 280px;
  }
}
@media screen and (max-width: 575px) {
  .main__news-stocks-block .news-stocks-imgs {
    width: 278px;
    height: 200px;
  }
}
@media screen and (max-width: 300px) {
  .main__news-stocks-block .news-stocks-imgs {
    width: 100%;
    object-fit: contain;
  }
}
.main__news-stocks-block .news-stocks-headers {
  font-family: "Roboto Slab Medium";
  font-size: 20px;
  line-height: 120%;
  color: #323e48;
  margin-bottom: 10px;
}
@media screen and (max-width: 575px) {
  .main__news-stocks-block .news-stocks-headers {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 300px) {
  .main__news-stocks-block .news-stocks-headers {
    margin-bottom: 5px;
  }
}
.main__news-stocks-block .news-stocks-subheaders {
  font-family: "Montserrat";
  font-size: 15px;
  line-height: 120%;
  color: #98999b;

  margin-bottom: 5px;
}
.main__news-stocks-block .watch-arrow-wrappers {
  display: flex;
  justify-content: space-between;

  align-items: flex-end;
}
.main__news-stocks-block .watch-date-wrappers {
  display: flex;

  align-items: center;
}
.main__news-stocks-block .watch-imgs {
  width: 17px;
  height: 17px;
}
.main__news-stocks-block .news-stocks-block-dates {
  margin-left: 12px;
  font-family: "Montserrat";
  font-size: 12px;
  line-height: 120%;
  color: #98999b;
}
.main__news-stocks-block .news-stocks-block-arrow-imgs {
  width: 35px;
  height: 35px;
}
.main__news-stocks-block_nav-line-wrapper {
  width: 256px;
  height: 1px;
  background-color: #c7c7c7;

  margin-bottom: 90px;
  position: relative;
  display: none;
}
@media screen and (max-width: 768px) {
  .main__news-stocks-block_nav-line-wrapper {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .main__news-stocks-block_nav-line-wrapper {
    width: 134px;
    position: absolute;

    bottom: -33px;
  }
}
.main__news-stocks-block_nav-line {
  height: 1px;
  background-color: #cc2d22;
  position: absolute;
  top: 0;
  transition: transform 0.2s ease-out;
}
@media screen and (max-width: 575px) {
  .main__news-stocks-block_nav-line {
    width: 67px;
  }
}
.main__contacts-block {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .main__contacts-block {
    margin-bottom: 0;

    padding-top: 90px;
  }
}
@media screen and (max-width: 575px) {
  .main__contacts-block {
    padding-top: 80px;
  }
}
.main__contacts-block_header {
  margin-bottom: 30px;
}
@media screen and (max-width: 575px) {
  .main__contacts-block .mobile-contacts-header {
    margin: 0 0 30px !important;
  }
}
.main__contacts-block_content-wrapper {
  display: grid;
  column-gap: 50px;
  row-gap: 45px;
  grid-template-columns: 326px 608px;
  grid-template-areas: "contacts-container   map" "all-rights           logoes-wrapper";
}
@media screen and (max-width: 1360px) {
  .main__contacts-block_content-wrapper {
    grid-template-columns: 0.54fr 1fr;
  }
}
@media screen and (max-width: 1250px) {
  .main__contacts-block_content-wrapper {
    grid-template-columns: 265px 1fr;
    column-gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .main__contacts-block_content-wrapper {
    column-gap: 28px;
    row-gap: 104px;

    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 449px 28px;
  }
}
@media screen and (max-width: 620px) {
  .main__contacts-block_content-wrapper {
    column-gap: 10px;
  }
}
@media screen and (max-width: 575px) {
  .main__contacts-block_content-wrapper {
    display: block;
    min-width: 220px;
  }
}
.main__contacts-block_contacts-container {
  grid-area: contacts-container;
  padding: 30px 0 30px 40px;
  background-color: #f4f4f4;
}
@media screen and (max-width: 1250px) {
  .main__contacts-block_contacts-container {
    padding: 30px 0 30px 20px;
  }
}
@media screen and (max-width: 768px) {
  .main__contacts-block_contacts-container {
    padding: 30px 0 30px 40px;
  }
}
@media screen and (max-width: 650px) {
  .main__contacts-block_contacts-container {
    padding: 30px 10px 30px 10px;
  }
}
@media screen and (max-width: 575px) {
  .main__contacts-block_contacts-container {
    padding: 30px 0;
    margin-bottom: 30px;
    text-align: center;
  }
}
@media screen and (max-width: 320px) {
  .main__contacts-block_contacts-container {
    text-align: start;
    padding: 30px 0 30px 25px;
  }
}
@media screen and (max-width: 270px) {
  .main__contacts-block_contacts-container {
    padding: 30px 0 30px 10px;
  }
}
.main__contacts-block_contacts-container .contacts-info-wrappers {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .main__contacts-block_contacts-container .contacts-info-wrappers {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 575px) {
  .main__contacts-block_contacts-container .contacts-info-wrappers {
    margin-bottom: 30px;
  }
}
.main__contacts-block_contacts-container .info-headers {
  margin-bottom: 8px;

  font-family: "Montserrat";
  font-size: 12px;
  line-height: 120%;
  color: #98999b;
}
@media screen and (max-width: 768px) {
  .main__contacts-block_contacts-container .info-headers {
    font-size: 13px;
  }
}
@media screen and (max-width: 575px) {
  .main__contacts-block_contacts-container .info-headers {
    font-size: 12px;
  }
}
.main__contacts-block_contacts-container .info-texts {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 120%;

  color: #323e48;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .main__contacts-block_contacts-container .info-texts {
    font-size: 17px;
  }
}
@media screen and (max-width: 575px) {
  .main__contacts-block_contacts-container .info-texts {
    font-size: 15px;
  }
}
.main__contacts-block_social-networks-wrapper {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .main__contacts-block_social-networks-wrapper {
    justify-content: center;
  }
}
@media screen and (max-width: 320px) {
  .main__contacts-block_social-networks-wrapper {
    justify-content: flex-start;
  }
}
.main__contacts-block_social-networks-wrapper a {
  text-decoration: none;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .main__contacts-block_facebook {
    width: 10px;
    height: 22px;
  }
}
@media screen and (max-width: 575px) {
  .main__contacts-block_facebook {
    width: 8px;
    height: 18px;
  }
}
@media screen and (max-width: 768px) {
  .main__contacts-block_youtube {
    width: 24px;
    height: 16px;
  }
}
@media screen and (max-width: 575px) {
  .main__contacts-block_youtube {
    width: 20px;
    height: 13px;
  }
}
.main__contacts-block_social-networks-wrapper a:not(:first-of-type) {
  margin-left: 31px;
}
.main__contacts-block_btns-wrapper {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 575px) {
  .main__contacts-block_btns-wrapper {
    align-items: center;
  }
}
@media screen and (max-width: 320px) {
  .main__contacts-block_btns-wrapper {
    align-items: flex-start;
  }
}
.main__contacts-block_btns-wrapper .contact-btns {
  width: 225px;
  height: 50px;
  border: 1px solid #425c71;
  cursor: pointer;
  background-color: transparent;
  font-family: "Montserrat-Medium";
  line-height: 100%;
  color: #323e48;
  transition: background-color 0.3s ease-out;
  font-size: 15px;
  letter-spacing: -0.03em;
  color: #425c71;
}
@media screen and (max-width: 575px) {
  .main__contacts-block_btns-wrapper .contact-btns {
    width: 200px;
    height: 50px;
    border: 1px solid #425c71;
    cursor: pointer;
    background-color: transparent;
    font-family: "Montserrat-Medium";
    line-height: 100%;
    color: #323e48;
    transition: background-color 0.3s ease-out;
    font-size: 15px;
    letter-spacing: -0.03em;
    color: #425c71;
    font-size: 14px;
  }
}
.main__contacts-block_btn1 {
  margin-bottom: 19px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .main__contacts-block_btn1 {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 575px) {
  .main__contacts-block_btn1 {
    margin-bottom: 10px;
  }
}
.main__contacts-block_btn2 {
  border-color: transparent !important;
}
.main__contacts-block_btn2:hover {
  background-color: #cc2d22 !important;
}
.main__contacts-block_map-wrapper {
  grid-area: map;
}
@media screen and (max-width: 575px) {
  .main__contacts-block_map-wrapper {
    height: 344px;
    margin-bottom: 30px;
  }
}
.main__contacts-block_map {
  width: 100%;
  height: 100%;
}
.main__contacts-block_all-rights {
  grid-area: all-rights;
  display: flex;
  align-items: center;
}
.main__contacts-block_rights-text {
  font-family: "Montserrat";
  font-size: 12px;
  line-height: 120%;
  color: #98999b;
}
@media screen and (max-width: 768px) {
  .main__contacts-block_rights-text {
    font-size: 13px;
  }
}
@media screen and (max-width: 575px) {
  .main__contacts-block_rights-text {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
.main__contacts-block_logoes-wrapper {
  grid-area: logoes-wrapper;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .main__contacts-block_logoes-wrapper {
    justify-content: flex-start;
  }
}
.main__contacts-block_logoes-text {
  font-family: "Montserrat";
  font-size: 12px;
  line-height: 120%;
  color: #98999b;
}
@media screen and (max-width: 768px) {
  .main__contacts-block_logoes-text {
    font-size: 13px;
  }
}
@media screen and (max-width: 575px) {
  .main__contacts-block_logoes-text {
    font-size: 12px;
  }
}
.main__contacts-block_link2 {
  display: flex;
  align-items: center;
}
.main__contacts-block_perfect-group {
  margin-left: 20px;
  cursor: pointer;
}
@media screen and (max-width: 1250px) {
  .main__contacts-block_perfect-group {
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .main__contacts-block_perfect-group {
    width: 57px;
    height: 28px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 575px) {
  .main__contacts-block_perfect-group {
    width: 49px;
    height: 24px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 270px) {
  .main__contacts-block_perfect-group {
    margin-left: 10px;
  }
}
.main__contacts-block_vline {
  margin-left: 13px;
}
@media screen and (max-width: 1250px) {
  .main__contacts-block_vline {
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .main__contacts-block_vline {
    margin-left: 16px;
  }
}
@media screen and (max-width: 575px) {
  .main__contacts-block_vline {
    margin-left: 13px;
  }
}
.main__contacts-block_edelburg {
  margin-left: 14px;
  cursor: pointer;
}
@media screen and (max-width: 1250px) {
  .main__contacts-block_edelburg {
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .main__contacts-block_edelburg {
    width: 72px;
    height: 21px;
    margin-left: 16px;
  }
}
@media screen and (max-width: 575px) {
  .main__contacts-block_edelburg {
    width: 62px;
    height: 18px;
    margin-left: 14px;
  }
}

.animated {
  animation: fade 0.8s linear;
}

.arrows {
  width: 44px;
  height: 37px;
  cursor: pointer;
  transition: filter 0.2s ease-out;
}
@media screen and (max-width: 768px) {
  .arrows {
    width: 51px;
    height: 43px;
  }
}
@media screen and (max-width: 575px) {
  .arrows {
    width: 32px;
    height: 26px;
  }
}

.arrows:hover {
  filter: invert(29%) sepia(92%) saturate(1369%) hue-rotate(338deg)
    brightness(81%) contrast(108%);
}

.arrow-btns {
  border: none;
  background-color: transparent;
  padding: 0;
}

.btns-color-default {
  background-color: #323e48 !important;
  color: #ffffff !important;
}

.white-btns {
  transition: background-color 0.3s ease-out, border-color 0.3s ease-out !important;
  color: #323e48 !important;
}
.white-btns:hover {
  border-color: transparent;
  background-color: #ffffff;
}
@media (pointer: coarse), (pointer: none) {
  .white-btns:hover {
    border-color: #425c71;
    background-color: transparent;
  }
}

.red-btns {
  transition: background-color 0.3s ease-out;
  border-color: transparent !important;
}
.red-btns:hover {
  background-color: #cc2d22 !important;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .desktop-img-version {
    display: none;
  }
}

.phablet-img-version {
  display: none;
}
@media screen and (max-width: 768px) {
  .phablet-img-version {
    display: block;
  }
}

.russian {
  display: none;
}

.pop-up-back {
  position: fixed;
  top: 0;
  left: 0;
  transition: opacity 0.5s linear, visibility 0.5s linear;
  height: 100vh;
  width: 100%;
  z-index: 3;
  background-color: rgba(50, 62, 72, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pop-up-back.disabled {
  opacity: 0;
  visibility: hidden;
}

.banner {
  position: relative;
}

.banner__img {
  max-width: 891px;
  height: auto;
  object-fit: cover;
}

.banner__cross-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}

.banner__cross-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
}

@media screen and (max-width: 1000px) {
  .banner {
    width: 90%;
    min-width: 250px;
  }

  .banner__img {
    width: 100%;
  }

  .banner__cross-btn {
    width: 15px;
    height: 15px;
    top: 10px;
    right: 10px;
  }
}

@media screen and (max-width: 350px) {
  .banner__cross-btn {
    width: 10px;
    height: 10px;
  }
}

.pop-ups-back {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;

  height: 100vh;
  width: 100%;

  transition: opacity 0.5s linear;
  opacity: 0;

  z-index: 1;

  visibility: hidden;
}
@media screen and (max-width: 1366px) {
  .pop-ups-back {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .pop-ups-back {
  }
}

.pops-up-active {
  opacity: 1;
  z-index: 2;
}

.pops-up-active-dark {
  opacity: 1;
  z-index: 3;

  background-color: rgba(50, 62, 72, 0.5);
  visibility: visible;
}

.pop .pops-up-active-dark-mini-call {
  opacity: 1;
  z-index: 3;

  background-color: rgba(50, 62, 72, 0.5);
  visibility: visible;
}

.progress-block_pop-up {
  width: 1084px;
  height: 100%;
  opacity: 0;
  visibility: hidden;

  z-index: -1;

  transition: opacity 0.5s linear;
  padding: 50px 0 65px;

  position: fixed;
  top: 0;

  column-gap: 50px;
  grid-template-columns: 44px 794px 44px;
  grid-template-rows: 59px 450px 44px;

  display: grid;
  grid-template-areas: "close      close       close" "left-arrow img         right-arrow" ".          text-nav    .";
  overflow-y: auto;
}
@media screen and (max-width: 1360px) {
  .progress-block_pop-up {
    width: auto;
  }
}
@media screen and (max-width: 1250px) {
  .progress-block_pop-up {
    padding: 1em 0;
    width: 70%;
    column-gap: 10px;
    grid-template-columns: 44px 1fr 44px;
  }
}
@media screen and (max-width: 800px) {
  .progress-block_pop-up {
    width: 68%;
  }
}
@media screen and (max-width: 768px) {
  .progress-block_pop-up {
    grid-template-columns: 44px 76% 44px;
    grid-template-rows: 59px 341px 44px;

    column-gap: 10px;
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .progress-block_pop-up {
    grid-template-columns: 44px 71% 44px;
  }
}
@media screen and (max-width: 575px) {
  .progress-block_pop-up {
    padding: 21px 0px;
    width: auto;

    grid-template-columns: 180px 98px;
    grid-template-rows: 66px 200px 33px 46px;
    column-gap: 0;
    grid-template-areas: "close       close" "img         img" "text        text" "nav         arrows";
  }
}
.progress-block_pop-up * {
  transition: opacity 0.5s linear;
}
.progress-block_pop-up-close-wrapper {
  grid-area: close;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}
@media screen and (max-width: 575px) {
  .progress-block_pop-up-close-wrapper {
    margin-bottom: 0;
  }
}
.progress-block_pop-up-close {
  width: 44px;
  height: 44px;
  cursor: pointer;
}
@media screen and (max-width: 575px) {
  .progress-block_pop-up-close {
    display: none;
  }
}
.progress-block_pop-up .small-close {
  display: none;
}
@media screen and (max-width: 575px) {
  .progress-block_pop-up .small-close {
    display: block;
    width: 26px;
    height: 25px;
  }
}
.progress-block_pop-up .progress-imgs-wrappers {
  grid-area: img;
  position: relative;
}
.progress-block_pop-up-imgs {
  opacity: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: opacity 0.3s ease-out;
}
.progress-block_pop-up_pop-up-left-arrow-btn {
  grid-area: left-arrow;
}
.progress-block_pop-up_pop-up-right-arrow-btn {
  grid-area: right-arrow;
}
.progress-block_pop-up-text-nav-wrapper {
  grid-area: text-nav;

  position: relative;
  margin-top: 20px;
}
@media screen and (max-width: 575px) {
  .progress-block_pop-up-text-nav-wrapper {
    grid-area: auto;
    margin-top: 0;
  }
}
.progress-block_pop-up-texts {
  font-family: "Roboto Slab Medium";
  font-size: 20px;
  line-height: 120%;
  color: #323e48;
  opacity: 0;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 575px) {
  .progress-block_pop-up-texts {
    grid-area: text;
    bottom: 0;
  }
}
.progress-block_pop-up-nav-line-wrapper {
  width: 256px;
  height: 1px;
  background-color: #c7c7c7;

  position: absolute;
  margin-top: 10px;
  right: 0;
}
@media screen and (max-width: 575px) {
  .progress-block_pop-up-nav-line-wrapper {
    grid-area: nav;
    margin-top: 0;
    top: 66px;
    left: 0;
    right: auto;
    width: 134px;
  }
}
.progress-block_pop-up-nav-line {
  height: 1px;
  background-color: #cc2d22;
  position: absolute;
  top: 0;
  transition: transform 0.3s ease-out;
}
@media screen and (max-width: 575px) {
  .progress-block_pop-up-left-arrow-btn {
    left: 0;
  }
}
.progress-block_pop-up .arrow-btns {
  border: none;
  background-color: transparent;
  padding: 0;

  width: 100%;
  height: 100%;
}
@media screen and (max-width: 575px) {
  .progress-block_pop-up .arrow-btns {
    grid-area: arrows;
    width: 32px;
    height: 26px;
    z-index: 3;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
.progress-block_pop-up .arrows {
  width: 44px;
  height: 37px;

  cursor: pointer;
  transition: filter 0.3s ease-out;
}
@media screen and (max-width: 575px) {
  .progress-block_pop-up .arrows {
    width: 32px;
    height: 26px;
  }
}

.pops-up-active {
  opacity: 1;
  z-index: 2;
  visibility: visible;
}

.news-stocks-block_pop-up {
  overflow-y: auto;
  visibility: hidden;
  width: 1084px;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s linear;
  position: fixed;
  top: 0;

  padding: 1em 0 123px;
  display: grid;

  grid-template-columns: 94px 796px 94px;

  grid-template-rows: 44px 80px 550px 184px;
  grid-template-areas: ".      close           close" ".      header-date     ." ".      img             ." ".      text            .";
}
@media screen and (max-width: 1250px) {
  .news-stocks-block_pop-up {
    width: 70%;

    padding: 1em 0;
    grid-template-columns: 1fr 44px;
    grid-template-rows: 73px 117px 406px 184px;

    grid-template-areas: "close           close" "header-date     ." "img             ." "text            .";
  }
}
@media screen and (max-width: 900px) {
  .news-stocks-block_pop-up {
    grid-template-rows: 73px 117px 288px 184px;
  }
}
@media screen and (max-width: 768px) {
  .news-stocks-block_pop-up {
    width: 100%;
    grid-template-columns: 86% 44px;

    grid-template-rows: 73px 117px 360px 184px;
  }
}
@media screen and (max-width: 650px) {
  .news-stocks-block_pop-up {
    grid-template-columns: 83% 44px;
  }
}
@media screen and (max-width: 575px) {
  .news-stocks-block_pop-up {
    padding: 21px 0;
    width: auto;

    row-gap: 10px;
    grid-template-columns: minmax(242px, calc(100vw - 42px));

    grid-template-rows: 25px 62px auto;

    grid-template-areas: "close" "header-date" "text";
  }
}
@media screen and (max-width: 284px) {
  .news-stocks-block_pop-up {
    grid-template-rows: 25px 92px auto;
  }
}
.news-stocks-block_pop-up * {
  transition: opacity 0.5s linear;
}
.news-stocks-block_pop-up-close-wrapper {
  grid-area: close;
  display: flex;
  justify-content: flex-end;

  margin-bottom: 0;
}
@media screen and (max-width: 820px) {
  .news-stocks-block_pop-up-close-wrapper {
    margin-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .news-stocks-block_pop-up-close-wrapper {
    margin-right: 0;
  }
}
.news-stocks-block_pop-up-close {
  width: 44px;
  height: 44px;
  cursor: pointer;
}
@media screen and (max-width: 575px) {
  .news-stocks-block_pop-up-close {
    display: none;
  }
}
.news-stocks-block_pop-up .small-close-news-stocks {
  display: none;
}
@media screen and (max-width: 575px) {
  .news-stocks-block_pop-up .small-close-news-stocks {
    display: block;
    width: 26px;
    height: 25px;
  }
}
.news-stocks-block_pop-up-header-date-wrapper {
  grid-area: header-date;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .news-stocks-block_pop-up-header-date-wrapper {
    display: block;
    margin-bottom: 0 !important;
  }
}
.news-stocks-block_pop-up-headers {
  font-size: 30px !important;
  margin-bottom: 0 !important;

  width: auto;
  padding-right: 10px;
  display: none;
}
@media screen and (max-width: 1080px) {
  .news-stocks-block_pop-up-headers {
    max-width: 380px;
  }
}
@media screen and (max-width: 580px) {
  .news-stocks-block_pop-up-headers {
    max-width: 310px;
  }
}
@media screen and (max-width: 575px) {
  .news-stocks-block_pop-up-headers {
    font-size: 24px !important;
  }
}
@media screen and (max-width: 350px) {
  .news-stocks-block_pop-up-headers {
    max-width: 245px;
  }
}
@media screen and (max-width: 575px) {
  .news-stocks-block_pop-up .mobile-headers-news-stocks {
    margin-bottom: 0 !important;
  }
}
.news-stocks-block_pop-up-date-watchs {
  display: flex;
  margin-top: 7px;
}
.news-stocks-block_pop-up-watchs {
  width: 17px;
  height: 17px;
}
.news-stocks-block_pop-up-dates {
  grid-area: date;
  font-family: "Montserrat";
  font-size: 15px;
  line-height: 120%;
  color: #98999b;
  margin-left: 12px;
  display: none;
}
.news-stocks-block_pop-up-imgs {
  grid-area: img;

  opacity: 0;
  width: 100%;
  height: 100%;

  object-fit: cover;
}
@media screen and (max-width: 1250px) {
  .news-stocks-block_pop-up-imgs {
    object-fit: contain;
    object-position: top;
  }
}
@media screen and (max-width: 768px) {
  .news-stocks-block_pop-up-imgs {
    margin-bottom: 0;

    object-fit: contain;
    object-position: top;
  }
}
@media screen and (max-width: 575px) {
  .news-stocks-block_pop-up-imgs {
    display: none;
  }
}
.news-stocks-block_pop-up-text-wrapper {
  margin-top: 27px;
  grid-area: text;
  opacity: 0;
}
.news-stocks-block_pop-up-texts {
  font-family: "Montserrat";
  font-size: 15px;
  line-height: 130%;
  color: #98999b;
}
@media screen and (max-width: 768px) {
  .news-stocks-block_pop-up-texts {
    margin-top: 2em;
  }
}
@media screen and (max-width: 575px) {
  .news-stocks-block_pop-up-texts {
    margin-top: 0;
  }
}
.news-stocks-block_pop-up .pandemia-text {
  margin-top: 0;
  padding-top: 60px;
}

.pops-up-active {
  opacity: 1;
  z-index: 2;
  visibility: visible;
}

.news-stocks-block_pop-up-date-watchs {
  display: flex;
}
@media screen and (max-width: 575px) {
  .news-stocks-block_pop-up-date-watchs {
    display: none;
  }
}

.apartments_pop-up {
  overflow-y: auto;

  width: 1134px;

  height: 100vh;
  opacity: 0;
  visibility: hidden;

  z-index: -1;
  transition: opacity 0.5s linear;
  position: fixed;
  top: 0;

  padding: 1em 0;
  display: grid;
  column-gap: 10px;

  grid-template-columns: 1060px 44px;
  grid-template-rows: 44px 710px;
  transform: translateX(-50px);

  grid-template-areas: "close  close" "img    .";
}
@media screen and (max-width: 1430px) {
  .apartments_pop-up {
    width: auto;

    grid-template-columns: minmax(1000px, 1fr) 44px;
    grid-template-rows: 44px auto;
    column-gap: 5px;
  }
}
@media screen and (max-height: 800px) {
  .apartments_pop-up {
    grid-template-rows: 44px 734px;
  }
}
@media screen and (max-width: 1320px) and (min-height: 800px) {
  .apartments_pop-up {
    row-gap: 10px;
    grid-template-areas: "close  close" "img    img";
  }
}
@media screen and (min-width: 1320px) and (min-height: 800px) {
  .apartments_pop-up {
    row-gap: 10px;
    grid-template-rows: 44px 790px;
    grid-template-areas: "close  close" "img    img";
  }
}
@media screen and (max-width: 1360px) {
  .apartments_pop-up {
    transform: translateX(0);
    grid-template-columns: 0.95fr 44px;
  }
}
@media screen and (max-width: 950px) {
  .apartments_pop-up {
    grid-template-rows: 44px 80%;
  }
}
@media screen and (max-width: 768px) {
  .apartments_pop-up {
    padding: 2em 1em 0 0;

    grid-template-columns: 1fr 44px;
    grid-template-rows: 44px 444px;
    column-gap: 5px;
  }
}
@media screen and (max-width: 575px) {
  .apartments_pop-up {
    padding: 21px 0 0;

    width: 94%;
    column-gap: 0;
    row-gap: 10px;

    grid-template-columns: 1fr;
    grid-template-rows: 20px 1fr;
    grid-template-areas: "close" "img";
  }
}
@media screen and (max-width: 430px) {
  .apartments_pop-up {
    width: 87%;
  }
}
.apartments_pop-up * {
  transition: opacity 0.5s linear;
}
.apartments_pop-up-close-wrapper {
  grid-area: close;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1250px) {
  .apartments_pop-up-close-wrapper {
    padding-right: 1em;
  }
}
@media screen and (max-width: 768px) {
  .apartments_pop-up-close-wrapper {
    padding-right: 0;
  }
}
.apartments_pop-up-close {
  cursor: pointer;
}
.apartments_pop-up-imgs {
  grid-area: img;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;

  object-fit: cover;
}
@media screen and (max-width: 1360px) {
  .apartments_pop-up-imgs {
    object-position: top;
    object-fit: contain;
  }
}
@media screen and (max-width: 1250px) {
  .apartments_pop-up-imgs {
    object-fit: contain;
    object-position: top;
  }
}

.pops-up-active {
  opacity: 1;
  z-index: 2;
  visibility: visible;
}

.call-page {
  overflow-y: auto;
  position: fixed;
  height: 100%;
  z-index: 2;

  top: 0;
  right: 0;
  transform: translateX(100%);

  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: transform 0.5s ease-in-out;
}
@media screen and (max-width: 1366px) {
  .call-page {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .call-page {
    display: block;
    z-index: 3;
    background-color: #f4f4f4;
  }
}
.call-page__container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1034px;
  height: 325px;
  background-color: #f4f4f4;
  position: relative;
}
@media screen and (max-width: 1050px) {
  .call-page__container {
    width: 100%;
    justify-content: flex-end;
    padding-right: 1em;
  }
}
@media screen and (max-width: 768px) {
  .call-page__container {
    width: 100%;
    height: 100%;
    align-items: flex-start;

    padding: 1em 0 0 0;
  }
}
@media screen and (max-width: 575px) {
  .call-page__container {
    padding-top: 21px;
    justify-content: center;
  }
}
@media screen and (max-width: 300px) {
  .call-page__container {
    padding: 21px 1em 0;
  }
}
.call-page__content-wrapper1 {
  opacity: 1;

  position: absolute;
  z-index: 2;

  transition: opacity 0.5s ease-in-out;
  display: grid;
  column-gap: 50px;
  grid-template-columns: 514px 232px 44px;

  grid-template-areas: "header     btn   close" "subheader  btn   close" "form       btn   close" "warning    btn   close";
}
@media screen and (max-width: 1050px) {
  .call-page__content-wrapper1 {
    column-gap: 12px;
    grid-template-columns: 480px 190px 44px;
  }
}
@media screen and (max-width: 768px) {
  .call-page__content-wrapper1 {
    padding: 0 40px 0 92px;
    width: 100%;

    grid-template-rows: 38px 98px repeat(5, auto);
    column-gap: 84px;
    grid-template-areas: ".          close" ".          close" "header     close" "subheader  close" "form       close" "warning    close" "btn        close";
  }
}
@media screen and (max-width: 720px) {
  .call-page__content-wrapper1 {
    grid-template-columns: 1fr 38px;
    grid-template-areas: ".          close" ".          close" "header     header" "subheader  subheader" "form       form" "warning    warning" "btn        btn";
  }
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper1 {
    padding: 0;
    column-gap: 0;
    width: 278px;
    grid-template-rows: 25px repeat(5, auto);
    grid-template-columns: 278px;

    grid-template-areas: "close" "header" "subheader" "form" "warning" "btn";
  }
}
@media screen and (max-width: 300px) {
  .call-page__content-wrapper1 {
    width: 89%;
    min-width: 200px;
    grid-template-columns: 100%;
  }
}
.call-page__content-wrapper1_header {
  grid-area: header;
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: normal;
  font-size: 35px;
  line-height: 130%;
  color: #323e48;
  font-size: 28px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .call-page__content-wrapper1_header {
    font-size: 40px;
  }
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper1_header {
    font-size: 24px;
    width: 278px;
    padding-bottom: 15px;
  }
}
.call-page__content-wrapper1_subheader {
  grid-area: subheader;
  font-family: "Montserrat-Medium";
  line-height: 100%;
  color: #323e48;
  font-size: 15px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #4e6172;
}
@media screen and (max-width: 768px) {
  .call-page__content-wrapper1_subheader {
    font-size: 20px;
    color: #323e48;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper1_subheader {
    font-size: 14px;
    color: #4e6172;
    padding-bottom: 30px;
  }
}
.call-page__content-wrapper1_form {
  grid-area: form;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 768px) {
  .call-page__content-wrapper1_form {
    padding-bottom: 20px;
    flex-direction: column;
  }
}
.call-page__content-wrapper1_form input {
  background-color: transparent;
  width: 232px;
  height: 38px;
  outline: none;
  border: none;
  border-bottom: 1px solid #425c71;
  font-family: "Montserrat-Medium";
  line-height: 100%;
  color: #323e48;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 768px) {
  .call-page__content-wrapper1_form input {
    width: 100%;
    font-family: "Montserrat-Medium";
    line-height: 100%;
    color: #323e48;
    font-size: 22px;
  }
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper1_form input {
    font-size: 14px;
  }
}
.call-page__content-wrapper1_form input:-webkit-autofill,
.call-page__content-wrapper1_form input:-webkit-autofill:hover,
.call-page__content-wrapper1_form input:-webkit-autofill:focus {
  background-color: transparent;
}
.call-page__content-wrapper1_form input::placeholder {
  font-family: "Montserrat-Medium";
  line-height: 100%;
  color: #323e48;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 768px) {
  .call-page__content-wrapper1_form input::placeholder {
    font-size: 22px;
  }
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper1_form input::placeholder {
    font-size: 14px;
  }
}
.call-page__content-wrapper1_name {
  padding: 0 0 15px 0;
}
@media screen and (max-width: 768px) {
  .call-page__content-wrapper1_name {
    margin-bottom: 40px;
    padding-bottom: 19px;
  }
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper1_name {
    margin-bottom: 30px;
    padding-bottom: 10px;
  }
}
.call-page__content-wrapper1_flag {
  width: 17px;
  height: 10px;
  position: absolute;
  right: 232px;
  transform: translate(100%, 4px);
}
@media screen and (max-width: 768px) {
  .call-page__content-wrapper1_flag {
    left: 0;
    bottom: 0;
    right: auto;
    transform: translateY(-47px);
  }
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper1_flag {
    transform: translateY(-38px);
  }
}
.call-page__content-wrapper1_tel {
  padding: 0 0 15px 29px;
}
@media screen and (max-width: 768px) {
  .call-page__content-wrapper1_tel {
    padding-bottom: 19px;
  }
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper1_tel {
    padding-bottom: 10px;
  }
}
.call-page__content-wrapper1_warning {
  grid-area: warning;
  font-family: "Montserrat";
  font-size: 12px;
  line-height: 120%;
  color: #98999b;
}
@media screen and (max-width: 768px) {
  .call-page__content-wrapper1_warning {
    font-size: 14px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper1_warning {
    font-size: 9px;
    padding-bottom: 30px;
  }
}
.call-page__content-wrapper1_btn {
  grid-area: btn;
  cursor: pointer;
  width: 232px;
  height: 232px;
  border-radius: 50%;
  background-color: #323e48;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Roboto Slab Medium";
  font-style: normal;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  outline: none;
  padding: 0;
  transition: background-color 0.3s ease-out;
}
@media screen and (max-width: 1050px) {
  .call-page__content-wrapper1_btn {
    width: 190px;
    height: 190px;
  }
}
@media screen and (max-width: 768px) {
  .call-page__content-wrapper1_btn {
    height: 228px;
    width: 228px;
    font-size: 16px;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper1_btn {
    width: 200px;
    height: 50px;
    border: 1px solid #425c71;
    cursor: pointer;
    background-color: transparent;
    font-family: "Montserrat-Medium";
    line-height: 100%;
    color: #323e48;
    transition: background-color 0.3s ease-out;
    font-size: 15px;
    letter-spacing: -0.03em;
    color: #425c71;
    border-radius: 0;
    background-color: #323e48;
    color: #ffffff;
    font-size: 14px;
    text-transform: none;
  }
}
.call-page__content-wrapper1_close-wrapper {
  grid-area: close;
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper1_close-wrapper {
    display: flex;
    justify-content: flex-end;
  }
}
.call-page__content-wrapper1_close {
  cursor: pointer;
  width: 44px;
  height: 44px;
}
@media screen and (max-width: 768px) {
  .call-page__content-wrapper1_close {
    width: 38px;
    height: 38px;
  }
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper1_close {
    display: none;
  }
}
.call-page__content-wrapper1_close-nav {
  cursor: pointer;
  width: 26px;
  height: 25px;
  display: none;
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper1_close-nav {
    display: block;
  }
}
@media screen and (max-width: 300px) {
  .call-page .russian-content-wrapper1,
  .call-page .russian-content-wrapper2 {
    min-width: 267px;
  }
}
.call-page__content-wrapper2 {
  opacity: 0;
  z-index: 1;

  transition: opacity 0.5s ease-in-out;
  display: grid;
  column-gap: 50px;
  grid-template-columns: 420px 44px 232px 44px;
  grid-template-areas: "header     .   btn   close" "subheader  .   btn   close";
}
@media screen and (max-width: 1050px) {
  .call-page__content-wrapper2 {
    grid-template-areas: "header     btn   close" "subheader  btn   close";
    column-gap: 12px;
    grid-template-columns: 480px 190px 44px;
  }
}
@media screen and (max-width: 768px) {
  .call-page__content-wrapper2 {
    width: 100%;
    padding: 0 40px 0 92px;

    grid-template-columns: 1fr 38px;
    grid-template-rows: 38px 98px repeat(3, auto);
    grid-template-areas: ".          close" ".          close" "header     close" "subheader  close" "btn        close";
  }
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper2 {
    padding: 0;
    width: 278px;
    column-gap: 0;
    grid-template-rows: 25px repeat(3, auto);
    grid-template-columns: 278px;
    grid-template-areas: "close" "header" "subheader" "form" "warning" "btn";
  }
}
@media screen and (max-width: 300px) {
  .call-page__content-wrapper2 {
    width: 89%;
    min-width: 236px;
    grid-template-columns: 100%;
  }
}
.call-page__content-wrapper2_header {
  grid-area: header;
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: normal;
  font-size: 35px;
  line-height: 130%;
  color: #323e48;
  font-size: 28px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .call-page__content-wrapper2_header {
    font-size: 40px;
  }
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper2_header {
    font-size: 24px;
    width: 278px;
    padding-bottom: 15px;
    margin-bottom: 0;
  }
}
.call-page__content-wrapper2_green-text {
  color: #2b8d2f;
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper2_green-text {
    color: #323e48;
  }
}
.call-page__content-wrapper2_subheader {
  grid-area: subheader;
  font-family: "Montserrat-Medium";
  line-height: 100%;
  color: #323e48;
  font-size: 15px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #4e6172;
}
@media screen and (max-width: 768px) {
  .call-page__content-wrapper2_subheader {
    font-size: 20px;
    color: #323e48;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper2_subheader {
    font-size: 14px;
    color: #4e6172;
    padding-bottom: 30px;
  }
}
.call-page__content-wrapper2_btn {
  grid-area: btn;
  cursor: pointer;
  width: 232px;
  height: 232px;
  border-radius: 50%;
  background-color: #323e48;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Roboto Slab Medium";
  font-style: normal;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  outline: none;
  padding: 0;
  transition: background-color 0.3s ease-out;
}
@media screen and (max-width: 1050px) {
  .call-page__content-wrapper2_btn {
    width: 190px;
    height: 190px;
  }
}
@media screen and (max-width: 768px) {
  .call-page__content-wrapper2_btn {
    height: 228px;
    width: 228px;
    font-size: 16px;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper2_btn {
    width: 200px;
    height: 50px;
    border: 1px solid #425c71;
    cursor: pointer;
    background-color: transparent;
    font-family: "Montserrat-Medium";
    line-height: 100%;
    color: #323e48;
    transition: background-color 0.3s ease-out;
    font-size: 15px;
    letter-spacing: -0.03em;
    color: #425c71;
    border-radius: 0;
    background-color: #323e48;
    color: #ffffff;
    font-size: 14px;
    text-transform: none;
    display: block;
  }
}
.call-page__content-wrapper2_btn-text {
  width: 162px;
}
.call-page__content-wrapper2_close-wrapper {
  grid-area: close;
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper2_close-wrapper {
    display: flex;
    justify-content: flex-end;
  }
}
.call-page__content-wrapper2_close {
  cursor: pointer;
  width: 44px;
  height: 44px;
}
@media screen and (max-width: 768px) {
  .call-page__content-wrapper2_close {
    width: 38px;
    height: 38px;
  }
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper2_close {
    display: none;
  }
}
.call-page__content-wrapper2_close-nav {
  cursor: pointer;
  width: 26px;
  height: 25px;
  display: none;
}
@media screen and (max-width: 575px) {
  .call-page__content-wrapper2_close-nav {
    display: block;
  }
}

.mini-call {
  position: fixed;
  top: 86px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  width: 278px;

  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  visibility: hidden;
}
.mini-call_close-wrapper {
  margin-bottom: 29px;
}
.mini-call_close {
  cursor: pointer;
}
.mini-call_btn1 {
  margin-bottom: 15px;
}
.mini-call_text {
  margin-bottom: 15px;
  font-family: "Montserrat-Medium";
  line-height: 100%;
  color: #323e48;
  font-size: 14px;
  letter-spacing: -0.03em;
}

.mini-btns {
  width: 200px;
  height: 50px;
  border: 1px solid #425c71;
  cursor: pointer;
  background-color: transparent;
  font-family: "Montserrat-Medium";
  line-height: 100%;
  color: #323e48;
  transition: background-color 0.3s ease-out;
  font-size: 15px;
  letter-spacing: -0.03em;
  color: #425c71;
  background-color: #cc2d22;
  border-color: #cc2d22;
  line-height: 100%;
  font-size: 14px;
  color: #ffffff;
}
.mini-btns:hover {
  background-color: transparent;
  color: #cc2d22;
}

@media screen and (max-width: 575px) {
  .mini-btns {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

:root {
  --header-h: 70px;
  --page-side-fields: 21px;
}

.main__contacts-block_tel,
.main__contacts-block_address,
.main__contacts-block_email {
  text-decoration: none;
}

@media screen and (max-width: 575px) {
  .pops-up-active {
    z-index: 10;
  }

  .main {
    --fist-screen-link-size: 206px;
    min-width: auto;
    padding-left: 21px;
    padding-right: 21px;
  }
  .main__contacts-language {
    width: 100vw;
    height: var(--header-h);
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .main__left-side_logo {
    width: 65px;
    height: 42px;
  }
  .main__right-side_tel-wrapper {
    text-decoration: none;
  }
  .main__start-block {
    position: relative;
    padding-top: calc(var(--header-h) + 40px);
    margin-top: 0;

    margin-bottom: 0;
    grid-template-rows: auto;
    grid-template-areas: "header " "subheader" "time-wrapper" "figure" "text-wrapper";
    padding-bottom: calc(var(--fist-screen-link-size) + 30px);
  }
  .main .times {
    font-size: 10px;
    line-height: 1em;
  }
}
@media screen and (max-width: 575px) and (max-width: 200px) {
  .main .times {
    line-height: 1.5em;
  }
}
@media screen and (max-width: 575px) {
  .main__start-block_clock-img {
    width: 12px;
    height: 12px;
  }
  .main__start-block_subheader {
    padding-bottom: 20px;
  }
  .main__start-block_figure {
    margin-top: 20px;
    position: static;
  }
  .main__start-block_header {
    font-size: 14px;
    line-height: 120%;
  }
  .main__about-block_btns-wrapper {
    width: 100%;
  }
  .main__news-stocks-block_cards-container {
    width: 100%;
  }
  .main__progress-block_img-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .main {
  }
  .main__right-side_tel {
    display: none;
  }
  .main__start-block_select-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 575px) and (max-width: 300px) {
  .main__start-block_select-btn {
    position: relative;
    bottom: auto;
    top: 114px;
  }
}

.fade-in-top {
  -webkit-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.iti {
  height: 60%;
}

.iti__flag-container {
  bottom: auto;
  top: 0.25em;
}

@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (max-width: 575px) {
  .nav {
    width: 100%;
    padding-top: 0;
    row-gap: 0px;
    grid-template-rows: var(--header-h) 409px auto;
    grid-template-columns: auto;
    grid-template-areas: "tel-close tel-close " "list list" "lang .";
    align-items: start;
  }
  .nav__list {
    font-size: 11px;
    line-height: 100%;
    margin-top: 30px;
  }
  .nav__list_element {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 16px;
    padding-top: 16px;
    padding-left: var(--page-side-fields);
  }
  .nav__tel-close-wrapper {
    height: var(--header-h);
    display: flex;
    padding-left: var(--page-side-fields);
    padding-right: var(--page-side-fields);
  }
  .nav__tel-close-wrapper_close-wrapper {
    width: 26px;
    height: 25px;
  }
  .nav__tel-close-wrapper_close-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .nav__tel-close-wrapper_tel {
    display: none;
  }
  .nav__tel-close-wrapper_tel-img {
    width: 15px;
    height: 16px;
  }
  .nav__tel-close-wrapper_tel-wrapper {
    margin-left: auto;
    margin-right: 57px;
  }
  .nav__btn {
    display: none;
  }
  .nav__logo {
    display: block;
    position: absolute;
    left: var(--page-side-fields);
    width: 65px;
    height: 42px;
    margin: 0;
    top: 14px;
  }
  .nav__lang-wrapper {
    padding-left: var(--page-side-fields);
    padding-bottom: 30px;
  }
  .nav .langs {
    font-size: 13px;
    line-height: 100%;
  }
  .nav__lang-wrapper_ru {
    margin-left: 30px;
  }
}
@media screen and (max-width: 575px) {
  .progress-block_pop-up {
    grid-template-rows: 66px auto 33px 46px;

    grid-template-columns: minmax(143px, calc(100vw - 140px)) 98px;
  }
}

.main__conditions-block_timer-block {
  display: none;
}

	  .webcam_wrap {
		  display: flex;
	}
	
.main__webcam-block {
	position: relative;
    margin-bottom: 90px;
}

@media screen and (max-width: 768px) {
		.main__webcam-block {
		margin-bottom: 0;
	}
}