@font-face {
  font-family: "GothamProRegular";
  src: url("../fonts/GothamProRegular/GothamProRegular.eot");
  src: url("../fonts/GothamProRegular/GothamProRegular.woff") format("woff"), url("../fonts/GothamProRegular/RobotoLight.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "GothamProLight";
  src: url("../fonts/GothamProLight/GothamProLight.eot");
  src: url("../fonts/GothamProLight/GothamProLight.woff") format("woff"), url("../fonts/GothamProLight/GothamProLight.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "GothamProMedium";
  src: url("../fonts/GothamProMedium/GothamProMedium.eot");
  src: url("../fonts/GothamProMedium/GothamProMedium.woff") format("woff"), url("../fonts/GothamProMedium/GothamProMedium.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "GothamProBold";
  src: url("../fonts/GothamProBold/GothamProBold.eot");
  src: url("../fonts/GothamProBold/GothamProBold.woff") format("woff"), url("../fonts/GothamProBold/GothamProBold.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "GothamProRegular", sans-serif;
  font-size: 16px;
  justify-content: space-between;
  margin: 0;
  min-height: 100vh;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

a, input, button, textarea, select {
  text-decoration: none;
}

a:focus, a:hover, input:focus, input:hover, button:focus, button:hover, textarea:focus, textarea:hover, select:focus, select:hover {
  outline: none;
}

html, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
}

* {
  box-sizing: border-box;
}

.company {
  align-items: center;
  /*border-left: 2px solid #515a5f;*/
  display: flex;
}

.company_light {
  border-left: 2px solid #f8f6f7;
  color: #fffdfe;
}

.company__logo {
  width: 225px;
  max-height: 65px;
}

.company__logo_small {
  width: 60px;
}

.company__slogan {
  display: flex;
  flex-direction: column;
  margin: 10px 0 0 15px;
}

.company__slogan-text {
  font-family: GothamProLight;
  font-size: 19px;
  letter-spacing: 0.1;
  line-height: 1.2;
}

.company__slogan-text_bold {
  font-family: GothamProBold;
  margin-left: 5px;
}

.links {
  position: relative;
}

.links__link {
  color: black;
  margin: 0 15px;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  transition: all 200ms;
}

.links__link_active::after {
  content: '';
  width: 40px;
  height: 2px;
  background-color: #e30017;
  position: absolute;
  bottom: -5px;
  left: calc(50% - 20px);
  transition: all 500ms;
}

.links__link:not(.links__link_active):hover {
  color: #e30017;
}

.links__link + .links__container {
  position: absolute;
  left: 16%;
  top: 25px;
  display: flex;
  flex-direction: column;
  max-height: 0px;
  overflow: hidden;
  transition: all 500ms;
  background-color: white;
  padding: 0;
  z-index: 1000;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  min-width: 150px;
}

.links__link:hover + .links__container, .links__link + .links__container:hover {
  max-height: 500px;
  padding: 15px;
}

.links__sublink {
  color: black;
  margin: 5px 0;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  transition: all 200ms;
}

.links__sublink:hover{
	color: #e30017;
}

.burger {
  height: 22px;
  width: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.burger__line {
  width: 100%;
  height: 2px;
  background-color: black;
  transition: all 500ms;
}

.burger.active .burger__line {
  background-color: white;
}

.burger.active .burger__line:nth-child(1) {
  transform: rotate(45deg);
}

.burger.active .burger__line:nth-child(2) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.burger.active .burger__line:nth-child(3) {
  transform: rotate(45deg) translate(-10px, -9px);
}

.burger.active .burger__line:nth-child(4) {
  transform: rotate(-45deg) translate(15px, -15px);
}

.prodList {
  display: flex;
  width: 100%;
  justify-content: space-around;
}

.prodList__col {
  width: 31%;
}

.card {
  display: flex;
  width: 100%;
  height: 230px;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  position: relative;
  background-color: white;
}

.card__right {
  justify-content: flex-end;
}

.card__name {
  margin: 15px;
  font-size: 25px;
  font-family: GothamProLight;
  text-transform: uppercase;
  z-index: 1;
  color: black;
  transition: all 500ms;
}

.card__name_white {
  color: white;
}

.card__name_big {
  align-self: center !important;
  font-family: GothamProBold;
  text-shadow: 0 0 1px black;
}

.card__pic {
  height: 100%;
  position: absolute;
  z-index: 0;
  left: 0;
}

.card__pic_right {
  right: 0;
  left: auto;
}

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

.card__big {
  height: 490px;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}

.card__big * {
  transition: all 500ms;
}

.card__big:hover > img {
  filter: blur(2px);
}

.card__big:hover > div {
  opacity: 1;
}

.card__info {
  z-index: 1;
  border: 1px solid white;
  width: 80%;
  height: 85%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  opacity: 0;
}

.card__link {
  background-color: #e30017;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.1;
  margin: 0 0 30px;
  padding: 20px 20px;
  text-transform: uppercase;
  width: 80%;
  transition: all 300ms;
  font-family: GothamProMedium;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__link:hover {
  box-shadow: inset 0 0 5px black;
  transform: scale(0.99);
}

.card:first-child {
  margin: 0 0 30px;
}

.card:first-child .card__name {
  align-self: flex-end;
}

.card:first-child:hover .card__name {
  transform: translateY(-20px);
}

.card:hover .card__name {
  transform: translateY(20px);
}

.confnav {
  position: relative;
}

.confnav__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  display: none;
}

.confnav__text.active {
  display: flex;
}

.confnav__headline {
  color: #e30115;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.confnav__desc {
  color: #767676;
  font-family: "GothamProLight";
  font-size: 14px;
  text-align: center;
}

.confnav__arrow {
  position: absolute;
  top: 45%;
  font-size: 20px;
  color: #52575b;
  cursor: pointer;
}

.confnav__arrow_left {
  left: -15%;
}

.confnav__arrow_right {
  right: -15%;
}

.confslide {
  align-items: stretch;
  display: flex;
  justify-content: space-between;
  margin: 0;
  max-width: 100%;
  width: 100%;
  display: none;
}

.confslide.active {
  display: flex;
}

.confslide__column {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 25%;
  width: 100%;
  flex-direction: column;
}

.confslide__column_img {
  width: 50%;
  justify-content: center;
}

.confslide__image {
  width: 100%;
}

.confslide__item {
  margin-bottom: 40px;
}

.confitem__headline {
  counter-increment: config;
  font-size: 20px;
  margin-bottom: 10px;
}

.confitem__headline::before {
  content: counter(config) ". ";
}

.confitem__desc {
  color: #7e7e7e;
  font-family: "GothamProLight";
  font-size: 16px;
  line-height: 20px;
}

.modifications {
  width: 100%;
}

.modifications__container {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 10px 0;
  max-width: 100%;
  width: 100%;
  display: none;
}

.modifications__container.active {
  display: flex;
}

.modifications__item {
  border-top: 1px solid #53565b;
  border-bottom: 1px solid #53565b;
  color: #53565b;
  padding: 15px 20px;
  transition: all 500ms;
  cursor: pointer;
  margin: 10px;
  text-transform: uppercase;
}

.modifications__item:hover, .modifications__item.active {
  background-color: #53565b;
  color: white;
}

.lineslider {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 10px 0;
  max-width: 100%;
  width: 100%;
  flex-direction: column;
}

.lineslider__container {
    width: 100%;
    white-space: nowrap;
    overflow-x: hidden;
    /*display: flex;*/
  }

.lineslider__nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0;
  max-width: 100%;
  width: 100%;
}

.lineslider__arrow {
  cursor: pointer;
  font-size: 25px;
}

.news-block {
  width: 260px;
  display: inline-flex;
  flex-direction: column;
  overflow: hidden;
  white-space: normal;
}

.news-block:not(:last-child) {
  margin: 0 28px 0 0;
}

.news-block__image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.news-block__headline {
  font-size: 20px;
  font-family: "GothamProLight";
  margin: 10px 0;
  letter-spacing: -1.2px;
}
.news-block__link.more-link{
  display: block;
}
.more-link {
  display: none;
  text-transform: lowercase;
  color: #52575b;
  font-family: "GothamProLight";
}

.more-link::before {
  content: '';
  width: 23px;
  height: 1px;
  background-color: #52575b;
  display: inline-block;
  margin: 0 7px 4px 2px;
}

.texts {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1250px;
  width: 100%;
  flex-direction: column;
  padding: 0 0 140px;
}

.texts__line {
  width: 35%;
  height: 1px;
  background-color: #656565;
  margin: 45px 0;
}

.texts__texts {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin: 0;
  max-width: 100%;
  width: 100%;
  max-height: 105px;
  overflow: hidden;
  transition: all 500ms;
}

.texts__texts.active {
  max-height: 400px;
}

.texts__text {
  color: #acacac;
  font-family: "GothamProLight";
  letter-spacing: -0.5px;
  width: 48%;
}

.texts__link {
  margin-top: 30px;
  align-self: flex-start;
}

.copyright {
  font-size: 14px;
  font-family: "GothamProLight";
}

.copyright__company {
  margin-bottom: 5px;
}

.copyright__development_link {
  margin-left: 5px;
  color: white;
  transition: all 300ms;
}

.copyright__development_link:hover {
  color: #e30017;
}

.social__icon {
  color: white;
  margin: 0 10px;
  font-size: 20px;
  transition: all 300ms;
}

.social__icon:hover {
  color: #e30017;
}

.info-nav {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 0;
  max-width: auto;
  width: 100%;
  max-width: 27.5%;
  flex-direction: column;
}

.info-nav__link {
  font-family: "GothamProLight";
  color: black;
  font-size: 16px;
  border-top: 1px solid black;
  width: 100%;
  padding: 15px 10px;
  letter-spacing: -1px;
  transition: all 500ms;
}

.info-nav__link:last-child {
  border-bottom: 1px solid black;
}

.info-nav__link.active, .info-nav__link:hover {
  font-family: "GothamProRegular";
}

.info-nav__link.triggered {
  font-family: "GothamProRegular";
}

.info-nav__link.triggered + .info-nav__children {
  max-height: 1000px;
}

.info-nav__link_ch {
  position: relative;
}

.info-nav__link_ch::after {
  content: '^';
  position: absolute;
  right: 10px;
  top: 7px;
  font-size: 20px;
  transform: rotate(180deg);
}

.info-nav__link_ch.triggered::after {
  transform: rotate(0deg);
  top: 20px;
}

.info-nav__children {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: all 500ms;
}

.info-nav__children:hover {
  max-height: 500px;
}

.info-nav__sublink {
  font-family: "GothamProLight";
  color: black;
  font-size: 16px;
  width: 100%;
  padding: 5px 10px;
  letter-spacing: -1px;
}

.info-content {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 0;
  max-width: auto;
  width: 100%;
  flex-direction: column;
}

.info-content__headline {
  font-family: "GothamProLight";
  font-size: 30px;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.info-content__caption, .info-content__text, .info-content__image {
  margin-bottom: 30px;
  font-size: 16px;
}

.info-content__caption, .info-content__text {
  opacity: 0.9;
  font-family: "GothamProLight";
}

.info-content__image {
  width: 100%;
}

.info-content__image_half {
  width: 70%;
  margin: 0 auto 30px;
}

.pagination {
  margin: 10px auto;
  display: flex;
  list-style-type: none;
  align-items: center;
  justify-content: center;
}

.pagination::before, .pagination::after {
  content: '';
  width: 25px;
  height: 1px;
  background-color: black;
  display: inline-block;
  margin-bottom: 5px;
}

.pagination::before {
  margin-right: 10px;
}

.pagination::after {
  margin-left: 10px;
}

.pagination__element a {
  margin: 0 10px;
  color: black;
  opacity: 0.6;
}

.pagination__element_active a {
  opacity: 1;
}

.pagination__element:first-child, .pagination__element:last-child {
  display: none;
}

.circPag {
  display: flex;
  margin: 30px auto 0;
}

.circPag_white {
  margin-top: -80px;
}

.circPag_white .circPag__item {
  border-color: white;
}

.circPag_white .circPag__item.active {
  background-color: white;
}

.circPag_marg {
  margin-bottom: 50px;
  margin-top: -30px;
}

.circPag__item {
  width: 10px;
  height: 10px;
  border: 1px solid black;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.circPag__item.active {
  background-color: black;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
}

.modal__close-layer {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.modal__main-layer {
  position: static;
  width: 100%;
  height: 100vh;
  align-items: center;
  display: flex;
  justify-content: center;
}

.modal__body {
  background-color: white;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  padding: 40px 0 40px;
  width: 45%;
  z-index: 1;
  min-height: 50vh;
  justify-content:center;
  /** overflow:hidden;
  overflow-y: auto; **/
}

.modal-body {
  padding: 2% 5%;
}

.modal-body__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.modal-body__headline {
  font-size: 30px;
}

.okform {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-top: 50px;
}

.okform__input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 5px;
}

.okform__line {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}

.okform__submit {
  background-color: #e30017;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.1;
  margin: 0;
  padding: 20px 20px;
  text-transform: uppercase;
  width: 45%;
  transition: all 300ms;
  font-family: GothamProMedium;
}

.okform__submit:hover {
  box-shadow: inset 0 0 5px black;
  transform: scale(0.99);
}

@media screen and (max-width: 1280px) {
  .prodList {
    width: 95%;
  }
  .texts {
    width: 95%;
  }
}

@media screen and (max-width: 1024px) {
  .links {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    flex-direction: column;
    left: 0;
    height: 100vh;
    position: fixed;
    top: -100vh;
    width: 100%;
    z-index: 1000;
    transition: all 500ms;
  }
  .links__link {
    color: white;
    font-size: 20px;
    margin: 10px 0;
  }
  .links__link:first-child {
    margin-top: 30px;
  }
  .links.active {
    top: 0;
  }
}

@media screen and (max-width: 768px) {
  .company__logo {
    width: 160px;
    max-height: 45px;
  }
  .company__slogan {
    margin: 0 0 0 10px;
  }
  .company__slogan-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .prodList {
    flex-direction: column;
    align-items: center;
  }
  .prodList__col {
    margin: 0;
    width: 50%;
  }
}

@media screen and (max-width: 768px) and (max-width: 480px) {
  .prodList__col {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .prodList__col:nth-child(1) {
    order: 1;
  }
  .card {
    height: 200px;
    width: 100%;
    margin: 10px 0 !important;
  }
  .card:hover .card__name {
    transform: none !important;
  }
  .card__name {
    font-size: 16px;
    align-self: center !important;
  }
  .card__big {
    height: 400px;
  }
  .info-content__image_half {
    width: 100%;
  }
  .texts {
    padding: 0 5% 140px;
  }
  .texts__texts {
    flex-direction: column;
  }
  .texts__text {
    width: 100%;
  }
  .confslide {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin: 0;
    max-width: 100%;
    width: 100%;
    flex-direction: column;
  }
  .confslide__column {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    flex-direction: column;
  }
  .confslide__column_img {
    width: 50%;
    justify-content: center;
  }
  .confslide__column:nth-child(1) {
    order: 1;
  }
  .confslide__column:nth-child(3) {
    order: 2;
  }
  .modifications__container {
    flex-wrap: wrap;
  }
}

.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
  user-select: none;
}

.modal__close-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal__main-layer {
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  display: flex;
  overflow-y: auto;
}

.modal__body {
  background-color: white;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 10px auto;
  max-width: 1160px;
  width: 100%;
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  top: 0;
}

.nav__company {
  /*margin-left: 10px;*/
}

.nav__burger {
  display: none;
}

@media screen and (max-width: 1024px) {
  .nav {
    max-width: 90%;
  }
  .nav__burger {
    display: flex;
    z-index: 1001;
  }
}

.footer {
  align-items: stretch;
  display: flex;
  justify-content: center;
  margin: 0;
  max-width: 100%;
  width: 100%;
  padding: 60px 0;
  background-image: url("../images/footer-bg.png");
  background-size: cover;
  background-position: center;
  color: white;
}

.footer__column {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 0;
  max-width: 300px;
  width: 100%;
  flex-direction: column;
  padding: 0 1%;
}

.footer__column:last-child {
  align-items: center;
}

.footer__company {
  margin: 0 0 40px;
}

.footer__cities {
  height: 22px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  user-select: none;
}

.footer__cities.hover {
  overflow: visible;
}

.footer__cities.hover .footer__city {
  background-color: #53575c;
  background-color: #ffffff;
    color: #262626;
    padding: 5px 20px 5px 20px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer__city:hover{
	color: #e30017 !important;
	box-shadow: inset 0 0 5px black;
	transform: scale(0.99);
}

.footer__city {
  cursor: pointer;
  padding-bottom: 5px;
  order: 2;
}

.footer__city.active {
  order: 1;
  color: #ffffff !important;
}

.footer__cities.hover .footer__city.active{
	background-color: #e30017 !important;
}

.footer__city.active:hover{ 
   /**color: #e30017 !important;**/
   box-shadow:none;
}
.footer__city.active::after {
    content: '^';
    display: inline-block;
    transform: rotate(180deg) translateY(3px);
    margin-left: 5px;
    font-size: 20px;
	padding-left: 8px;
}

.footer__cities.hover .footer__city.active::after {
	transform: rotate(0deg) translateY(6px);
}

.footer__address, .footer__phone {
  display: none;
}

.footer__address.active, .footer__phone.active {
  display: block;
}

.footer__address {
  font-size: 14px;
  font-family: "GothamProLight";
}

.footer__mail {
  margin: 5px 0 20px;
  font-family: "GothamProLight";
}

.footer__link {
  color: white;
  margin-bottom: 5px;
  font-family: "GothamProLight";
  text-transform: uppercase;
}

.footer__text {
  text-transform: uppercase;
  font-family: "GothamProLight";
}

.footer__social {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 20px 0;
  max-width: 100%;
  width: 100%;
}

.footer__modal-btn {
  background-color: #e30017;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.1;
  margin: 0 auto 0;
  padding: 20px 20px;
  text-transform: uppercase;
  width: 90%;
  transition: all 300ms;
  font-family: GothamProMedium;
  font-size: 14px;
}

.footer__modal-btn:hover {
  box-shadow: inset 0 0 5px black;
  transform: scale(0.99);
}

@media screen and (max-width: 1024px) {
  .footer {
    flex-wrap: wrap;
  }
  .footer__column {
    max-width: 50%;
    align-items: center;
    margin: 0 0 60px;
  }
  .footer__cities {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    flex-wrap: wrap;
  }
  .footer__column {
    max-width: 100%;
    align-items: center;
    margin: 0 0 60px;
  }
}

.header {
  align-items: flex-end;
  display: flex;
  justify-content: flex-start;
  margin: 50px auto 0;
  max-width: 1160px;
  width: 100%;
}

.header__description {
  margin: 0 0 100px 5px;
  width: 50%;
}

.header__description-text {
  font-size: 46px;
  font-family: GothamProLight;
  line-height: 1.2;
}

.header__description-text_bold {
  font-weight: bold;
}

.header__modal-btn {
  background-color: #e30017;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.1;
  margin: 30px 0 0 0;
  padding: 20px 20px;
  text-transform: uppercase;
  width: 44%;
  transition: all 300ms;
  font-family: GothamProMedium;
}

.header__modal-btn:hover {
  box-shadow: inset 0 0 5px black;
  transform: scale(0.99);
}

.header__slider {
  margin-left: 2%;
  position: relative;
  width: 40%;
  height: 600px;
}

.header__slider-nav {
  position: absolute;
  right: -20%;
  top: 36%;
  transform: rotate(90deg);
}

.header__nav-element {
  font-size: 25px;
  width: 140px;
  position: relative;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.1);
  transition: all 500ms;
  text-align: right;
  user-select: none;
}

.header__nav-element::after {
  content: '';
  width: 32px;
  height: 2px;
  background-color: #53575c;
  position: absolute;
  right: -37px;
  top: calc(50% - 1px);
  transition: all 500ms;
  opacity: 1;
}

.header__nav-element.active {
  color: black;
}

.header__nav-element.active::after {
  width: 45px;
  height: 4px;
  right: -50px;
  top: calc(50% - 2px);
}

.header__slide {
  display: none;
  width: 100%;
}

.header__slide:nth-child(2) {
  display: block;
}

.header__slide-image {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .header {
    max-width: 90%;
  }
  .header__description {
    margin: 0 0 100px 5px;
    width: 45%;
  }
  .header__description-text {
    font-size: 30px;
  }
  .header__modal-btn {
    font-size: 14px;
    padding: 20px 0;
  }
  .header__slider {
    height: 450px;
  }
}

@media screen and (max-width: 768px) {
  .header {
    justify-content: space-between;
  }
}

@media screen and (max-width: 768px) and (max-width: 470px) {
  .header {
    margin: 20px auto 0;
  }
}

@media screen and (max-width: 768px) {
  .header__description {
    margin: 0 0 100px 5px;
    width: 45%;
  }
  .header__description-text {
    font-size: 20px;
  }
  .header__modal-btn {
    font-size: 10px;
    width: 80%;
  }
  .header__slider-nav {
    display: none;
  }
  .header__slider {
    height: 320px;
    margin: 0;
    width: 40%;
  }
}

@media screen and (max-width: 768px) and (max-width: 560px) {
  .header__slider {
    width: 50%;
  }
}

@media screen and (max-width: 768px) and (max-width: 470px) {
  .header__slider {
    height: 280px;
  }
   .modal__body {
    width: 90%;
  } 
  
  .okform__submit {
	width: 70%;
	font-size: 10px;
	}
}

@media screen and (max-width: 768px) and (max-width: 350px) {
  .header__slider {
    height: 220px;
    align-self: flex-start;
    z-index: -1;
  } 
}

.whywe {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin: 45px 0 0;
  max-width: 100%;
  width: 100%;
  background-image: url("../images/whywe-bg.png");
  background-size: cover;
  color: white;
  flex-direction: column;
  padding: 85px 0;
}

.whywe__headline {
  font-size: 20px;
  margin-bottom: 30px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.whywe__headline::after {
  content: '';
  width: 40px;
  height: 2px;
  background-color: #e30017;
  position: absolute;
  bottom: -5px;
  left: calc(50% - 20px);
  transition: all 500ms;
}

.whywe__description {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.whywe__b {
  position: absolute;
  top: -15%;
  z-index: 0;
}

.whywe__text-block {
  margin: 0 0 9% 9%;
  z-index: 1;
  font-family: "Arial";
  font-size: 16px;
}

.whywe__text-block strong {
	font-weight: bold;
}

.whywe__slogan {
  font-size: 28px;
  text-transform: uppercase;
}

.whywe__text {
  line-height: 1.4;
  margin-top: 20px;
  max-width: 500px;
  font-family: "GothamProLight";
  letter-spacing: -0.5px;
}

.whywe__image {
  align-self: flex-end;
  filter: brightness(70%);
  margin-left: -60px;
  width: 45%;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .whywe__description {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
  }
  .whywe__text {
    font-size: 14px;
    text-align: left;
  }
  .whywe__text-block {
    margin: 0 0 20px;
    max-width: 80%;
  }
  .whywe__image {
    width: 80%;
    margin-left: 0;
    align-self: center;
  }
}

.unique {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 50px auto;
  max-width: 1250px;
  width: 100%;
  flex-direction: column;
}

.unique__headline {
  font-size: 28px;
  margin: 50px 0 22px 4%;
}

.unique__details {
  display: flex;
  align-items: flex-start;
}

.unique__description-text {
  font-size: 16px;
  max-width: 70%;
  margin-left: 30px;
  font-family: "GothamProLight";
  color: rgba(0, 0, 0, 0.6);
}

.unique__description-photos {
  align-items: center;
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 9%;
}



@media screen and (max-width: 1024px) {
  .unique__schema {
    width: 30%;
  }
  .unique__description {
    width: 70%;
  }
  .unique__description-photos img {
    width: 30%;
  }
}

@media screen and (max-width: 768px) {
  .unique {
    align-items: center;
  }
}

@media screen and (max-width: 768px) and (max-width: 530px) {
  .unique__schema, .unique__description-photos img:not(:first-child) {
    display: none;
  }
  .unique__description {
    width: 100%;
  }
  .unique__description-text {
    width: 100%;
    color: #b0b0b0;
    font-size: 14px;
    margin: 0 auto;
    font-family: "GothamProLight";
  }
  .unique__description-photos img {
    width: 100%;
  }
}

.products {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin: 100px auto 0;
  max-width: 1250px;
  width: 100%;
  flex-direction: column;
}

.products__headline {
    font-size: 18px;
    position: relative;
    margin: 50px 0;
    text-transform: uppercase;
    padding-left: 10px;
}

.products__headline::after {
  content: '';
  width: 50px;
  height: 2px;
  background-color: #e30017;
  position: absolute;
  bottom: -5px;
  left: calc(50% - 25px);
  transition: all 500ms;
  height: 4px;
  bottom: -15px;
}

.config {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 100px auto 0;
  max-width: 1250px;
  width: 100%;
  flex-direction: column;
  counter-reset: config;
}

.config__headline {
  font-size: 18px;
  position: relative;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.config__headline::after {
  content: '';
  width: 50px;
  height: 2px;
  background-color: #e30017;
  position: absolute;
  bottom: -5px;
  left: calc(50% - 25px);
  transition: all 500ms;
  height: 4px;
  bottom: -10px;
}

.config__nav {
  margin: 0 auto 6%;
}

.config__allslides {
  display: none;
}

.config__allslides.active {
  display: block;
}

@media screen and (max-width: 768px) {
  .config {
    padding: 0 5%;
  }
  .config__headline {
    margin-bottom: 20px;
  }
  .config__headline::after {
    bottom: -10px;
  }
}

.news {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin: 45px 0 0;
  max-width: 100%;
  width: 100%;
  flex-direction: column;
  background-image: url("../images/news-bg.png");
  background-size: cover;
  padding: 90px 0 110px;
}

.news__headline {
  text-transform: uppercase;
  position: relative;
  margin: 0 0 32px;
  font-size: 18px;
  font-family: "GothamProLight";
}

.news__headline::after {
  content: '';
  width: 50px;
  height: 2px;
  background-color: #e30017;
  position: absolute;
  bottom: -5px;
  left: calc(50% - 25px);
  transition: all 500ms;
  height: 4px;
  bottom: -10px;
}

.news__slider {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .news__slider {
    width: 90%;
  }
}

.chair-table {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto 100px;
  max-width: 1250px;
  width: 100%;
  flex-wrap: wrap;
}

.chair-table__cell {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0;
  max-width: auto;
  width: 100%;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}

.chair-table__cell_2-2 {
  width: 66.66667%;
}

.chair-table__cell_1-2 {
  width: 33.33333%;
}

.chair-table__cell_1-1 {
  width: 50%;
}

.chair-table__link {
  width: 100%;
}

.chair-table__link:hover .chair-table__image_hover {
  opacity: 1;
}

.chair-table__image {
  width: 100%;
}

.chair-table__image_hover {
  position: absolute;
  opacity: 0;
  transition: all 500ms;
  top: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .chair-table {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .chair-table {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) and (max-width: 500px) {
  .chair-table__cell {
    width: 90%;
  }
}

.chairDetail {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  flex-direction: column;
  position: relative;
}

.chairDetail__top {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
  max-width: 1150px;
  width: 100%;
}

.chairDetail__top-left {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 50%;
  width: 100%;
  flex-direction: column;
}

.chairDetail__top-right {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 50%;
  width: 100%;
}

.chairDetail__top-img {
  width: 50%;
}

.chairDetail__headline {
  font-size: 50px;
  font-family: "GothamProLight";
  color: rgba(0, 0, 0, 0.8);
}

.chairDetail__text {
  margin: 40px 0;
  color: #777878;
  font-family: "GothamProLight";
}

.chairDetail__button {
  background-color: #e30017;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.1;
  margin: 0;
  padding: 20px 20px;
  text-transform: uppercase;
  width: 40%;
  transition: all 300ms;
  font-family: GothamProMedium;
}

.chairDetail__button:hover {
  box-shadow: inset 0 0 5px black;
  transform: scale(0.99);
}

.chairDetail__things {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 100px auto;
  max-width: 1150px;
  width: 100%;
  flex-direction: column;
  position: relative;
}

.chairDetail__slide {
  align-items: stretch;
  display: flex;
  justify-content: center;
  margin: 0;
  max-width: 1150px;
  width: 100%;
  display: none;
}

.chairDetail__slide.active {
  display: flex;
}

.chairDetail__slide-arrow {
  position: absolute;
  top: 50%;
  cursor: pointer;
  font-size: 20px;
}

.chairDetail__slide-arrow_left {
  left: -7%;
}

.chairDetail__slide-arrow_right {
  right: -7%;
}

.chairDetail__slide-left {
  align-items: flex-start;
  display: flex;
  justify-content: space-around;
  margin: 0;
  max-width: 50%;
  width: 100%;
  flex-direction: column;
}

.chairDetail__slide-headline {
  font-size: 30px;
  font-family: "GothamProLight";
  display: flex;
  align-items: center;
}

.chairDetail__slide-headline > img {
  margin-left: 10px;
  width: 30px;
}

.chairDetail__slide-text {
  font-size: 16px;
  font-family: "GothamProLight";
  color: rgba(0, 0, 0, 0.7);
}

.chairDetail__slide-right {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
  max-width: 50%;
  width: 100%;
}

.chairDetail__slide-image {
  width: 60%;
}

.chairDesc {
  align-items: flex-start;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  padding: 100px 0;
  background-image: url("../images/whywe-bg.png");
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}

.chairDesc__left, .chairDesc__right, .chairDesc__center {
  max-width: 380px;
  width: 100%;
  font-family: "GothamProLight";
}

.chairDesc__left {
  display: none;
}

.chairDesc__left.active {
  display: block;
}

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

.chairDesc__right {
  margin-top: 5%;
}

.chairDesc__subheadline {
  margin-bottom: 10px;
  font-size: 18px;
  font-family: "GothamProRegular";
}

.chairDesc__headline {
  font-size: 24px;
  margin-bottom: 20px;
}

.chairDesc__text {
  opacity: 0.8;
}

.chairDesc__image {
  width: 70%;
  display: none;
}

.chairDesc__image.active {
  display: block;
}

.advantages {
  align-items: stretch;
  display: flex;
  justify-content: center;
  margin: 100px auto;
  max-width: 1150px;
  width: 100%;
}

.advantages__left {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
  flex-direction: column;
  font-family: "GothamProLight";
}

.advantages__desc {
  display: none;
}

.advantages__desc.active {
  display: block;
}

.advantages__headline {
  font-size: 30px;
  color: #ff0000;
  margin-bottom: 20px;
}

.advantages__sub-headline {
  font-size: 22px;
  margin-bottom: 15px;
}

.advantages__about {
  color: #777878;
  font-size: 18px;
}

.advantages__text {
  color: #777878;
}

.advantages__image {
  display: none;
}

.advantages__image.active {
  display: block;
}

.features {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}

.features__image {
  width: 100%;
  height: 100%;
  filter: brightness(80%);
  transition: all 500ms;
  object-fit: cover;
  object-position: center;
}

.features__image:hover {
  transform: scale(1.05);
}

.features__item {
  position: relative;
  width: 20%;
  overflow: hidden;
  height: 100vh;
  cursor: pointer;
  transition: all 500ms;
}
.features__item p{
	display: none;
}

.features__item.active p{
	display: block;
}

.features__item.active {
  width: 50%;
}

.features__item.active .features__image:hover {
  transform: scale(1);
}

.features__item.else .features__image {
  filter: brightness(50%);
}

.features__desc {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  display: flex;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  font-family: "GothamProLight";
  font-size: 18px;
  flex-direction: column;
}

.features__desc p{
  margin-top: 10px !important; 
  font-family: "Arial" !important; ;
  letter-spacing: 0.5px;
  color: #262626 !important;
  font-size: 16px !important;
  font-weight: normal !important;
}

.features__desc h3{
	font-weight: bold;
    font-size: 18px;
    font-family: "Arial";
}
	
.complectation {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 100px auto;
  max-width: 1150px;
  width: 100%;
  flex-direction: column;
}

.complectation__grey {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 380px;
  background-color: #eeeeee;
  z-index: -1;
}

.complectation__headline {
  font-family: "GothamProLight";
  font-size: 30px;
  margin: 5% 0;
}

.complectation__models {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0;
  max-width: 100%;
  width: 100%;
  height: 400px;
}

.complectation__button {
  align-self: flex-end;
  background-color: #e30017;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.1;
  margin: -15px 0 30px;
  padding: 20px 20px;
  text-transform: uppercase;
  width: 20%;
  transition: all 300ms;
  font-family: GothamProMedium;
}

.complectation__button:hover {
  box-shadow: inset 0 0 5px black;
  transform: scale(0.99);
}

.complectation__about {
  margin: 30px 0 40px;
  font-family: "GothamProLight";
  border-bottom: 1px solid #b0b0b0;
  width: 100%;
  padding-bottom: 25px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  display: none;
}

.complectation__about.active {
  display: flex;
}

.complectation__characteristics {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 0;
  max-width: 100%;
  width: 100%;
  flex-wrap: wrap;
  display: none;
}

.complectation__characteristics.active {
  display: flex;
}

.complectation__characteristics-block {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 0 0.5% 40px 0;
  max-width: 33%;
  width: 100%;
  padding: 0 10px;
  flex-direction: column;
}

.complectation__characteristics-block:nth-child(3n) {
  margin: 0 0 40px;
}

.complectation__characteristics-headline {
  font-weight: bold;
  margin-bottom: 15px;
}

.complectation__characteristics-desc {
  font-family: "GothamProLight";
  color: #a2a2a2;
}

.complectation__name {
  text-align: center;
  font-family: "GothamProLight";
  font-size: 18px;
}

.complectation__model {
  width: 10%;
  cursor: pointer;
}

.complectation__model.active {
  width: 15%;
}

.complectation__model.active .complectation__name {
  font-size: 28px;
}

.complectation__model:last-child {
  margin-bottom: 42px;
}

.complectation__image {
  width: 100%;
}

.chairGallery {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  flex-direction: column;
  background-color: #eeeeee;
  padding: 50px 0;
}

.chairGallery__headline {
  color: #ff0000;
  font-family: "GothamProLight";
  font-size: 30px;
  margin: 30px auto;
  padding-left: 30px;
  max-width: 1150px;
  width: 100%;
}

.chairGallery__photos {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1150px;
  width: 100%;
  flex-wrap: wrap;
}

.chairGallery__photo {
    width: 32%;
    margin: 0 auto 20px;
    cursor: pointer;
    height: 400px;
    object-fit: cover;
}

.chairGallery__button {
  align-self: center;
  background-color: #e30017;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.1;
  margin: 30px 0 0;
  padding: 20px 20px;
  text-transform: uppercase;
  width: 20%;
  transition: all 300ms;
  font-family: GothamProMedium;
}

.chairGallery__button:hover {
  box-shadow: inset 0 0 5px black;
  transform: scale(0.99);
}

.gallery__image {
  max-height: 100%;
}

.rewards {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  padding: 70px 0 180px;
  flex-direction: column;
  background-image: url("../images/news-bg.png");
  background-size: cover;
  background-position: center;
}

.rewards__headline, .rewards__text {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1150px;
  width: 100%;
}

.rewards__headline {
  font-size: 25px;
  font-family: "GothamProLight";
  margin-bottom: 50px;
}

.rewards__text {
  font-family: "GothamProLight";
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
}

.rewards__items {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 150px auto 0;
  max-width: 1150px;
  width: 100%;
  overflow-y: auto;
}

.rewards__item {
  width: 19%;
  min-width: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rewards__image {
  width: 80%;
}

.modal__arrow {
  position: absolute;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.modal__arrow:first-child {
  left: 10%;
}

.modal__arrow:nth-child(2) {
  right: 10%;
}

@media screen and (max-width: 1280px) {
  .chairDetail__top {
    padding: 0 5%;
  }
  .chairDetail__things {
    padding: 0 5%;
  }
  .chairDesc {
    padding: 100px 5%;
  }
  .advantages {
    padding: 0 5%;
  }
  .complectation {
    padding: 0 5%;
  }
  .rewards {
    padding: 70px 5% 180px;
  }
}

@media screen and (max-width: 1024px) {
  .chairDesc {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .chairDesc__left, .chairDesc__right, .chairDesc__center {
    max-width: 100%;
  }
  .chairDesc__image {
    width: 30%;
    margin: 50px 0 0;
  }
  .chairDesc__right {
    margin-top: 0;
  }
  .complectation__models {
    flex-wrap: wrap;
    height: auto;
  }
  .complectation__model {
    width: 30%;
    cursor: pointer;
    transition: all 500ms;
  }
  .complectation__model.active {
    width: 30%;
  }
  .complectation__model.active .complectation__image {
    width: 50%;
  }
  .complectation__model.active .complectation__name {
    font-size: 24px;
  }
  .complectation__model:last-child {
    margin-bottom: 42px;
  }
  .complectation__image {
    width: 40%;
    margin: 0 auto;
    transition: all 500ms;
  }
  .complectation__characteristics-block {
    max-width: 50%;
    margin: 10px auto;
  }
  .complectation__button {
    width: 40%;
  }
}

@media screen and (max-width: 768px) {
  .chairDetail__top {
    flex-direction: column;
  }
  .chairDetail__top-left {
    max-width: 100%;
  }
  .chairDetail__top-right {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) and (max-width: 550px) {
  .chairDetail__slide {
    flex-direction: column;
    align-items: center;
  }
  .chairDetail__slide-left {
    margin-bottom: 30px;
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .advantages {
    flex-direction: column;
    align-items: center;
  }
  .advantages__sub-headline {
    margin-top: 30px;
  }
  .advantages__text {
    margin-bottom: 30px;
  }
  .advantages__image {
    width: 100%;
  }
  .features {
    flex-wrap: wrap;
  }
  .features__item {
    width: 33.33333%;
  }
  .complectation__characteristics-block {
    max-width: 100%;
    margin: 10px auto;
  }
  .complectation__button {
    width: 60%;
  }
  .chairGallery__photos {
    flex-direction: column;
  }
  .chairGallery__photo {
    width: 90%;
  }
  .chairGallery__button {
    width: 50%;
  }
  .rewards__items {
    flex-direction: column;
  }
  .rewards__item {
    width: 60%;
  }
}

.info {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1150px;
  width: 100%;
  flex-direction: column;
}

.info__headline {
  width: 100%;
  font-family: "GothamProLight";
  font-size: 30px;
  margin-bottom: 40px;
}

.info__body {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 50px;
  max-width: 100%;
  width: 100%;
}

.info__nav {
  max-width: 27.5%;
}

.info__content {
  max-width: 62.5%;
}


.info-content p{
	font-family: "Arial";
	font-size: 14px;
}

.info-content strong{
	font-weight: bold;
}

.info-content img{
	margin: 0 auto;
	align-self: center;
}

.info-content ul{
	margin-left: 30px;
	font-family: "Arial";
	font-size: 14px;
}

.info-content li{
	margin-top: 10px;
	padding-bottom: 10px;
}

@media screen and (max-width: 1280px) {
  .info {
    padding: 0 5%;
  }
}

@media screen and (max-width: 768px) {
  .info__body {
    flex-direction: column;
  }
  .info__nav {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .info__content {
    max-width: 100%;
  }
}

.allNews {
  align-items: stretch;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1150px;
  width: 100%;
  flex-direction: column;
}

.allNews__top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin: 0 0 30px;
  max-width: 100%;
  width: 100%;
}

.allNews__headline {
  font-size: 40px;
  font-family: "GothamProLight";
  border-right: 1px solid black;
  padding-right: 20px;
  margin-right: 20px;
}

.allNews__headline_wide {
  width: auto;
}

.allNews__tags {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 0;
  max-width: 100%;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
}

.allNews__tags_bottom {
  margin-top: 12px;
  max-width: auto;
  width: auto;
}

.allNews__tags-line {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 6px 0 6px;
  max-width: 100%;
  width: 100%;
  flex-wrap: wrap;
  line-height: 40px;
}

.allNews__tag:hover{
  color: #e30017 !important;
}

.allNews__tags-line_column {
  flex-direction: column;
  flex-wrap: nowrap;
  position: relative;
  transition: all 500ms;
}

.allNews__tags-line_between {
  justify-content: space-between;
  align-items: center;
}

.allNews__tags-line .allNews__tag {
  color: #7e7e7e;
  margin-right: 10px;
}

.allNews__tags-line .allNews__tag_arrow {
  margin-top: 1px;
}

.allNews__tags-line .allNews__tag_arrow::after {
  content: '^';
  display: inline-block;
  transform: rotate(180deg) translateY(6px);
  margin-left: 5px;
  font-size: 30px;
  transition: all 500ms;
}

.allNews__body {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 0;
  max-width: 100%;
  width: 100%;
  flex-wrap: wrap;
}

.allNews__item {
  width: 30%;
  margin: 0 1.5% 20px;
  font-family: "GothamProLight";
  overflow: hidden;
}

.allNews__item:hover .allNews__image {
  transform: scale(1.05);
}

.allNews__image {
  width: 100%;
  transition: all 500ms;
}

.allNews__caption {
  font-size: 18px;
  margin: 10px 0;
  color: black;
}

.allNews__tag {
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
}

.allNews__tag_sub {
  margin-top: 10px;
}

.allNews__text {
  margin: 10px 0;
  color: rgba(0, 0, 0, 0.7);
  font-family: Arial;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.allNews__bottom {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 80px 0 40px;
  max-width: 100%;
  width: 100%;
}

.elsetags {
  position: absolute;
  top: 40px;
  left: 0;
  background-color: white;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-height: 0;
  padding: 0;
  transition: all 500ms;
}

.elsetags.active {
  padding: 0 20px 10px 5px;
  max-height: 100px;
}

@media screen and (max-width: 1280px) {
  .allNews {
    padding: 0 5%;
  }
}

@media screen and (max-width: 768px) {
  .allNews__top {
    flex-wrap: wrap;
  }
  .allNews__item {
    width: 45%;
    margin: 0 2.5% 20px;
  }
}

@media screen and (max-width: 768px) and (max-width: 450px) {
  .allNews__item {
    width: 90%;
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 768px) {
  .allNews__tags-line {
    margin: 10px 0;
  }
  .allNews__tags-line_between {
    justify-content: center;
    margin: 20px 0 0;
  }
  .allNews__tags-line_between .allNews__tag {
    display: none;
  }
}

@media screen and (max-width: 768px) and (max-width: 550px) {
  .allNews__bottom {
    flex-wrap: wrap;
  }
}

.photoBlock {
  display: none;
  align-items: center;
  /*display: flex;*/
  justify-content: center;
  margin: 0;
  max-width: 100%;
  width: 100%;
}

.photoBlock__item {
  width: 20%;
  position: relative;
  cursor: pointer;
}

.photoBlock__item-hover {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  font-size: 30px;
  opacity: 0;
  transition: all 500ms;
}

.photoBlock__item:hover .photoBlock__item-hover {
  opacity: 1;
}

.photoBlock__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .photoBlock {
    flex-wrap: wrap;
  }
  .photoBlock__item {
    width: 50%;
  }
  .photoBlock__item:last-child {
    display: none;
  }
}

@media screen and (max-width: 768px) and (max-width: 500px) {
  .photoBlock__item {
    width: 100%;
  }
  .photoBlock__item:last-child {
    display: flex;
  }
}

.newsPost {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1150px;
  width: 100%;
  flex-direction: column;
}

.newsPost__top {
  float: right;
  width: 48%;
  margin-bottom: 15px;
}

.newsPost__headline, .newsPost__info-line {
  width: 100%;
}

.newsPost__headline {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

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

.newsPost__image_left {
  float: left;
  margin: 0 20px 20px 0;
}

.newsPost__image_center {
  margin: 20px 0;
}

.newsPost__image_half {
  width: 50%;
}

.newsPost__image_full {
  width: 100%;
}

.newsPost__text {
  font-family: "Arial";
  color: rgba(0, 0, 0, 0.7);
}

.newsPost__tags {
  display: flex;
  margin: 10px 0;
  flex-wrap: wrap;
}

.newsPost__tag {
  margin: 10px 10px 0 0;
  text-transform: uppercase;
  font-family: "GothamProLight";
  color: rgba(0, 0, 0, 0.8);
}

.newsPost__tag_bold {
  color: black;
  font-weight: bold;
}

.newsPost__share {
  display: flex;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.newsPost__share-btn {
  margin: 10px 5px 0;
  width: 50px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms;
}

.newsPost__share-btn:nth-child(2) {
  color: #4c69c7;
  border: 1px solid #4c69c7;
  margin-left: 20px;
}

.newsPost__share-btn:nth-child(2):hover {
  background-color: #4c69c7;
  color: white;
}

.newsPost__share-btn:nth-child(3) {
  color: #2abeeb;
  border: 1px solid #2abeeb;
}

.newsPost__share-btn:nth-child(3):hover {
  background-color: #2abeeb;
  color: white;
}

.newsPost__share-btn:nth-child(4) {
  color: #d36259;
  border: 1px solid #d36259;
}

.newsPost__share-btn:nth-child(4):hover {
  background-color: #d36259;
  color: white;
}

.newsPost__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 20px 0;
}

.newsPost__link {
  text-transform: uppercase;
  font-family: "GothamProLight";
  color: #7e7e7e;
}

.newsPost__link_left::after {
  content: '';
  width: 30px;
  height: 1px;
  background-color: #7e7e7e;
  display: inline-block;
  margin: 0 0 5px 10px;
}

.newsPost__link_right::before {
  content: '';
  width: 30px;
  height: 1px;
  background-color: #7e7e7e;
  display: inline-block;
  margin: 0 10px 5px 0;
}

@media screen and (max-width: 1280px) {
  .newsPost {
    padding: 0 5%;
  }
}

@media screen and (max-width: 1280px) and (max-width: 1115px) {
  .newsPost__top {
    float: none;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .newsPost__image_left {
    float: none;
    margin: 20px 0;
  }
  .newsPost__image_center {
    margin: 20px 0;
  }
  .newsPost__image_half {
    width: 100%;
  }
  .newsPost__image_full {
    width: 100%;
  }
}

@media screen and (max-width: 768px) and (max-width: 600px) {
  .newsPost__navigation {
    flex-direction: column;
  }
  .newsPost__link {
    margin: 10px 0;
  }
}

@media screen and (max-width: 768px) and (max-width: 600px) and (max-width: 350px) {
  .newsPost__link {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) and (max-width: 600px) {
  .newsPost__link::before, .newsPost__link::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: #7e7e7e;
    display: inline-block;
  }
  .newsPost__link::before {
    margin: 0 10px 5px 0;
  }
  .newsPost__link::after {
    margin: 0 0 5px 10px;
  }
}

.contacts {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1120px;
  width: 100%;
  flex-direction: column;
}

.contacts__main {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}

.contacts__info {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  flex-direction: column;
}

.contacts__info-block {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto 20px;
  max-width: 100%;
  width: 100%;
}

.contacts__form {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 50%;
  width: 100%;
  flex-direction: column;
}

.contacts__main-headline {
  font-size: 30px;
  font-family: "GothamProLight";
  margin-bottom: 50px;
}

.contacts__sub-headline {
  font-size: 23px;
  font-family: "GothamProLight";
  margin-bottom: 30px;
}

.contacts__info-column_left {
  width: 90px;
}

.contacts__info-column_right {
  width: 220px;
}

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

.contacts__info-text_bold {
  font-family: "GothamProBold";
}

.contacts__info-text_grey {
  color: #a19f9f;
}

.contacts__input, .contacts__textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border-radius: 3px;
  border: 1px solid #929293;
}

.contacts__textarea {
  resize: none;
  height: 100px;
  font-family: "Arial";
}

.contacts__submit {
  background-color: #e30017;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.1;
  margin: 0;
  padding: 20px 20px;
  text-transform: uppercase;
  width: 30%;
  transition: all 300ms;
  font-family: GothamProMedium;
  align-self: flex-end;
}

.contacts__submit:hover {
  box-shadow: inset 0 0 5px black;
  transform: scale(0.99);
}

.contacts__map {
  width: 100%;
  height: 500px;
  margin: 40px 0;
}

@media screen and (max-width: 1280px) {
  .contacts {
    padding: 0 5%;
  }
}

@media screen and (max-width: 1024px) {
  .contacts__submit {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .contacts__main {
    flex-direction: column;
    width: 100%;
  }
  .contacts__info, .contacts__form {
    width: 100%;
    align-items: center;
  }
}

@media screen and (max-width: 768px) and (max-width: 560px) {
  .contacts__info, .contacts__form {
    max-width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .contacts__info-block {
    justify-content: center;
  }
  .contacts__submit {
    width: 100%;
  }
}

.minimaps {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1120px;
  width: 100%;
  flex-direction: column;
}

.minimaps__headline {
  align-self: center;
  font-size: 18px;
  position: relative;
  margin: 3.5% 0;
  text-transform: uppercase;
}

.minimaps__headline::after {
  content: '';
  width: 50px;
  height: 2px;
  background-color: #e30017;
  position: absolute;
  bottom: -5px;
  left: calc(50% - 25px);
  transition: all 500ms;
  height: 3px;
  bottom: -15px;
}

.minimaps__switchers {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 30px auto;
  max-width: 100%;
  width: 100%;
}

.minimaps__all {
  text-transform: uppercase;
  border-bottom: 1px solid black;
  font-family: "GothamProLight";
  font-size: 20px;
  cursor: pointer;
}

.minimaps__select {
  background: transparent;
  border: none;
  padding: 10px;
  font-size: 20px;
  text-transform: uppercase;
  font-family: "GothamProLight";
  cursor: pointer;
}

.minimaps__button {
  background-color: #e30017;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.1;
  margin: 0;
  padding: 20px 20px;
  text-transform: uppercase;
  width: 20%;
  transition: all 300ms;
  font-family: GothamProMedium;
}

.minimaps__button:hover {
  box-shadow: inset 0 0 5px black;
  transform: scale(0.99);
}

.minimaps__minimap-block {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 60px auto 40px;
  max-width: 100%;
  width: 100%;
  position: relative;
}

.minimaps__minimap-block::before {
  content: '';
  width: 80%;
  height: 1px;
  background-color: #656565;
  display: block;
  position: absolute;
  top: -35px;
  left: 10%;
}

.minimaps__right {
  width: 80%;
  height: 300px;
}

@media screen and (max-width: 1280px) {
  .minimaps {
    padding: 0 5%;
  }
}

@media screen and (max-width: 768px) {
  .minimaps__switchers {
    flex-direction: column;
    align-items: center;
  }
  .minimaps__switchers > * {
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }
  .minimaps__minimap-block {
    flex-direction: column;
  }
  .minimaps__left, .minimaps__right {
    width: 100%;
  }
}

.nav__languages{
  position: relative;
  cursor: pointer;
  margin-top: 4px;
}

.nav__languages::after{
  content: '';
  width: 0px;
  height: 0px;
  border-top: 3px solid black;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  position: absolute;
  top: 42%;
  right: 0;
  /*display: none;*/
}

.nav__other-langs{
  position: absolute;
  top: calc(100% + 2px);
  width: 100%;
  background-color: rgba(255,255,255,0.5);
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  max-height: 0;
  overflow: hidden;
  transition: all 500ms;
}

.nav__languages:hover .nav__other-langs{
  max-height: 100px;
}

.nav__language{
  width: 40px;
  height: 30px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black
}

.nav__language_other:hover{
  color: #e30017
}

.nav__language_main{
  position: relative;
}

.nav__language_main::after{
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #e30017;
  bottom: 4px;
  left: calc(50% - 10px);
}

/*404 page*/
.error{
  font-size: 130px;
  margin-bottom: 20px;
}
.homeButton{
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  height: 50px;
  color: white;
  background-color: #e30017;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 10px;
}
.errorContainer{
  align-self: center;
}
