@charset "UTF-8";

/*
    globals
*/

.table-scroll {
  overflow-y: auto;
}

.mascot {
  position: relative;
  padding-left: 50px;
  padding-right: 145px;
  display: flex;
  align-items: flex-start;
  padding-top: 40px;
}

.mascot-image {
  position: relative;

}

.mascot-image img {
  width: 330px;
}

.mascot::before {
  content: "";
  position: absolute;
  height: 380px;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background-color: #F3F3F3;
}

.mascot-message {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 14px -1px rgba(0, 0, 0, 0.18);
  position: relative;
  padding: 20px;
  text-align: center;
  flex: 1;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  min-height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -30px;
}

.mascot-message::before {
  content: "";
  position: absolute;
  background-image: url("/local/templates/main_copy/images/mascot/message_arrow.svg");
  background-size: contain;
  width: 83px;
  height: 60.5px;
  left: -20px;
  top: 100%;
}

.modal.modal-event {
  background-size: cover;
  background-position: center;
  width: 850px;
  left: calc(50% - 425px);
  margin-left: 0;
  height: 570px;
  padding: 90px 300px 20px 70px;
}

.modal.modal-event .close::before,
.modal.modal-event .close::after {
  background-color: #fff;
}

.modal-event .body {
  color: #fff;
}

.modal-event .event-type {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 20px;
}

.modal-event .event-name {
  font-size: 22px;
  font-weight: 500;
}

.modal-event .event-info-button {
  padding: 25px 0px 0px;
  text-align: center;
}

.modal-event .event-datetime {
  border-bottom: 3px solid #ff8c29;
  padding: 3px 10px;
  max-width: 310px;
  text-align: center;
  margin: 0 auto 40px;
}

.modal-event .event-datetime .date {
  font-size: 35px;
  font-weight: 700;
}

.modal-event .event-datetime .time {
  font-size: 28px;
  font-weight: 600;
}

.modal-event .button {
  text-align: center;
  font-size: 20px;
  max-width: 300px;
  font-weight: 800;
}

.custom-check.icon-only,
.custom-radio.icon-only {
  margin-bottom: 0;
  height: 24px;
}

.custom-check label:hover,
.custom-radio label:hover {
  cursor: pointer;
}

.custom-radio {
  position: relative;
}

.custom-radio input {
  position: absolute;
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
}

.custom-radio label {
  font-weight: 500;
  padding: 3px 0px 3px 35px;
  display: inline-block;

}

.custom-radio input:checked+label::after {
  opacity: 1;
}

.custom-radio label::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: calc(50% - 12px);
  left: 0;
  border: 2px solid #ff8c29;
  border-radius: 50px;
}

.custom-radio label::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: calc(50% - 9px);
  left: 3px;
  opacity: 0;
  transition: opacity .2s linear;
  background-color: #ff8c29;
  border-radius: 50px;
}

.custom-radio.icon-only {
  display: none;
}

.custom-check {
  position: relative;
}

.custom-check input {
  position: absolute;
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
}

.custom-check label {
  font-weight: 500;
  padding: 3px 0px 3px 35px;
  display: inline-block;
}

.custom-check input:checked+label::after {
  opacity: 1;
}

.custom-check label::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: calc(50% - 12px);
  left: 0;
  border: 2px solid #ff8c29;
  border-radius: 4px;
}

.custom-check label::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  top: calc(50% - 9px);
  left: 8px;
  opacity: 0;
  transition: opacity .2s linear;
  border-bottom: 2px solid #ff8c29;
  border-right: 2px solid #ff8c29;
  transform: rotate(45deg);
}

.custom-check.icon-only {
  display: none;
}

.preloader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: #fff;
  z-index: 1000;
}

.preloader img {
  width: 150px;
  height: 150px;
  transition: 1s;
  -webkit-animation: rotate 1000ms infinite;
  animation: rotate 1000ms infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.visible_slick_list .slick-list {
  overflow: visible;
}

.contents_item {
  display: none;
}

.contents_item.show {
  display: block;
}

.icon_text_block>.row {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.icon_text_block>.row .column-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 185px;
  flex: 0 0 185px;
}

.icon_text_block .icon_container {
  width: 115px;
  height: 115px;
  background-color: #fff;
  border-radius: 50%;
  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;
}

.icon_text_block .title {
  margin-bottom: 23px;
}

.icon_text_block p {
  margin-bottom: 7px;
}

.video {
  position: relative;
  padding-bottom: 56%;
  background-position: center;
  background-size: cover;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
}

.video .play {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

.video .play::after {
  content: "";
  display: block;
  position: absolute;
  border: none;
  background-color: transparent;
  background-image: url(../images/play.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 80px;
  width: 80px;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  cursor: pointer;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.video .play:hover::after {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.block_link {
  cursor: pointer;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

a {
  text-decoration: none;
  color: #ff8c29;
  cursor: pointer;
}

h1 small {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  display: block;
  padding-top: 34px;
}

h2.title {
  font-size: 40px;
  text-align: left;
  font-weight: 800;
  margin: 0px;
  line-height: 45px;
  padding: 0px;
}

h3.title {
  font-size: 30px;
  font-weight: 800;
}

p {
  font-family: 'Gotham Pro';
  line-height: 19px;
  margin: 0px;
  margin-bottom: 20px;
}

.container {
  margin: 0 auto;
  max-width: 1560px;
  width: 100%;
  padding: 0 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 200px;
}

.container_md {
  max-width: 1363px;
}

.container_sm {
  max-width: 1060px;
}

.block_title {
  font-weight: 800;
  text-align: left;
  padding: 0px;
  font-size: 40px;
  line-height: 57px;
}

.block_title span {
  background-color: #ff8c29;
  padding: 0px 16px 3px;
  margin-left: -15px;
  border-radius: 5px;
  color: #fff;
}

.slick-slider .slick-slide {
  height: initial;
}

.button {
  border: 2px solid #ff8c29;
  padding: 12px 20px;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  font-family: 'Montserrat';
  cursor: pointer;
}

.button_arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: calc(50% - 5px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 2px solid #ff8c29;
  border-right: 2px solid #ff8c29;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.button_arrow.arrow_white::after {
  border-color: #fff;
}

.button_arrow.arrow_black::after {
  border-color: #1d2229;
}

.button_arrow.arrow_side_right {
  padding-right: 39px;
}

.button_arrow.arrow_side_right::after {
  right: 17px;
}

.button_arrow.arrow_side_left {
  padding-left: 39px;
}

.button_arrow.arrow_side_left::after {
  left: 17px;
}

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

.button_arrow.arrow_left::after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.button_arrow.arrow_bottom::after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

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

.button_arrow:hover::after {
  border-color: #fff;
}

.button_circle {
  border-radius: 50%;
  padding: 15px;
}

.button_circle.arrow_right::after {
  left: calc(50% - 7px);
}

.button.filled {
  background-color: #ff8c29;
}

.button.filled.color_black {
  color: #fff;
}

.button.filled.arrow_white::after {
  border-color: #1d2229;
}

.button.filled.arrow_black::after {
  border-color: #fff;
}

.button.black {
  border-color: #1d2229;
  color: #1d2229;
}

.button.black:hover {
  background-color: #1d2229;
  color: #fff;
}

.button.color_black {
  color: #1d2229;
}

.button:hover {
  background-color: #ff8c29;
}

.button:hover.color_black {
  color: #fff;
}

.button:hover.black {
  background-color: #1d2229;
  color: #fff;
}

.button:hover.filled {
  background-color: transparent;
}

.button:hover.filled.color_black {
  color: #1d2229;
}

.button:hover.filled.arrow_white::after {
  border-color: #fff;
}

.button:hover.filled.arrow_black::after {
  border-color: #1d2229;
}

.selected-list {
  position: relative;
  border-radius: 5px;
  border: 2px solid #ff8c29;
  padding: 10px 40px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  z-index: 10;
}

@media (pointer: fine) {
  .selected-list:hover {
    background-color: #f3f3f3;
    border-radius: 5px 5px 0 0;
  }

  .selected-list:hover ul {
    display: block;
  }

  .selected-list:hover span {
    color: #1d2229;
  }

  .selected-list:hover::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -2px;
  }
}

.selected-list.filter_element {
  cursor: pointer;
}

.selected-list.current_filter,
.selected-list.active {
  background-color: #ff8c29;
}

.selected-list.current_filter span,
.selected-list.active span {
  color: #fff;
}

.selected-list.current_filter:after,
.selected-list.active:after {
  color: #fff;
}

.selected-list:after {
  content: '';
  color: #ff8c29;
  width: 7px;
  height: 7px;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: 15px;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.selected-list span {
  position: relative;
  display: block;
  color: #fff;
  padding-right: 25px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.selected-list ul {
  display: none;
  position: absolute;
  z-index: 10;
  top: 100%;
  left: -2px;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  background-color: #fff;
  border: 2px solid #ff8c29;
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

.selected-list ul ul {
  display: block;
  position: initial;
  border: none;
  border-radius: 0px;
}

.selected-list ul li {
  padding: 10px 40px;
  cursor: pointer;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  color: #1d2229;
}

.selected-list ul ul li {
  padding: 5px 40px 5px 60px;
}

.selected-list ul li.current_filter {
  background-color: #f3f3f3;
}

.selected-list ul li:hover {
  color: #ff8c29;
}

.selected-list ul li.disabled {
  color: #d7d7d7;
}

.holder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #eee;
  background-image: url(../images/logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20%;
}

.modal-new {
  background-color: rgba(10, 16, 17, .86);
  position: fixed;
  top: 0;
  right: 100%;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  transition: opacity .2s ease-in-out .0s, right .0s linear .2s;
  opacity: 0;
  z-index: 10000;
  overflow-y: auto;
  overflow-x: hidden;
}

.modal-new.open {
  right: 0;
  opacity: 1;
  transition: right .0s linear .0s, opacity .2s ease-in-out .1s;
}

.modal-dialog {
  background: #ffffff;
  border-radius: 5px;
  padding: 30px;
  position: relative;
  width: 100%;
  margin: 20px;
  max-width: 484px;
}

.modal {
  position: fixed;
  top: 10%;
  left: 50%;
  background: #ffffff;
  border-radius: 5px;
  width: 484px;
  margin-left: -242px;
  padding: 30px;
  z-index: 11000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all ease-out 200ms;
  -o-transition: all ease-out 200ms;
  transition: all ease-out 200ms;
}

.modal .title,
.modal-dialog .title {
  text-align: center;
  font-size: 16px;
  margin-bottom: 50px;
}

.modal .close,
.modal-dialog .close {
  position: absolute;
  top: 30px;
  right: 30px;
  height: 16px;
  width: 16px;
  cursor: pointer;
  -webkit-transition: all ease-out 200ms;
  -o-transition: all ease-out 200ms;
  transition: all ease-out 200ms;
}

.modal-dialog .close {
  top: 15px;
  right: 15px;
}

.modal .close::before,
.modal-dialog .close::before {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  width: 16px;
  top: 7px;
  left: 0px;
  background-color: #1d2229;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal .close::after,
.modal-dialog .close::after {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  width: 16px;
  top: 7px;
  left: 0px;
  background-color: #1d2229;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal_feature {
  width: 100%;
  max-width: 60vw;
  margin: 0;
  left: calc(50% - 30vw);
  top: 10vh;
  max-height: 80vh;
}

.modal_feature .body {
  max-height: 600px;
  overflow: auto;
}

.modal_feature .body table td:last-child img {
  width: 400px;
  margin-left: 15px;
}

.modal_feature .title {
  padding-right: 15px;
  padding-left: 15px;
  font-size: 20px;
  font-weight: 600;
}

.modal .box_submit,
.modal-dialog .box_submit {
  text-align: center;
}

.modal #modal_dog {
  width: 100%;
  height: auto;
  max-height: 50vh;
  object-fit: contain;
}

.box_input>.tip,
.box_textarea>.tip {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  font-size: 13px;
  line-height: 14px;
}

.box_input>label,
.box_textarea>label {
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 500;
}

.box_input--require>label::after,
.box_textarea--require>label::after {
  content: " *";
  color: #FF8C29;
}

.box_textarea {
  margin-bottom: 25px;
  position: relative;
}

.box_textarea textarea {
  min-width: 100%;
  padding: 10px 25px;
  min-height: 60px;
  line-height: 18px;
  border: 2px solid #d7d7d7;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  background-color: transparent;
  resize: vertical;
}

.box_textarea textarea.input_error {
  border: 2px solid #f99;
}

.box_input {
  margin-bottom: 25px;
  position: relative;
}



.box_input input[type="text"] {
  width: 100%;
  padding: 10px 25px;
  height: 48px;
  line-height: 18px;
  border: 2px solid #d7d7d7;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  background-color: transparent;
}

.box_input input.input_error {
  border: 2px solid #f99;
}

.box_input.error .tip {
  color: rgb(199, 94, 94);
}

.box_input.error input {
  border: 2px solid #f99;
}

.slick-arrow {
  position: absolute;
  top: calc(50% - 11px);
  padding: 22px;
  background-color: #fff;
  z-index: 1;
}

.slick-arrow::after {
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
}

.slick-arrow.arrow_right {
  right: -25px;
}

.slick-arrow.arrow_right::after {
  left: calc(50% - 11px);
}

.slick-arrow.arrow_left {
  left: -25px;
}

.slick-arrow.arrow_left::after {
  left: calc(50% - 5px);
}

.slick-arrow.slick-disabled {
  opacity: 0;
}

.slick-arrow:hover {
  background-color: #ff8c29;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row .col {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.align_items_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align_items_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.align_items_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.align_items_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

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

.justify_content_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.justify_content_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.justify_content_between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify_content_around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.quot {
  font-family: 'Gotham Pro';
  border-left: 4px solid #ff8c29;
  padding: 4px 0px 10px 20px;
  line-height: 19px;
}

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

ul ul {
  padding-left: 30px;
}

ul li {
  font-family: 'Gotham Pro';
  position: relative;
  margin-bottom: 0px;
}

ul li::before {
  content: "";
  height: 10px;
  width: 10px;
  background-color: #ff8c29;
  display: block;
  position: absolute;
  top: 5px;
  left: -30px;
  border-radius: 50%;
}

ul ul li::before {
  content: "";
  height: 10px;
  width: 10px;
  background-color: transparent;
  display: block;
  position: absolute;
  top: 5px;
  left: -30px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 2px solid #ff8c29;
}

ul.list_style_lines {
  padding-left: 55px;
}

ul.list_style_lines .list_item {
  margin-bottom: 16px;
}

ul.list_style_lines .list_item::before {
  height: 4px;
  width: 30px;
  top: 10px;
  left: -55px;
  border-radius: 5px;
}

ul.list_style_points {
  padding-left: 65px;
  margin-top: 20px;
}

ul.list_style_points .list_item {
  font-family: 'Gotham Pro';
  position: relative;
}

ul.list_style_points .list_item::before {
  content: "";
  height: 10px;
  width: 10px;
  background-color: #ff8c29;
  display: block;
  position: absolute;
  top: 5px;
  left: -30px;
  border-radius: 50%;
}

ul.unstyle li::before {
  content: unset;
}

ol {
  margin: 0px;
  list-style: none;
  counter-reset: myCounter;
  padding-left: 25px;
}

ol>li {
  position: relative;
  margin-bottom: 10px;
}

ol>li::before {
  counter-increment: myCounter;
  content: counter(myCounter) ".";
  color: #ff8c29;
  position: absolute;
  left: -25px;
  top: 0;
}

ol.list_style_num_1 {
  padding-left: 89px;
}

ol.list_style_num_1 .list_item {
  margin-bottom: 44px;
}

ol.list_style_num_1 .list_item::before {
  content: counter(myCounter);
  color: #fff;
  background: #ff8c29;
  display: block;
  text-align: center;
  line-height: 43px;
  font-size: 30px;
  font-weight: 800;
  width: 68px;
  height: 43px;
  border-radius: 5px;
  position: absolute;
  left: -90px;
  top: calc(50% - 21px);
}

.list_year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

.list_year_lines {
  overflow: hidden;
  padding-bottom: 25px;
  margin-bottom: 15px;
}

.list_year_lines .year {
  width: 81px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 81px;
  flex: 0 0 81px;
  font-weight: 700;
}

.list_year_lines:not(.end)::after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  background-color: orange;
  bottom: 0;
  top: 28px;
  left: 23px;
}

.list_year_highlight {
  margin-bottom: 29px;
}

.list_year_highlight .year {
  padding: 3px 0px;
  background-color: #ff8c29;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  font-size: 15px;
  margin-right: 17px;
  margin-top: -3px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
  text-align: center;
}

table {
  border-collapse: collapse;
  border-radius: 5px 5px 0px 0px;
  overflow-x: auto;
  width: 100%;
  display: block;
  border: 0px;
}

table.arrow_links_list {
  margin-left: -10px;
  margin-right: -10px;
  width: calc(100% + 30px);
}

table.arrow_links_list td {
  padding: 0px 15px;
}

table.invisible {
  border: hidden;
  visibility: visible !important;
}

table.invisible tr,
table.invisible td,
table.invisible th {
  border: hidden;
  visibility: visible !important;
}

table:not(.invisible) tbody tr {
  border-left: 2px solid #d7d7d7;
  border-bottom: 2px solid #d7d7d7;
}

table:not(.invisible) tbody tr th,
table:not(.invisible) tbody tr td {
  padding: 10px;
}

table:not(.invisible) tbody tr td {
  border-right: 2px solid #d7d7d7;
}

table:not(.invisible) tbody tr:nth-child(odd) {
  background-color: #f3f3f3;
}

table:not(.invisible) tbody tr:first-child {
  background-color: #ff8c29;
  color: #fff;
  border: 2px solid #ff8c29;
  font-weight: bold;
  font-size: 20px;
}

table.table-collapse {
  border-radius: 0px;
  border-top: none;
}

table.table-collapse tbody tr {
  border-left: 2px solid #d7d7d7;
  border-bottom: 2px solid #d7d7d7;
  -webkit-transition: display .2s linear .2s;
  -o-transition: display .2s linear .2s;
  transition: display .2s linear .2s;
}

table.table-collapse tbody tr th,
table.table-collapse tbody tr td {
  padding: 10px;
}

table.table-collapse tbody tr td {
  border-right: 2px solid #d7d7d7;
}

table.table-collapse tbody tr:first-child {
  background-color: unset;
  color: #1d2229;
  border: 2px solid #d7d7d7;
  border-top: none;
  font-weight: normal;
  font-size: 16px;
}

table.table-collapse tbody tr:nth-child(odd) {
  background-color: #fff;
}

table.table-collapse tbody tr:nth-child(even) {
  background-color: #f3f3f3;
}

.table-collapse__container {
  border-radius: 5px 5px 0px 0px;
  overflow: hidden;
}

.table-collapse__container.collapsed .table-collapse__header::after {
  background-image: url(../images/icons/minus.svg);
}

.table-collapse__container.collapsed .table-collapse__body {
  max-height: 2000px;
  opacity: 1;
  -webkit-transition: max-height .2s linear 0s, opacity .2s linear .2s;
  -o-transition: max-height .2s linear 0s, opacity .2s linear .2s;
  transition: max-height .2s linear 0s, opacity .2s linear .2s;
}

.table-collapse__header {
  background-color: #d7d7d7;
  color: #1d2229;
  border: 2px solid #d7d7d7;
  font-weight: bold;
  font-size: 20px;
  padding: 10px 40px 10px 10px;
  position: relative;
  cursor: pointer;
}

.table-collapse__header::after {
  content: '';
  position: absolute;
  top: calc(50% - 13px);
  right: 15px;
  display: block;
  height: 26px;
  width: 26px;
  background-image: url(../images/icons/plus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.table-collapse__body {
  height: auto;
  max-height: 0px;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height .2s linear .2s, opacity .2s linear 0s;
  -o-transition: max-height .2s linear .2s, opacity .2s linear 0s;
  transition: max-height .2s linear .2s, opacity .2s linear 0s;
}

.header_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  background-color: #333;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header_bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.header_bg.overlay {
  background-color: rgba(0, 0, 0, 0.7);
}

.link-with-arrow {
  background-color: #f3f3f3;
  padding: 15px 0px;
  height: inherit;
}

.link-with-arrow_container {
  display: inline-block;
  width: 100%;
  margin: 0px 0px 30px 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.link-with-arrow_body {
  padding: 0px 70px 0px 20px;
}

.link-with-arrow_body .title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.link-with-arrow .button {
  position: absolute;
  top: calc(50% - 26px);
  right: 28px;
  padding: 18px;
  opacity: 0;
}

.link-with-arrow .button::after {
  left: calc(50% - 9px);
  width: 13px;
  height: 13px;
  top: calc(50% - 6px);
}

.link-with-arrow .button_circle.arrow_right::after {
  left: calc(50% - 7px);
  top: calc(50% - 8px);
}

.link-with-arrow .button_circle.arrow_bottom::after {
  left: calc(50% - 7px);
  top: calc(50% - 8px);
}

.__paragraph {
  margin-bottom: 40px;
  padding: 50px 100px 20px;
  background-color: #fff;
}

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

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

.__paragraph__header .num {
  width: 72px;
  height: 72px;
  font-size: 40px;
  font-weight: 800;
  border-radius: 100%;
  border: 3px solid black;
  margin-right: 25px;
  text-align: center;
  line-height: 70px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 72px;
  flex: 0 0 72px;
}

.__paragraph__header .title {
  font-size: 30px;
  font-weight: 800;
}

.__paragraph.company-info .customer_logo {
  max-height: 50px;
}

.__paragraph.company-info p:last-child {
  margin-bottom: 0;
}

.__paragraph .subtitle,
.__paragraph h2,
.__paragraph h3,
.__paragraph h4,
.__paragraph h5 {
  font-weight: 800;
  font-size: 20px;
  margin: 35px 0;
  text-align: left;
  padding: 0px;
}

.__paragraph p {
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
  -webkit-margin-after: 1em;
  margin-block-end: 1em;
}


.__paragraph ul li {
  margin-bottom: 7px;
}


.__paragraph .text img {
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
  max-height: 390px;
  object-fit: contain;
}

.__paragraph .quote {
  background-color: #f3f3f3;
  padding: 30px;
  position: relative;
  margin-top: 40px;
}

.__paragraph .quote:before {
  content: '';
  width: 90px;
  height: 4px;
  background-color: #ff8c29;
  position: absolute;
  top: 0;
  left: 0;
}

.__paragraph .table-list {
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  margin-top: 40px;
}

.__paragraph .table-list__header {
  background-color: #ff8c29;
  font-weight: bold;
  font-size: 20px;
  padding: 15px 20px;
  color: #fff;
}

.__paragraph .table-list.dropdown {
  border-radius: 5px;
}

.__paragraph .table-list.dropdown .table-list__header {
  position: relative;
  color: black;
  background-color: #d7d7d7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
}

.__paragraph .table-list.dropdown .table-list__header span {
  height: 30px;
  width: 30px;
  display: inline-block;
  margin-left: auto;
  background-image: url("../images/icons/plus_circle.svg");
  background-size: cover;
  cursor: pointer;
}

.__paragraph .table-list.dropdown .table-list__content {
  display: none;
}

.__paragraph .table-list.dropdown.open {
  border-radius: 5px 5px 0 0;
}

.__paragraph .table-list.dropdown.open .table-list__header span {
  background-image: url("../images/icons/minus_circle.svg");
}

.__paragraph .table-list.dropdown.open .table-list__content {
  display: block;
}

.__paragraph .table-list .line {
  border: 2px solid #d7d7d7;
  border-top: 0;
  padding: 12px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.__paragraph .table-list .line:nth-child(even) {
  background-color: #f3f3f3;
}

.__paragraph .table-list .line .price {
  white-space: nowrap;
  margin-left: 30px;
}

.__paragraph .icon-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 50px 0;
}

.__paragraph .icon-block .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.__paragraph .icon-block .text {
  font-size: 20px;
  margin-left: 25px;
}

.__paragraph .review {
  padding: 70px 40px 30px;
  background-color: #f3f3f3;
}

.__paragraph .review .text {
  margin-bottom: 35px;
  position: relative;
  z-index: 0;
}

.__paragraph .review .text:before,
.__paragraph .review .text:after {
  content: '';
  position: absolute;
  background-image: url("../images/quote_w.png");
  width: 115px;
  height: 83px;
  z-index: -1;
}

.__paragraph .review .text:before {
  top: -50px;
  left: -15px;
}

.__paragraph .review .text:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  right: -15px;
  bottom: -50px;
}

.__paragraph .review .author {
  font-size: 14px;
  font-weight: 800;
}

.__paragraph .review .post {
  font-size: 14px;
}

ul.paragraph-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

ul.paragraph-nav li {
  padding: 10px 40px;
  cursor: pointer;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

ul.paragraph-nav li.active {
  background-color: #d7d7d7;
}

ul.paragraph-nav li:hover {
  color: #fff;
  background-color: #ff8c29;
}

.review {
  padding: 70px 40px 30px;
  background-color: #f3f3f3;
}

.review .text {
  margin-bottom: 35px;
  position: relative;
  z-index: 0;
}

.review .text:before,
.review .text:after {
  content: '';
  position: absolute;
  background-image: url("../images/quote_w.png");
  width: 115px;
  height: 83px;
  z-index: -1;
}

.review .text:before {
  top: -50px;
  left: -15px;
}

.review .text:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  right: -15px;
  bottom: -50px;
}

.review .author {
  font-size: 14px;
  font-weight: 800;
}

.review .post {
  font-size: 14px;
}

.quote {
  background-color: #f3f3f3;
  padding: 30px;
  position: relative;
  margin-top: 40px;
}

.quote:before {
  content: '';
  width: 90px;
  height: 4px;
  background-color: #ff8c29;
  position: absolute;
  top: 0;
  left: 0;
}

/*
    hovers
*/

.hover-effect--shrink-shadow {
  position: relative;
  border: 2px solid #f3f3f3;
  margin-left: 17px;
  border-radius: 5px;
  background-color: #f3f3f3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.hover-effect--shrink-shadow::after {
  content: "";
  background-color: #d7d7d7;
  display: block;
  position: absolute;
  border-radius: 5px;
  top: 15px;
  left: -17px;
  right: 15px;
  bottom: -17px;
  z-index: -1;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

@media (hover:hover) {
  .hover-effect--shrink-shadow:hover {
    background-color: #fff;
    border-color: #ff8c29;
  }

  .hover-effect--shrink-shadow:hover::after {
    background-color: #ff8c29;
    right: 50%;
  }
}

.hover_1 {
  position: relative;
}

.hover_1 .hover_item {
  border: 2px solid #f3f3f3;
  margin-left: 17px;
  border-radius: 5px;
  position: relative;
  padding: 42px 0px 28px;
  z-index: 1;
  background-color: #f3f3f3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.hover_1 .hover_item .block_link::after {
  display: none;
}

.hover_1 .button {
  position: absolute;
  top: calc(50% - 26px);
  right: 28px;
  padding: 18px;
  opacity: 0;
}

.hover_1 .button::after {
  left: calc(50% - 9px);
  width: 13px;
  height: 13px;
  top: calc(50% - 6px);
}

.hover_1::after {
  content: "";
  background-color: #d7d7d7;
  display: block;
  width: calc(100% - 15px);
  height: calc(100% + 1px);
  position: absolute;
  border-radius: 5px;
  top: 13px;
  left: 2px;
  z-index: 0;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.hover_1:hover:not(.no_hover) .hover_item {
  border-color: #ff8c29;
  background-color: #fff;
}

.hover_1:hover:not(.no_hover) .hover_item .button {
  opacity: 1;
}

.hover_1:hover:not(.no_hover)::after {
  width: calc(48% - 13px);
  background-color: #ff8c29;
}

.hover_1.active .hover_item {
  border-color: #ff8c29;
  background-color: #fff;
}

.hover_1.active .hover_item .button {
  opacity: 1;
}

.hover_1.active::after {
  width: calc(48% - 13px);
  background-color: #ff8c29;
}

.hover_2 {
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.hover_2:hover {
  border-color: #ff8c29 !important;
}

/* sliders */
.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-dots li::before {
  display: none;
}

.slick-dots li button {
  width: 6px;
  height: 6px;
  border: none;
  padding: 0px;
  background-color: #1d2229;
  margin-right: 9px;
  border-radius: 50%;
  color: transparent;
  overflow: hidden;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.slick-dots li.slick-active button {
  width: 10px;
  height: 10px;
  margin-top: -2px;
  background-color: #ff8c29;
}

/* -- employees */
.slider_employees {
  margin-left: -10px;
  margin-right: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider_employees .slick-arrow.arrow_right {
  right: -85px;
}

.slider_employees .slick-arrow.arrow_left {
  left: -85px;
}

.slider_employees .slide-item {
  padding: 0px 10px;
  max-width: 321px;
}

/* -- clients */
.box_clients_slider {
  background-color: #fff;
  overflow: hidden;
}

.box_clients_slider .logos_list {
  padding: 47px 0px;
}

.box_clients_slider .logos_list .slider_item {
  margin: 0px 25px;
  display: inline-block;
}

.box_clients_slider .logos_list .slider_item .logos_item {
  position: relative;
}

.box_clients_slider .logos_list .slider_item .logos_item img {
  height: 70px;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: .5;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.box_clients_slider .logos_list .slider_item .logos_item:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
}

.box_clients_slider.no_bg {
  background-color: transparent;
}

.box_clients_slider.no_arrows .button {
  z-index: -1;
  opacity: 0;
}

.box_bg_header {
  /* background: url("../images/bg_header.jpg") top center no-repeat #182023; */
  background-size: cover;
}

.box_hello_block {
  padding-top: 330px;
}

.box_hello_block .row .col.col-1 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.box_hello_block .row .col.col-1 .line-1 {
  font-size: 120px;
  line-height: 87px;
  font-weight: 700;
  color: #ff8c29;
}

.box_hello_block .row .col.col-1 .line-2 {
  font-size: 38px;
  line-height: 31px;
  color: #fff;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 22px;
}

.box_hello_block .row .col.col-1 .line-3 {
  color: #fff;
  font-weight: 500;
  max-width: 420px;
}

.box_hello_block .row .col.col-2 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  text-align: right;
}

.box_hello_block .row .col.col-2 .line-1 {
  color: #ff8c29;
  font-size: 70px;
  line-height: 56px;
  font-weight: 500;
}

.box_hello_block .row .col.col-2 .line-2 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 42px;
  max-width: 320px;
  margin-left: auto;
  line-height: 24px;
}

.box_hello_block .row .col.col-3 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  text-align: center;
  padding: 65px 0px 55px;
}

.box_hello_block .row .col.col-3 .button_arrow {
  padding: 24px;
}

.box_hello_block .row .col.col-3 .button_arrow::after {
  width: 16px;
  height: 16px;
  top: calc(50% - 12px);
  right: calc(50% - 9px);
  left: calc(50% - 9px);
}

.box_hello_block.simple_header {
  padding-top: 100px;
  padding-bottom: 140px;
}

.box_hello_block.simple_header h1 {
  color: #fff;
}

/*
    services
*/
.box_services {
  padding: 20px 0px 48px;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  row-gap: 30px;
  align-items: stretch;
  margin-top: 60px;
  z-index: 0;
  position: relative;
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 30px;
  align-items: center;
  position: relative;
  padding: 40px 30px 30px;
}



.service-item__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.service-item__icon {
  width: 130px;
}

.service-item__title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  /* min-height: 50px; */
}

.service-item__description {
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
}

@media (hover:hover) and (width > 768px) {
  .service-item:hover .service-item__arrow {
    opacity: 1;
  }

  .service-item__arrow {
    opacity: 0;
    transition: opacity .3s ease;
  }
}

/* .box_services .services_list {
  margin-top: 65px;
}

.box_services .services_list .col {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.box_services .services_list .col .box_service_item {
  max-width: 603px;
  margin-bottom: 40px;
}

.box_services .services_list .col .box_service_item .service_item {
  max-width: 586px;
}

.box_services .services_list .col .box_service_item .service_item .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.box_services .services_list .col .box_service_item .service_item .row .col-1 {
  max-width: 143px;
  padding: 0px 30px;
}

.box_services .services_list .col .box_service_item .service_item .row .col-1 .icon {
  width: 100%;
  padding-top: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.box_services .services_list .col .box_service_item .service_item .row .col-1 .icon.mining {
  background-image: url(../images/services/data-mining.svg);
}

.box_services .services_list .col .box_service_item .service_item .row .col-1 .icon.one-c {
  background-image: url(../images/services/1c.svg);
}

.box_services .services_list .col .box_service_item .service_item .row .col-1 .icon.web {
  background-image: url(../images/services/web.svg);
}

.box_services .services_list .col .box_service_item .service_item .row .col-1 .icon.software {
  background-image: url(../images/services/po.svg);
}

.box_services .services_list .col .box_service_item .service_item .row .col-2 .service_item_body {
  padding-right: 90px;
}

.box_services .services_list .col .box_service_item .service_item .row .col-2 .service_item_body .service_title {
  font-size: 20px;
  font-weight: 800;
  max-width: 200px;
  margin-bottom: 20px;
  min-height: 50px;
}

.box_services .services_list .col .box_service_item .service_item .row .col-2 .service_item_body .service_description {
  font-weight: 500;
  min-height: 115px;
}

.box_services .services_list .col:nth-child(even) .box_service_item {
  margin-left: auto;
} */

/*
    news
*/
.box_news {
  background-color: #f3f3f3;
  padding: 20px 0px 87px;
  position: relative;
}

.news_list {
  display: none;
}

.box_news .news_list {
  margin: 59px -36px 0px;
}

.box_news .news_list .slide-item {
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.box_news .news_list .slide-item:not(.slick-active) {
  opacity: .5;
}

.box_news .news_list .news_item {
  display: flex;
  flex-direction: column;
  max-width: 372px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 auto;
  height: 100%;
  box-sizing: border-box;
}

.box_news .news_list .news_item.more_news {
  background-color: white;
  border: 2px solid #ffffff;
  transition: .2s;
}

.box_news .news_list .news_item_preview_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.box_news .news_list .news_item_preview_img_container {
  width: 100%;
  padding-bottom: 85.5%;
  position: relative;
  flex-shrink: 0;
}

.box_news .news_list .news_item_type {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1d2229;
  color: #fff;
  font-size: 14px;
  border-radius: 5px 0px 5px 0px;
  padding: 6px 13px;
  font-weight: 500;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.box_news .news_list .more_news .news_item_type {
  opacity: 0;
}

.box_news .news_list .news_item_body {
  border-radius: 0px 0px 5px 5px;
  border: 1px solid #e6e6e6;
  border-top: 0;
  margin-top: -4px;
  padding: 55px 18px 29px 22px;
  background-color: #fff;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;

  flex-grow: 1;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.box_news .news_list .more_news .news_item_body {
  border: none;
  padding: 25px 19px 26px 23px;
}

.box_news .slick-track {
  display: flex;
  align-items: stretch;
}

.box_news .news_list .news_item_title {
  font-size: 20px;
  font-weight: 800;
  line-height: 24px;
  margin-bottom: 36px;
}

.box_news .news_list .more_news .news_item_title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.more_news .news_item_title div {
  text-align: right;
  padding-right: 20px;
}

.box_news .news_list .news_item_description {
  font-size: 16px;
  font-family: 'Gotham Pro';
  line-height: 19px;
  height: 95px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  margin-bottom: 40px;
}

.box_news .news_list .news_item_bottom-info {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.box_news .news_list .news_item_date {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #aaaaaa;
  text-transform: lowercase;
}

.box_news .news_list .news_item_read_more {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #ff8c29;
  opacity: 0;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.box_news .news_list .news_item_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.box_news .news_list .news_item.more_news:hover {
  border-color: #ff8c29;
}

.box_news .news_list .news_item:hover .news_item_read_more {
  opacity: 1;
}

.box_news .news_list .news_item:hover .news_item_type {
  background-color: #ff8c29;
}

.box_news .news_list .news_item:not(.more_news):hover .news_item_body {
  box-shadow: 0px 0px 0px 2px #ff8c29 inset;
}

.box_news .news_list .news_item.more_news:hover .news_item_body {
  padding: 25px 19px 26px 23px;
}

/*
    events
*/
.box_events {
  padding: 20px 0px 83px;
}

.box_events .event_toggler.active {
  cursor: default;
}

.box_events .event_row .col:first-child h2 {
  padding-right: 10px;
}

.box_events .event_row .col:last-child h2 {
  padding-left: 10px;
  text-align: right;
  box-sizing: border-box;
}

.box_events .event_toggler.non-active {
  opacity: .6;
  cursor: pointer;
}

.box_events .event_toggler.disabled {
  cursor: not-allowed;
}

.box_events .slick-arrow.arrow_right {
  right: -45px;
}

.box_events .slick-arrow.arrow_left {
  left: -45px;
}

.box_events .events_list {
  margin: 76px -16px 0px;
  padding-left: 3px;
}

.box_events .events_list .slide-item {
  padding: 0px 16px;
}



.box_events .events_list .events_item {
  width: 100%;
  max-width: 614px;
  position: relative;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 45px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid transparent;
}

.box_events .events_list .events_item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 34, 41, 0.8);
  z-index: -1;
  border-radius: 5px;
  -webkit-transition: border-color .2s linear .2s;
  -o-transition: border-color .2s linear .2s;
  transition: border-color .2s linear .2s;
}

.box_events .events_list .events_item_preview_img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -2;
  border-radius: 5px;
}

.box_events .events_list .events_item .holder {
  z-index: -1;
  border-radius: 5px;
}

.box_events .events_list .events_item_preview_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.box_events .events_list .events_item_preview_img_container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: -2;
  border-radius: 5px;
}

.box_events .events_list .events_item_title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 800;
  margin: 35px 26px 103px;
  color: #fff;
  height: 105px;
  overflow: hidden;
  max-width: 100%;
  -webkit-transition: width .2s linear .2s;
  -o-transition: width .2s linear .2s;
  transition: width .2s linear .2s;
}

.box_events .events_list .events_item_body {
  position: absolute;
  bottom: -45px;
  left: -1px;
  right: 204px;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  height: 120px;
  padding: 0px 30px;
  overflow: hidden;
  border-radius: 0px 5px 5px 5px;
  z-index: 5;
  -webkit-transition: padding .2s linear .2s, right .2s linear .2s, border-color .2s linear .0s;
  -o-transition: padding .2s linear .2s, right .2s linear .2s, border-color .2s linear .0s;
  transition: padding .2s linear .2s, right .2s linear .2s, border-color .2s linear .0s;
}

.box_events .events_list .events_item.events_item_archive {
  margin-bottom: 0;
}

.box_events .events_list .events_item_archive .events_item_body {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: initial;
  border: none;
  background-color: transparent;
  height: auto;
  padding: 0px;
  overflow: hidden;
  border-radius: 0px;
  z-index: 7;
}

.box_events .events_list .events_item_description {
  font-size: 16px;
  font-family: 'Gotham Pro';
  line-height: 19px;
  height: 76px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-top: 20px;
  -webkit-transition: height .2s linear .2s;
  -o-transition: height .2s linear .2s;
  transition: height .2s linear .2s;
}

.box_events .events_list .events_item_date {
  position: absolute;
  right: 0;
  width: 204px;
  bottom: 0;
  color: #fff;
  text-align: center;
  z-index: 4;
  -webkit-transition: bottom .2s linear .0s;
  -o-transition: bottom .2s linear .0s;
  transition: bottom .2s linear .0s;
}

.box_events .events_list .events_item_date .date {
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 12px;
}

.box_events .events_list .events_item_date .time {
  margin: 0 auto;
  background-color: #ff8c29;
  font-size: 30px;
  font-weight: 800;
  padding: 8px 0px;
  width: 130px;
  border-radius: 5px 5px 0px 0px;
}

.box_events .events_list .events_item_place {
  position: absolute;
  font-size: 13px;
  bottom: 12px;
  left: 24px;
  height: 18px;
  padding-left: 28px;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity .2s linear .0s;
  -o-transition: opacity .2s linear .0s;
  transition: opacity .2s linear .0s;
}

.box_events .events_list .events_item_place::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(/local/templates/main_copy/images/point.svg);
  background-repeat: no-repeat;
  float: left;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  left: 0;
}

.box_events .events_list .events_item_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: -45px;
  z-index: 6;
}

.box_events .events_list .events_item:hover {
  -webkit-transition: border-color .2s linear .2s;
  -o-transition: border-color .2s linear .2s;
  transition: border-color .2s linear .2s;
  border-color: #ff8c29;
}

.box_events .events_list .events_item:not(.events_item_archive):hover .events_item_title {
  -webkit-transition: width .2s linear .0s;
  -o-transition: width .2s linear .0s;
  transition: width .2s linear .0s;
  width: calc(100% - 204px);
}

.box_events .events_list .events_item:not(.events_item_archive):hover .events_item_body {
  -webkit-transition: padding .2s linear .0s, right .2s linear .0s, border-color .2s linear .2s;
  -o-transition: padding .2s linear .0s, right .2s linear .0s, border-color .2s linear .2s;
  transition: padding .2s linear .0s, right .2s linear .0s, border-color .2s linear .2s;
  padding: 0px 25px;
  right: -1px;
  border-radius: 0px 0px 5px 5px;
  border-right-color: #ff8c29;
  border-left-color: #ff8c29;
  border-bottom-color: #ff8c29;
}

.box_events .events_list .events_item:not(.events_item_archive):hover .events_item_description {
  -webkit-transition: height .2s linear .0s;
  -o-transition: height .2s linear .0s;
  transition: height .2s linear .0s;
  height: 57px;
  -webkit-line-clamp: 3;
}

.box_events .events_list .events_item:not(.events_item_archive):hover .events_item_date {
  -webkit-transition: bottom .2s linear .2s;
  -o-transition: bottom .2s linear .2s;
  transition: bottom .2s linear .2s;
  bottom: 77px;
}

.box_events .events_list .events_item:not(.events_item_archive):hover .events_item_place {
  -webkit-transition: opacity .2s linear .2s;
  -o-transition: opacity .2s linear .2s;
  transition: opacity .2s linear .2s;
  opacity: 1;
}

.box_events .events_list::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #ff8c29;
  height: 12px;
  width: 100vw;
  top: 45px;
  left: calc(50% - 50vw);
  z-index: -1;
}

/*
    clients
*/
.box_clients {
  background-color: #f3f3f3;
  padding: 20px 0px 0px;
}

.box_clients .description {
  font-size: 20px;
  font-weight: 400;
  margin: 39px 242px;
  font-family: 'Gotham Pro';
  max-width: 510px;
  line-height: 24px;
}

.box_clients .percents_list {
  margin-top: 115px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 61px;
}

.box_clients .percents_list .percents_item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 382px;
  position: relative;
}

.box_clients .percents_list .percents_item_tip {
  position: absolute;
  bottom: 110%;
  background-color: #fff;
  border: 2px solid #ff8c29;
  padding: 7px 20px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  width: 187px;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
}

.box_clients .percents_list .percents_item_diagram {
  overflow: hidden;
  background-color: #1d2229;
  position: relative;
  height: 187px;
  width: 187px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 40px;
  font-weight: 800;
  color: #1d2229;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.box_clients .percents_list .percents_item_diagram .block_link {
  z-index: 10;
}

.box_clients .percents_list .percents_item_diagram span {
  position: relative;
  z-index: 5;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.box_clients .percents_list .percents_item_diagram::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #f3f3f3;
  width: 144px;
  height: 144px;
  top: calc(50% - 72px);
  left: calc(50% - 72px);
  border-radius: 50%;
  z-index: 0;
}

.box_clients .percents_list .percents_item_diagram::before {
  content: "";
  display: block;
  width: 200%;
  height: 200%;
  background-color: #ff8c29;
  bottom: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
}

.box_clients .percents_list .percents_item_diagram.diagram-1::before {
  -webkit-transform: skewY(30deg);
  -ms-transform: skewY(30deg);
  transform: skewY(30deg);
}

.box_clients .percents_list .percents_item_diagram.diagram-2::before {
  -webkit-transform: matrix(1, 15, 0, 4, 0, 0) skewY(0deg);
  -ms-transform: matrix(1, 15, 0, 4, 0, 0) skewY(0deg);
  transform: matrix(1, 15, 0, 4, 0, 0) skewY(0deg);
}

.box_clients .percents_list .percents_item_diagram.diagram-3::before {
  -webkit-transform: skewY(-18deg);
  -ms-transform: skewY(-18deg);
  transform: skewY(-18deg);
}

.box_clients .percents_list .percents_item_diagram:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.box_clients .percents_list .percents_item_diagram:hover span {
  color: #ff8c29;
}

.box_clients .percents_list .percents_item_diagram:hover~.percents_item_tip {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: .2s .2s;
  -o-transition: .2s .2s;
  transition: .2s .2s;
  opacity: 1;
}

.box_clients .percents_list .percents_item_diagram:hover+.percents_item_description .title {
  color: #ff8c29;
}

.box_clients .percents_list .percents_item_description {
  border-left: 2px solid #e6e6e6;
  margin: 37px 0px 0px 94px;
  padding: 16px 0px 0px 30px;
}

.box_clients .percents_list .percents_item_description .title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 7px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.box_clients .percents_list .percents_item_description .text {
  font-family: 'Gotham Pro';
}

.box_clients .control {
  margin: 130px auto 0px;
  background-color: #fff;
  width: 700px;
  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;
  border-radius: 5px 5px 0px 0px;
  padding: 23px 0px;
}

.box_clients .control .percent {
  font-size: 110px;
  font-weight: 800;
  color: #ff8c29;
  margin-right: 35px;
}

.box_clients .control .text {
  font-family: 'Gotham Pro';
}

.box_clients .control .text b {
  font-size: 20px;
  font-weight: 800;
  display: block;
  margin-bottom: 9px;
}

/*
    reviews
*/
.box_reviews {
  background-color: #1d2229;
  padding: 20px 0px;
  overflow: hidden;
}

.box_reviews .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.box_reviews .row .column-2 {
  text-align: right;
  padding-right: 55px;
}

.box_reviews .block_title {
  color: #fff;
  line-height: 48px;
}

.box_reviews .reviews_list {
  margin-top: 57px;
  margin-left: -60px;
  margin-right: -60px;
}

.box_reviews .reviews_list .slider_item {
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  margin: 0px 60px;
}

.box_reviews .reviews_list .slider_item:not(.slick-active) {
  opacity: .5;
}

.box_reviews .reviews_list .slick-arrow {
  background-color: transparent;
  border-color: #fff;
}

.box_reviews .reviews_list .slick-arrow::after {
  border-color: #ff8c29;
}

.box_reviews .reviews_list .slick-arrow:hover {
  background-color: #fff;
}

.box_reviews .reviews_list .reviews_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.box_reviews .reviews_list .reviews_item .block_link {
  z-index: 5;
}

.box_reviews .reviews_list .reviews_item_img {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
  -ms-flex-preferred-size: 400px;
  flex-basis: 400px;
  position: relative;
  background-color: #fff;
}

.box_reviews .reviews_list .reviews_item_img .img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.img__time {
  margin: -30px 0;
}

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

.reviews_item_buttons {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.reviews_item_buttons .button_arrow.arrow_side_right {
  margin: 0;
}

.reviews_item_company-logo {
  flex-shrink: 0;
  width: 25%;
}

.reviews_item_text {
  margin-top: 0;
  margin-bottom: 0;
}

.box_reviews .reviews_list .reviews_item_body {
  padding: 30px 48px 30px;
  background-color: #fff;
}

.box_reviews .reviews_list .reviews_item_message {
  font-size: 20px;
  font-weight: 400;
  font-family: 'Gotham Pro';
  line-height: 29px;
  min-height: 232px;
  margin-bottom: 35px;
  position: relative;
}

.box_reviews .reviews_list .reviews_item_message p {
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
}

.box_reviews .reviews_list .reviews_item_message div {
  position: relative;
  z-index: 2;
  max-height: 100%;
  overflow: hidden;
}

.box_reviews .reviews_list .reviews_item_message::before {
  content: "";
  display: block;
  width: 117px;
  height: 100px;
  position: absolute;
  background: url(../images/quot.png) no-repeat;
  background-size: contain;
  left: -7px;
  top: -33px;
}

.box_reviews .reviews_list .reviews_item_message::after {
  content: "";
  display: block;
  width: 117px;
  height: 100px;
  position: absolute;
  background: url(../images/quot.png) no-repeat;
  background-size: contain;
  right: 67px;
  bottom: -10px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.box_reviews .reviews_list .reviews_item_customer .name {
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
}

.box_reviews .reviews_list .reviews_item_customer .who {
  font-size: 14px;
  font-weight: 600;
}

/*
    gift
*/
.box_gift {
  padding: 20px 0px 127px;
  background-color: #f3f3f3;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.box_gift .gift_item {
  margin-top: 77px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0px -3px 10px -5px rgba(0, 0, 0, 0.2), 0px 5px 10px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px -3px 10px -5px rgba(0, 0, 0, 0.2), 0px 5px 10px -5px rgba(0, 0, 0, 0.2);
  width: calc(100% - 18px);
  margin-left: 18px;
  position: relative;
}

.box_gift .gift_item .button {
  padding: 16px 34px;
  border-width: 3px;
  font-weight: 600;
}

.box_gift .gift_item .button.filled {
  margin-right: 20px;
}

.box_gift .gift_item .column-2 {
  padding: 46px 28px 0px 18px;
}

.box_gift .gift_item_img {
  margin-top: -35px;
  margin-bottom: -49px;
  margin-left: -18px;
}

.box_gift .gift_item_description {
  font-size: 22px;
  font-family: 'Gotham Pro';
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 40px;
}

.box_gift .gift_item_description p {
  font-size: 20px;
  line-height: 23px;
  margin: 0px;
  margin-bottom: 24px;
}

.box_gift .gift_item_description b {
  font-weight: 500;
}

.box_gift .gift_item_quote {
  margin-top: 38px;
  font-family: 'Gotham Pro';
  font-style: italic;
  color: #aeaeae;
}

.box_gift .gift_item::before {
  content: "";
  position: absolute;
  display: block;
  height: 84px;
  top: calc(50% - 42px);
  right: calc(50% + 40px);
  width: 50vw;
  background-color: #ff8c29;
  z-index: -1;
}

.box_gift .gift_item::after {
  content: "";
  position: absolute;
  display: block;
  height: 84px;
  top: calc(50% - 42px);
  left: 50%;
  width: 50vw;
  background-color: #1d2229;
  z-index: -1;
}

.box_gift_project-list .gift_item .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.box_gift_project-list .gift_item .row .column-2 {
  padding-top: 0px;
}

.box_gift_project-list .gift_item_description b {
  margin-bottom: 30px;
  display: block;
}

.box_gift_software .gift_item {
  margin-top: 23px;
  margin-left: 40px;
}

.box_gift_software .gift_item .column-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
}

.box_gift_software .gift_item .column-2 {
  padding-top: 76px;
  padding-right: 38px;
}

.box_gift_software .gift_item_img {
  margin-top: -52px;
  margin-bottom: -58px;
  margin-left: -40px;
}

.box_gift_software .gift_item .button {
  font-size: 16px;
  font-weight: 700;
}

/*
    contacns
*/
.box_contacts {
  padding: 20px 0px 0px;
  background-color: #fff;
}

.box_contacts .branches_list {
  margin-top: 52px;
}

.box_contacts .branches_list .box_cities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 90px;
  margin-bottom: -54px;
  position: relative;
  z-index: 5;
}

.box_contacts .branches_list .box_cities .city {
  border: 2px solid #fff;
  border-radius: 5px;
  font-weight: 700;
  font-size: 18px;
  padding: 14px 18px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  text-align: center;
  margin: 0px 35px 20px 0px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.box_contacts .branches_list .box_cities .city:hover {
  border-color: #f3f3f3;
  cursor: pointer;
}

.box_contacts .branches_list .box_cities .city.active {
  border-color: #ff8c29;
  cursor: default;
}

.box_contacts .branches_list .box_info .column-1 {
  padding-right: 25px;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  position: relative;
  z-index: 1;
}

.box_contacts .branches_list .box_info .column-1 .maps {
  height: 100%;
}

.box_contacts .branches_list .box_info .column-2 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  padding-left: 90px;
  padding-top: 107px;
  padding-bottom: 107px;
}

.box_contacts .branches_list .box_info .column-2 .address {
  padding: 30px 0px;
  background-color: #f3f3f3;
  position: relative;
}

.box_contacts .branches_list .box_info .column-2 .address p {
  font-family: 'Gotham Pro';
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  margin: 30px 0px;
}

.box_contacts .branches_list .box_info .column-2 .address p b {
  font-family: 'Montserrat';
  font-weight: 800;
}

.box_contacts .branches_list .box_info .column-2 .address p:first-child {
  margin-top: 0px;
  font-weight: 900;
}

.box_contacts .branches_list .box_info .column-2 .address .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  fill: #ff8c29;
  vertical-align: sub;
}

.box_contacts .branches_list .box_info .column-2 .address a {
  color: #1d2229;
}

.box_contacts .branches_list .box_info .column-2 .address::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 116px;
  right: 100%;
  background-color: #f3f3f3;
}

.box_contacts.other_page .branches_list {
  margin-top: 0px;
}

.box_contacts.other_page .block_title {
  margin-left: 96px;
  margin-bottom: -40px;
}

/* pages */
.box_page_header {
  padding-top: 76px;
  position: relative;
}

.box_page_header .bx-breadcrumb {
  font-size: 14px;
  color: #fff;
  padding: 37px 22px;
}

.box_page_header .bx-breadcrumb .bx-breadcrumb-item {
  font-weight: 500;
  margin-bottom: 0;
  margin-right: 10px;
  color: #fff;
}

.box_page_header .bx-breadcrumb .bx-breadcrumb-item>a {
  font-weight: 500;
  color: #fff;
}

.box_page_header .bx-breadcrumb .bx-breadcrumb-item>span {
  color: #ff8c29;
}

/*
    box_consult
*/
.consult {
  border: 2px solid #e6e6e6;
  background-color: #fff;
  border-radius: 5px;
  border-right-width: 20px;
  position: relative;
}

.consult::after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  right: -20px;
  bottom: -2px;
  width: 18px;
  background-color: #ff8c29;
  border-radius: 0px 5px 5px 0px;
}

.consult .row .column-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  position: relative;
}

.consult .row .column-2 {
  padding: 40px 100px;
}

.consult .row .column-2 p {
  font-size: 25px;
  font-family: 'Montserrat';
  line-height: 27px;
  margin-bottom: 0px;
}

.consult__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.consult__image img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.consult__call-me {
  margin-top: 35px;
}

/*
    box_employees
*/
.box_employees_item .employees_item {
  padding: 0px;
  border-color: #d7d7d7;
  margin-bottom: 16px;
  overflow: hidden;
}

.box_employees_item .employees_item_preview_img_container {
  position: relative;
  width: 100%;
  padding: 51% 0%;
}

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

.box_employees_item .employees_item_body {
  background-color: #fff;
  padding: 26px 18px 14px 18px;
}

.box_employees_item .employees_item_title {
  font-size: 20px;
  line-height: 25px;
  font-weight: 800;
  margin-bottom: 8px;
  padding-right: 30px;
}

.box_employees_item .employees_item_description {
  font-weight: 500;
  line-height: 19px;
  height: 57px;
}

.box_employees_item:hover .employees_item {
  border-color: #ff8c29;
}

.box_employees_item:hover .employees_item_title {
  color: #ff8c29;
}

.box_employees_item:hover::after {
  width: calc(77% - 13px);
}

.header {
  height: 76px;
  line-height: 76px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.header.bx_panel_showed {
  top: 40px;
}

.header_scrolled {
  background: #fff;
  -webkit-box-shadow: 0 0 5px -1px #cdcdcd;
  box-shadow: 0 0 5px -1px #cdcdcd;
}

.header_height {
  height: 76px;
}

.header .navbar {
  background: #fff;
  border-radius: 0px 0px 5px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  position: relative;
}

.header .logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  padding: 0px 20px;
  border-radius: 0px 0px 0px 5px;
}

.header .logo_icon {
  margin-right: 13px;
  height: 32px;
  width: 32px;
}

.header .logo__text {
  width: 133px;
}

.header .logo .button {
  background: #ff8c29 url("images/icon_phone.png") 16px center no-repeat;
  padding-left: 40px;
}

.header .logo .button:hover {
  color: #ff8c29;
  background: #fff url("images/icon_phone_orange.png") 16px center no-repeat;
}

.header .logo:hover .logo_icon {
  -webkit-animation: logo_icon 1000ms forwards;
  animation: logo_icon 1000ms forwards;
  -webkit-transition: all ease-out 600ms;
  -o-transition: all ease-out 600ms;
  transition: all ease-out 600ms;
}

.header .logo:hover .logo_text {
  -webkit-animation: logo_text 700ms forwards;
  animation: logo_text 700ms forwards;
  -webkit-transition: all ease-out 600ms;
  -o-transition: all ease-out 600ms;
  transition: all ease-out 600ms;
}

.header .top_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  flex: 1;
}

.header .top_menu .icon_menu {
  background: url("images/icon_menu.png") center center no-repeat;
  background-size: 100%;
  height: 20px;
  width: 36px;
  -webkit-transition: all ease-out 200ms;
  -o-transition: all ease-out 200ms;
  transition: all ease-out 200ms;
  cursor: pointer;
}

.header .top_menu .icon_menu:hover {
  background: url("images/icon_menu_hover.png") center center no-repeat;
  background-size: 100%;
}

.header .top_menu .icon_menu.active {
  background: url("images/icon_menu_hover.png") center center no-repeat;
  background-size: 100%;
}

.header .box_top_btn {
  display: inline;
  margin-left: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.header .box_top_btn .button-call {
  display: none;
}

.header .box_top_btn a {
  font-weight: bold;
  height: 100%;
  display: block;
  padding: 0px 29px;
  background-color: #ff8c29;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  border-radius: 0px 0px 5px 0px;
}

.header .button_menu {
  height: 76px;
  width: 76px;
  border: none;
  background: #ff8c29;
  position: relative;
  display: none;
}

.header .button_menu .bar {
  position: absolute;
  height: 3px;
  width: 19px;
  background-color: #fff;
  left: calc(50% - 9px);
  border-radius: 5px;
  -webkit-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.header .button_menu .bar-1 {
  top: calc(50% - 7px);
}

.header .button_menu .bar-2 {
  top: calc(50% - 1px);
}

.header .button_menu .bar-3 {
  top: calc(50% + 5px);
}

.header .button_menu.opened .bar-1 {
  top: calc(50% - 1px);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header .button_menu.opened .bar-2 {
  opacity: 0;
}

.header .button_menu.opened .bar-3 {
  top: calc(50% - 1px);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header.filled {
  background-color: #fff;
  -webkit-box-shadow: 0px -11px 11px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px -11px 11px 10px rgba(0, 0, 0, 0.1);
}

.header.filled .box_top_btn a {
  border-radius: 0px;
}

.bx_panel_showed .header {
  top: 40px;
}

.mobile_menu {
  padding-top: 20px;
  position: fixed;
  z-index: 1000;
  background: #fff;
  top: 60px;
  width: 100vw;
  right: 100%;
  bottom: 0px;
  -webkit-transition: .2s ease-in-out;
  -o-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  overflow-y: auto;
}

.mobile_menu .menu {
  margin-right: 0px;
  height: auto;
  padding-top: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 20px;
}

.mobile_menu .menu_item {
  padding: 7px 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.mobile_menu .menu_sub {
  position: relative;
  max-height: initial;
  margin-top: 5px;
  padding: 0;
  min-width: auto;
}

.mobile_menu .menu_sub .menu_link {
  padding: 7px 20px;
}

.mobile_menu .menu_link {
  font-size: 14px;
}

.mobile_menu.show {
  right: 0;
}

.mobile_search {
  display: none;
}

.mobile_search #header-search {
  position: relative;
  padding: 0px 24px;
}

.mobile_search #header-search .box_input {
  margin-bottom: 0px;
}

.mobile_search #header-search .box_input input {
  margin-left: 0px;
  width: 100%;
  height: 34px;
}

.mobile_search #header-search .search-close {
  display: none;
}

.mobile_search #header-search .button_search {
  position: absolute;
  right: 24px;
  top: 0;
  margin-bottom: auto;
  height: 34px;
  padding: 7px 10px;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 23px 0;
}

.socials--mobile {
  margin-left: 15px;
}

.socials--mobile .social_button {
  width: 30px !important;
  height: 30px !important;
}

.socials .social_button {
  display: inline-block;
  width: 30px;
  height: 30px;
}

.socials .social_button .icon {
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  display: block;
  fill: #ededed;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.socials .social_button.fb {
  margin-right: 8px;
}

.socials .social_button.vk {
  margin-right: 8px;
}

.socials .social_button.yt {
  margin-right: 8px;
}

.socials .social_button.fb:hover .icon {
  fill: #3e5b9a;
}

.socials .social_button.vk:hover .icon {
  fill: #4a76a8;
}

.socials .social_button.tg:hover .icon {
  fill: #0088cc;
}

.socials .social_button.yt:hover .icon {
  fill: #FF0000;
}

.socials--mobile .social_button.vk .icon {
  fill: #4a76a8;

}

.socials--mobile .social_button.tg .icon {
  fill: #0088cc;
}


.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  margin: 0px 10px;
}

.search #header-search {
  position: absolute;
  left: 0px;
  bottom: 100%;
  height: 100%;
  right: 0;
  background-color: #fff;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  border-radius: 0px 0px 5px 5px;
}

.search #header-search .box_input {
  margin-bottom: 0px;
}

.search #header-search .box_input input {
  border: none;
  height: 100%;
  border-radius: 0px 0px 5px 5px;
  width: 100%;
  margin-left: 0;
}

.search #header-search .button_search {
  position: absolute;
  right: 50px;
  top: calc(50% - 23px);
  margin-bottom: auto;
  height: 46px;
}

.search #header-search .search-close {
  background-color: transparent;
  border: 0;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 10px;
  top: calc(50% - 15px);
}

.search #header-search .search-close .icon {
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  display: block;
  fill: #ededed;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.search #header-search .search-close:hover .icon {
  fill: #1d2229;
}

.search.is_opened #header-search {
  bottom: 0%;
}

.search_button {
  height: 20px;
  width: 20px;
  border: none;
  background-color: transparent;
  padding: 0;
}

.search_button .icon {
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  display: block;
  fill: #ededed;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.search_button:hover .icon {
  fill: #1d2229;
}

@-webkit-keyframes logo_icon {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes logo_icon {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes logo_text {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes logo_text {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@media (max-width: 1500px) {
  .header .logo {
    padding: 0px 20px;
  }

  .header .logo_icon {
    margin-right: 8px;
    height: 28px;
    width: 28px;
  }

  .header .logo_text {
    width: 113px;
  }

  .header .top_menu .menu_item {
    padding: 0px 10px;
  }

  .header .top_menu .menu_link {
    font-size: 14px;
  }

  .header .box_top_btn {
    margin-left: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .header .box_top_btn a {
    padding: 0px 21px;
    font-size: 18px;
  }

  .socials {
    padding: 25px 0px;
  }

  .socials .social_button {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 1300px) {

  .mascot {
    padding-right: 75px;
  }

  .mascot-image img {
    width: 230px;
  }

  .mascot::before {
    height: 260px;
    border-radius: 15px;
  }

  .mascot-message {
    font-size: 20px;
    line-height: 26px;
    min-height: 85px;
  }

  .mascot-message::before {
    width: 59px;
    height: 43px;
  }

  .header_height {
    height: 60px;
  }

  .header {
    height: 60px;
    line-height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
  }

  .header .logo {
    padding: 0px 10px;
  }

  .header .logo_icon {
    margin-right: 3px;
    height: 20px;
    width: 20px;
  }

  .header .logo_text {
    width: 87px;
  }

  .header .top_menu .menu {
    height: 60px;
  }

  .header .top_menu .menu_item {
    padding: 0px 7px;
  }

  .header .top_menu .menu_link {
    font-size: 12px;
  }

  .header .box_top_btn {
    margin-left: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .header .box_top_btn a {
    padding: 0px 10px;
    font-size: 13px;
  }

  .socials {
    padding: 20px 0px;
  }

  .socials .social_button {
    width: 20px;
    height: 20px;
  }

  .socials .social_button.fb {
    margin-right: 6px;
  }

  .socials .social_button.vk {
    margin-right: 6px;
  }

  .socials .social_button.yt {
    margin-right: 6px;
  }


  .search {
    margin: 0px 7px;
    width: 20px;
  }
}

@media (max-width: 1023px) {
  .socials:not(.socials--mobile) {
    display: none;
  }
}

@media (max-width: 1023px) {
  .header_height {
    height: 60px;
  }

  .header {
    height: 60px;
    line-height: 60px;
  }

  .header .container {
    padding: 0;
  }

  .header .logo {
    padding: 0px 16px;
    margin-right: auto;
    border-radius: 0px;
  }

  .header .logo_icon {
    margin-right: 12px;
    height: 32px;
    width: 32px;
  }

  .header .logo_text {
    width: 133px;
  }

  .header .top_menu {
    display: none;
  }

  .header .box_top_btn {
    margin-left: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .header .box_top_btn .button-modal {
    display: none;
  }

  .header .box_top_btn .button-call {
    display: block;
  }

  .header .box_top_btn a {
    padding: 0px 20px;
    font-size: 15px;
    background-color: #fff;
    color: #1d2229;
  }

  .header .button_menu {
    height: 60px;
    width: 60px;
    display: block;
  }



  .search {
    margin: 0px 7px;
  }

  .search #header-search {
    right: 60px;
  }
}

@media (max-width: 500px) {
  .header_height {
    height: 48px;
  }

  .header {
    height: 48px;
    line-height: 48px;
  }

  .header .logo {
    padding: 0px 10px 0px 15px;
    margin-right: auto;
  }

  .header .logo_icon {
    margin-right: 10px;
    height: 22px;
    width: 22px;
  }

  .header .logo_text {
    width: 93px;
  }

  .header .box_top_btn a {
    padding: 0px 11px 0px 0px;
    font-size: 12px;
  }

  .header .button_menu {
    height: 48px;
    width: 48px;
  }

  .header .button_menu .bar {
    width: 14px;
    left: calc(50% - 7px);
  }

  .header .button_menu .bar-1 {
    top: calc(50% - 5px);
  }

  .header .button_menu .bar-2 {
    top: calc(50% - 1px);
  }

  .header .button_menu .bar-3 {
    top: calc(50% + 3px);
  }

  .mobile_menu {
    top: 48px;
  }

  .mobile_search {
    display: block;
  }

  .search {
    display: none;
  }
}

.ago_header {
  padding-top: 44px;
  padding-bottom: 114px;
}

.ago_header .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ago_header .row .column-2 {
  padding-left: 79px;
}

.ago_header .title {
  padding: 0px;
  color: #fff;
  font-size: 60px;
  font-weight: bold;
  line-height: 60px;
  margin-bottom: 35px;
}

.ago_header .description {
  margin-bottom: 45px;
  font-weight: 500;
  color: #fff;
}

.ago_steps_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ago_steps_list::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  background-color: #fff;
  z-index: -1;
}

.ago_steps_list_item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 46px 0px 43px 41px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  cursor: pointer;
}

.ago_steps_list_item .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ago_steps_list_item .row .column-1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 39px;
  -webkit-box-flex: 0;
  -ms-flex: 0;
  flex: 0;
  margin-right: 16px;
}

.ago_steps_list_item .row .column-3 {
  height: 3px;
  background-color: #f3f3f3;
  max-width: 65px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.ago_steps_list_item .button {
  position: absolute;
  right: -16px;
  top: calc(50% - 16px);
  background-color: #fff;
  padding: 14px;
  opacity: 0;
  z-index: 1;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.ago_steps_list_item .button:hover::after {
  border-color: #ff8c29;
}

.ago_steps_list_item.current {
  background-color: #ff8c29;
  color: #fff;
  cursor: default;
}

.ago_steps_list_item.current .column-3 {
  background-color: #ff8c29;
}

.ago_steps_list_item.current .button {
  opacity: 1;
}

.ago_steps_list_item:hover:not(.current) .column-1 {
  color: #ff8c29;
}

.ago_steps_list_item:hover.current {
  color: #fff;
}

.ago_steps_container {
  background-color: #f3f3f3;
  position: relative;
}

.ago_steps_item {
  padding: 67px 0px 75px 100px;
  display: none;
}

.ago_steps_item.showed {
  display: block;
}

.ago_steps_item .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ago_steps_item .row .column-1 {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  width: 60%;
}

.ago_steps_item .row .column-1 .title {
  margin: 0px 0px 45px;
}

.ago_steps_item .row .column-1 .button {
  padding: 12px 25px;
}

.ago_steps_item .row .column-1 .or {
  margin: 0px 20px;
}

.ago_steps_item .row .column-1 .description {
  margin-top: 39px;
  font-family: 'Gotham Pro';
}

.ago_steps_item .row .column-2 {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  width: 40%;
  text-align: right;
}

.ago_steps_item .row .column-2 .button_next {
  min-width: 292px;
  border: none;
  background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#f3f3f3));
  background: -webkit-linear-gradient(left, #ffffff 0%, #f3f3f3 100%);
  background: -o-linear-gradient(left, #ffffff 0%, #f3f3f3 100%);
  background: linear-gradient(to right, #ffffff 0%, #f3f3f3 100%);
  color: #000;
  text-align: left;
  font-size: 16px;
  font-weight: 800;
  padding: 20px 32px;
  -webkit-transform: translateY(26px);
  -ms-transform: translateY(26px);
  transform: translateY(26px);
}

.ago_steps_item .row .column-2 .button_next::after {
  right: 23px;
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
}

.ago_steps_item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100vw;
  left: calc(50% - 50vw);
  background-color: #f3f3f3;
  z-index: -1;
}

.ago_text_block {
  padding: 54px 0px 24px 0px;
}

.ago_text_block .column-1 {
  padding-top: 34px;
  padding-left: 99px;
}

.ago_text_block .column-1 .title {
  margin-bottom: 40px;
}

.ago_text_block .column-2 {
  text-align: right;
}

.ago_text_block .column-2 .ago_img_1 {
  margin-right: 20px;
}

.ago_programms {
  margin-bottom: 115px;
}

.ago_programms .title {
  margin-bottom: 56px;
}

.ago_programms_list .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ago_programms .box_ago_programms_item .ago_programms_item {
  background-color: #f3f3f3;
  padding: 33px 0px;
  height: inherit;
}

.ago_programms .box_ago_programms_item .ago_programms_item_body {
  padding: 0px 70px 0px 37px;
}

.ago_programms .box_ago_programms_item .ago_programms_item_body .title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.ago_programms .box_ago_programms_item .ago_programms_item_body .description.d3 {
  max-width: 180px;
}

.ago_features {
  padding-bottom: 52px;
}

.ago_features h2.title {
  margin-bottom: 25px;
}

.ago_features .quot {
  margin-bottom: 48px;
  max-width: 70%;
}

.ago_features_list {
  margin-top: 61px;
}

.ago_features_list .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ago_features_list .row .col {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 31.5%;
  flex: 0 0 31.5%;
}

.box_ago_features_item {
  margin-bottom: 32px;
}

.box_ago_features_item .ago_features_item {
  border-width: 1px;
  margin-left: 0px;
  border-radius: 0;
  padding: 18px 0px;
}

.box_ago_features_item .ago_features_item .column-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33%;
  flex: 0 0 33%;
}

.box_ago_features_item .ago_features_item .column-1 .icon {
  height: 81px;
  width: 81px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.box_ago_features_item .ago_features_item .column-1 .icon_1 {
  background-image: url(../images/features_icons/icon_1.png);
}

.box_ago_features_item .ago_features_item .column-1 .icon_2 {
  background-image: url(../images/features_icons/icon_2.png);
}

.box_ago_features_item .ago_features_item .column-1 .icon_3 {
  background-image: url(../images/features_icons/icon_3.png);
}

.box_ago_features_item .ago_features_item .column-1 .icon_4 {
  background-image: url(../images/features_icons/icon_4.png);
}

.box_ago_features_item .ago_features_item .column-1 .icon_5 {
  background-image: url(../images/features_icons/icon_5.png);
}

.box_ago_features_item .ago_features_item .column-1 .icon_6 {
  background-image: url(../images/features_icons/icon_6.png);
}

.box_ago_features_item .ago_features_item .column-1 .icon_7 {
  background-image: url(../images/features_icons/icon_7.png);
}

.box_ago_features_item .ago_features_item .column-1 .icon_8 {
  background-image: url(../images/features_icons/icon_8.png);
}

.box_ago_features_item .ago_features_item .column-1 .icon_9 {
  background-image: url(../images/features_icons/icon_9.png);
}

.box_ago_features_item .ago_features_item .column-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 64%;
  flex: 0 0 64%;
}

.box_ago_features_item .ago_features_item_body {
  font-family: 'Gotham Pro';
  padding-right: 50px;
}

.box_ago_features_item::after {
  width: calc(100% + 4px);
  height: calc(100% - 9px);
  top: 16px;
  left: -6px;
}

.box_ago_features_item:hover .ago_features_item .icon_1 {
  background-image: url(../images/features_icons/icon_1_hovered.png);
}

.box_ago_features_item:hover .ago_features_item .icon_2 {
  background-image: url(../images/features_icons/icon_2_hovered.png);
}

.box_ago_features_item:hover .ago_features_item .icon_3 {
  background-image: url(../images/features_icons/icon_3_hovered.png);
}

.box_ago_features_item:hover .ago_features_item .icon_4 {
  background-image: url(../images/features_icons/icon_4_hovered.png);
}

.box_ago_features_item:hover .ago_features_item .icon_5 {
  background-image: url(../images/features_icons/icon_5_hovered.png);
}

.box_ago_features_item:hover .ago_features_item .icon_6 {
  background-image: url(../images/features_icons/icon_6_hovered.png);
}

.box_ago_features_item:hover .ago_features_item .icon_7 {
  background-image: url(../images/features_icons/icon_7_hovered.png);
}

.box_ago_features_item:hover .ago_features_item .icon_8 {
  background-image: url(../images/features_icons/icon_8_hovered.png);
}

.box_ago_features_item:hover .ago_features_item .icon_9 {
  background-image: url(../images/features_icons/icon_9_hovered.png);
}

.ago_econom_effect {
  background-color: #f3f3f3;
  padding-top: 71px;
}

.ago_econom_effect h2.title {
  max-width: 720px;
  margin-bottom: 75px;
}

.ago_econom_effect_list {
  padding-bottom: 60px;
}



.ago_econom_effect_list .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ago_econom_effect_list .row .column-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 29.3%;
  flex: 0 0 29.3%;
}

.ago_econom_effect_list .row .column-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 29.3%;
  flex: 0 0 29.3%;
}

.ago_econom_effect_list .row .column-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 29.3%;
  flex: 0 0 29.3%;
}

.ago_econom_effect_list .row .column-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin-top: 36px;
}

.ago_econom_effect_item {
  text-align: center;
  padding: 31px 55px 16px;
  border-radius: 5px;
  background-color: #fff;
}

.ago_econom_effect_item .percent {
  color: #ff8c29;
  font-size: 80px;
  font-weight: 500;
  line-height: 60px;
  margin-bottom: 24px;
}

.ago_econom_effect_item .description {
  font-size: 17px;
  font-weight: 600;
}

.ago_econom_effect .project_of_the_year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 19px 43px 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  border: 2px solid #fff;
  border-radius: 5px;
  background-color: #fff;
}

.ago_econom_effect .project_of_the_year .logo {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.ago_econom_effect .project_of_the_year .text {
  margin-left: 80px;
}

.ago_econom_effect .project_of_the_year:hover .logo {
  -webkit-filter: none;
  filter: none;
}

.ago_reviews .title{margin-top:20px;}
.ago_reviews .box_reviews {
  padding-top: 1px;
  background-color: #f3f3f3;
}

.ago_reviews .box_reviews .slick-arrow {
  border-color: #ff8c29;
  background-color: #fff;
}

/*.ago_reviews .box_reviews .slick-arrow::after {
  border-color: #1d2229;
}*/

.ago_reviews .box_reviews .slick-arrow:hover {
  background-color: #ff8c29;
}

.ago_reviews .box_reviews .slick-arrow:hover::after {
  border-color: #fff;
}

.ago_banner {
  background-image: url(../images/ago_banner_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 78px 0px 66px;
  margin-bottom: 66px;
}

.ago_banner .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ago_banner .row .column-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 55.5%;
  flex: 0 0 55.5%;
}

.ago_banner .row .column-2 .col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
}

.ago_banner .row .column-2 .col-1 .line-1 {
  font-size: 120px;
  line-height: 87px;
  font-weight: 700;
  color: #ff8c29;
}

.ago_banner .row .column-2 .col-1 .line-2 {
  font-size: 38px;
  line-height: 31px;
  color: #fff;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 22px;
}

.ago_banner .row .column-2 .col-1 .line-3 {
  color: #fff;
  font-weight: 500;
  max-width: 420px;
}

.ago_banner .row .column-2 .col-2 {
  text-align: right;
}

.ago_quality_garant {
  margin-bottom: 90px;
}

.ago_quality_garant h2.title {
  margin-bottom: 34px;
}

.ago_quality_garant .quot {
  margin-bottom: 22px;
}

.ago_quality_garant .column-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 68.5%;
  flex: 0 0 68.5%;
  padding-top: 9px;
}

.ago_quality_garant_img {
  margin-left: 47px;
}

.ago_why_sinergo {
  margin-bottom: 55px;
}

.ago_why_sinergo h2.title {
  margin-bottom: 60px;
}

.ago_why_sinergo_list .col {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 47.4%;
  flex: 0 0 47.4%;
}

.ago_why_sinergo_list .col.column-1 {
  -ms-flex-preferred-size: 26.5%;
  flex-basis: 26.5%;
}

.ago_why_sinergo_list .col.column-2 {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
}

.ago_why_sinergo .box_ago_why_sinergo_item {
  margin-bottom: 44px;
}

.ago_why_sinergo .box_ago_why_sinergo_item .ago_why_sinergo_item {
  padding: 11px 0px 14px;
  border-width: 1px;
  border-radius: 0px;
}

.ago_why_sinergo .box_ago_why_sinergo_item .ago_why_sinergo_item .icon {
  height: 96px;
  width: 96px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  -webkit-filter: grayscale(1) brightness(0.5);
  filter: grayscale(1) brightness(0.5);
}

.ago_why_sinergo .box_ago_why_sinergo_item .ago_why_sinergo_item .icon_1 {
  background-image: url(../images/why_sinergo_icons/icon_1.svg);
}

.ago_why_sinergo .box_ago_why_sinergo_item .ago_why_sinergo_item .icon_2 {
  background-image: url(../images/why_sinergo_icons/icon_2.svg);
}

.ago_why_sinergo .box_ago_why_sinergo_item .ago_why_sinergo_item .icon_3 {
  background-image: url(../images/why_sinergo_icons/icon_3.svg);
}

.ago_why_sinergo .box_ago_why_sinergo_item .ago_why_sinergo_item .icon_4 {
  background-image: url(../images/why_sinergo_icons/icon_4.svg);
}

.ago_why_sinergo .box_ago_why_sinergo_item .ago_why_sinergo_item .title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 11px;
}

.ago_why_sinergo .box_ago_why_sinergo_item .ago_why_sinergo_item .description {
  font-family: 'Gotham Pro';
}

.ago_why_sinergo .box_ago_why_sinergo_item:hover .icon {
  -webkit-filter: none;
  filter: none;
}

.ago_employees {
  margin-bottom: 118px;
}

.ago_employees h3.title {
  margin-bottom: 67px;
}

.ago_clients .box_clients_slider {
  background-color: transparent;
}

.ago_clients .box_clients_slider .button {
  z-index: -1;
  opacity: 0;
}

.ago_clients .box_clients_slider .slick-list {
  overflow: hidden;
}

.ago_clients .wrap {
  padding: 30px 90px;
  background-color: #f3f3f3;
}

.ago_demo {
  background-color: #fff;
  padding: 76px 0px 18px;
}

.ago_demo .gift_item {
  background-color: #f3f3f3;
}

.bitrix-partner {
  margin-top: 40px;
}

.bitrix-partner__content {
  display: grid;
  grid-template-columns: 4fr 8fr;
  column-gap: 50px;
  align-items: center;
  padding: 40px;
  background: #f3f3f3;
  border-radius: 5px;
}

.bitrix-partner__image {
  width: 100%;
  max-width: 250px;
}

.company_header {
  padding-top: 115px;
  padding-bottom: 145px;
}

.company_header .row .col.col-1 .line-1 span {
  font-size: 60px;
}

.company_header .row .col.col-1 .line-2 {
  font-size: 40px;
  margin-bottom: 41px;
}

.company_header .row .col.col-1 .line-3 {
  font-size: 30px;
  max-width: 500px;
}

.company_history {
  background-color: #1d2229;
  color: #fff;
}

.company_history .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.company_history_title {
  font-weight: 600;
  font-size: 20px;
  -ms-flex-preferred-size: 150px;
  flex-basis: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.company_history_list {
  overflow-x: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: -17px;
}

.company_history_item {
  background-color: #242a32;
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 143.556px;
  flex: 0 0 143.556px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  border-right: 1px solid #1d2229;
  border-left: 1px solid #1d2229;
}

.company_history_item .title {
  font-weight: 700;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 115px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  background-color: #242a32;
  width: 143.556px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.company_history_item .text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 266px;
  z-index: 1;
  font-size: 13px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  padding-right: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.company_history_item:hover {
  -ms-flex-preferred-size: 435.556px;
  flex-basis: 435.556px;
}

.company_history_item .big-text:not(.title) {
  width: 658px;
}

.company_history_item .big-text .title:hover {
  width: 136.556px;
}

.company_history_item.big-text:hover {
  -ms-flex-preferred-size: 827.556px;
  flex-basis: 827.556px;
}

.company_history_item:hover .title,
.company_history_item:hover .text {
  background-color: #ff8c29;
  margin: 0 20px;
  padding: 0px 20px;
}

.company_history_item:hover .title {
  width: 133.556px;
}

.company_block_1 {
  margin-bottom: 175px;
  /*   padding-top: 136px; */
  background-color: #fff;
}

.company_block_1 h1 {
  padding: 45px 0 45px 49% !important;
}

.company_block_1 .row {
  background-color: #f3f3f3;
}

.company_block_1 .column_1 {
  -ms-flex-preferred-size: 49%;
  flex-basis: 49%;
  background: white;
  background: -webkit-gradient(linear, left top, right top, from(white), to(#f3f3f3));
  background: -webkit-linear-gradient(left, white 0%, #f3f3f3 100%);
  background: -o-linear-gradient(left, white 0%, #f3f3f3 100%);
  background: linear-gradient(90deg, white 0%, #f3f3f3 100%);
}

.company_block_1 .iso {
  display: flex;
  justify-content: flex-end;
}

.company_block_1 .iso img{
  margin: 10px;
  width: 16%;
}

.company_block_1 .column_1 img {
  margin-top: -320px;
  margin-bottom: -87px;
}

.company_block_1 .column_2 {
  font-family: "Gotham Pro";
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  -ms-flex-preferred-size: 51%;
  flex-basis: 51%;
  padding: 42px 30px 30px 0px;
}

.company_block_2 {
  margin-bottom: 136px;
}

.company_block_2 .col {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.company_block_2 .column_1 {
  text-align: right;
  padding-right: 60px;
}

.company_block_2 .column_1 .line_1 {
  font-size: 27px;
  font-weight: 700;
  line-height: 31px;
}

.company_block_2 .column_1 .line_1 .more {
  font-size: 25px;
}

.company_block_2 .column_1 .line_1 .num {
  font-size: 40px;
}

.company_block_2 .column_1 .line_2 {
  font-family: "Gotham Pro";
  font-size: 18.4px;
  padding-top: 45px;
  padding-left: 60px;
  line-height: 22px;
}

.company_block_2 .column_2 {
  padding-left: 40px;
}

.company_block_2 .column_2 .line_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 27px 30px 0px;
}

.company_block_3 {
  margin-bottom: 136px;
}

.company_block_3 .col {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.company_block_3 .column_1 {
  text-align: right;
  padding-right: 53px;
}

.company_block_3 .column_1 img {
  margin-top: -47px;
  max-width: 100%;
  object-fit: contain;
}

.company_block_3 .column_2 {
  padding-left: 40px;
}

.company_block_3 .column_2 .line_1 {
  font-size: 27px;
  font-weight: 700;
  line-height: 31px;
}

.company_block_3 .column_2 .line_1 .more {
  font-size: 25px;
}

.company_block_3 .column_2 .line_1 .num {
  font-size: 40px;
}

.company_block_3 .column_2 .line_2 {
  font-family: "Gotham Pro";
  font-size: 18.4px;
  padding-top: 45px;
  line-height: 22px;
  padding-right: 80px;
}

.company_need {
  margin-bottom: 106px;
}

.company_need .block_title {
  line-height: 46px;
  margin-bottom: 70px;
}

.companies-needs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.company_need_item {
  text-align: center;
  padding: 30px;
  background-color: #f3f3f3;
  border: 2px solid #f3f3f3;
  border-radius: 5px;
  position: relative;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.company_need_item img {
  margin-bottom: 32px;
  height: 92px;
}

.company_need_item .title {
  font-family: "Gotham Pro";
}

.company_cert {
  margin-bottom: 60px;
}

.company_cert .block_title {
  width: 50%;
  line-height: 46px;
  margin-bottom: 50px;
}

.company_cert .column_1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 285px;
  flex: 0 0 285px;
}

.company_cert .column_2 {
  padding-left: 40px;
  margin-bottom: 20px;
}

.company_cert_gallery_centers {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.company_cert_gallery_center {
  text-align: center;
  padding: 30px;
  border: 2px solid #f3f3f3;
  background-color: #f3f3f3;
  border-radius: 5px;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

/*.company_cert_gallery_center:last-child {
  margin-bottom: 0px;
}*/

.company_cert_gallery_center.current {
  background-color: #fff;
  border-color: #ff8c29;
  cursor: default;
}

.company_cert_gallery_slides {
  height: 100%;
  box-sizing: border-box;
}

.company_cert_gallery_slide {
  height: inherit;
  border-radius: 5px;
  padding: 45px 50px;
  display: none;
  background-color: #f3f3f3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.company_cert_gallery_slide .title {
  margin-bottom: 30px;
}

.company_cert_gallery_slide table {
  text-align: center;
}

.company_cert_gallery_slide table img:not(.no-border) {
  max-width: 100%;
  border-radius: 5px;
  border: 8px solid #fff;
}

.company_cert_gallery_slide.show {
  display: block;
}

.company_cert_other .block_title {
  margin-bottom: 48px;
}

.company_cert_other .box_clients_slider {
  background-color: #f3f3f3;
}

.company_cert_other .box_clients_slider .logos_list {
  padding: 38px 0px;
}

.company_cert_other .box_clients_slider .logos_list .logos_item img {
  height: 240px;
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}

.company_cooperation {
  margin-bottom: 86px;
  padding-top: 74px;
}

.company_cooperation .block_title {
  margin-bottom: 50px;
}

.company_cooperation .quot {
  font-size: 18px;
  margin-bottom: 60px;
}

.company_cooperation_cards {
  margin-left: -22px;
  margin-right: -22px;
}

.company_cooperation_cards .col {
  padding-left: 22px;
  padding-right: 22px;
}

.company_cooperation_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 70px 30px 30px;
  background-color: #f3f3f3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.company_cooperation_card .icon {
  margin-right: 42px;
  width: 96px;
}

.company_cooperation_card .text {
  font-family: "Gotham Pro";
  font-size: 18px;
}

.company_cooperation_projects {
  margin-top: 70px;
}

.company_cooperation_projects .column_1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 134px;
  flex: 0 0 134px;
  text-align: right;
}

.company_cooperation_projects .column_1 .more {
  font-size: 34.57px;
  font-weight: 700;
  line-height: 67px;
}

.company_cooperation_projects .column_2 {
  padding-left: 10px;
  font-size: 25px;
  font-weight: 700;
}

.company_cooperation_projects .column_2 .num {
  font-size: 55.32px;
  font-weight: 700;
  line-height: 58px;
}

.company_cooperation_projects_button {
  text-align: right;
  padding-right: 33px;
  margin-top: 40px;
}

.company_ntr_group {
  padding-top: 48px;
  padding-bottom: 50px;
  background-color: #f3f3f3;
  margin-bottom: 56px;
}

.company_ntr_group .block_title {
  margin-bottom: 44px;
}

.company_ntr_group .text {
  font-family: "Gotham Pro";
  font-size: 18px;
  line-height: 21px;
}

.company_employees .title {
  margin-bottom: 65px;
}

.company_invite {
  margin-top: 136px;
  margin-bottom: 70px;
}

.company_invite_body {
  font-family: "Gotham Pro";
  position: relative;
  background-color: #f3f3f3;
  border-radius: 5px;
}

.company_invite .column_1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58%;
  flex: 0 0 58%;
  padding: 42px 118px 42px 48px;
}

.company_invite .column_1 .title {
  font-size: 30px;
  line-height: 33px;
  font-weight: 800;
  margin-bottom: 25px;
}

.company_invite .column_2 {
  padding-right: 230px;
}

.company_invite .search {
  position: absolute;
  right: 0px;
  top: -63px;
  width: 222px;
}

.contacts_header {
  padding-top: 47px;
  padding-bottom: 90px;
}

.contacts_header h1 {
  color: #fff;
  font-size: 50px;
  padding: 0px;
  font-weight: 800;
  margin-bottom: 48px;
}

.contacts_header .offices {
  font-size: 50px;
  font-weight: 800;
  line-height: 37px;
  color: #fff;
  margin-bottom: 64px;
}

.contacts_header .offices small {
  font-size: 30px;
}

.contacts_content {
  background-color: #f3f3f3;
  padding-top: 40px;
}

.contacts_content>.container .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contacts_content>.container .column-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 68%;
  flex: 0 0 68%;
  max-width: 980px;
}

.contacts_content>.container .column-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 28%;
  flex: 0 0 28%;
  max-width: 340px;
}

.contacts_content>.container .column-2 .paragraph-nav {
  position: -webkit-sticky;
  position: sticky;
  top: calc(120px + 20px);
}

.contacts_content .__paragraph__header .title {
  font-size: 40px;
}

.contacts_content .__paragraph__header .title small {
  font-size: 30px;
}

.contacts_content .__paragraph p {
  font-size: 18px;
}

.contacts_content .__paragraph .maps {
  position: relative;
  padding-bottom: 60%;
}

.contacts_content .__paragraph .maps iframe {
  position: absolute;
  top: 0;
  left: 0;
}

.contacts_content .box_search {
  padding-top: 250px;
}

.contacts_content .box_search .row .column-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
}

.contacts_content .box_search .button_search,
.contacts_content .box_search .search-close {
  display: none;
}

.contacts_content .box_consult {
  padding-bottom: 60px;
}

.web_header {
  padding-top: 44px;
  padding-bottom: 114px;
}

.web_header .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.web_header .row .column-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.6%;
  flex: 0 0 58.6%;
}

.web_header .row .column-2 {
  padding-left: 70px;
}

.web_header .title {
  padding: 0px;
  color: #fff;
  font-size: 55px;
  font-weight: bold;
  line-height: 55px;
  margin-bottom: 50px;
  margin-top: 52px;
}

.web_header .description {
  margin-bottom: 65px;
  font-weight: 500;
  color: #fff;
  font-size: 23px;
}

.web_block_1 .col {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.web_block_1 .column-1 {
  padding-left: 100px;
  padding-top: 80px;
}

.web_block_1 .column-1 .block_title {
  line-height: 45px;
  margin-bottom: 40px;
}

.web_block_1 .column-2 {
  padding-top: 37px;
  padding-left: 104px;
}

.web_block_1 .column-2 img {
  width: 100%;
  max-width: 568px;
}

.web_services .block_title {
  margin-bottom: 57px;
}

.web_services .company_need_list .row {
  margin: 0px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.web_services .company_need_list .col {
  padding: 0px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  max-width: 280px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-bottom: 50px;
}

.web_services .company_need_list .line-1 {
  margin-right: 10%;
  padding-right: 8.5%;
}

.web_services .company_need_list .line-2 {
  margin-left: 10%;
  padding-left: 8.5%;
}

.web_services .company_need_item {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 0;
}

.web_content .block_title {
  line-height: 45px;
  margin-bottom: 40px;
}

.web_content .box_search {
  padding-top: 100px;
}

.web_content .box_search .row .column-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
}

.web_content .box_search .button_search,
.web_content .box_search .search-close {
  display: none;
}

.web_content .box_consult {
  padding-bottom: 60px;
}

.web_reviews .box_reviews {
  background-color: #f3f3f3;
  padding-bottom: 0;
  padding-top: 60px;
}

.web_reviews .box_reviews .block_title {
  color: #1d2229;
}

.web_reviews .box_clients_slider {
  background-color: #f3f3f3;
}

.web_ways {
  padding-top: 80px;
}

.web_ways .block_title {
  margin-bottom: 70px;
}

.web_ways .halfcircles {
  position: absolute;
  background-color: orange;
  top: 27%;
  left: 0;
  height: 490px;
  width: 490px;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  overflow: hidden;
}

.web_ways .halfcircles::before {
  content: "";
  background-color: #eee;
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border-radius: 50%;
  z-index: 1;
}

.web_ways .halfcircles::after {
  content: "";
  background-color: #73d0eb;
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
}

.web_ways_titles_list {
  margin-left: -30px;
  margin-right: -30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 30px;
}

.web_ways_titles_list .col {
  padding-left: 30px;
  padding-right: 30px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33%;
  flex: 0 0 33%;
}

.web_ways_titles_list .link-with-arrow {
  padding: 17px 0px;
}

.web_ways_list {
  background-color: #f3f3f3;
  border-radius: 5px;
  border-top: 5px solid #ff8c29;
  padding: 56px 63px;
  padding-bottom: 0px;
  position: relative;
  overflow: hidden;
}

.web_ways_item {
  position: relative;
  z-index: 5;
}

.web_ways_item>.title {
  margin-bottom: 43px;
}

.web_ways_item .need_list {
  margin-left: -25px;
  margin-right: -25px;
  margin-bottom: 92px;
}

.web_ways_item .need_list>.col {
  padding-left: 25px;
  padding-right: 25px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.3333%;
  flex: 0 0 33.3333%;
}

.web_ways_item .need_item {
  padding: 17px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 5px;
}

.web_ways_item .need_item .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.web_ways_item .need_item .icon {
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.web_ways_item .need_item .column-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 59.5%;
  flex: 0 0 59.5%;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  font-family: 'Gotham Pro';
}

.web_ways_item .need_item:hover .icon {
  fill: #ff8c29;
}

.web_ways_item .need_item:hover .column-2 {
  font-weight: 700;
}

.web_ways_item .icon_text_block {
  margin-left: 216px;
}

.web_ways_item .icon_text_block.block-1 {
  margin-bottom: 44px;
}

.web_ways_item .icon_text_block.block-1 .title {
  color: orange;
}

.web_ways_item .icon_text_block.block-2 .logo_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: absolute;
}

.web_ways_item .icon_text_block.block-2 .logo_item {
  margin-right: 38px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.web_ways_item .icon_text_block.block-2 .logo_item img {
  max-width: 300px;
  max-height: 300px;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.web_ways_item .icon_text_block.block-2 .logo_item img:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.web_ways_item .projects {
  padding-top: 130px;
}

.web_ways_item .projects>.row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.web_ways_item .projects_number {
  font-size: 101px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 76px;
}

.web_ways_item .projects_description {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.web_site_or_app {
  margin-bottom: 95px;
  margin-top: 38px;
}

.web_site_or_app_container {
  background-color: #f3f3f3;
  border-radius: 5px;
  border-bottom: 5px solid #ff8c29;
  padding: 24px 38px;
}

.web_site_or_app_container .column-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 68%;
  flex: 0 0 68%;
  padding-top: 34px;
}

.web_site_or_app_container .column-1 .title {
  margin-bottom: 34px;
}

.web_site_or_app_container .column-1 p {
  font-size: 18px;
  line-height: 21px;
}

.web_site_or_app_container .column-2 {
  text-align: center;
}

.web_site_or_app_container .column-2 img {
  margin: 0 auto;
  max-width: 100%;
}

.search_page {
  background-color: #f3f3f3;
  padding-top: 50px;
  padding-bottom: 50px;
}

.search_page .__paragraph .box_input {
  margin-top: 0 !important;
}

.search_page .__paragraph:last-child {
  margin-bottom: 0px;
}

.search_item h3 {
  margin-bottom: 0px;
  font-weight: 500;
}

.search_item p {
  margin-top: 10px;
}

.search_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search_form .box_input {
  margin-bottom: 0px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
}

.search_form .box_input input {
  border-radius: 5px 0px 0px 5px;
  border-right: none;
}

.search_form .button {
  border-radius: 0px 5px 5px 0px;
}

.chain {
  position: relative;
}

.chain_item {
  position: relative;
  -webkit-box-shadow: 0px 0px 0px 6px #fff;
  box-shadow: 0px 0px 0px 6px #fff;
}

.chain_item .line {
  position: absolute;
  height: 3px;
  top: calc(50% - 2px);
  background-color: #ff8c29;
  z-index: -1;
}

.chain_item .line.arrow::after {
  content: "";
  display: block;
  height: 1px;
  width: 0px;
  border-top: 6px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #ff8c29;
  position: absolute;
  right: -3px;
  top: -5px;
}

.chain_item .line_in {
  right: calc(100% + 11px);
}

.chain .divider {
  position: absolute;
  left: 10%;
  right: 10%;
  z-index: -1;
}

.chain .divider::before {
  content: "";
  position: absolute;
  left: 0;
  width: 50%;
  top: calc(50% - 1px);
  bottom: -3px;
  border-left: 3px solid #ff8c29;
  border-top: 3px solid #ff8c29;
  border-bottom: 3px solid #ff8c29;
}

.chain .divider::after {
  content: "";
  position: absolute;
  right: 0;
  width: 50%;
  bottom: calc(50% - 2px);
  top: 0;
  border-right: 3px solid #ff8c29;
  border-top: 3px solid #ff8c29;
  border-bottom: 3px solid #ff8c29;
}

.link_contact:not(img) {
  color: #465051;
  -webkit-transition-duration: .2s;
  -o-transition-duration: .2s;
  transition-duration: .2s;
}

.link_contact:not(img):hover {
  color: white;
}

.ajax_loading {
  position: relative;
}

.ajax_loading::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  background-color: #fff;
  z-index: 10;
}

.footer-small {
  height: auto !important;
  display: none;
}

.bx-breadcrumb-item span {
  white-space: normal;
}

.ago_features .container .modal_feature {
  width: 100%;
  max-width: 60vw;
  min-width: 73%;
  margin: 0;
  left: calc(45% - 32vw);
  top: 10vh;
  max-height: 80vh;
}

.modal_feature .body>img {
  width: 100%;
  margin-left: 0px;
}

.modal_feature .body {
  max-height: 450px;
}

.title-services {
  color: white;
}

.title-services span {
  padding-left: 0;
  margin-left: 0;
}

.services_list.box_services-template {
  margin-top: -210px;
}

.service_page {
  background: #fff;
}

/* bugboard */

.white-box {
  background: #fff;
  border: 1px solid #FF8C29;
  box-shadow: 0px 7px 22px -4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}

.orange-box {
  background: #FF8C29;
  border: 1px solid #FF8C29;
  box-shadow: 0px 7px 22px -4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  box-sizing: border-box;
}

.light-box {
  background: #FFFFFF;
  box-shadow: 0px 3px 6px -1px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}

.bugboard-main {
  background-color: #FFB575;
  padding: 66px 0px;
}

.bugboard-main__wrap {
  color: #fff;
  display: grid;
  grid-template-columns: 180px auto 230px;
  align-items: center;
  gap: 86px;
}

.bugboard-main__title {
  font-weight: 800;
  font-size: 56px;
  line-height: 68px;
  color: #FFFFFF;
}

.bugboard-main__description {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #FFFFFF;
}

.bugboard-main__button {
  background-color: #fff;
  color: #181818;
  font-size: 30px;
  line-height: 37px;
  border: none;
  text-align: center;
}

.bugboard-main__button:hover {
  background-color: #eee;
}

.bugboard__block {
  padding: 80px 0px 30px;
}

.bugboard__block .row {
  padding: 0 !important;
}

.bugboard__block--bg-white {
  background-color: #fff;
}

.bugboard__block--bg-gray {
  background-color: #F3F3F3;
}

.bugboard__block-title {
  margin-bottom: 60px;
}

.bugboard__what-is-it {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  align-items: stretch;
}

.bugboard__orange-box {
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  text-align: center;
  color: #FFFFFF;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bugboard__algorithm-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  width: 530px;
  position: relative;
}

.bugboard__algorithm-list::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  background-color: #FF8C29;
}

.bugboard__light-box {
  text-align: center;
  padding: 25px;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  position: relative;
  z-index: 2;
}

.bugboard__tip {
  position: absolute;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -10px;
  background-color: #FF8C29;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
}

.bugboard__tip--right {
  right: -10px;
}

.bugboard__tip--left {
  left: -10px;
}

.bugboard__algorithm-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.bugboard__algorith-description-list {
  width: 470px;
}

.bugboard__white-box {
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  text-align: center;
  padding: 35px 50px;
  position: relative;
}

.bugboard__white-box ul {
  padding-left: 35px;
  font-weight: 500;
  text-align: left;
  margin-top: 10px;
}

.bugboard__white-box ul li::before {
  top: calc(50% - 5px);
}

.bugboard__white-box:first-child {
  margin-bottom: 50px;
}

.bugboard__scheme-img {
  width: 100%;
}

.bugboard__download {
  display: flex;
  position: relative;
}

.bugboard__download-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bugboard__download-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.bugboard__download-text {
  display: flex;
  padding: 15px;
  align-items: center;
}

.bugboard__download-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}

.bugboard__download-info {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #AFAFAF;
  margin-left: 15px;
}

.bugboard__download-icon {
  background-color: #FF8C29;
  padding: 15px;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
}

.bugboard__request-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

.bugboard__request-container {
  width: 100%;
  max-width: 620px;
  margin: 40px auto 0px;
}

.bugboard__block--bg-black {
  background-color: #1D2229;
}

.bugboard__block-title--color-white {
  color: #fff;
}

.bugboard__cost-list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.bugboard__cost {
  padding: 30px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.bugboard__cost--stock {
  box-shadow: 0px 7px 22px -4px #ff8c2991;
  color: #fff;
}

.bugboard__cost-title {
  font-size: 30px;
  font-weight: 600;
}

.bugboard__cost-title span {
  white-space: nowrap;
}

.bugboard__cost-title small {
  font-size: 18px;
  opacity: .8;
}

.bugboard__cost-num {
  font-size: 35px;
  font-weight: 800;
  flex: 0 0;
}

.bugboard__cost-button {
  text-align: center;
  margin-top: 60px;
}

.bugboard__list .list_item {
  font-size: 22px;
  font-weight: 600;
}

/* bugboard end */
/* products */

.products__content {
  padding-top: 80px;
  padding-bottom: 80px;
}

.products__item {
  background-color: #fff;
  position: relative;
  border-radius: 10px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: auto 20%;
  gap: 20px;
  padding: 10px 10px 10px 40px;
  align-items: center;
  border: 2px solid #DADADA;
  transition: .3s;
}

.products__item:hover {
  border-color: #ff8c29;
}

.products__item-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  overflow: hidden;
  z-index: 4;
}

.products__item-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.products__item-title {
  font-size: 35px;
  font-weight: 800;
}



/* products end */

.cost-element-filler {
  opacity: 0;
  transition: .2s;
  background-color: rgba(255, 255, 255, 0.95);
}

.cost-element:hover .cost-element-filler {
  opacity: 1;
}



.service-landing-header {
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 6.5fr 5.5fr;
  align-items: stretch;
}

.service-landing-header__title {
  font-size: 42px;
  line-height: 47px;
  padding-top: 0;
  font-weight: 700;
}

.service-landing-header__subtitle {
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  text-align: start;
  padding-top: 0;
}

.service-landing-header__description {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  padding-right: 85px;
  margin-bottom: 60px;
}

.service-landing-header__button {
  padding: 16px 38px;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.service-landing-header__image-wrap {
  position: relative;
  z-index: 1;
}

.service-landing-header__image {
  /* width: 788px; */
  /* width: 100%; */
  /* height: 538px; */
  /* position: relative; */
  z-index: -1;
  /* margin-bottom: -60px;
  margin-right: -120px; */
  /* background-image: url("/local/templates/main_copy/images/maintenance/management.png"); */
  /* background-size: cover; */
  /* background-size: 100%; */
  /* background-position: top center; */
  /* background-repeat: no-repeat; */

  position: absolute;
  left: -5vw;
  top: -8vw;
  width: 52.3vw;
}

.service-landing-sale {
  /* background-image: url("/local/templates/main_copy/images/maintenance/present.png");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 43vw; */
  padding: 130px 0px;
  position: relative;
  overflow: hidden;
}

.service-review{
  margin-top: -80px;
  margin-bottom: 50px;
}
@media (max-width: 900px){
  .service-review {
    margin-top: -20px;
  }
}

.service-landing-sale__image--mobile {
  display: none;
}

.service-landing-sale__image {
  position: absolute;
  right: 0;
  width: 38vw;
  top: 50%;
  transform: translateY(-50%);
}

.service-landing-sale__container {
  /* padding-right: 38vw; */
  display: grid;
  grid-template-columns: 8fr 4fr;
  align-content: center;
  justify-items: start;
}

.service-landing-sale__info-block {
  margin-bottom: 75px;
}

.service-landing-sale__button {
  font-size: 32px;
  line-height: 34px;
  font-weight: 700;
  padding: 17px 39px;
}

.service-landing-cases {
  padding-top: 60px;
}


/* promsafe */
/* .service-landing-header__image--promsafe {
  background-image: url("/local/templates/main_copy/images/promsafe/header_image.png");
} */

.header-description {
  font-weight: 500;
  margin-bottom: 0;
}

.header-button--back {
  margin-top: 20px;
}

/* promsafe end */

/* maintenance */

.service-landing-header__title--maintenance {
  font-size: 58px;
  line-height: 55px;
  padding-top: 0;
  font-weight: 700;
}

.maintenance-block-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
  margin: 0;
  padding: 0;
}

.service-landing-advantages {
  background-color: #F3F3F3;
  padding: 90px 0;
  position: relative;
  z-index: 2;
}



.service-landing-advantages__list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.service-landing-advantages__block-title {
  margin-bottom: 60px;
}

.info-card {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  border: 2px solid #FF9900;
  border-radius: 11px;
}

.info-card__icon {
  width: 63px;
  height: 63px;
}

.info-card__text {
  font-size: 20px;
  margin: 0;
  font-weight: 400;
  line-height: 22px;
  padding-left: 5px;
}

.maintenance-about-company {
  padding: 100px 0;
}

.service-landing-cases__block-title,
.service-landing-sale__block-title,
.maintenance-about-company__block-title,
.maintenance-services__block-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 36px;
  text-align: start;
  margin-bottom: 60px;
}

.maintenance-about-company__text {
  font-size: 27px;
  font-weight: 400;
  line-height: 34px;
}

.maintenance-about-company__container {
  display: grid;
  grid-template-columns: auto 417px;
  gap: 40px;
  align-items: center;
}

.maintenance-about-company__image {
  width: 100%;
}

.maintenance-services {
  padding-bottom: 50px;

  .service_blocks {
    display: grid;
    column-gap: 77px;
    row-gap: 46px;
    grid-template-columns: repeat(2, 1fr);

    .block_details {
      background-color: #F3F3F3;
      border-radius: 7px;
      padding: 37px;
      font-size: 28px;
      line-height: 29px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 31px;
      width: auto;
      height: 100%;

      .block_img {
        width: 114px;
        height: auto;
      }

      .service_item__title {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
      }

      .service_item__description {
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 1;
        font-size: 22px;
        line-height: 27px;
        font-weight: 400;
        padding: 40px;
        box-sizing: border-box;
        opacity: 0;
        transition: opacity .3s ease;
        border-radius: 10px;
      }

      a {
        text-decoration: none;
        color: black;
        cursor: pointer;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: transparent;
        z-index: 2;
      }

      &:hover {
        .service_item__description {
          opacity: 1;
        }
      }
    }
  }

  .service_btn {
    border-radius: 13px;
    width: 100%;
    padding: 26px 0;
    font-size: 37px;
    line-height: 55px;
    font-weight: 700;
    margin-top: 64px;
  }
}




.simple-quot {
  border-left: 15px solid#FF9900;
  padding-left: 30px;
}

.simple-quot__text {
  font-size: 27px;
  line-height: 32px;
  font-weight: 400;
}

.simple-quot__text--light {
  font-weight: 300;
}

.simple-quot__text:not(:last-child) {
  margin-bottom: 32px;
}



.service-landing-order {
  padding: 50px 0px;
  background-image: url("/local/templates/main_copy/images/maintenance/business.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.service-landing-order::before {
  content: "";
  background: linear-gradient(10.07deg, rgba(0, 0, 0, 0) -3.82%, #000000 111.65%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.service-landing-order__container {
  display: grid;
  grid-template-columns: auto 30vw;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.service-landing-order__form-wrap {
  background-color: #fff;
  padding: 20px 10px;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
}

.service-landing-order__block-title {
  color: #FF9900;
  font-size: 57px;
  line-height: 105%;
  margin-bottom: 20px;
}

.service-landing-order__block-subtitle {
  font-size: 30px;
  line-height: 40px;
  color: #fff;
}

.service-landing-order__submit-btn {
  width: 100%;
  font-size: 25px;
  line-height: 30px;
  font-weight: 500;
  padding: 18px;
}


/* stocks */

.stocks {
  background-color: #1D2229;
  padding-top: 20px;
  padding-bottom: 80px;
  position: relative;
}

.stocks__block_title {
  color: #fff;
  margin-bottom: 30px;
}

.stock-card {
  position: relative;
  min-height: 525px;

  box-shadow: 0px 4px 25px 1px rgba(209, 209, 22, 0.25);
  border-radius: 13px;
  overflow: hidden;
}

.stock-card__preview-text {
  background-color: #fff;
  border-radius: 13px;
  padding: 25px;
}

.stock-card__link-wrap {
  text-align: center;
  padding-top: 25px;
}

.stock-card--in-slider {
  margin: 30px 35px;
}

.stock-card__hover {
  background-color: rgba(29, 34, 41, 0.76);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}

.stock-card__hover--with-preview-text {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;

}

.stock-card__hover:hover {
  opacity: 1;
}

.stock-card__title {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  line-height: 32px;
  padding: 15px;
  position: relative;
  z-index: 4;
}

.stock-card__img-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  aspect-ratio: 1 / 1;
}

.stock-card__img-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: inherit;
}

.stock-card__img {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.stock-card__button {
  box-shadow: 0px 16px 19px -11px rgba(255, 140, 41, 0.66);
}

.stock-card__button::after {
  border-color: #fff;
}

.stocks-slider .slick-track,
.stocks__list {
  display: flex;
  align-items: stretch;
}

.stocks-slider {
  margin-left: -35px;
  margin-right: -35px;
  display: none;
}

.stocks-slider__arrow {
  background-color: transparent;
  border-color: #fff;
}

.stocks-slider__arrow:hover {
  background-color: #fff;
}

.stocks-slider__arrow::after {
  border-color: #ff8c29;
}

.stocks-slider__arrow:hover::after {
  border-color: #ff8c29;
}

.stocks-slider__item:not(.slick-active) {
  opacity: .5;
  pointer-events: none;
}

.stocks__loader,
.news__loader,
.stock-card__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.stock-card--more {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: gap .4s ease;
}

.stock-card--more:hover {
  gap: 30px;
}

.stock-card--more .block_link {
  z-index: 5;
}

.stock-card--more .stock-card__title {
  font-size: 20px;
  font-weight: 800;
  line-height: 24px;
  color: #454545;
  z-index: 0;
  text-align: right;
  padding: 0;
}


/* stocks end */
/* logo loader */

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

.logo-loader__img {
  width: 60px;
  height: 60px;
  filter: grayscale(1);
  animation: spin 4s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.stickers-products__wrapper {
  display: inline-flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form_user_consent_info__modal {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}

.form_user_consent_info__not_modal {
  margin-top: 10px;
  font-size: 14px;
}

/* Cookie notice */
.cookie_notice__wrapper {
  display: none;
  background-color: #fff;
  border-radius: 12px;
  bottom: 24px;
  box-shadow: 0px 10px 32px -4px #a1a1a1;
  left: 16px;
  margin: auto;
  max-width: 334px;
  padding: 16px;
  position: fixed;
  right: 16px;
  z-index: 999;
  transition: opacity 0.3s ease-in-out;
}

.cookie_notice__content__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.cookie_notice__content__text {
  color: #7c8391;
  font-size: 12px;
  line-height: 16px;
  margin-top: 8px;
}

.cookie_notice__content__button__wrapper {
  margin-top: 24px;
}

.button__w100 {
  width: 100%;
  border: 2px solid #ff8c29;
  padding: 12px 20px;
  background-color: #ff8c29;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Montserrat';
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}

.button__w100:hover {
  opacity: 0.7
}

@media only screen and (min-width: 768px) {
  .cookie_notice__wrapper {
    margin-left: 0;
    max-width: 350px;
    padding: 32px;
  }

  .cookie_notice__content__text {
    font-size: 13px;
    line-height: 20px;
  }

  .cookie_notice__content__button__wrapper {
    margin-top: 32px;
  }
}


/* 404 */
.status-404__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 60vh;
  background-color: #f3f3f3;
}

.status-404__subtitle {
  font-size: 2rem;
  text-align: center;
  text-align: center;
  margin-bottom: 1rem;
}

.status-404__link {
  color: rgb(255, 140, 41);
  transition: color 0.3s ease-in-out;
  font-size: 1.2rem;
}
.status-404__link:hover{color:#cf6000;}
.status-404__title{
  font-size: 3rem;
  font-weight: 700;
}
@media(max-width: 640px){
  .status-404__subtitle
  {font-size: 1.5rem;}
}


.ago-video{padding:40px 0;}
@media(max-width: 640px){
  .ago-video{
    padding: 0 0 40px;
    margin-top:-20px;
  }
  .ago_econom_effect_list{
    padding-bottom:30px;
  }
}
.ago-video-iframe__wrapper{
  max-width: 1050px;
}
