@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");
.shadow-dark {
  -moz-box-shadow: 10px 10px 20px #1a1a1a, -10px -10px 20px #505050;
  -webkit-box-shadow: 10px 10px 20px #1a1a1a, -10px -10px 20px #505050;
  box-shadow: 10px 10px 20px #1a1a1a, -10px -10px 20px #505050;
}

.shadow-medium {
  -moz-box-shadow: 10px 10px 20px #A89F91, -10px -10px 20px #EDE5DA;
  -webkit-box-shadow: 10px 10px 20px #A89F91, -10px -10px 20px #EDE5DA;
  box-shadow: 10px 10px 20px #A89F91, -10px -10px 20px #EDE5DA;
}

.shadow-light {
  -moz-box-shadow: 10px 10px 20px #DDC6AA, -10px -10px 20px #FFFFFF;
  -webkit-box-shadow: 10px 10px 20px #DDC6AA, -10px -10px 20px #FFFFFF;
  box-shadow: 10px 10px 20px #DDC6AA, -10px -10px 20px #FFFFFF;
}

.margin-0 {
  margin: 0;
}

.margin-top-20 {
  margin-top: 20px;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.flex-start {
  justify-content: flex-start;
}

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

.vertical-top {
  align-items: flex-start;
}

.vertical-bottom {
  align-items: flex-end;
}

.space-between {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.wrap {
  flex-wrap: wrap;
}

.white-text {
  color: #fff8ef;
}

.orange-text {
  color: #e47a09;
}

.beige-light {
  color: #ddd1c3;
}

.bold {
  font-weight: 700;
}

.white {
  background-color: #fff8ef;
}

.full-width {
  width: 100% !important;
}

.nav > li > a {
  padding: 0;
}

.nav > li > a:hover, .nav > li > a:focus {
  background-color: transparent;
}

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: transparent;
  border-color: transparent;
}

.navbar {
  min-height: auto;
  margin-bottom: 0;
  border: 0;
}

.container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
  margin-right: 0;
  margin-left: 0;
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  background-color: transparent;
  color: #e47a09 !important;
}

.btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
  background-color: #e47a09 !important;
  color: #fff8ef !important;
}

@media (max-width: 767px) {
  .navbar-toggle {
    margin: 0;
  }
  .navbar-toggle .icon-bar {
    background-color: #fff8ef;
  }

  .navbar-collapse.in {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    background: #2d2d2d;
    text-align: center;
    min-width: 100%;
    min-height: 100vh;
    padding-top: 71px;
    padding-bottom: 34px;
    z-index: 100;
  }
  .navbar-collapse.in .menu {
    margin-top: 175px;
  }

  .navbar {
    position: absolute;
    display: block;
    width: 100%;
    top: 0;
    left: 0;
  }

  .navbar-toggle {
    position: fixed;
    float: none;
    right: 16px;
    margin: 0;
    top: 18px;
    z-index: 1000;
  }
  .navbar-toggle.collapsed span {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .navbar-toggle[aria-expanded="true"] {
    width: 42px;
    height: 32px;
  }
  .navbar-toggle[aria-expanded="true"] span:not(.sr-only) {
    position: absolute;
  }
  .navbar-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 16px;
    left: 12px;
  }
  .navbar-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(3) {
    opacity: 0;
  }
  .navbar-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(4) {
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 12px;
    left: 12px;
  }
}
@media (max-height: 420px) {
  .navbar-collapse.in .menu {
    margin-top: 35px;
  }
}
.panel-body {
  padding: 0;
}

.has-error .control-label {
  color: #e47a09;
}
.has-error .help-block {
  color: #ed1010;
}

.help-block {
  color: #ed1010;
}

.no-gutter > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.nav-tabs {
  border-bottom: 0;
}

.nav-tabs > li > a {
  margin-right: 0;
  line-height: inherit;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.nav-tabs > li > a:hover {
  border: 0;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: inherit;
  background-color: inherit;
  border-top: inherit;
  border-left: inherit;
  border-right: inherit;
  border-bottom: inherit;
}

.dropdown-menu {
  width: 288px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding: 19px 35px 22px 35px;
  left: auto;
  right: 0;
}
@media (max-width: 767px) {
  .dropdown-menu {
    padding: 5px 0;
  }
  .dropdown-menu li {
    border-bottom: 1px solid #ddd1c3;
  }
  .dropdown-menu li:last-child {
    border-bottom: 0;
  }
}

.dropdown-menu > li > a {
  padding: 10px 0;
  color: #4b4a48;
}
@media (max-width: 767px) {
  .dropdown-menu > li > a {
    padding: 10px 35px;
  }
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  color: #e47a09;
  background-color: transparent;
}
@media (max-width: 767px) {
  .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    color: #4b4a48;
  }
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}

.list-city .slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  border-right: 2px dashed #d1c5b5;
}

.slick-arrow {
  position: absolute;
  top: 40%;
  width: 24px;
  height: 8px;
  border: 0 !important;
  z-index: 1000;
}
.slick-arrow.slick-prev {
  left: 0;
  background: url("../images/arrow/arrow-slider.svg") no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}
.slick-arrow.slick-next {
  right: -16px;
  background: url("../images/arrow/arrow-slider.svg") no-repeat;
  background-size: contain;
}
.slick-arrow.slick-disabled {
  display: none !important;
}

.slick-dots {
  list-style: none;
  padding: 0;
}
.slick-dots li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px !important;
  width: 14px !important;
  height: 14px !important;
}
.slick-dots li button {
  font-size: 0;
  width: 14px;
  height: 14px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background-color: #4b4a48;
  border: 0;
}
.slick-dots li.slick-active button {
  background-color: #e47a09;
}

.slider-items .slick-dots li {
  margin: 0 2.5px !important;
  width: 8px !important;
  height: 8px !important;
}
.slider-items .slick-dots li button {
  padding: 0;
  font-size: 0;
  width: 8px;
  height: 8px;
}
@media (max-width: 767px) {
  .slider-items .slick-dots li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 4px !important;
    width: 14px !important;
    height: 14px !important;
  }
  .slider-items .slick-dots li button {
    font-size: 0;
    width: 14px;
    height: 14px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background-color: #4b4a48;
    border: 0;
  }
  .slider-items .slick-dots li.slick-active button {
    background-color: #e47a09;
  }
}
.slider-items .slick-arrow {
  position: absolute;
  top: 40%;
  width: 8px;
  height: 13px;
  border: 0 !important;
  z-index: 1000;
  font-size: 0;
}
.slider-items .slick-arrow.slick-prev {
  left: 0;
  background: url("../images/arrow/arrow-slider.svg") no-repeat;
  background-position: center;
  transform: rotate(90deg);
}
.slider-items .slick-arrow.slick-next {
  right: 0;
  background: url("../images/arrow/arrow-orange.svg") no-repeat;
  background-position: center;
  transform: rotate(-90deg);
}
.slider-items .slick-arrow.slick-disabled {
  display: block !important;
}
.slider-items .slick-arrow.slick-disabled.slick-prev {
  left: 0;
  background: url("../images/arrow/arrow-beige.svg") no-repeat;
  background-position: center;
  transform: rotate(0deg);
}
.slider-items .slick-arrow.slick-disabled.slick-next {
  right: 0;
  background: url("../images/arrow/arrow-beige.svg") no-repeat;
  background-position: center;
  transform: rotate(180deg);
}

.btn {
  display: inline-block;
  vertical-align: middle;
  height: 39px;
  -moz-border-radius: 28px;
  -webkit-border-radius: 28px;
  -ms-border-radius: 28px;
  border-radius: 28px;
  border: 0;
  color: #fff8ef;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 39px;
  text-align: center;
  letter-spacing: 0.06em;
}
.btn.btn-primary {
  padding: 0 28px;
  background: #e47a09;
}
.btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:active {
  background: #e47a09;
}
.btn.btn-default {
  padding: 0 16px;
  background: #4b4a48;
}
.btn.btn-default:hover, .btn.btn-default:focus, .btn.btn-default:active {
  background: #e47a09;
}
.btn.btn-dark {
  padding: 0 16px;
  background: #2d2d2d;
}
.btn.btn-dark:hover, .btn.btn-dark:focus, .btn.btn-dark:active {
  background: #2d2d2d;
  color: #fff8ef;
}

.btn-outline {
  display: inline-block;
  vertical-align: middle;
  height: 39px;
  -moz-border-radius: 28px;
  -webkit-border-radius: 28px;
  -ms-border-radius: 28px;
  border-radius: 28px;
  border: 1px solid #4b4a48;
  color: #4b4a48;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 27px;
  text-align: center;
  letter-spacing: 0.06em;
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active {
  border: 1px solid #e47a09;
  color: #e47a09;
}

label {
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  line-height: 16px;
  margin-bottom: 0;
  color: #e47a09;
}

.form-control {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  height: 40px;
  color: #4b4a48;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #ddd1c3;
  background: #fff8ef;
  width: 100%;
  transition: none;
}
.form-control:focus {
  border: 1px solid #4b4a48;
  box-shadow: none;
}

label:not(.control-label) {
  display: block;
  margin-top: 12px;
}

.labelValue {
  position: relative;
  font-size: 14px;
  color: #4b4a48;
  line-height: 21px;
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  padding-left: 22px;
}

input[type="checkbox"] {
  position: absolute;
  left: 0;
  margin-left: 0;
  opacity: 0;
}

input[type="checkbox"]:not(checked) + .labelValue:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background: #fff8ef;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  border: 2px solid #d1c5b5;
  position: absolute;
  left: 0;
  top: 2px;
  cursor: pointer;
  z-index: 2;
}

input[type="checkbox"]:checked + .labelValue:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background: #fff8ef;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  border: 2px solid #e47a09;
  position: absolute;
  left: 0;
  top: 2px;
  cursor: pointer;
  z-index: 2;
}

input[type="checkbox"]:checked + .labelValue:after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background-color: #e47a09;
  position: absolute;
  top: 6px;
  left: 4px;
  z-index: 2;
}

input[type="radio"] {
  position: absolute;
  left: 0;
  margin-left: 0;
  opacity: 0;
}

input[type="radio"]:not(checked) + .labelValue:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background: #fff8ef;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  border: 2px solid #d1c5b5;
  position: absolute;
  left: 0;
  top: 2px;
  cursor: pointer;
  z-index: 2;
}

input[type="radio"]:checked + .labelValue:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background: #fff8ef;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  border: 2px solid #e47a09;
  position: absolute;
  left: 0;
  top: 2px;
  cursor: pointer;
  z-index: 2;
}

input[type="radio"]:checked + .labelValue:after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background-color: #e47a09;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  position: absolute;
  top: 6px;
  left: 4px;
  z-index: 2;
}

.content-projects {
  background-color: #fff8ef;
}
.content-projects .container {
  padding: 100px 112px 96px;
  position: inherit;
}
.content-projects .container .container {
  width: 100%;
  max-width: 1440px;
  padding: 50px 112px;
}
@media (max-width: 1440px) {
  .content-projects .container .container {
    padding: 50px 75px;
  }
}
@media (max-width: 1365px) {
  .content-projects .container .container {
    padding: 50px 32px;
  }
}
@media (max-width: 767px) {
  .content-projects .container .container {
    padding: 38px 23px;
  }
}
@media (max-width: 1440px) {
  .content-projects .container {
    padding: 100px 75px 96px;
  }
}
@media (max-width: 1365px) {
  .content-projects .container {
    padding: 100px 32px 96px;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .content-projects .container {
    padding: 69px 48px;
  }
}
@media (max-width: 767px) {
  .content-projects .container {
    padding: 0 23px 38px;
  }
  .content-projects .container .breadcrumb {
    padding: 8px 0;
  }
}
.content-projects h2 {
  color: #2d2d2d;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .content-projects h2 {
    font-size: 23px;
    line-height: 30px;
  }
}

.develop-projects {
  margin-top: 74px;
}

.list-project {
  width: 100%;
  height: 100%;
  list-style: none;
  padding-left: 0;
}
.list-project li:nth-child(4n) {
  margin-right: 0;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .list-project li:nth-child(4n) {
    margin-right: 16px;
  }
}
@media (max-width: 767px) {
  .list-project li:nth-child(4n) {
    margin-right: auto;
  }
}

.item-project {
  display: inline-block;
  vertical-align: top;
  width: calc(100% / 4 - 27px);
  max-width: 284px;
  margin: 0 27px 26px 0;
}
@media (max-width: 1440px) {
  .item-project {
    width: calc(100% / 4 - 16px);
    margin: 0 16px 16px 0;
  }
}
@media (min-width: 855px) and (max-width: 1199px) {
  .item-project {
    width: calc(100% / 3 - 16px);
  }
}
@media (max-width: 855px) {
  .item-project {
    width: calc(100% / 2 - 16px);
  }
}
@media (max-width: 767px) {
  .item-project {
    width: 100%;
    max-width: 329px;
    display: block;
    margin: 0 auto 32px;
  }
  .item-project:last-child {
    margin-bottom: 0;
  }
}
.item-project h2 {
  color: #fff8ef;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .item-project h2 {
    font-size: 23px;
    line-height: 30px;
  }
}
.item-project.active .wrapper-hover:hover:before {
  content: none;
}
.item-project.active .wrapper-hover:hover .more-info {
  visibility: hidden;
}
.item-project.active .container {
  position: relative;
}
.item-project.active .close-wrapper {
  top: -51px;
  left: 192px;
}
@media (max-width: 767px) {
  .item-project.active .close-wrapper {
    top: -39px;
    left: 50% !important;
    margin-left: -58px !important;
  }
}

.view-more {
  color: #e47a09;
  display: none;
}
@media (max-width: 1025px) {
  .view-more {
    display: block;
    position: absolute;
    bottom: 24px;
    left: 32px;
    z-index: 10;
    cursor: pointer;
  }
}

a.view-more:focus, a.view-more:active {
  color: #e47a09;
  text-decoration: none;
}

.more-info {
  display: block;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 1025px) {
  .more-info {
    display: none;
  }
}

.wrapper-hover {
  position: relative;
}
.wrapper-hover:hover:before, .wrapper-hover:active:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ddd1c3;
  opacity: 0.82;
  border-radius: 4px;
  z-index: 1;
}
.wrapper-hover:hover .more-info, .wrapper-hover:active .more-info {
  visibility: visible;
}
@media (max-width: 1025px) {
  .wrapper-hover:hover:before, .wrapper-hover:active:before {
    content: none;
  }
  .wrapper-hover:hover .more-info, .wrapper-hover:active .more-info {
    display: none;
  }
}

.close-wrapper {
  position: absolute;
  display: block;
  width: 115px;
  height: 28px;
  background-image: url(/images/fon-image/circle-triangle-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}

.close-icon {
  width: 12px;
  height: 12px;
  display: block;
  background-image: url(/images/icon-close.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin: 6px auto 0;
  cursor: pointer;
}
.close-icon:hover {
  background-image: url(/images/icon-close-hover.svg);
}

.thumb-project {
  text-align: center;
  width: 100%;
  height: 184px;
  overflow: hidden;
}
.thumb-project img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.info-project-view {
  height: 151px;
  background-image: url(/images/top-comanda/top-line.svg);
  background-repeat: no-repeat;
  background-position: left 24px;
  background-color: #2d2d2d;
  padding: 18px 26px 24px 32px;
  -moz-border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.info-project-view h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  color: #e47a09;
}
.info-project-view p {
  display: block;
  font-size: 14px;
  line-height: 21px;
  color: #fff8ef;
}
@media (max-width: 1025px) {
  .info-project-view {
    height: 190px;
  }
}
@media (max-width: 767px) {
  .info-project-view {
    height: 175px;
  }
}

.wrapper-project {
  position: unset;
  width: 100%;
}

.info-project {
  width: 100%;
  background: #2d2d2d;
  position: absolute;
  left: 0;
  color: #fff8ef;
  margin-top: 28px;
}
.info-project .row {
  margin: 0;
}
.info-project h3 {
  color: #fff8ef;
}
.info-project .status-project {
  margin-top: 30px;
}
.info-project .left {
  width: 735px;
  padding-right: 30px;
}
.info-project .left p {
  line-height: 21px;
}
.info-project .left ul {
  color: #e47a09;
  list-style: inside disc;
  padding-top: 24px;
}
.info-project .left ul li {
  color: #e47a09;
}
.info-project .left ul li p {
  color: #fff8ef;
  display: inline;
}
@media (max-width: 767px) {
  .info-project .left {
    width: auto;
    max-width: 100%;
  }
}
.info-project .right {
  width: 417px;
}
@media (max-width: 767px) {
  .info-project .right {
    width: auto;
    max-width: 100%;
    margin-top: 30px;
  }
}
.info-project .vertical-line {
  position: relative;
  width: 30px;
  border-left: 1px solid #fff8ef;
}
.info-project .vertical-line:before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  background: #fff8ef;
  position: absolute;
  top: 0;
  left: -3px;
}
.info-project .vertical-line:after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  background: #fff8ef;
  position: absolute;
  bottom: 0;
  left: -3px;
}

.table-width {
  display: table;
  width: 100%;
}
.table-width .left, .table-width .right, .table-width .vertical-line {
  display: table-cell;
  vertical-align: top;
}
@media (max-width: 815px) {
  .table-width {
    display: block;
  }
  .table-width .left, .table-width .right {
    display: block;
  }
  .table-width .vertical-line {
    display: none;
  }
}

.detail-project ul li, .detail-project ol li {
  display: list-item;
}
.detail-project ul {
  list-style-type: disc;
}
.detail-project ol {
  list-style-position: inside;
}

.content-news {
  background-color: #fff8ef;
}
.content-news .container {
  padding: 100px 112px 95px;
}
@media (max-width: 1440px) {
  .content-news .container {
    padding: 100px 75px 95px;
  }
}
@media (max-width: 1365px) {
  .content-news .container {
    padding: 100px 32px 95px;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .content-news .container {
    padding: 69px 48px;
  }
}
@media (max-width: 1023px) {
  .content-news .container {
    padding: 0 23px 38px;
  }
  .content-news .container .flex {
    flex-direction: column;
  }
  .content-news .container .header-news .flex {
    flex-direction: row;
  }
  .content-news .container .header-news .share-social {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .content-news .container .header-news .flex {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 400px) {
  .content-news .container {
    padding: 0 0 38px;
  }
  .content-news .container .breadcrumb {
    padding-left: 23px;
    padding-right: 23px;
  }
}
.content-news h1 {
  margin-bottom: 10px !important;
  color: #2d2d2d !important;
  font-size: 30px;
  text-transform: initial;
  line-height: 45px;
}
@media (max-width: 767px) {
  .content-news h1 {
    font-size: 23px;
    line-height: 30px;
  }
}
@media (max-width: 400px) {
  .content-news h1 {
    padding-left: 23px;
    padding-right: 23px;
  }
}
.content-news h2 {
  margin-bottom: 27px;
  font-size: 20px;
  line-height: 30px;
  color: #343434;
  font-weight: 700;
}
@media (max-width: 767px) {
  .content-news h2 {
    font-size: 23px;
    line-height: 30px;
  }
}
.content-news .emptyResults {
  padding-bottom: 24px;
}

.all-tags {
  display: block;
  max-width: 730px;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .all-tags {
    display: none;
  }
}
@media (max-width: 400px) {
  .all-tags {
    padding-left: 23px;
    padding-right: 23px;
  }
}
.all-tags a {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  line-height: 25px;
  background-color: rgba(221, 209, 195, 0.38);
  color: #4b4a48;
  padding: 0 5px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  margin-bottom: 8px;
  margin-left: 6px;
}
.all-tags a:hover {
  text-decoration: none;
}

.list-news {
  width: 100%;
  max-width: 753px;
  display: inline-block;
  vertical-align: top;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .list-news {
    max-width: calc(100% - 430px);
  }
}
@media (max-width: 1023px) {
  .list-news {
    max-width: 100%;
  }
}
@media (max-width: 400px) {
  .list-news {
    padding-left: 23px;
    padding-right: 23px;
  }
}
.list-news .content-inner {
  max-width: 727px;
}
.list-news .content-inner .share-social {
  margin-top: 11px;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .list-news .content-inner {
    max-width: 100%;
  }
}
.list-news .content-inner h2, .list-news .content-inner h3, .list-news .content-inner h5 {
  font-weight: 400;
  margin: 0 0 23px;
}
.list-news .content-inner a {
  color: #e47a09;
  text-decoration: underline;
}
.list-news .content-inner p {
  font-size: 14px;
  display: block;
  margin-bottom: 24px;
}
.list-news .content-inner blockquote p {
  margin-bottom: unset;
  font-style: italic;
}

.item-news {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: calc(100% / 3 - 23px);
  max-width: 224px;
  margin: 0 23px 26px 0;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .item-news {
    width: calc(100% / 2 - 23px);
  }
}
@media (max-width: 1023px) {
  .item-news {
    width: calc(100% / 3 - 30px);
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .item-news {
    width: 100%;
    max-width: 100%;
  }
}
.item-news .title-news {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: #4b4a48;
  text-decoration: none;
  margin-top: 14px;
}

.data-news {
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: #d1c5b5;
  margin-top: 5px;
}

.thumb-news {
  width: 224px;
  height: 224px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.thumb-news img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .thumb-news {
    width: 100%;
    max-width: 100%;
  }
}

.tag-news {
  display: block;
  vertical-align: middle;
  font-size: 12px;
  line-height: 19px;
  background-color: #e47a09;
  padding: 0 5px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  position: absolute;
  top: 6px;
  left: 7px;
}
.tag-news a {
  display: block;
  color: #fff8ef;
}
.tag-news a:hover {
  text-decoration: none;
}

.share-social {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.popular-news {
  width: 100%;
  max-width: 440px;
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .popular-news {
    max-width: 395px;
  }
}
@media (max-width: 1023px) {
  .popular-news {
    max-width: 100%;
  }
}
.popular-news .item-news {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  margin-bottom: 13px;
}
.popular-news .tag-news {
  display: none;
}
.popular-news .thumb-news {
  width: 82px;
  height: 82px;
  display: inline-block;
  vertical-align: top;
  margin-right: 15px;
}
.popular-news .wrapper-news {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 97px);
}
.popular-news .title-news {
  margin-top: 0;
  width: 100%;
  display: block;
}
.popular-news .data-news {
  color: #343434;
  font-weight: 500;
}

.last-popular {
  width: 100%;
  padding: 30px 39px;
  background-color: #ddd1c3;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  border-bottom: 1px solid #d1c5b5;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .last-popular {
    padding: 23px;
  }
}

.offer-news {
  padding: 30px 39px;
  background-color: #ddd1c3;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.offer-news h2 {
  text-align: left !important;
  margin-bottom: 18px;
  font-size: 20px !important;
  line-height: 30px;
  color: #343434;
  font-weight: 700 !important;
}
@media (max-width: 767px) {
  .offer-news h2 {
    font-size: 23px;
    line-height: 30px;
  }
}
.offer-news .btn {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .offer-news {
    padding: 19px 23px 23px;
  }
}
.offer-news .form-application {
  margin: unset;
  padding: unset;
  background-color: inherit;
}
.offer-news .form-application div, .offer-news .form-application button {
  background-color: inherit;
}
.offer-news .form-application.form-subscribe label {
  font-weight: 400;
  color: #4b4a48;
}
.offer-news .form-application.form-subscribe .form-control {
  border: 1px solid #d1c5b5;
}
.offer-news .form-application.form-subscribe .form-control:focus {
  border: 1px solid #4b4a48;
}
@media (min-width: 715px) and (max-width: 900px) {
  .offer-news .form-application.form-subscribe div.col-md-12 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .offer-news .form-application.form-subscribe div.col-md-12 .form-group {
    width: 100%;
    max-width: 300px;
    margin-right: 20px;
  }
  .offer-news .form-application.form-subscribe div.col-md-12 .form-group:nth-child(2) {
    margin-right: 0;
  }
}

.project-implementation {
  display: block;
  margin-top: 30px;
  padding: 30px 26px;
  text-align: center;
  background-color: #343434;
  color: #fff8ef;
}
.project-implementation h2 {
  color: #fff8ef;
  font-weight: 400;
  margin-bottom: 0;
}
.project-implementation p {
  color: #fff8ef;
  line-height: 30px;
  font-size: 14px;
  margin: 0 auto 24px;
  max-width: 300px;
}
@media (max-width: 1023px) {
  .project-implementation {
    display: none;
  }
}

.header-news {
  max-width: 727px;
  margin-bottom: 22px;
}
.header-news .data-news {
  display: flex;
  vertical-align: middle;
  margin-right: 24px;
  margin-top: 0;
  font-size: 14px;
  color: #d1c5b5;
  line-height: 21px;
}
@media (max-width: 400px) {
  .header-news {
    padding-left: 23px;
    padding-right: 23px;
  }
  .header-news h1 {
    padding-left: 0;
    padding-right: 0;
  }
}

.share-social span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #d1c5b5;
  line-height: 21px;
}
.share-social .social-icon {
  margin-top: 0;
  margin-bottom: 0;
}
.share-social .social-icon li {
  margin-right: 6px;
}

.image-news {
  width: 100%;
  max-width: 727px;
  margin-bottom: 30px;
}
.image-news img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.other-news {
  margin-top: 40px;
}

.popup-gallery {
  display: block;
  padding-bottom: 30px;
}

.slider-news {
  height: 100%;
  text-align: center;
  padding: 0 20px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .slider-news {
    padding: 0;
  }
}
.slider-news .slick-list {
  max-height: 143px;
}
@media (max-width: 767px) {
  .slider-news .slick-list {
    max-height: 215px;
  }
}
.slider-news .image-slider {
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  position: relative;
  margin: 0 3px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  width: 166px;
  height: 143px;
}
@media (max-width: 767px) {
  .slider-news .image-slider {
    height: 215px;
  }
}
.slider-news .image {
  width: 166px;
  height: 143px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.slider-news .image img {
  display: block;
  width: 166px;
  height: 143px;
  object-fit: cover;
  object-position: center;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .slider-news .image {
    width: 329px;
    height: 215px;
    margin: auto;
  }
  .slider-news .image img {
    width: 329px;
    height: 215px;
  }
}

.form-application {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 50px auto 100px;
  background-color: #fff8ef;
  padding: 57px 46px 43px;
  -moz-border-radius: 14px;
  -webkit-border-radius: 14px;
  -ms-border-radius: 14px;
  border-radius: 14px;
  position: relative;
}
@media (max-width: 500px) {
  .form-application {
    padding: 38px 20px 38px;
  }
}
.form-application .close-wrapper {
  position: absolute;
  background-image: url(/images/fon-image/circle-treangle-dark.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: -3px;
  left: 50%;
  margin-left: -57.5px;
}
.form-application h2 {
  color: #2d2d2d;
  text-align: center;
}
.form-application .anotations {
  display: block;
  font-size: 14px;
  color: #4b4a48;
  text-align: center;
  margin-bottom: 53px;
}
@media (max-width: 500px) {
  .form-application .anotations {
    margin-bottom: 24px;
  }
}
.form-application .control-label {
  font-size: 13px;
  color: #e47a09;
  line-height: 16px;
  font-weight: 400;
}
.form-application .list-city label:not(.control-label) {
  display: inline-block;
  min-width: 30%;
}
.form-application .row.flex {
  height: 100%;
  overflow: hidden;
  align-content: stretch;
}
@media (max-width: 767px) {
  .form-application .row.flex {
    display: block;
  }
}
.form-application .btn {
  margin-top: 15px;
}
.form-application .hint {
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  color: #d1c5b5;
  margin-left: 5px;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased !important;
  -webkit-appearance: none;
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizeSpeed;
}

ul[class] {
  list-style: none;
}

ol {
  padding: 0;
  margin: 0;
  list-style-position: inside;
}

p {
  margin: 0;
}

:focus {
  outline: 0 !important;
}

a.link {
  color: #e47a09;
  text-decoration: underline;
}
a.link:hover, a.link:focus, a.link:active {
  color: #e47a09;
}

h1 {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff8ef;
}
@media (max-width: 767px) {
  h1 {
    font-size: 23px;
    line-height: 30px;
  }
}

h2 {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 45px;
  color: #fff8ef;
}
@media (max-width: 767px) {
  h2 {
    font-size: 23px;
    line-height: 30px;
  }
}

h3 {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #343434;
}
@media (max-width: 767px) {
  h3 {
    font-size: 18px;
    line-height: 24px;
  }
}

h5 {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #343434;
}

.black-line {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
  margin-left: 28px;
  background: #4b4a48;
  height: 1px;
}
.black-line:before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #4b4a48;
  position: absolute;
  left: 0;
  top: -2.5px;
}
.black-line:after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  background: #4b4a48;
  position: absolute;
  right: 0;
  top: -2.5px;
}

.orange-line {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
  max-width: 668px;
  margin-left: 22px;
  background: #e47a09;
  height: 1px;
  z-index: 1;
}
.orange-line:before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #e47a09;
  position: absolute;
  left: 0;
  top: -2.5px;
}
.orange-line:after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  background: #e47a09;
  position: absolute;
  right: 0;
  top: -2.5px;
}
@media (max-width: 1199px) {
  .orange-line {
    display: none;
  }
}

.content {
  min-height: calc(100vh - 415px);
}
@media (max-width: 767px) {
  .content {
    min-height: 100vh;
    height: 100%;
  }
}

.content-popup {
  min-height: 400px;
}

.wrapper {
  max-width: 100%;
  min-height: 100%;
  background: #343434;
  overflow: auto;
}
.wrapper.has-error {
  background: #242424;
}

.language-block {
  text-transform: lowercase;
}
.language-block.open .dropdown-menu {
  display: none;
}
.language-block .dropdown-toggle {
  color: #fff8ef;
  text-decoration: none;
  cursor: default;
}
.language-block .dropdown-toggle:hover {
  color: #fff8ef;
}

.container {
  width: 100%;
  max-width: 1440px;
  padding-left: 112px;
  padding-right: 112px;
  margin: auto;
  position: relative;
}
.container .container {
  width: auto;
  padding: 0;
  position: relative;
}
@media (max-width: 1440px) {
  .container {
    padding-left: 75px;
    padding-right: 75px;
  }
}
@media (max-width: 1365px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 23px;
    padding-right: 23px;
  }
}

.dropdown {
  max-width: 215px;
  position: relative;
  margin: auto;
}
.dropdown.header-button {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 830px) {
  .dropdown.header-button {
    left: -45px;
    z-index: 101;
  }
  .dropdown.header-button .btn {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.06em;
    padding: 7px 14px;
    box-shadow: none;
  }
}

.caret {
  display: inline-block;
  width: 12px;
  height: 7px;
  margin-left: 6px;
  vertical-align: middle;
  border: 0;
  background-image: url("../images/arrow/arrow-bottom.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.header {
  padding: 10px 0;
  position: relative;
  z-index: 1002;
}
@media (max-width: 830px) {
  .header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #343434;
  }
}
@media (max-width: 430px) {
  .header .container {
    padding-left: 10px;
    padding-right: 15px;
  }
}

.logo {
  width: 159px;
  height: 78px;
  display: inline-block;
  background-image: url(/images/logo-footer.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 830px) {
  .logo {
    width: 92px;
    height: 45px;
    position: relative;
    z-index: 101;
  }
}

@media (max-width: 830px) {
  .main-menu {
    position: absolute;
    top: -10px;
    right: 0;
    left: 0;
  }
  .main-menu.open .icon-bar {
    position: absolute;
    width: 24px;
    top: 24px;
    left: 12px;
  }
  .main-menu.open .icon-bar:nth-of-type(1) {
    transform: rotate(135deg);
  }
  .main-menu.open .icon-bar:nth-of-type(2) {
    opacity: 0;
  }
  .main-menu.open .icon-bar:nth-of-type(3) {
    transform: rotate(-135deg);
  }
}

@media (max-width: 830px) {
  .desktop-menu {
    display: none;
  }
}

.mobile-menu {
  display: none;
}
@media (max-width: 830px) {
  .mobile-menu {
    display: block;
    position: absolute;
    left: 0;
    z-index: 10;
    background-color: #343434;
    width: 100%;
    height: 100vh;
    text-align: center;
  }
}
.mobile-menu .content-menu {
  padding-top: 100px;
}
.mobile-menu ul:not(.social-icon) {
  padding: 0;
  margin-bottom: 30px;
}
.mobile-menu ul:not(.social-icon) li {
  display: block;
}
.mobile-menu ul:not(.social-icon) li a {
  display: block;
  padding: 15px 20px;
  color: #fff8ef;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}
.mobile-menu ul:not(.social-icon) li.active a {
  color: #e47a09;
}
.mobile-menu .social-link {
  width: 40px;
  height: 40px;
}

.menu-toggle {
  display: none;
  position: absolute;
  right: 12px;
  top: 10px;
  width: 48px;
  height: 48px;
  padding: 14px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 100;
}
.menu-toggle .icon-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff8ef;
  margin: 4px 0;
}
@media (max-width: 830px) {
  .menu-toggle {
    display: block;
    cursor: pointer;
  }
}

.language-wrapper-mobile {
  margin-top: 30px;
}
.language-wrapper-mobile .language-menu {
  display: block;
}
.language-wrapper-mobile .language-menu li {
  display: inline-block !important;
  vertical-align: middle;
}
.language-wrapper-mobile .language-menu li a {
  display: block;
  text-transform: uppercase;
  font-size: 16px;
}

.menu {
  margin: auto;
}
.menu li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
.menu li a {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #fff8ef;
}
.menu li a:hover, .menu li a:active, .menu li a:focus {
  text-decoration: none;
}
.menu li.active a {
  color: #e47a09;
}
@media (max-width: 767px) {
  .menu li {
    display: block;
    margin-top: 22px;
    text-align: center;
    margin-right: 0;
    width: 100%;
  }
  .menu li a {
    font-size: 20px;
    line-height: 30px;
  }
}

.language-wrapper {
  margin-left: 23px;
}
.language-wrapper .language-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.language-wrapper .language-menu li {
  display: inline-block;
  vertical-align: middle;
  border-right: 1px solid #fff8ef;
}
.language-wrapper .language-menu li:last-child {
  border-right: 0;
}
.language-wrapper .language-menu li a {
  display: block;
  font-size: 14px;
  line-height: 1;
  text-transform: lowercase;
  color: #fff8ef;
  text-decoration: none;
  padding: 0 6px;
}
.language-wrapper .language-menu li.active a {
  color: #e47a09;
}
@media (max-width: 830px) {
  .language-wrapper {
    display: none;
  }
}

.content-home {
  position: relative;
  left: 0;
  width: 100%;
  margin-top: -102px;
}
.content-home .item-scope:first-of-type:before {
  content: '';
  display: block;
  position: absolute;
  width: 438px;
  height: 197px;
  background-image: url(/images/line-scope/scope-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  left: 20px;
  top: 30px;
}
@media (max-width: 1199px) {
  .content-home .item-scope:first-of-type:before {
    content: none;
  }
}
.content-home .item-scope:nth-of-type(2):before {
  content: '';
  display: block;
  position: absolute;
  width: 246px;
  height: 136px;
  background-image: url(/images/line-scope/scope-2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  left: 21px;
  top: 26px;
}
@media (max-width: 1199px) {
  .content-home .item-scope:nth-of-type(2):before {
    content: none;
  }
}
.content-home .item-scope:nth-of-type(3):before {
  content: '';
  display: block;
  position: absolute;
  width: 6px;
  height: 133px;
  background-image: url(/images/line-scope/scope-3.svg);
  background-repeat: no-repeat;
  background-size: contain;
  left: 19px;
  top: 28px;
}
@media (max-width: 1199px) {
  .content-home .item-scope:nth-of-type(3):before {
    content: none;
  }
}
.content-home .item-scope:nth-of-type(3):after {
  content: '';
  display: block;
  position: absolute;
  width: 198px;
  height: 197px;
  background-image: url(/images/line-scope/scope-4.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: -42px;
  top: 30px;
}
@media (max-width: 1199px) {
  .content-home .item-scope:nth-of-type(3):after {
    content: none;
  }
}

.banner-areas {
  display: block;
  position: relative;
  width: 100%;
  height: 538px;
  padding-top: 189px;
  background-image: url(/images/fon-image/home-fon.jpg);
  background-size: cover;
  background-position: center;
}
.banner-areas h1 {
  display: block;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .banner-areas h1 {
    max-width: 630px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .banner-areas h1 {
    font-size: 19px;
    line-height: 27px;
  }
  .banner-areas h1 .big {
    display: block;
    font-size: 44px;
    line-height: 66px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
}
.banner-areas p {
  display: block;
  max-width: 730px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #fff8ef;
  margin: auto;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .banner-areas p {
    max-width: 750px;
  }
}
@media (max-width: 767px) {
  .banner-areas p {
    text-align: left;
    margin-top: 33px;
    font-size: 18px;
    line-height: 27px;
    padding: 0 23px;
  }
}

.school-numbers {
  display: block;
  width: 100%;
  max-width: 450px;
  padding: 98px 69px 65px 67px;
  background: #ddd1c3;
  -moz-border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  position: absolute;
  top: 0;
  right: 0;
}
.school-numbers .image {
  display: block;
  position: absolute;
  top: 597px;
  left: 0;
  width: 100%;
  height: 365px;
  background-image: url(/images/fon-image/home-image.png);
}
@media (max-width: 767px) {
  .school-numbers .image {
    display: none;
  }
}
@media (min-width: 660px) and (max-width: 1199px) {
  .school-numbers {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: unset;
    left: 0;
    padding: 48px 95px;
  }
  .school-numbers .image {
    display: none;
  }
}
@media (max-width: 815px) {
  .school-numbers {
    padding: 48px;
  }
}
@media (max-width: 767px) {
  .school-numbers {
    padding: 28px 23px;
  }
}
@media (max-width: 660px) {
  .school-numbers {
    padding: 18px 23px;
  }
}

.item-numbers {
  display: block;
  margin-bottom: 28px;
}
.item-numbers:first-of-type {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .item-numbers:first-of-type {
    margin-bottom: 0;
  }
}
@media (min-width: 660px) and (max-width: 1199px) {
  .item-numbers {
    display: inline-block;
    margin-bottom: 0;
    max-width: 145px;
  }
}
@media (max-width: 855px) {
  .item-numbers {
    max-width: 145px;
  }
}
@media (max-width: 660px) {
  .item-numbers {
    max-width: calc(100% / 4 - 10px);
    margin-bottom: 0;
  }
}

.largest-text {
  display: block;
  font-size: 70px;
  font-weight: 900;
  line-height: 60px;
  color: #2d2d2d;
}
@media (max-width: 855px) {
  .largest-text {
    font-size: 50px;
  }
}
@media (max-width: 660px) {
  .largest-text {
    font-size: 24px;
    line-height: 30px;
  }
}

.description-inner {
  display: block;
  font-size: 14px;
  line-height: 21px;
  color: #2d2d2d;
}
@media (max-width: 660px) {
  .description-inner {
    font-size: 11px;
    line-height: 12px;
  }
}

.general-information {
  background-color: #fff8ef;
}
@media (max-width: 767px) {
  .general-information {
    margin-top: 0;
  }
}
.general-information h2 {
  color: #343434;
}
.general-information .container {
  padding: 100px 112px 96px;
}
@media (max-width: 1440px) {
  .general-information .container {
    padding: 100px 75px 96px;
  }
}
@media (max-width: 1365px) {
  .general-information .container {
    padding: 100px 32px 96px;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .general-information .container {
    padding: 244px 48px 44px;
  }
}
@media (max-width: 767px) {
  .general-information .container {
    padding: 0 0 38px;
  }
  .general-information .container .breadcrumb {
    padding: 8px 23px;
  }
  .general-information .container .text-mobile {
    display: block;
  }
  .general-information .container .text-desktop {
    display: none;
  }
}
.general-information .text-mobile {
  display: none;
}
.general-information p {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #4b4a48;
  margin-bottom: 30px;
  max-width: 590px;
}
@media (max-width: 1199px) {
  .general-information p {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .general-information p:not(.description-inner) {
    padding: 0 23px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .general-information .link {
    padding: 0 23px;
  }
}
.general-information .orange-text {
  font-weight: 500;
}
.general-information .school-numbers {
  top: 0;
  right: 112px;
}
.general-information .school-numbers .social-blocks {
  position: absolute;
  left: 0;
  top: -50px;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .general-information .school-numbers .social-blocks {
    right: 48px;
    left: auto;
  }
}
@media (max-width: 768px) {
  .general-information .school-numbers .social-blocks {
    display: none;
  }
}
@media (max-width: 1440px) {
  .general-information .school-numbers {
    right: 75px;
  }
}
@media (max-width: 1365px) {
  .general-information .school-numbers {
    right: 32px;
  }
}
@media (max-width: 767px) {
  .general-information .school-numbers {
    right: 0;
    position: relative;
    margin-bottom: 38px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
  }
  .general-information .school-numbers:before {
    content: none;
  }
}
@media (max-width: 767px) {
  .general-information .main-info h1 {
    padding: 0 23px;
    margin-bottom: 24px;
  }
}

.scope-areas .container {
  padding: 101px 112px;
}
@media (max-width: 1440px) {
  .scope-areas .container {
    padding: 101px 75px;
  }
}
@media (max-width: 1365px) {
  .scope-areas .container {
    padding: 101px 32px;
  }
}
@media (max-width: 1199px) {
  .scope-areas .container {
    padding: 69px 48px 67px;
  }
}
@media (max-width: 767px) {
  .scope-areas .container {
    padding: 38px 23px;
  }
}
.scope-areas h2 {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .scope-areas h2 {
    margin-bottom: 0;
  }
}
.scope-areas .text-inner {
  font-size: 14px;
  line-height: 21px;
  color: #ddd1c3;
  margin-bottom: 50px;
  max-width: 485px;
}
@media (max-width: 767px) {
  .scope-areas .text-inner {
    margin-bottom: 20px;
  }
}
.scope-areas .list-item {
  color: #fff8ef;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 101px;
  margin-top: 45px;
}
@media (max-width: 1199px) {
  .scope-areas .list-item {
    max-width: 665px;
    margin-bottom: 0;
  }
}
.scope-areas .item-priority .text-priority {
  color: #fff8ef;
}
.scope-areas .dropdown {
  text-align: center;
}
.scope-areas .dropdown .dropdown-menu {
  text-align: left;
}
@media (max-width: 1199px) {
  .scope-areas .dropdown {
    display: none;
  }
}
.scope-areas .list-item-shot {
  margin-bottom: 85px;
}
@media (max-width: 767px) {
  .scope-areas .list-item-shot {
    margin-bottom: 29px;
  }
}
.scope-areas .image-mobile {
  display: none;
  position: absolute;
  top: 78px;
  right: 0;
  width: 306px;
  height: 365px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  background-image: url(/images/fon-image/home-image.png);
}
@media (min-width: 855px) and (max-width: 1199px) {
  .scope-areas .image-mobile {
    display: block;
  }
}
@media (max-width: 855px) {
  .scope-areas .image-mobile {
    display: none;
  }
}

.list-item-shot {
  max-width: 670px;
  padding-left: 0;
}
.list-item-shot .item-priority {
  width: 315px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .list-item-shot .item-priority {
    margin-bottom: 24px;
  }
}

.item-scope {
  width: 290px;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.item-scope:first-of-type {
  width: 240px;
}
@media (max-width: 768px) {
  .item-scope:first-of-type {
    width: 100%;
  }
}
.item-scope:nth-of-type(2) {
  width: 300px;
}
@media (max-width: 768px) {
  .item-scope:nth-of-type(2) {
    width: 100%;
  }
}
.item-scope .icon {
  position: absolute;
  left: 0;
  top: -15px;
}
.item-scope .text-priority {
  padding-left: 32px;
  display: block;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .item-scope {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .item-scope {
    width: 100%;
    margin-bottom: 33px;
  }
}

.priority-areas {
  padding: 101px 0 58px;
  background: #fff8ef;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .priority-areas {
    padding: 63px 48px 23px;
  }
  .priority-areas .container {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .priority-areas {
    padding: 38px 0;
  }
}
.priority-areas h3 {
  margin-bottom: 39px;
}

.item-priority {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: calc(100% / 5 - 35px);
  margin-bottom: 40px;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .item-priority {
    width: calc(100% / 3 - 55px);
  }
}
@media (max-width: 815px) {
  .item-priority {
    width: calc(100% / 3 - 10px);
  }
}
@media (max-width: 740px) {
  .item-priority {
    width: calc(100% / 2 - 10px);
    margin-bottom: 24px;
  }
}
@media (max-width: 660px) {
  .item-priority {
    width: 100%;
    margin-bottom: 24px;
  }
}
.item-priority .icon {
  display: inline-block;
  vertical-align: middle;
  min-width: 48px;
}
.item-priority .icon img {
  display: block;
  margin: auto;
}
.item-priority .text-priority {
  display: inline-block;
  vertical-align: middle;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #343434;
  margin-left: 10px;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .item-priority .text-priority {
    max-width: 180px;
  }
}

.laboratories {
  display: block;
}
.laboratories .container {
  padding: 100px 112px;
}
.laboratories .container:before {
  content: '';
  display: block;
  width: 833px;
  height: 42px;
  background-image: url(/images/fon-image/line-lab.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 150px;
  right: 0;
}
@media (max-width: 1199px) {
  .laboratories .container:before {
    content: none;
  }
}
.laboratories .container:after {
  content: '';
  display: block;
  width: 115px;
  height: 28px;
  background-image: url(/images/fon-image/treangle-clear-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -1px;
  left: 50%;
  margin-left: -57.5px;
}
@media (max-width: 767px) {
  .laboratories .container:after {
    content: none;
  }
}
@media (max-width: 1440px) {
  .laboratories .container {
    padding: 101px 75px;
  }
}
@media (max-width: 1365px) {
  .laboratories .container {
    padding: 101px 32px;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .laboratories .container {
    padding: 67px 48px 55px;
  }
}
@media (max-width: 767px) {
  .laboratories .container {
    padding: 38px 23px;
  }
}
.laboratories h2 {
  max-width: 560px;
}
@media (max-width: 767px) {
  .laboratories h2 {
    font-size: 20px;
    line-height: 30px;
  }
}
.laboratories .map {
  display: block;
  min-height: 383px;
  width: 100%;
  background-image: url(/images/map.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 79px;
}
.laboratories .map.map-uk {
  background-image: url(/images/map-ua.svg);
}
.laboratories .map.map-en {
  background-image: url(/images/map-eng.svg);
}
@media (max-width: 1199px) {
  .laboratories .map {
    display: none;
  }
}
.laboratories .dropdown {
  text-align: center;
  margin-top: -45px;
}
@media (max-width: 1199px) {
  .laboratories .dropdown {
    display: none;
  }
}
.laboratories .list-laboratories {
  display: none;
  padding: 0;
  list-style: none;
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
  margin-top: 49px;
  margin-bottom: 0;
}
.laboratories .list-laboratories li {
  margin-bottom: 46px;
  display: inline-block;
  vertical-align: top;
}
.laboratories .list-laboratories li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #fff8ef;
  text-decoration: none;
  font-size: 14px;
  line-height: 21px;
}
.laboratories .list-laboratories li .title-laboratory {
  max-width: 238px;
  margin-left: 14px;
}
.laboratories .list-laboratories li .logo-laboratory {
  min-width: 75px;
  display: inline-block;
  vertical-align: middle;
}
.laboratories .list-laboratories li .logo-laboratory img {
  display: block;
}
@media (max-width: 1199px) {
  .laboratories .list-laboratories {
    display: block;
  }
  .laboratories .list-laboratories li {
    min-height: 84px;
  }
}
@media (max-width: 735px) {
  .laboratories .list-laboratories {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
    margin-top: 30px;
    min-height: auto;
  }
}

.partners {
  padding: 100px 0 15px;
  background: #fff;
}
@media (max-width: 1199px) {
  .partners {
    padding: 48px 0;
  }
}
@media (max-width: 767px) {
  .partners {
    padding: 38px 0;
  }
}
.partners h2 {
  color: #2d2d2d;
  margin-bottom: 44px;
}
.partners .partners-list {
  padding: 0;
}
.partners .partners-list li {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 85px;
  width: calc(100% / 7 - 20px);
  margin-right: 20px;
}
@media (max-width: 815px) {
  .partners .partners-list {
    text-align: center;
  }
}
.partners .logo-partner {
  display: block;
}
.partners .logo-partner img {
  width: auto;
  max-width: 100%;
  height: 89px;
  object-fit: contain;
  object-position: center;
}

.footer {
  display: block;
  padding: 50px 0 25px;
  height: 100%;
}
.footer .link-footer {
  color: #fff8ef;
  text-decoration: none;
}
.footer .link-footer:hover, .footer .link-footer:focus, .footer .link-footer:active {
  text-decoration: underline;
  color: #fff8ef;
}
.footer .terms {
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}
@media (max-width: 767px) {
  .footer .terms.flex {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .footer .flex {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .footer .flex {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

.logo-footer {
  width: 174px;
  height: 77px;
  display: inline-block;
  background-image: url(/images/logo-footer.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.school-goal {
  display: block;
  width: 260px;
  font-size: 12px;
  color: #ddd1c3;
  line-height: 19px;
  letter-spacing: 0.02em;
}

.menu-footer {
  display: inline-block;
  vertical-align: top;
  padding-left: 0;
}
.menu-footer li {
  margin-bottom: 1px;
}
.menu-footer li.active a {
  color: #e47d25;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .menu-footer {
    display: none;
  }
}
.menu-footer.about-menu {
  margin-left: 84px;
  min-width: 206px;
}
@media (max-width: 768px) {
  .menu-footer.about-menu {
    display: none;
  }
}
.menu-footer:not(:first-child) {
  margin-top: 23px;
}
.menu-footer.join-menu {
  margin-left: 17px;
  min-width: 206px;
}
@media (max-width: 768px) {
  .menu-footer.join-menu {
    display: none;
  }
}
.menu-footer.news-menu {
  margin-left: 56px;
  min-width: 140px;
}
@media (max-width: 768px) {
  .menu-footer.news-menu {
    display: none;
  }
}
.menu-footer.contacts-menu {
  margin-left: 45px;
  min-width: 206px;
}
@media (max-width: 767px) {
  .menu-footer.contacts-menu {
    display: block !important;
    max-width: 100%;
    margin: auto;
    text-align: center;
  }
}
.menu-footer .title-menu {
  display: block;
  font-size: 14px;
  line-height: 28px;
  font-weight: 900;
  color: #d1c5b5;
}
.menu-footer .item-menu {
  display: block;
  font-size: 14px;
  color: #fff8ef;
  line-height: 28px;
}
.menu-footer .phone {
  color: #fff8ef;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.social-blocks {
  justify-content: center;
  height: 50px;
  width: 450px;
  position: relative;
  background-repeat: no-repeat;
  background-size: 115px 28px;
  background-position: left bottom;
  text-align: center;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.social-blocks:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #ddd1c3;
  opacity: .6;
  position: absolute;
  z-index: 0;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.social-blocks .social-icon {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.social-blocks span {
  display: inline-block;
  font-size: 14px;
  line-height: 21px;
  color: #343434;
  position: relative;
  z-index: 1;
  margin-right: 20px;
}
@media (max-width: 815px) {
  .social-blocks {
    display: none;
  }
}

.social-link {
  display: table-cell;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.social-link.inst {
  background-image: url(/images/social/insta-dark.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.social-link.fb {
  background-image: url(/images/social/fb-dark.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.social-link.yt {
  background-image: url(/images/social/youtube-dark.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.social-link.telegram {
  background-image: url(/images/social/telegram-dark.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.social-link.t {
  background-image: url(/images/social/tumblr-dark.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.social-link.inst-color {
  background-image: url(/images/social/insta-color.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.social-link.fb-color {
  background-image: url(/images/social/fb-color.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.social-link.tw-color {
  background-image: url(/images/social/twitter-color.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.social-link.yt-color {
  background-image: url(/images/social/youtube-color.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.social-link.telegram-color {
  background-image: url(/images/social/telegram-color.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.social-link.pin-color {
  background-image: url(/images/social/pinterest-color.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.social-link.in-color {
  background-image: url(/images/social/linkedin-color.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.social-link.inst-orange {
  background-image: url(/images/social/insta-orange.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.social-link.fb-orange {
  background-image: url(/images/social/fb-orange.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.social-link.yt-orange {
  background-image: url(/images/social/youtube-orange.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.social-link.telegram-orange {
  background-image: url(/images/social/telegram-orange.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.team-page .social-blocks {
  background-image: none;
}

.projects-page .social-blocks {
  background-image: none;
}
@media (max-width: 1365px) {
  .projects-page .container:before {
    right: 363px;
  }
}

.social-icon {
  list-style: none;
  padding: 0;
  margin-top: 22px;
}
.social-icon li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 18px;
}
.social-icon li:last-child {
  margin-right: 0;
}

.copy-block {
  display: block;
  max-width: 100%;
  font-size: 12px;
  line-height: 18px;
  color: #fff8ef;
  margin-top: 35px;
}

.copy {
  display: inline-block;
  vertical-align: middle;
  margin-left: 19px;
}

.terms .vertical-line {
  display: inline-block;
  vertical-align: middle;
  padding: 0 5px;
}
.terms a {
  color: #fff8ef;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 430px) {
  .top-content .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.wrapper-tabs {
  display: block;
  max-width: 100%;
}
@media (max-width: 767px) {
  .wrapper-tabs {
    max-width: unset;
    width: 100%;
  }
}

.nav-tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  height: 50px;
  text-align: center;
}
.nav-tabs li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 37px;
  position: relative;
}
.nav-tabs li a {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 21px;
  color: #fff8ef;
  cursor: pointer;
  padding-bottom: 10px;
  white-space: nowrap;
}
.nav-tabs li.active a {
  color: #e47a09;
}
.nav-tabs li.active a:hover {
  color: #e47a09;
}
@media (max-width: 767px) {
  .nav-tabs li {
    margin-right: 24px;
  }
  .nav-tabs li:last-child {
    margin-right: 0;
  }
  .nav-tabs li.active:before {
    content: none;
  }
}
@media (max-width: 767px) {
  .nav-tabs {
    justify-content: space-between;
  }
  .nav-tabs.nav-tabs-project {
    flex-wrap: wrap;
    height: auto;
    justify-content: flex-start;
  }
  .nav-tabs.nav-tabs-project li {
    margin-right: 15px;
  }
}

.nav-dropdown {
  display: none;
  margin-top: 19px;
  margin-bottom: 30px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .nav-dropdown {
    display: block;
  }
}
.nav-dropdown .dropdown-toggle {
  display: block;
  width: 100%;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff8ef;
  color: #2d2d2d;
  text-align: left;
  padding: 0 16px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  background-image: url("../images/arrow/arrow-orange.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.nav-dropdown .dropdown-menu {
  width: 100%;
  padding: 5px 0;
}
.nav-dropdown .dropdown-menu li {
  border-bottom: 1px solid #ddd1c3;
}
.nav-dropdown .dropdown-menu li a {
  padding: 10px 38px;
}
.nav-dropdown .dropdown-menu li:last-child {
  border-bottom: 0;
}

.our-mission .container {
  min-height: 532px;
  padding: 176px 112px 100px;
}
@media (max-width: 1440px) {
  .our-mission .container {
    padding: 176px 75px 100px;
  }
}
@media (max-width: 1365px) {
  .our-mission .container {
    padding: 176px 32px 100px;
  }
}
@media (max-width: 1199px) {
  .our-mission .container {
    padding: 76px 48px 70px;
    min-height: 432px;
  }
}
@media (max-width: 767px) {
  .our-mission .container {
    padding: 38px 23px;
  }
}
.our-mission ul {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: row;
  right: 74px;
  padding-left: 0;
  list-style: none;
}
@media (max-width: 1365px) {
  .our-mission ul {
    right: 32px;
  }
}
@media (max-width: 815px) {
  .our-mission ul {
    position: relative;
    right: auto;
  }
}
@media (max-width: 767px) {
  .our-mission ul {
    flex-direction: column;
  }
}
.our-mission ul li {
  display: inline-block;
  vertical-align: top;
  margin-right: 28px;
  color: #fff8ef;
  width: 450px;
  height: 256px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .our-mission ul li {
    margin-right: 16px;
  }
}
@media (max-width: 767px) {
  .our-mission ul li {
    width: 329px;
    max-width: 100%;
    margin: auto;
  }
}
.our-mission ul li.gray-dark {
  background-color: #2d2d2d;
}
@media (max-width: 815px) {
  .our-mission ul li.gray-dark {
    display: none;
  }
}
.our-mission ul li.orange-bg {
  background-color: #e47a09;
}
.our-mission ul li:nth-child(2) {
  background-image: url(/images/about-page/about-line-bottom.svg);
  background-repeat: no-repeat;
  background-position: left 225px;
  margin-bottom: 38px;
}
.our-mission ul li:nth-child(2) h2 {
  position: relative;
}
.our-mission ul li:nth-child(2) h2:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 41px;
  height: 41px;
  background-image: url(/images/about-page/about-icon1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -50px;
}
@media (max-width: 600px) {
  .our-mission ul li:nth-child(2) {
    background-image: none;
  }
}
.our-mission ul li:first-child {
  background-image: url(/images/about-page/about-image.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.our-mission ul li:last-child {
  margin-right: 0;
  background-image: url(/images/about-page/about-line-top.svg);
  background-repeat: no-repeat;
  background-position: left 9px;
}
@media (max-width: 767px) {
  .our-mission ul li:last-child {
    margin-right: auto;
  }
}
@media (max-width: 600px) {
  .our-mission ul li:last-child {
    background-image: none;
  }
}
.our-mission ul li:last-child h2 {
  position: relative;
}
.our-mission ul li:last-child h2:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 41px;
  height: 41px;
  background-image: url(/images/about-page/about-icon2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -50px;
}
.our-mission ul li .image-logo {
  display: block;
  margin: 79px 57px 78px auto;
  width: 202px;
  height: 99px;
  background-image: url(/images/logo-header.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.our-mission ul li h2 {
  color: #fff8ef;
  margin: 53px 17px 25px 78px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .our-mission ul li h2 {
    margin: 33px 17px 25px 75px;
  }
}
@media (max-width: 767px) {
  .our-mission ul li h2 {
    margin: 33px 17px 25px 75px;
  }
}
.our-mission ul li p {
  margin: 0 53px 64px 50px;
  font-size: 14px;
  line-height: 21px;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .our-mission ul li p {
    margin: 0 23px 44px 30px;
  }
}
@media (max-width: 767px) {
  .our-mission ul li p {
    margin: 0 23px 44px 30px;
  }
}

.importance-school {
  background-color: #fff8ef;
}
.importance-school .container {
  padding: 100px 112px 25px;
}
@media (max-width: 1440px) {
  .importance-school .container {
    padding: 100px 75px 25px;
  }
}
@media (max-width: 1365px) {
  .importance-school .container {
    padding: 100px 32px 25px;
  }
}
@media (max-width: 1199px) {
  .importance-school .container {
    padding: 69px 48px 10px;
  }
}
@media (max-width: 767px) {
  .importance-school .container {
    padding: 38px 23px 0;
  }
}
.importance-school h2 {
  color: #2d2d2d;
  margin-bottom: 40px;
}
.importance-school .item-priority {
  width: calc(100% / 4  - 35px);
  align-items: flex-start;
  margin-bottom: 69px;
}
@media (max-width: 1199px) {
  .importance-school .item-priority .dropdown {
    display: none;
  }
  .importance-school .item-priority .text-priority {
    max-width: unset;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .importance-school .item-priority {
    width: calc(100% / 3  - 35px);
    margin-bottom: 49px;
  }
}
@media (max-width: 815px) {
  .importance-school .item-priority {
    width: calc(100% / 2 - 30px);
  }
}
@media (max-width: 767px) {
  .importance-school .item-priority {
    width: 100%;
    margin-bottom: 24px;
  }
}
.importance-school .image-list {
  padding: 0;
  list-style: none;
}
.importance-school .image-list li {
  display: inline-block;
  vertical-align: top;
  width: 284px;
}
.importance-school .image-list li img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .importance-school .image-list {
    text-align: center;
  }
  .importance-school .image-list .slick-dots {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .about-page .general-information .container {
    padding: 0;
  }
  .about-page .general-information .school-numbers {
    margin-bottom: 0;
    max-width: 100%;
  }
}
.content-projects h1, .about-page h1, .form-page h1, .contact-page h1 {
  color: #2d2d2d !important;
  margin-bottom: 36px;
  font-size: 30px;
  text-transform: initial;
  line-height: 45px;
}
@media (max-width: 767px) {
  .content-projects h1, .about-page h1, .form-page h1, .contact-page h1 {
    line-height: 30px;
    font-size: 23px !important;
    margin-bottom: 24px;
  }
}
.content-projects .text-banner h1, .about-page .text-banner h1, .form-page .text-banner h1, .contact-page .text-banner h1 {
  color: #fff8ef !important;
}

.form-page h1 {
  text-align: center;
  margin-bottom: 0;
}

.content-projects h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: #343434;
  margin-bottom: 5px;
}
.content-projects h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  color: #fff8ef;
}
.content-projects .info-project-view h3 {
  color: #e47a09;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 815px) {
  .content-projects .info-project-view h3 {
    color: #fff8ef;
  }
}
.content-projects h4 {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #fff8ef;
}

.command {
  background-color: #fff8ef;
}
.command .container {
  position: unset;
  padding: 100px 112px 83px;
}
.command .container .container {
  width: 100%;
  max-width: 1440px;
  padding: 50px 112px;
}
@media (max-width: 767px) {
  .command .container .container {
    padding: 38px 23px;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .command .container .container {
    padding: 50px 48px;
  }
}
@media (max-width: 1440px) {
  .command .container {
    padding: 100px 75px 83px;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .command .container {
    padding: 69px 48px;
  }
}
@media (max-width: 767px) {
  .command .container {
    padding: 0 23px 38px;
  }
}
.command .info-description {
  display: block;
  font-size: 14px;
  line-height: 21px;
}
.command h1 {
  color: #2d2d2d !important;
  margin-bottom: 36px;
  font-size: 30px;
  text-transform: initial;
  line-height: 45px;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .command h1 {
    margin-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .command h1 {
    margin-bottom: 24px;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .command .breadcrumb {
    padding: 8px 0;
  }
}
@media (max-width: 767px) {
  .command .breadcrumb {
    padding: 8px 0;
    margin-bottom: 0;
  }
}
.command h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  color: #e47a09;
}

.tops {
  display: flex;
  flex-direction: row;
  padding-left: 0;
  flex-wrap: wrap;
}
.tops li {
  display: inline-block;
  vertical-align: top;
  margin-right: 26px;
  margin-bottom: 26px;
}
.tops li:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .tops li:last-child {
    margin-right: auto;
  }
}
@media (max-width: 1440px) {
  .tops li {
    margin-right: 16px;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .tops li {
    display: block;
    margin: 0 auto 26px;
  }
}
@media (max-width: 767px) {
  .tops {
    display: block;
  }
}
.tops .info-description {
  color: #fff8ef;
}

.top-command {
  display: block;
  width: 284px;
}
.top-command.active .container {
  position: relative;
}
.top-command.active .close-wrapper {
  top: -51px;
}
@media (max-width: 767px) {
  .top-command.active .close-wrapper {
    top: -39px;
    left: 50% !important;
    margin-left: -58px !important;
  }
}
@media (max-width: 767px) {
  .top-command {
    width: 329px;
  }
}

.photo-top {
  background-color: #2d2d2d;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  height: 185px;
}
.photo-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top-info {
  height: 127px;
  background-image: url(/images/top-comanda/top-line.svg);
  background-repeat: no-repeat;
  background-position: left 24px;
  background-color: #2d2d2d;
  padding: 16px 27px 24px 32px;
  -moz-border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
@media (max-width: 1025px) {
  .top-info {
    height: 165px;
  }
}

.list-command {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-left: 0;
}
.list-command li {
  display: inline-block;
  vertical-align: top;
  margin-right: 26px;
  margin-bottom: 26px;
}
.list-command li:nth-child(4n+4) {
  margin-right: 0;
}
@media (max-width: 1440px) {
  .list-command li:nth-child(4n+4) {
    margin-right: 16px;
  }
}
@media (max-width: 1440px) {
  .list-command li {
    margin-right: 16px;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .list-command li {
    text-align: left;
  }
}
@media (max-width: 735px) {
  .list-command li {
    display: block;
    margin: 0 auto 26px;
  }
  .list-command li:nth-child(4n+4) {
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .list-command {
    display: block;
    text-align: center;
  }
}
.list-command .info-description {
  color: #343434;
}

.item-command {
  display: block;
  width: 284px;
}
.item-command.active .container {
  position: relative;
}
.item-command.active .close-wrapper {
  top: -51px;
}
@media (max-width: 767px) {
  .item-command.active .close-wrapper {
    top: -39px;
    left: 50% !important;
    margin-left: -58px !important;
  }
}
.item-command h2 {
  color: #343434;
}
@media (max-width: 735px) {
  .item-command {
    width: 329px;
  }
}

.photo {
  background-color: #ddd1c3;
  height: 185px;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}

.info-command {
  height: 127px;
  background-image: url(/images/top-comanda/top-line.svg);
  background-repeat: no-repeat;
  background-position: left 24px;
  background-color: #ddd1c3;
  padding: 16px 27px 24px 32px;
  -moz-border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
@media (max-width: 855px) {
  .info-command {
    height: 150px;
  }
}

.open-mentory-page {
  background-image: url(/images/fon-image/join-idea.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
@media (max-width: 767px) {
  .open-mentory-page {
    background-image: url(/images/fon-image/fon-mobile-lanchproject.png);
    background-size: contain;
    background-position: top center;
    background-color: #ddd1c3;
  }
  .open-mentory-page h1 {
    padding: 0;
    margin-top: 165px;
    text-transform: unset;
    line-height: 37px;
  }
}
.open-mentory-page .container {
  padding: 100px 112px 98px;
}
@media (max-width: 1440px) {
  .open-mentory-page .container {
    padding: 100px 75px 98px;
  }
}
@media (max-width: 1365px) {
  .open-mentory-page .container {
    padding: 100px 32px 98px;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .open-mentory-page .container {
    padding: 68px 48px;
  }
}
@media (max-width: 767px) {
  .open-mentory-page .container {
    padding: 38px 23px;
  }
}
.open-mentory-page p {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .open-mentory-page p {
    padding: 0 !important;
  }
}
.open-mentory-page .list-item-shot {
  max-width: 680px;
  margin-bottom: 22px;
}
.open-mentory-page .list-item-shot .item-priority {
  width: 320px;
  margin-bottom: 42px;
}
@media (max-width: 767px) {
  .open-mentory-page .list-item-shot .item-priority {
    margin-bottom: 24px;
  }
}
.open-mentory-page .list-item-shot .item-priority:last-child {
  position: relative;
}

.realize-project-page .container {
  padding: 103px 112px 106px;
}
.realize-project-page .container:before {
  content: '';
  display: block;
  width: 115px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .realize-project-page .container:before {
    display: none;
  }
}
@media (max-width: 1440px) {
  .realize-project-page .container {
    padding: 103px 75px 106px;
  }
}
@media (max-width: 1365px) {
  .realize-project-page .container {
    padding: 103px 32px 106px;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .realize-project-page .container {
    padding: 68px 48px;
  }
}
@media (max-width: 815px) {
  .realize-project-page .container {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .realize-project-page .container {
    padding: 38px 23px;
  }
}
.realize-project-page h2 {
  height: 153px;
  max-width: 300px;
}
@media (max-width: 815px) {
  .realize-project-page h2 {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .realize-project-page h2 {
    font-size: 20px;
    line-height: 30px;
  }
}
.realize-project-page .wrapper-left {
  max-width: 340px;
}
@media (max-width: 768px) {
  .realize-project-page .wrapper-left {
    max-width: 100%;
  }
  .realize-project-page .wrapper-left img {
    display: none;
  }
}
.realize-project-page .list-item {
  max-width: calc(100% - 350px);
  margin-top: 11px;
}
@media (max-width: 768px) {
  .realize-project-page .list-item {
    max-width: 100%;
  }
}
.realize-project-page .item-scope {
  display: flex;
  color: #fff8ef;
}
@media (max-width: 767px) {
  .realize-project-page .item-scope {
    display: block;
  }
}
.realize-project-page .item-scope.full-width {
  justify-content: space-between;
}
.realize-project-page .item-scope.block {
  display: block;
  margin-top: 71px;
  margin-bottom: 58px;
}
@media (max-width: 768px) {
  .realize-project-page .item-scope.block {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
.realize-project-page .item-scope:nth-child(2) {
  width: 544px;
}
@media (max-width: 768px) {
  .realize-project-page .item-scope:nth-child(2) {
    width: 100%;
  }
}
.realize-project-page .item-scope:nth-of-type(3):before {
  content: '';
  display: block;
  position: absolute;
  width: 15px;
  height: 91px;
  background-image: url(/images/join/line-join.svg);
  background-repeat: no-repeat;
  background-size: contain;
  left: 21px;
  top: 26px;
}
@media (max-width: 767px) {
  .realize-project-page .item-scope:nth-of-type(3):before {
    content: none;
  }
}
.realize-project-page .item-scope:nth-child(4) .text-priority {
  max-width: 295px;
}
.realize-project-page .item-scope:nth-child(4) .text-priority.first-child {
  max-width: 220px;
}
@media (max-width: 815px) {
  .realize-project-page .item-scope:nth-child(4) .text-priority {
    max-width: 100%;
  }
  .realize-project-page .item-scope:nth-child(4) .text-priority.first-child {
    max-width: 100%;
  }
}
.realize-project-page .item-scope:nth-child(4) .text-priority:not(.first-child) {
  padding-left: 60px;
  position: relative;
}
.realize-project-page .item-scope:nth-child(4) .text-priority:not(.first-child):before {
  content: '';
  display: block;
  width: 40px;
  height: 8px;
  background-image: url(/images/join/arrow-join.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 9px;
}
@media (max-width: 767px) {
  .realize-project-page .item-scope:nth-child(4) .text-priority:not(.first-child):before {
    content: none;
  }
}
@media (max-width: 767px) {
  .realize-project-page .item-scope:nth-child(4) .text-priority:not(.first-child) {
    padding-left: 32px;
  }
}

.wrapper-block-item {
  display: block;
  width: 100%;
  margin-top: 21px;
  position: relative;
}
.wrapper-block-item:after {
  content: '';
  display: block;
  width: 100%;
  height: 38px;
  position: absolute;
  background-image: url(/images/join/all-line.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  bottom: 25px;
  left: 17px;
}
.wrapper-block-item .bottom-item {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #fff8ef;
  line-height: 21px;
  font-weight: 700;
  margin-left: 32px;
}
.wrapper-block-item .bottom-item span {
  display: block;
  padding-top: 15px;
}
@media (max-width: 767px) {
  .wrapper-block-item {
    display: none;
  }
}

.join-items {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-left: 34px;
  position: relative;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.join-items li {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin: 0 5px;
  width: 109px;
  height: 106px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  border: 2px dashed rgba(228, 122, 9, 0.41);
}
.join-items li:nth-child(4) .icon-join {
  margin: 4px auto 12px;
}
.join-items .icon-join {
  display: block;
  margin: 13px auto 12px;
}
.join-items .icon-join img {
  height: 42px;
  width: auto;
}

.bottom-join {
  background-color: #fff;
}
.bottom-join .container {
  padding: 37px 112px 38px;
  background-image: url(/images/join/union1.svg);
  background-repeat: no-repeat;
  background-position: left 50px;
}
@media (max-width: 1440px) {
  .bottom-join .container {
    padding: 37px 75px 38px;
  }
}
@media (max-width: 1365px) {
  .bottom-join .container {
    padding: 37px 32px 38px;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .bottom-join .container {
    background-image: none;
  }
}
@media (max-width: 767px) {
  .bottom-join .container {
    padding: 38px 23px;
    background-image: none;
  }
}
.bottom-join h3 {
  color: #2d2d2d;
  margin-bottom: 12px;
  max-width: 641px;
}
@media (max-width: 768px) {
  .bottom-join h3 {
    max-width: 100%;
  }
}
.bottom-join p {
  font-size: 14px;
  line-height: 21px;
  color: #2d2d2d;
  margin-bottom: 16px;
  max-width: 641px;
}
@media (max-width: 768px) {
  .bottom-join p {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .bottom-join img {
    display: none;
  }
}

.become-member {
  background-image: url(/images/fon-image/join-project.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
@media (max-width: 767px) {
  .become-member {
    background-image: url(/images/fon-image/fon-mobile-project.png);
    background-size: contain;
    background-position: top center;
    background-color: #ddd1c3;
  }
  .become-member h1 {
    padding: 0;
    margin-top: 165px;
    text-transform: unset;
    line-height: 37px;
  }
  .become-member p {
    padding: 0 !important;
  }
}
.become-member .container {
  padding: 100px 112px 95px;
}
@media (max-width: 1440px) {
  .become-member .container {
    padding: 100px 75px 95px;
  }
}
@media (max-width: 1365px) {
  .become-member .container {
    padding: 100px 32px 95px;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .become-member .container {
    padding: 69px 48px;
  }
}
@media (max-width: 767px) {
  .become-member .container {
    padding: 38px 23px;
  }
}
.become-member h1 {
  text-transform: uppercase;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .become-member h1 {
    margin-top: 165px;
    text-transform: unset;
    line-height: 37px;
  }
}
.become-member h2 {
  max-width: 659px !important;
  margin-bottom: 24px !important;
}
.become-member .btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .become-member .btn {
    margin-top: 0;
  }
}

.step-member .container {
  padding: 100px 112px;
  background-image: url(/images/event/line.svg);
  background-repeat: no-repeat;
  background-position: left center;
}
@media (max-width: 1440px) {
  .step-member .container {
    padding: 100px 75px;
  }
}
@media (max-width: 1365px) {
  .step-member .container {
    padding: 100px 32px;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .step-member .container {
    padding: 69px 48px;
    background-image: none;
  }
}
@media (max-width: 815px) {
  .step-member .container {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .step-member .container {
    padding: 38px 23px;
    background-image: none;
  }
}
.step-member h2 {
  max-width: 310px;
}
@media (max-width: 768px) {
  .step-member h2 {
    max-width: 100%;
    margin-bottom: 40px;
  }
}
.step-member .list-item {
  max-width: 785px;
}
@media (max-width: 768px) {
  .step-member .list-item {
    max-width: 100%;
  }
}
.step-member .item-scope {
  color: #fff8ef;
  position: relative;
}
.step-member .item-scope .btn {
  margin-top: 15px;
  margin-left: 33px;
}
.step-member .item-scope:first-of-type {
  width: 430px;
  padding-bottom: 58px;
}
.step-member .item-scope:first-of-type:before {
  content: '';
  display: block;
  width: 316px;
  height: 2px;
  border-top: 2px dashed rgba(228, 122, 9, 0.41);
  position: absolute;
  right: -57px;
  top: 10px;
}
@media (max-width: 1199px) {
  .step-member .item-scope:first-of-type:before {
    content: none;
  }
}
.step-member .item-scope:first-of-type:after {
  content: '';
  display: block;
  width: 485px;
  height: 2px;
  border-top: 2px dashed rgba(228, 122, 9, 0.41);
  position: absolute;
  right: -78px;
  bottom: 29px;
  border-radius: 0 0 4px 4px;
}
@media (max-width: 1199px) {
  .step-member .item-scope:first-of-type:after {
    content: none;
  }
}
@media (max-width: 768px) {
  .step-member .item-scope:first-of-type {
    width: 100%;
    padding-bottom: 0;
  }
}
.step-member .item-scope:nth-of-type(2):before {
  content: '';
  display: block;
  width: 2px;
  height: 70px;
  border-left: 2px dashed rgba(228, 122, 9, 0.41);
  position: absolute;
  left: 21px;
  top: 30px;
}
@media (max-width: 1199px) {
  .step-member .item-scope:nth-of-type(2):before {
    content: none;
  }
}
.step-member .item-scope:nth-of-type(3) {
  width: 430px;
}
.step-member .item-scope:nth-of-type(3):before {
  content: '';
  display: block;
  width: 2px;
  height: 29px;
  border-left: 2px dashed rgba(228, 122, 9, 0.41);
  position: absolute;
  left: 21px;
  top: -30px;
  border-radius: 4px 0 0 0;
}
@media (max-width: 1199px) {
  .step-member .item-scope:nth-of-type(3):before {
    content: none;
  }
}
.step-member .item-scope:nth-of-type(3):after {
  content: '';
  display: block;
  width: 69px;
  height: 2px;
  border-top: 2px dashed rgba(228, 122, 9, 0.41);
  position: absolute;
  right: -64px;
  top: 22px;
}
@media (max-width: 1199px) {
  .step-member .item-scope:nth-of-type(3):after {
    content: none;
  }
}
@media (max-width: 768px) {
  .step-member .item-scope:nth-of-type(3) {
    width: 100%;
    margin-bottom: 40px;
  }
}
.step-member .item-scope:nth-of-type(3), .step-member .item-scope:last-of-type {
  padding-top: 15px;
}
.step-member .item-scope:nth-of-type(3) .icon, .step-member .item-scope:last-of-type .icon {
  top: 0;
}
.step-member .item-scope:nth-of-type(2), .step-member .item-scope:last-of-type {
  max-width: 300px;
}
.step-member .item-scope:nth-of-type(2) .text-priority, .step-member .item-scope:last-of-type .text-priority {
  max-width: 289px;
}
@media (max-width: 768px) {
  .step-member .item-scope:nth-of-type(2), .step-member .item-scope:last-of-type {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .step-member .item-scope:nth-of-type(2) .text-priority, .step-member .item-scope:last-of-type .text-priority {
    max-width: 100%;
  }
}

.open-mentorys-page {
  background-image: url(/images/fon-image/mentor-page.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
@media (max-width: 767px) {
  .open-mentorys-page {
    background-image: url(/images/fon-image/fon-mobile-mentor.png);
    background-size: contain;
    background-position: top center;
    background-color: #ddd1c3;
  }
  .open-mentorys-page h1 {
    padding: 0;
    margin-top: 165px;
    text-transform: unset;
    line-height: 37px;
  }
  .open-mentorys-page p {
    padding: 0 !important;
  }
}
.open-mentorys-page .container {
  padding: 110px 112px 100px;
}
.open-mentorys-page .container:before {
  content: none;
}
@media (max-width: 1440px) {
  .open-mentorys-page .container {
    padding: 110px 75px 100px;
  }
}
@media (max-width: 1365px) {
  .open-mentorys-page .container {
    padding: 110px 32px 100px;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .open-mentorys-page .container {
    padding: 69px 48px;
  }
}
@media (max-width: 767px) {
  .open-mentorys-page .container {
    padding: 38px 23px;
  }
}
.open-mentorys-page h1 {
  max-width: 650px;
  margin-bottom: 17px !important;
}
.open-mentorys-page h2 {
  max-width: 650px !important;
}

.open-mentory-page h1, .become-member h1, .open-mentorys-page h1 {
  max-width: 650px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #2d2d2d !important;
  font-size: 30px;
  font-weight: 900;
  line-height: 45px;
}
@media (max-width: 767px) {
  .open-mentory-page h1, .become-member h1, .open-mentorys-page h1 {
    margin-top: 165px;
    text-transform: unset;
    font-size: 23px;
    line-height: 30px;
  }
}
.open-mentory-page h2, .become-member h2, .open-mentorys-page h2 {
  font-weight: 400;
  font-size: 18px;
  max-width: 510px;
  line-height: 24px;
  margin-bottom: 6px;
}

.mentorys-priority-areas {
  background-color: #343434;
  color: #fff8ef;
}
.mentorys-priority-areas .container {
  padding: 100px 112px;
  background-image: url(/images/mentor/line-mentor.svg);
  background-repeat: no-repeat;
  background-position: left 90%;
}
@media (max-width: 1440px) {
  .mentorys-priority-areas .container {
    padding: 100px 75px;
  }
}
@media (max-width: 1365px) {
  .mentorys-priority-areas .container {
    padding: 100px 32px;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .mentorys-priority-areas .container {
    padding: 69px 48px;
  }
}
@media (max-width: 768px) {
  .mentorys-priority-areas .container {
    display: block !important;
    background-position: left 95%;
  }
}
@media (max-width: 767px) {
  .mentorys-priority-areas .container {
    padding: 38px 23px;
    background-image: none;
  }
}
.mentorys-priority-areas .wrapper-left {
  width: 349px;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .mentorys-priority-areas .wrapper-left {
    width: 280px;
  }
}
@media (max-width: 768px) {
  .mentorys-priority-areas .wrapper-left {
    width: 100%;
  }
}
.mentorys-priority-areas h2 {
  max-width: 270px;
  margin-bottom: 30px;
}
@media (max-width: 815px) {
  .mentorys-priority-areas h2 {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .mentorys-priority-areas h2 {
    font-size: 23px;
    line-height: 30px;
  }
}
.mentorys-priority-areas .list-item {
  width: calc(100% - 349px);
}
@media (min-width: 767px) and (max-width: 1199px) {
  .mentorys-priority-areas .list-item {
    width: calc(100% - 280px);
  }
}
@media (max-width: 815px) {
  .mentorys-priority-areas .list-item {
    width: 100%;
    margin-top: 30px;
  }
}
.mentorys-priority-areas .item-scope {
  display: flex;
  width: calc(100% / 3 - 60px);
  margin-bottom: 24px;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .mentorys-priority-areas .item-scope {
    min-width: 208px;
  }
}
@media (max-width: 815px) {
  .mentorys-priority-areas .item-scope {
    width: calc(100% / 2 - 40px);
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .mentorys-priority-areas .item-scope {
    width: 100%;
    margin-bottom: 24px;
  }
}
.mentorys-priority-areas .item-scope .icon {
  position: relative;
  height: 43px;
  width: 42px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  left: unset;
  top: unset;
}
.mentorys-priority-areas .item-scope .icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  object-position: center;
}
.mentorys-priority-areas .item-scope .text-priority {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 21px;
  color: #fff8ef;
  padding-left: 0;
}

.mentors-importance-school h2 {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .mentors-importance-school h2 {
    font-size: 23px;
    line-height: 30px;
  }
}
.mentors-importance-school h3 {
  margin-bottom: 40px;
}
.mentors-importance-school .item-priority {
  width: calc(100% / 4);
  margin-bottom: 69px;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .mentors-importance-school .item-priority {
    width: calc(100% / 3);
  }
}
@media (max-width: 815px) {
  .mentors-importance-school .item-priority {
    width: calc(100% / 2);
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .mentors-importance-school .item-priority {
    width: 100%;
    margin-bottom: 24px;
  }
}
.mentors-importance-school .item-priority .icon {
  position: relative;
  height: 43px;
  width: 42px;
  display: inline-block;
  vertical-align: middle;
  left: unset;
  top: unset;
}
.mentors-importance-school .item-priority .icon img {
  height: 42px;
  width: auto;
}
.mentors-importance-school .item-priority .text-priority {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 21px;
  color: #343434;
  padding-left: 0;
  width: 223px;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .mentors-importance-school .image-item {
    width: calc(100% / 4);
  }
  .mentors-importance-school .image-item img {
    max-width: 100%;
    height: auto;
  }
}

.mentorys-page-bottom .container {
  padding: 75px 112px 69px;
}
.mentorys-page-bottom .container:before {
  content: none;
}
@media (max-width: 1440px) {
  .mentorys-page-bottom .container {
    padding: 75px 75px 69px;
  }
}
@media (max-width: 1365px) {
  .mentorys-page-bottom .container {
    padding: 75px 32px 69px;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .mentorys-page-bottom .container {
    padding: 68px 48px;
  }
}
@media (max-width: 767px) {
  .mentorys-page-bottom .container {
    padding: 38px 23px;
  }
}
.mentorys-page-bottom .block-left {
  width: calc(100% - 451px);
}
.mentorys-page-bottom .block-left h3 {
  max-width: 625px;
  margin-bottom: 24px;
}
@media (min-width: 767px) and (max-width: 1199px) {
  .mentorys-page-bottom .block-left {
    width: calc(100% - 400px);
  }
}
@media (max-width: 768px) {
  .mentorys-page-bottom .block-left {
    width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .mentorys-page-bottom .img-block {
    width: 400px;
  }
  .mentorys-page-bottom .img-block img {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .mentorys-page-bottom .img-block {
    display: none;
  }
}

.contact-page h2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}
.contact-page .wrapper-list {
  display: table;
  width: 100%;
  height: 100%;
}
@media (max-width: 1365px) {
  .contact-page .wrapper-list {
    display: block;
  }
}

.left-block-contact {
  display: table-cell;
  vertical-align: top;
  width: 350px;
}
@media (max-width: 1365px) {
  .left-block-contact {
    display: block;
    width: 100%;
  }
  .left-block-contact .image {
    display: none;
  }
}
.left-block-contact p {
  display: block;
  font-size: 14px;
  line-height: 21px;
  color: #4b4a48;
  margin-bottom: 24px;
}

.items-contact {
  background-color: #fff8ef;
  position: relative;
}
.items-contact .container {
  padding: 100px 0 45px 112px;
}
@media (max-width: 1440px) {
  .items-contact .container {
    width: 96%;
    padding: 100px 0 45px 75px;
  }
}
@media (max-width: 1365px) {
  .items-contact .container {
    width: 96%;
    padding: 100px 0 45px 32px;
  }
}
@media (min-width: 767px) and (max-width: 1199px) {
  .items-contact .container {
    padding: 69px 48px;
  }
}
@media (max-width: 767px) {
  .items-contact .container {
    padding: 0 15px 38px;
  }
}
.items-contact .list-city {
  display: table-cell;
  position: relative;
  padding-left: 49px;
}
@media (max-width: 1365px) {
  .items-contact .list-city {
    padding-left: 0;
  }
}
.items-contact .list-city .item-city {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  max-width: 406px;
  background-color: rgba(221, 209, 195, 0.38);
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  margin-bottom: 4px;
  padding: 28px 33px;
  min-height: 220px;
}
@media (max-width: 1365px) and (min-width: 1100px) {
  .items-contact .list-city .item-city {
    max-width: calc(100% / 2 - 4px);
    min-height: 200px;
  }
}
@media (max-width: 1025px) {
  .items-contact .list-city .item-city {
    max-width: calc(100% / 2 - 4px);
  }
}
@media (max-width: 900px) {
  .items-contact .list-city .item-city {
    max-width: 100%;
    min-height: auto;
  }
}
.items-contact .list-city .item-city h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: #d1c5b5;
}
.items-contact .list-city .item-city .title-item {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  color: #2d2d2d;
  margin-top: 8px;
  margin-bottom: 4px;
}
.items-contact .list-city .item-city a.link-map {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 21px;
  color: #e47d25;
  text-decoration: underline;
}
.items-contact .list-city .item-city a.link-map:hover {
  text-decoration: none;
  color: #e47d25;
}

.bottom-contact {
  background-color: #ddd1c3;
}
.bottom-contact .container {
  padding: 59px 112px 55px;
}
@media (max-width: 1440px) {
  .bottom-contact .container {
    padding: 59px 75px 55px;
  }
}
@media (max-width: 1365px) {
  .bottom-contact .container {
    padding: 59px 32px 55px;
  }
}
@media (max-width: 767px) {
  .bottom-contact .container {
    padding: 38px 23px;
  }
}
.bottom-contact h2 {
  color: #2d2d2d;
  margin-bottom: 12px;
  max-width: 641px;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}
@media (max-width: 815px) {
  .bottom-contact h2 {
    max-width: 100%;
  }
}
.bottom-contact p {
  font-size: 14px;
  line-height: 21px;
  color: #2d2d2d;
  margin-bottom: 16px;
  max-width: 641px;
}
@media (max-width: 815px) {
  .bottom-contact p {
    max-width: 100%;
  }
}
.bottom-contact .dropdown {
  margin-left: 0;
  margin-top: 20px;
}
.bottom-contact .dropdown-menu {
  left: 0;
  right: auto;
}
@media (max-width: 815px) {
  .bottom-contact img {
    display: none;
  }
}

.contact-form {
  background-color: #fff8ef;
  position: relative;
}
.contact-form:before {
  content: '';
  display: block;
  width: 385px;
  height: 22px;
  background-image: url(/images/fon-image/line-contact-left.svg);
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 134px;
  z-index: 1;
}
.contact-form:after {
  content: '';
  display: block;
  width: 650px;
  height: 24px;
  background-image: url(/images/fon-image/line-contact-right.svg);
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 110px;
  z-index: 1;
}
.contact-form h2 {
  color: #2d2d2d;
  max-width: 641px;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .contact-form h2 {
    font-size: 23px;
    line-height: 30px;
    margin-bottom: 24px;
  }
}
@media (max-width: 1440px) {
  .contact-form:after {
    width: 550px;
  }
}
@media (max-width: 1365px) {
  .contact-form:after {
    width: 480px;
  }
}
@media (max-width: 1199px) {
  .contact-form:before, .contact-form:after {
    content: none;
  }
}
.contact-form .container {
  padding: 100px 112px;
}
@media (max-width: 1440px) {
  .contact-form .container {
    padding-left: 75px;
    padding-right: 75px;
  }
}
@media (max-width: 1365px) {
  .contact-form .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 1199px) {
  .contact-form .container {
    padding: 69px 48px;
  }
}
@media (max-width: 767px) {
  .contact-form .container {
    padding: 38px 23px;
  }
}
.contact-form .message {
  position: relative;
  left: auto;
  transform: unset;
  margin-top: 0;
}
.contact-form .form-application .close-wrapper {
  background-image: none;
}

.form-wrapper {
  width: 100%;
  max-width: 865px;
  margin: auto;
}
.form-wrapper h3 {
  margin-bottom: 40px;
}
.form-wrapper .control-label {
  font-size: 13px;
  color: #4b4a48;
  line-height: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}
.form-wrapper textarea {
  min-height: 195px;
  padding: 10px;
}
.form-wrapper .g-recaptcha > div {
  margin: 7px auto 19px;
}

.main-bord {
  background-color: #fff8ef;
}
.main-bord .container {
  padding: 93px 112px 100px;
}
@media (max-width: 1440px) {
  .main-bord .container {
    padding: 93px 75px 100px;
  }
}
@media (max-width: 1365px) {
  .main-bord .container {
    padding: 93px 32px 100px;
  }
}
@media (max-width: 767px) {
  .main-bord .container {
    padding: 0 23px 38px;
  }
}
.main-bord .content-inner {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .main-bord .content-inner {
    margin-top: 30px;
  }
  .main-bord .content-inner .flex {
    flex-direction: column;
  }
}
.main-bord p {
  display: block;
  font-size: 14px;
  line-height: 21px;
  color: #343434;
  margin-bottom: 10px;
  max-width: 727px;
}
.main-bord .image {
  margin-bottom: 69px;
  max-width: 100%;
}
.main-bord .image:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .main-bord .image {
    margin-top: 38px;
    margin-bottom: 0;
  }
}
.main-bord .social-icon {
  margin-top: 34px;
}
.main-bord .social-icon li {
  margin-right: 15px;
}
.main-bord .quote {
  display: block;
  margin-top: 31px;
  margin-left: 100px;
  max-width: 605px;
}
.main-bord .quote p {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  text-indent: 24px;
  position: relative;
}
.main-bord .quote p:before {
  content: '';
  display: inline-block;
  width: 46px;
  height: 27px;
  background-image: url("../images/quote-left.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -30px;
  top: -10px;
}
.main-bord .quote p:after {
  content: '';
  display: inline-block;
  width: 46px;
  height: 27px;
  background-image: url("../images/quote-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  margin-top: 8px;
  margin-left: 8px;
}
@media (max-width: 767px) {
  .main-bord .quote {
    margin-left: 23px;
    max-width: 280px;
  }
}

.banner {
  position: relative;
}
.banner img {
  width: 100%;
}
.banner .text-banner {
  position: absolute;
  left: 92px;
  max-width: 570px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 767px) and (max-width: 1199px) {
  .banner .text-banner {
    left: 40px;
  }
  .banner .text-banner h1 {
    font-size: 28px;
    line-height: 39px;
  }
}
@media (max-width: 815px) {
  .banner .text-banner {
    max-width: 445px;
  }
  .banner .text-banner h1 {
    font-size: 20px;
    line-height: 31px;
  }
}
@media (max-width: 767px) {
  .banner .text-banner {
    left: 23px;
  }
  .banner .text-banner h1 {
    font-size: 20px !important;
    line-height: 30px;
  }
}
@media (max-width: 660px) {
  .banner .text-banner {
    max-width: 220px;
  }
  .banner .text-banner h1 {
    font-size: 12px !important;
    line-height: 18px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .banner {
    left: -23px;
    right: -23px;
    width: 100vw;
  }
}

.message {
  max-width: 480px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 100px;
}
.message h2 {
  color: #219653;
}
.message .anotations {
  margin-bottom: 0;
}

.pageError {
  display: flex;
  width: 100%;
  height: 100vh;
}

.site-error {
  width: 100%;
  height: 100%;
  color: #fff8ef;
  justify-content: center;
}
.site-error h3 {
  color: #fff8ef;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .site-error.flex {
    flex-direction: column;
    padding: 0 23px;
  }
}

.default-page {
  background-color: #fff8ef;
  padding: 100px 0;
}
.default-page h1 {
  color: #2d2d2d;
  text-align: center;
  font-size: 30px;
  text-transform: initial;
  line-height: 45px;
}
.default-page h3 {
  text-align: center;
  margin-bottom: 24px;
}
.default-page h2 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #2d2d2d;
}
.default-page .content-inner {
  margin-top: 30px;
  text-align: left;
}
.default-page p {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 16px;
}
.default-page ul {
  padding-left: 40px;
  list-style: outside disc;
  margin: 0;
}
.default-page ul ul {
  list-style: none;
}

.margin-bottom-5 {
  margin-bottom: 5px !important;
}

.margin-bottom-10 {
  margin-bottom: 10px !important;
}

.margin-bottom-15 {
  margin-bottom: 15px !important;
}

.margin-bottom-20 {
  margin-bottom: 20px !important;
}

.pagination {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  max-width: 100%;
}
.pagination li a, .pagination li span {
  color: #000;
  border: none;
}
.pagination li:not(.active) a, .pagination li:not(.active) span {
  background-color: unset !important;
}
.pagination li.active a, .pagination li.active span {
  background-color: #e47a09 !important;
  border-radius: 50%;
}

.breadcrumb {
  padding: 8px 0;
  margin-bottom: 10px;
  list-style: none;
  background-color: unset;
}
.breadcrumb a {
  color: #e47a09;
  text-decoration: none;
}
@media (max-width: 767px) {
  .breadcrumb {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
  }
  .breadcrumb li.active {
    vertical-align: middle;
    max-width: 200px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

.top-scroll {
  position: fixed;
  width: 40px;
  height: 40px;
  right: 38px;
  bottom: 298px;
  cursor: pointer;
  z-index: 1000;
}
@media (max-width: 767px) {
  .top-scroll {
    right: 19px;
    bottom: 100px;
  }
}

.scroll-page {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #ddd1c3;
  background-image: url("../images/arrow/arrow-top.svg");
  background-repeat: no-repeat;
  background-position: center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: 1px dashed #e47a09;
}
.scroll-page:hover {
  background-color: #e47a09;
  background-image: url("../images/arrow/arrow-top-white.svg");
}

.gallery-wrapper .container {
  padding: 100px 112px;
}
@media (max-width: 1440px) {
  .gallery-wrapper .container {
    padding: 59px 75px 55px;
  }
}
@media (max-width: 1365px) {
  .gallery-wrapper .container {
    padding: 59px 32px 55px;
  }
}
@media (max-width: 767px) {
  .gallery-wrapper .container {
    padding: 38px 23px;
  }
}
.gallery-wrapper h2 {
  color: #2d2d2d;
  margin-bottom: 44px;
}
.gallery-wrapper .popup-gallery .slider-news {
  height: 100%;
  text-align: center;
  padding: 0;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.gallery-wrapper .popup-gallery .slider-news .slick-list {
  max-height: 334px;
  max-width: 1216px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .gallery-wrapper .popup-gallery .slider-news .slick-list {
    max-height: 386px;
  }
}
.gallery-wrapper .popup-gallery .slider-news .image-slider {
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  position: relative;
  margin: 0 3px;
  height: 334px;
}
@media (max-width: 767px) {
  .gallery-wrapper .popup-gallery .slider-news .image-slider {
    height: 386px;
  }
}
.gallery-wrapper .popup-gallery .slider-news .image {
  width: 284px;
  height: 334px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
  margin: auto;
}
.gallery-wrapper .popup-gallery .slider-news .image img {
  display: block;
  width: 284px;
  height: 345px;
  object-fit: cover;
  object-position: center;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .gallery-wrapper .popup-gallery .slider-news .image {
    width: 329px;
    height: 386px;
  }
  .gallery-wrapper .popup-gallery .slider-news .image img {
    width: 329px;
    height: 386px;
  }
}
.gallery-wrapper .slick-dots {
  display: none !important;
}
@media (max-width: 767px) {
  .gallery-wrapper .slick-dots {
    display: block !important;
  }
}
.gallery-wrapper .slider-items .slick-arrow {
  width: 40px;
  height: 40px;
}
.gallery-wrapper .slider-items .slick-arrow.slick-next {
  right: -40px;
  background-image: url("../images/arrow/arrow-slider-main.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 40px;
  transform: rotate(180deg);
}
.gallery-wrapper .slider-items .slick-arrow.slick-next.slick-disabled {
  right: -40px;
  background-image: url("../images/arrow/arrow-slider-disabled.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 40px;
  transform: rotate(180deg);
}
.gallery-wrapper .slider-items .slick-arrow.slick-prev {
  left: -40px;
  background-image: url("../images/arrow/arrow-slider-main.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 40px;
  transform: rotate(0deg);
}
.gallery-wrapper .slider-items .slick-arrow.slick-prev.slick-disabled {
  left: -40px;
  background-image: url("../images/arrow/arrow-slider-disabled.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 40px;
  transform: rotate(0deg);
}
@media (max-width: 767px) {
  .gallery-wrapper .slider-items .slick-arrow {
    display: none !important;
  }
}

.gallery {
  margin: 50px auto;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 753px;
}
.gallery .content-inner {
  width: 100%;
  max-width: 727px;
}

.loading {
  position: relative;
}
.loading:before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(-45deg, rgba(61, 61, 81, 0.08) 25%, transparent 25%, transparent 50%, rgba(61, 61, 81, 0.08) 50%, rgba(61, 61, 81, 0.08) 75%, transparent 75%, transparent);
  background-size: 50px 50px;
  animation: progress 2s linear infinite;
}
.loading:hover {
  cursor: wait;
}

/*# sourceMappingURL=style.css.map */
