
ul li {
  list-style-type: none;
}


@media screen and (max-width: 576px) {
  .header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
  }
}

.header__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 992px) {
  .header__search {
    display: none;
  }
}

.header__search-form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 15px;
}

.header__search-input {
  width: 55%;
  color: #4c4d4f;
  border: none;
  border-bottom: 1px solid #4c4d4f;
  outline: none;
}

.header__search-input:hover,
.header__search-input:focus {
  border-bottom: 1px solid #ee592b;
}

.header__search-input::-webkit-input-placeholder {
  color: #4c4d4f;
}

.header__search-input:-ms-input-placeholder {
  color: #4c4d4f;
}

.header__search-input::placeholder {
  color: #4c4d4f;
}

.header__search-button {
  position: relative;
  border: none;
  background-color: transparent;
  outline: none;
}

.header__search-button:hover {
  outline: none;
}

.header__search-button::after {
  content: '';
  position: absolute;
  top: -24px;
  left: -40px;
  width: 26px;
  height: 29px;
  outline: none;
  cursor: pointer;
  background-image: url("../img/search.svg");
  background-repeat: no-repeat;
}

.header__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (max-width: 992px) {
  .header__phone {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  .header__phone {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.phone__numb {
  font-size: 25px;
  color: #ee592b;
}

@media screen and (max-width: 992px) {
  .phone__numb {
    font-size: 20px;
  }
}

.nav {
  margin-top: 10px;
}

@media screen and (max-width: 992px) {
  .nav {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
    background-color: #ee592b;
    display: block;
    width: 50%;
    margin-top: 0;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
  }
}

@media screen and (max-width: 480px) {
  .nav {
    width: 100%;
  }
}

.nav_active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.nav__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 992px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
  }
}

.nav__list::before {
  content: '';
  position: absolute;
  top: 0;
  left: -48px;
  width: 4%;
  height: 95px;
  background-color: #ee592b;
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  border-radius: 10px;
}

@media screen and (max-width: 992px) {
  .nav__list::before {
    display: none;
  }
}

.nav__list::after {
  content: '';
  position: absolute;
  z-index: 999;
  top: 0;
  right: -39px;
  width: 4%;
  height: 95px;
  background-color: #ee592b;
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  border-radius: 10px;
}

@media screen and (max-width: 992px) {
  .nav__list::after {
    display: none;
  }
}

.nav__item {
  position: relative;
  z-index: 999;
  width: 15.5%;
  height: 95px;
  background-color: #ee592b;
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  border-radius: 10px;
  margin-right: 10px;
  transition: background-color 0.3s linear;
}

@media screen and (max-width: 992px) {
  .nav__item {
    position: relative;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-bottom: none;
    border-radius: 0;
    width: 100%;
    height: auto;
    min-height: 16.666666vh;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-right: 0;
  }
}

.nav__item--active::after {
  z-index: -1;
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  width: 203.5%;
  height: 170px;
  background-color: #787878;
  border-radius: 10px;
}

@media screen and (max-width: 1200px) {
  .nav__item--active::after {
    height: 95px;
  }
}

@media screen and (max-width: 992px) {
  .nav__item--active::after {
    display: none;
  }
}

.nav__item:nth-child(4).nav__item--active::after {
  z-index: -1;
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  width: 203.5%;
  height: 480px;
  background: linear-gradient(to bottom right, #787878 0%, #787878 40%, rgba(120, 120, 120, 0.8) 70%, rgba(120, 120, 120, 0.6) 100%);
  border-radius: 10px;
}

@media screen and (max-width: 1200px) {
  .nav__item:nth-child(4).nav__item--active::after {
    height: 95px;
    background-color: #787878;
  }
}

@media screen and (max-width: 992px) {
  .nav__item:nth-child(4).nav__item--active::after {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  .nav__item--active {
    background-color: #787878;
  }
}

.nav__link {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  -webkit-transform: skewX(25deg) translate(-50%, -50%);
  -ms-transform: skewX(25deg) translate(-50%, -50%);
  transform: skewX(25deg) translate(-50%, -50%);
}

.nav__link:hover {
  color: #c8c8c8;
}

@media screen and (max-width: 992px) {
  .nav__link {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .nav__link:hover {
    color: #c8c8c8;
  }
}

@media screen and (max-width: 1200px) {
  .nav__link {
    left: 52%;
    font-size: 14px;
  }
}

.nav__close-parent {
  display: none;
  position: absolute;
  z-index: 99999;
  top: 2%;
  right: 5%;
}

@media screen and (max-width: 992px) {
  .nav__close-parent {
    display: block;
  }
}

.nav__close {
  cursor: pointer;
}

.nav__close:after {
  display: none;
}

.nav__close svg {
  width: 20px;
  height: 20px;
}

.nav__close svg path {
  transition: fill 0.3s linear;
}

.nav__close:hover path {
  fill: #ee592b;
}

.menu-icon {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 4%;
  right: 3%;
}

.menu-icon svg {
  height: 100%;
  width: 100%;
  fill: #ee592b;
}

@media screen and (max-width: 992px) {
  .menu-icon {
    display: inline-block;
  }
}

.dropdown {
  display: none;
  position: absolute;
  top: 100px;
  z-index: 9999;
  transition: opacity 0.3s linear;
}

.dropdown-count {
    column-count: 2;
    height: 300px;
}

.dropdown-count .dropdow__item {
	min-width: 150px;
}

.nav__item.nav__item--active .dropdown {
  display: block;
}

@media screen and (max-width: 992px) {
  .nav__item.nav__item--active .dropdown {
    display: none;
  }
}

.dropdown li {
  text-align: left;
  -webkit-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transform: skewX(25deg);
  margin-bottom: 2px;
  transition: color 0.3s linear;
}

@media screen and (max-width: 768px) {
  .dropdown li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.dropdown__button {
  font-size: 18px;
  color: #ffffff;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s linear;
}

.dropdown__button:hover {
  text-decoration: underline;
}

.dropdown__button:focus {
  text-decoration: underline;
	outline: none;
}

.footer {
  position: relative;
  z-index: 1000;
  background-color: #ee592b;
  color: #ffffff;
  padding: 22px 0 15px 0;
}

@media screen and (max-width: 992px) {
  .footer__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 20px;
  }
}

.footer__company {
  font-size: 18px;
}

.footer__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.footer__phone-numb {
  font-size: 25px;
  color: #ffffff;
}

.footer__phone-numb:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .footer__phone-numb {
    font-size: 20px;
  }
}


.footer__copy {
  margin-bottom: 0;
}

.footer__copy a {
  color: #ffffff;
}

.footer__copy a:hover {
  text-decoration: underline;
}

.button {
  display: inline-block;
  padding: 10px 30px;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  background-color: #ee592b;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s linear, color 0.3s linear, border 0.3s linear;
}

.button:hover,
.button:focus,
.button:active {
  background-color: #787878;
}

.button__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.button--popup {
  width: 30%;
}

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

@media screen and (max-width: 576px) {
  .button--popup {
    width: 70%;
  }
}

.top {
  position: fixed;
  right: 2%;
  bottom: 2%;
  z-index: 997;
  font-size: 0;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 30%;
  background-color: #ee592b;
  transition: background-color 0.3s linear;
}

.top:hover {
  background-color: rgba(196, 18, 48, 0.8);
}

.top::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 26px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(../img/arrow-top.svg);
}

.container-breadcrumbs {
  padding: 25px 0 40px 0;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li {
  position: relative;
  margin-right: 25px;
}

.breadcrumbs li a {
  color: #5da0fc;
  text-decoration: underline;
}

.breadcrumbs li a:hover {
  text-decoration: none;
}

.breadcrumbs li:last-child {
  margin-right: 0;
}

.breadcrumbs li::after {
  content: '–';
  position: absolute;
  top: 0;
  right: -15px;
  color: #787878;
}

.breadcrumbs-current {
  color: #787878;
}

.breadcrumbs-current::after {
  display: none;
}

.section-content {
  padding: 70px 0 100px;
  position: relative;
}

.main-title {
  font-size: 30px;
  color: #ee592b;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .main-title {
    font-size: 26px;
  }
}

@media screen and (max-width: 480px) {
  .main-title {
    font-size: 20px;
  }
}

.big-red-word {
  color: #ee592b;
  font-size: 22px;
}

.red-word {
  color: #ee592b;
}

@media screen and (max-width: 1200px) {
  .red-word {
    color: #ffffff;
    margin-top: 30px;
  }
}

.main-content {
  padding-bottom: 50px;
}

.main-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.main-content li {
  position: relative;
  list-style-type: disc;
  padding-left: 10px;
  margin-bottom: 10px;
}

.main-content table td {
  padding: 5px 20px;
  border-bottom: 1px solid #787878;
  border-top: none;
  vertical-align: middle;
}

@media screen and (max-width: 480px) {
  .main-content table td {
    padding: 5px 5px;
  }
}

.grid__item {
  height: 200px;
  margin-bottom: 30px;
}

.grid__content {
  position: relative;
}

.grid__content::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 1;
  transition: opacity 0.3s linear;
}

.grid__content:hover::after {
  opacity: 0.5;
}

.grid__svg {
  display: none;
}

.grid__content:hover .grid__svg {
  display: block;
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  -webkit-animation: downloadUp 0.4s linear;
  animation: downloadUp 0.4s linear;
}

@-webkit-keyframes downloadUp {
  0% {
    margin-top: -50px;
    fill-opacity: 0;
  }

  100% {
    margin-top: 0;
    fill-opacity: 1;
  }
}

@keyframes downloadUp {
  0% {
    margin-top: -50px;
    fill-opacity: 0;
  }

  100% {
    margin-top: 0;
    fill-opacity: 1;
  }
}

.grid__img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
}

.grid__title {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-size: 22px;
  text-transform: uppercase;
  color: #ee592b;
  width: 100%;
  text-align: center;
  margin: 0;
  opacity: 1;
  transition: opacity 0.3s linear;
}

@media screen and (max-width: 480px) {
  .grid__title {
    font-size: 18px;
  }
}

.grid__link:hover .grid__title {
  opacity: 0;
}

.grid__title--more {
  color: #787878;
}

.grid__link:hover .grid__title--more {
  opacity: 1;
}

.grid__content--more:hover::after {
  opacity: 0.9;
}

.grid__content--more:hover::before {
  display: none;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.95);
}

@media screen and (max-width: 768px) {
  .popup {
    z-index: 99999;
  }
}

.popup__show {
  display: block;
}

.popup__wrap {
  position: fixed;
  z-index: 9999;
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  width: 70%;
  padding: 50px;
}

@media screen and (max-width: 1200px) {
  .popup__wrap {
    width: 80%;
    padding: 30px;
  }
}

@media screen and (max-width: 992px) {
  .popup__wrap {
    bottom: 60%;
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .popup__wrap {
    width: 100%;
    bottom: 0;
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    padding: 20px;
    height: 100%;
    overflow-y: scroll;
  }
}

.popup__close {
  position: relative;
  top: 5%;
  left: 90%;
  width: 22px;
  height: 22px;
  font-size: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.popup__close:focus {
  outline: none;
}

.popup__close::before,
.popup__close::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 3px;
  background-color: #ee592b;
  transition: background-color 0.3s linear;
}

.popup__close::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.popup__close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.popup__close:hover::before,
.popup__close:focus::before,
.popup__close:hover::after,
.popup__close:focus::after {
  background-color: #787878;
}

.popup__form-wrap {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main-title--popup {
  margin-bottom: 50px;
}

.popup__input {
  width: 100%;
  color: #787878;
  background-color: transparent;
  border: 1px solid #787878;
  padding: 10px;
  margin-bottom: 20px;
  transition: border 0.3s linear, background-color 0.3s linear;
}

.popup__input:focus {
  outline: none;
}

.popup__input:hover,
.popup__input:focus {
  border: 1px solid #ee592b;
  background-color: rgba(255, 255, 255, 0.5);
}

.popup__form input::-webkit-input-placeholder,
.popup__form textarea::-webkit-input-placeholder {
  color: #787878;
  text-transform: uppercase;
  font-size: 14px;
}

.popup__form input:-ms-input-placeholder,
.popup__form textarea:-ms-input-placeholder {
  color: #787878;
  text-transform: uppercase;
  font-size: 14px;
}

.popup__form input::placeholder,
.popup__form textarea::placeholder {
  color: #787878;
  text-transform: uppercase;
  font-size: 14px;
}

.popup__politic {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.popup__politic #checkbox {
  margin-right: 15px;
  margin-left: 10px;
}

.popup__politic label {
  color: #787878;
  margin-bottom: 0;
  font-size: 14px;
}

@media screen and (max-width: 576px) {
  .popup__politic label {
    font-size: 12px;
  }
}

.popup__success {
  display: none;
}

.popup__overlay {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.caption-column--index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 68vh;
  position: relative;
}

.caption-column--index img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*@media screen and (max-width: 992px) {
  .caption-column--index {
    height: 100%;
    min-height: 50vh;
  }
}*/

.caption-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80vh;
  position: relative;
}

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

@media screen and (max-width: 992px) {
  .caption-column {
    height: 100%;
    min-height: 50vh;
  }
}

.caption-column__left {
  position: relative;
  width: 70vw;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../img/404-img-right.jpg") left center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1200px) {
  .caption-column__left {
    width: 0;
  }
}

@media screen and (max-width: 992px) {
  .caption-column__left {
    width: 0;
  }
}

.caption-column__right {
  width: 47vw;
  height: 100%;
}

.caption-column__right::before {
  content: '';
  position: absolute;
  z-index: 99;
  top: 0;
  left: 33vw;
  background-image: url(../img/v.svg);
  background-repeat: no-repeat;
  width: 100%;
  height: 101%;
}

@media screen and (max-width: 1200px) {
  .caption-column__right::after {
    content: '';
    position: absolute;
    z-index: 99;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.55);
    opacity: 1;
    transition: opacity 0.3s linear;
  }
}

@media screen and (max-width: 768px) {
  .caption-column__right {
    width: 100%;
  }

  .caption-column__right::before {
    display: none;
  }
}

.caption-column--index .caption-column__right::before {
  left: 35%;
}

.caption-column__right-wrap {
  position: absolute;
  right: -190px;
  width: 64%;
  height: 100%;
  -webkit-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  transform: skewX(20deg);
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .caption-column__right-wrap {
    right: 0;
    width: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    z-index: -1;
  }
}

.caption-column__img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.caption-column__img--column__right {
  -webkit-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  transform: skewX(-20deg);
  margin-left: -15%;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .caption-column__img--column__right {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-left: 0;
  }
}

.caption-column__index-desc {
  font-size: 40px;
  line-height: 45px;
  text-transform: uppercase;
  color: #ee592b;
  width: 70%;
  padding-top: 30vh;
  padding-right: 2vw;
  padding-bottom: 2vh;
  padding-left: 8vw;
}

@media screen and (max-width: 1200px) {
  .caption-column__index-desc {
    position: relative;
    z-index: 999;
    width: 100vw;
    padding: 10vw;
    color: #ffffff;
  }
}

@media screen and (max-width: 768px) {
  .caption-column__index-desc {
    font-size: 30px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 480px) {
  .caption-column__index-desc {
    font-size: 22px;
  }
}

.caption-column__content {
  width: 70%;
  max-height: 90%;
  padding: 12vh 5vw 3vh 8vw;
}

@media screen and (max-width: 1200px) {
  .caption-column__content {
    position: relative;
    z-index: 999;
    width: 100vw;
    padding: 8vw;
  }
}

.caption-column__title {
  font-size: 30px;
  text-transform: uppercase;
  color: #ee592b;
  margin-bottom: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 1200px) {
  .caption-column__title {
    color: #ffffff;
    padding-right: 0;
  }
}

@media screen and (max-width: 576px) {
  .caption-column__title {
    font-size: 24px;
  }
}

.caption-column__desc {
  max-height: 470px;
  overflow: auto;
  padding-right: 20px;
}

@media screen and (max-width: 1200px) {
  .caption-column__desc {
    width: 100%;
    height: 100%;
    max-height: 100%;
    padding-right: 0;
    color: #ffffff;
  }
}

.caption-column__title--news {
  font-size: 22px;
  text-transform: uppercase;
  color: #ee592b;
  margin-bottom: 30px;
}

@media screen and (max-width: 1200px) {
  .caption-column__title--news {
    color: #ffffff;
  }
}

@media screen and (max-height: 850px) and (min-width: 992px) {

  .caption-column--index,
  .caption-column {
    height: 100vh;
  }

  .caption-column__right::before {
    left: 35vw;
  }

  .caption-column__desc {
    max-height: 400px;
  }
}

.features {
  position: relative;
}

.features__title {
  display: none;
  color: #4c4d4f;
  font-size: 26px;
  margin-bottom: 20px;
}

@media screen and (max-width: 992px) {
  .features__title {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .features__title {
    font-size: 20px;
    text-align: center;
  }
}

@media screen and (max-width: 992px) {
  .features__inf {
    display: none;
  }
}

.diler__item,
.agro__item {
  cursor: pointer;
}

.circle-active {
  opacity: 0;
}

.diler__item:hover .circle-active,
.diler__item--current .circle-active,
.agro__item:hover .circle-active,
.agro__item--current .circle-active {
  opacity: 1;
  stroke-width: 1px;
  stroke: #c31230;
}

.features__diler {
  margin-bottom: 100px;
}

.features__content {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 60%;
}

@media screen and (max-width: 992px) {
  .features__content {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    max-width: 100%;
  }
}

.features__agro .features__content {
  top: 35%;
}

.features__list {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 992px) {
  .features__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media screen and (max-width: 992px) {
  .features__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 30px 0;
  }
}

@media screen and (max-width: 480px) {
  .features__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.features__active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.features__img {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
}

.features__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 1200px) {
  .features__img {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 992px) {
  .features__img {
    width: 150px;
    height: 150px;
    margin-right: 30px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  .features__img {
    margin-bottom: 20px;
  }
}

.features__desc {
  width: 120%;
  margin-bottom: 0;
  text-align: center;
  font-size: 18px;
}

@media screen and (max-width: 1200px) {
  .features__desc {
    font-size: 16px;
  }
}

@media screen and (max-width: 992px) {
  .features__desc {
    width: 100%;
    text-align: left;
  }
}

@media screen and (max-width: 480px) {
  .features__desc {
    text-align: center;
  }
}

.features__agro .features__desc {
  width: 100%;
}

.news__item {
  height: 200px;
  margin-bottom: 30px;
}

.news__content {
  position: relative;
}

.news__content::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 1;
  transition: opacity 0.3s linear;
}

.news__content:hover::after {
  opacity: 0.8;
}

.news__img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
}

.news__title {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-size: 20px;
  text-transform: uppercase;
  color: #ee592b;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 10px;
  opacity: 1;
  transition: opacity 0.3s linear;
}

@media screen and (max-width: 480px) {
  .news__title {
    font-size: 18px;
  }
}

.news__text {
  display: none;
}

.news__item--current .news__content::after {
  background-color: rgba(255, 255, 255, 0);
  opacity: 0;
}

.news__item--current .news__content:hover::after {
  opacity: 0;
}

.news__item--current .news__title {
  opacity: 0;
}

.news__title--more {
  color: #787878;
}

.news__content--more:hover::after {
  opacity: 0.9;
}

.section-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.section-product__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.product__inner {
    min-height: 950px;
}

@media screen and (max-width: 992px) {
  .product__inner {
    min-height: 1px;
  }
}

.product {
  display: none;
}

.product--current {
  display: block;
}

.product__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 60px;
}

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

@media screen and (max-width: 768px) {
  .product__img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
  }
}

.product__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product__title {
  position: relative;
  font-size: 22px;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px 10px 10px 0;
}

.product__title::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: -50%;
  right: 0;
  bottom: 0;
  background-color: #ee592b;
}

@media screen and (max-width: 768px) {
  .product__title::after {
    left: 0;
  }
}

.product__features-title {
  font-size: 22px;
  margin-bottom: 40px;
}

.product__features-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  margin-bottom: 45px;
}

.product__features-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 50px;
}

@media screen and (max-width: 576px) {
  .product__features-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.product__features-img {
  height: 80px;
  margin-bottom: 10px;
}

.product__features-img img {
  height: 100%;
}

.product__features-desc {
  line-height: 1.3;
  margin-bottom: 0;
}

@media screen and (max-width: 576px) {
  .product__features-desc {
    width: 80vw;
    text-align: center;
  }
}

.products {
  position: absolute;
  top: 10%;
  bottom: 0;
  right: 0;
  left: 45%;
}

@media screen and (max-width: 992px) {
  .products {
    position: static;
  }
}

.products__slider {
  position: relative;
}

.products__list {
  position: relative;
  left: 50%;
  border: 2px solid #ee592b;
  border-radius: 50%;
  width: 50vw;
  height: 50vw;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 992px) {
  .products__list {
    border: none;
    border-radius: 0;
    left: 0;
    width: 100%;
    height: 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

@media screen and (max-width: 768px) {
  .products__list {
    height: 250px;
  }
}

@media screen and (max-width: 480px) {
  .products__list {
    height: 200px;
  }
}

.products__item {
  position: relative;
  right: -60%;
  width: 12vw;
  height: 12vw;
  background-color: #fff;
  border-radius: 50%;
  border: 3px solid #ee592b;
  cursor: pointer;
  visibility: hidden;
}

.products__item:hover {
  border: 4px solid #ee592b;
}

@media screen and (max-width: 992px) {
  .products__item {
    width: 150px;
    height: 150px;
    display: none;
    position: relative;
    right: 0;
  }
}

@media screen and (max-width: 768px) {
  .products__item {
    width: 120px;
    height: 120px;
  }
}

@media screen and (max-width: 480px) {
  .products__item {
    width: 80px;
    height: 80px;
    border: 2px solid #ee592b;
  }

  .products__item:hover {
    border: 3px solid #ee592b;
  }
}

.products__item--current {
  width: 13vw;
  height: 13vw;
  border: 7px solid #ee592b;
  cursor: default;
}

.products__item--current img {
  width: 70%;
  height: 70%;
}

.products__item--current:hover {
  border: 7px solid #ee592b;
}

@media screen and (max-width: 992px) {
  .products__item--current {
    width: 150px;
    height: 150px;
  }
}

@media screen and (max-width: 768px) {
  .products__item--current {
    width: 120px;
    height: 120px;
  }
}

@media screen and (max-width: 480px) {
  .products__item--current {
    width: 80px;
    height: 80px;
    border: 4px solid #ee592b;
  }

  .products__item--current:hover {
    border: 4px solid #ee592b;
  }
}

.products__item1 {
  position: absolute;
  left: 16%;
  top: -4%;
  visibility: visible;
}

@media screen and (max-width: 992px) {
  .products__item1 {
    position: relative;
    left: 0;
    top: 0;
    display: block;
  }
}

.products__item2 {
  position: absolute;
  left: -6%;
  top: 21%;
  visibility: visible;
}

@media screen and (max-width: 992px) {
  .products__item2 {
    position: relative;
    left: 0;
    top: 0;
    display: block;
  }
}

.products__item3 {
  position: absolute;
  left: -9%;
  top: 56%;
  visibility: visible;
}

@media screen and (max-width: 992px) {
  .products__item3 {
    position: relative;
    left: 0;
    top: 0;
    display: block;
  }
}

.products__item4 {
  position: absolute;
  left: 16%;
  top: 83%;
  visibility: visible;
}

@media screen and (max-width: 992px) {
  .products__item4 {
    position: relative;
    left: 0;
    top: 0;
    display: block;
  }
}

.products__img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  -o-object-fit: contain;
  object-fit: contain;
}

.arrows__list {
  position: absolute;
  top: 50%;
  right: 32%;
}

@media screen and (max-width: 992px) {
  .arrows__list {
    right: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.arrows__btn {
  position: absolute;
  border: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  outline: none;
}

.arrows__btn:hover {
  outline: none;
}

.arrows__btn:focus {
  outline: none;
}

.arrows__btn:disabled {
  opacity: 0.2;
  cursor: default;
}

@media screen and (max-width: 1200px) {
  .arrows__btn {
    width: 50px;
    height: 50px;
  }
}

.arrows__btn--prev {
  bottom: 0;
  background-image: url("../img/arrow_up.svg");
}

@media screen and (max-width: 992px) {
  .arrows__btn--prev {
    top: 0;
    left: -60px;
    -webkit-transform: rotate(-100deg);
    -ms-transform: rotate(-100deg);
    transform: rotate(-100deg);
  }
}

.arrows__btn--next {
  top: 0;
  background-image: url("../img/arrow_down.svg");
}

@media screen and (max-width: 992px) {
  .arrows__btn--next {
    left: 20px;
    -webkit-transform: rotate(-80deg);
    -ms-transform: rotate(-80deg);
    transform: rotate(-80deg);
  }
}

.support__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .support__item {
    margin-bottom: 30px;
  }
}

.support__img {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 3px solid #787878;
  margin-bottom: 20px;
  background-image: url("/assets/img/agro-1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
}

.support__img::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95%;
  height: 95%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #ffffff;
}

.support__desc {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #ee592b;
}

.contacts__item {
  margin-bottom: 10px;
}

.contacts__item a {
  display: block;
}

.contacts__item a span {
  color: transparent;
}

.contacts__email {
  color: #4c4d4f;
}

.contacts__email:hover {
  color: #ee592b;
}

.contacts__head {
  margin-top: 30px;
}

.contacts__head a {
  color: #4c4d4f;
  display: block;
}

.contacts__head a:hover {
  color: #ee592b;
}

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

  .contacts__email,
  .contacts__head a {
    color: #ffffff;
  }
}

.cookie-alarm {
    z-index: 99;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #ee592b;
    padding: 3vw 12vw;
}


.cookie-alarm__text {
    color: #fff; 
    font-size: 18px;
}

.cookie-alarm__btn {
    background: #787878;
    border: none;
    padding: 10px 30px;
    color: #fff;
    margin-left: 25px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .cookie-alarm {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .cookie-alarm__text { 
        font-size: 16px;
    }
    .cookie-alarm__btn {
        margin-left: 0;
        margin-top: 5px;
    }
}