@-webkit-keyframes spinner {
  100% {
    -webkit-transform: rotate(3600deg);
    transform: rotate(3600deg);
  }
}

@keyframes spinner {
  100% {
    -webkit-transform: rotate(3600deg);
    transform: rotate(3600deg);
  }
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fcfcfc;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.preloader .back {
  background-size: contain;
  display: inline-block;
  position: relative;
  -webkit-animation: spinner 45s alternate infinite linear;
  animation: spinner 45s alternate infinite linear;
  -webkit-transform-origin: center;
  transform-origin: center;
  width: 450px;
  height: 450px;
}

.preloader .back img {
  height: 100%;
  width: 100%;
}

.preloader .front {
  position: absolute;
  z-index: 1001;
  display: block;
  -webkit-transform: translate(130px, 5px);
  transform: translate(130px, 5px);
}

.preloader .front img {
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 850px) {
  .preloader .back {
    width: 338px;
    height: 338px;
  }
  .preloader .front {
    width: 401px;
    height: 202px;
    -webkit-transform: translate(94px, 4px);
    transform: translate(94px, 4px);
  }
}

@media screen and (max-width: 600px) {
  .preloader .back {
    width: 254px;
    height: 254px;
  }
  .preloader .front {
    width: 300px;
    height: 150px;
    -webkit-transform: translate(70px, 3px);
    transform: translate(70px, 3px);
  }
}

@media screen and (max-width: 450px) {
  .preloader .back {
    width: 180px;
    height: 180px;
  }
  .preloader .front {
    width: 225px;
    height: 100px;
    -webkit-transform: translate(57px, 3px);
    transform: translate(57px, 3px);
  }
}

@media screen and (max-width: 360px) {
  .preloader .back {
    width: 140px;
    height: 140px;
  }
  .preloader .front {
    width: 180px;
    height: 80px;
    -webkit-transform: translate(44px, 2px);
    transform: translate(44px, 2px);
  }
}

body {
  position: relative;
}

.main_page_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  opacity: 0;
}

.header {
  position: fixed;
  top: 0;
  z-index: 999;
  background: #fff;
  width: 100%;
}

.navbar {
  padding: 0 1.5rem;
  border-bottom: 1px solid rgba(155, 155, 155, 0.24);
}

.navbar .header_info {
  width: 100%;
}

.navbar .header_info p {
  font-family: "PF Handbook Pro";
  color: #3a3a3a;
  font-size: 17px;
  letter-spacing: 0.23px;
  margin: 0;
  margin-left: 12px;
}

.navbar .header_info .header_info_phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 25px;
}

.navbar .header_info .header_info_phone img {
  width: 17px;
  height: 17px;
}

.navbar .header_info .header_info_email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar .header_info .header_info_email img {
  width: 17px;
  height: 11px;
}

.navbar .navbar-nav {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
}

.navbar .navbar-nav li {
  border-right: 1px solid rgba(155, 155, 155, 0.24);
  position: relative;
}

.navbar .navbar-nav li a {
  color: #474747;
  font-family: "PF Handbook Pro";
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.83px;
}

.navbar .navbar-nav li::after {
  position: absolute;
  bottom: 0;
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #2f598e;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .navbar-nav li:hover::after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.navbar .navbar-nav .active {
  background-color: rgba(47, 89, 142, 0.15);
}

.navbar .navbar-nav .active a {
  color: #2f598e;
}

.navbar .navbar-nav .active:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.navbar .navbar-nav .last {
  border-right: none;
}

.navbar .navbar-nav .dropdown {
  border-right: none;
}

.navbar .navbar-nav .dropdown a {
  font-size: 17px;
  letter-spacing: 0.23px;
  color: #2861aa;
  text-transform: none;
}

.navbar .navbar-nav .dropdown:hover::after {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.navbar .navbar-nav .dropdown .dropdown-menu.show {
  position: absolute;
}

.navbar .navbar-toggler {
  max-height: 50%;
  margin-top: 10px;
}

.navbar .navbar-toggler:focus, .navbar .navbar-toggler:active {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.navbar .navbar-toggler .wrap {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.unit-space-logo {
  width: 90px;
}

.navbar .navbar-toggler .wrap .navbar-toggler-icon {
  width: 30px;
  height: 3px;
  margin-bottom: 5px;
  background-color: #2f598e;
}

.index_body {
  padding-left: 70px;
  margin-bottom: 40px;
}

/* .index_body .row {
  min-height: 100%;
} */

.index_body .logo {
  margin-top: 40px;
  margin-bottom: 35px;
}

.index_body .about {
  height: 100%;
  padding-left: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.index_body .about h2 {
  color: #224676;
  font-family: "PF Handbook Pro";
  font-size: 42px;
  line-height: 31px;
  margin-bottom: 25px;
}

.index_body .about .main_text {
  font-family: "Bandera Pro";
  color: #242424;
  font-size: 19px;
  line-height: 24px;
}

.index_body .about .sub_text {
  font-family: "Bandera Pro";
  color: #878787;
  font-size: 17px;
  line-height: 24px;
}

.index_body .bottom {
  padding-left: 40px;
}

.index_body .bottom .toNew a {
  color: #1d1d1d;
  font-family: "Bandera Pro";
  font-weight: bold;
  line-height: 24px;
  font-size: 21px;
  text-decoration: underline;
}

.index_body .bottom .toNew a:hover {
  color: #215699;
}

.index_body .slider_block {
  margin-top: -80px;
}

.index_body .slider_block .sb-description {
  z-index: 10;
  border: none;
  width: 50%;
  background-color: rgba(255, 255, 255, 0);
}

.index_body .slider_block .sb-description:hover {
  background-color: rgba(255, 255, 255, 0) !important;
}

.index_body .slider_block .sb-description h3 {
  font-size: 36px;
  color: #ffffff;
  font-family: "PF Handbook Pro";
  text-transform: uppercase;
}

.index_body .slider_block .sb-description p {
  font-size: 34px;
  color: #ffffff;
  font-family: "PF Handbook Pro";
}

.index_body .slider_block .sb-description button {
  background-color: #2861aa;
  -webkit-box-shadow: 3px 6px 10px 1px rgba(0, 0, 0, 0.27);
  box-shadow: 3px 6px 10px 1px rgba(0, 0, 0, 0.27);
  border-radius: 0;
  color: #ffffff;
  font-family: "PF Handbook Pro";
  text-transform: uppercase;
  letter-spacing: 2.06px;
  font-size: 24px;
  padding: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.index_body .slider_block .sb-description button:hover {
  background-color: #215699;
}

.index_body .slider_block .nav-arrows {
  display: block;
}

.index_body .slider_block .nav-arrows a {
  width: 57px;
  height: 57px;
  color: #ffffff;
  font-size: 20px;
  position: absolute;
  top: calc(50% - 60px);
  cursor: pointer;
  margin-top: -21px;
  background-color: #2861aa;
  -webkit-box-shadow: 7px 4px 12px 1px rgba(0, 0, 0, 0.49);
  box-shadow: 7px 4px 12px 1px rgba(0, 0, 0, 0.49);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  text-indent: 1px;
}

.index_body .slider_block .nav-arrows a:first-child {
  left: auto;
  background-position: top right;
}

.index_body .slider_block .nav-arrows a:hover {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.index_body .slider_block .nav-dots {
  text-align: center;
  position: absolute;
  bottom: -10%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.index_body .slider_block .nav-dots span {
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 10px;
  width: 10px;
}

.index_body .slider_block .nav-dots .nav-dot-current {
  background-color: #2861aa;
  height: 11px;
  width: 11px;
}

.home_footer .footer {
  position: fixed;
  bottom: 0px;
  padding: 0 40px;
}

.footer .footer_wrap {
  width: 100%;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer .footer_wrap .license {
  color: #3d3d3d;
  font-family: "PF Handbook Pro";
  font-size: 17px;
  letter-spacing: 0.2px;
  margin-bottom: 0px;
}

.footer .footer_wrap #devBy p {

  margin-bottom: 0px;
  font-family: "PF Handbook Pro";
  font-size: 14px;
  letter-spacing: 0.23px;
}
#devBy {
  display: flex;
  align-items: center;
}
#devBy a{
  color: #000000;
}
#devBy a:hover{
  color: #000000;
  text-decoration: none;
}
#devBy img{
  width: 100px;
  margin-left: 10px;
}

.modal .modal-dialog {
  max-width: 40%;
}

.modal .modal-content {
  background: linear-gradient(-95deg, #082652 0%, #1c418d 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 25px;
  position: relative;
}

.modal .modal-content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.modal .modal-content .close {
  position: absolute;
  top: 0;
  right: -7%;
}

.modal .modal-content .modal-header {
  border: none;
}

.modal .modal-content .modal-header h3 {
  color: #ffffff;
  font-size: 30px;
}

.modal .modal-content .modal-body {
  width: 50%;
  padding: 0;
  margin-top: 30px;
}

.modal .modal-content .modal-body .input-group {
  margin-bottom: 2rem;
  border-bottom: 1px solid #FFFFFF;
}

.modal .modal-content .modal-body .input-group-prepend, .modal .modal-content .modal-body .input-group-text {
  background-color: rgba(255, 255, 255, 0);
  border: none;
}

.modal .modal-content .modal-body .form-input {
  border: none;
  background-color: rgba(255, 255, 255, 0);
  color: #ffffff;
  font-size: 24px;
}

.modal .modal-content .modal-body .form-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.modal .modal-content .modal-body input::-moz-placeholder {
  color: #FFFFFF;
}

.modal .modal-content .modal-body input::-webkit-input-placeholder {
  color: #FFFFFF;
}

.modal .modal-content .modal-body .userCommentLabel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal .modal-content .modal-body .userCommentLabel img {
  width: 23px;
  height: 20px;
  margin-right: 15px;
}

.modal .modal-content .modal-body .userCommentLabel p {
  color: #ffffff;
  font-size: 24px;
  margin: 0;
}

.modal .modal-content .modal-body textarea {
  height: 86px;
  width: 100%;
  -webkit-box-shadow: inset 5px 5px 15px 1px rgba(0, 0, 0, 0.28);
  box-shadow: inset 5px 5px 15px 1px rgba(0, 0, 0, 0.28);
  border: 1px solid #ffffff;
  background-color: #e8e8e8 !important;
  border-radius: 0;
  margin-bottom: 45px;
}

.modal .modal-content .modal-body textarea::-moz-placeholder {
  font-size: 18px;
  font-style: italic;
}

.modal .modal-content .modal-body textarea::-webkit-input-placeholder {
  font-size: 18px;
  font-style: italic;
}

.modal .modal-content .modal-body input.btn-block {
  width: 100%;
  height: 70px;
  background-color: #ffd7a4;
  color: #2c365a;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0;
  margin-bottom: 20px;
}

.modal .modal-content .modal-footer {
  border: none;
  width: 70%;
}

.modal .modal-content .modal-footer p {
  width: 100%;
  text-align: center;
  font-family: "Gotham Pro";
  font-size: 16px;
  color: #ffffff;
}

/*.articles_body {
  position: absolute;
  top: 22px;
}*/

.articles_body_top {
  margin-left: 75px;
  padding-top: 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
  z-index: 15;
  background: #fff;
}

.articles_body_top .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.articles_body_top .banner {
  background: url("../img/articles/banner.png");
  height: 220px;
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.articles_body_top .banner h1 {
  font-family: "PF Handbook Pro";
  color: #ffffff;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 2.7px;
}

.articles_body_content {
  margin: 80px 100px;
}

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

.articles_body_content .search_wrap .line {
  width: 30%;
  height: 2px;
  border-bottom: 1px solid;
  background-color: #082762;
  opacity: 0.07;
}

.articles_body_content .search_wrap form {
  padding: 8px;
  border: 1px solid #d3d3d3;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.28);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.28);
  background-color: #e5e5e5;
  width: 35%;
}

.articles_body_content .search_wrap form .input-group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.articles_body_content .search_wrap form .input-group .input-group-prepend {
  border: 1px solid #c4c4c4;
  border-radius: 4px;
  width: 70%;
}

.articles_body_content .search_wrap form .input-group .input-group-prepend .input-group-text {
  border: none;
  background-color: #ffffff;
  color: rgba(143, 143, 143, 0.54);
  font-size: 24px;
  line-height: 24px;
  font-weight: 100;
}

.articles_body_content .search_wrap form .input-group .input-group-prepend .form-control {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #9a9a9a;
  font-family: "PF Handbook Pro";
  font-size: 24px;
  line-height: 24px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.articles_body_content .search_wrap form .input-group .input-group-prepend .form-control::-moz-placeholder {
  color: rgba(143, 143, 143, 0.54);
}

.articles_body_content .search_wrap form .input-group .input-group-prepend .form-control::-webkit-input-placeholder {
  color: rgba(143, 143, 143, 0.54);
}

.articles_body_content .search_wrap form .input-group button {
  width: 28%;
  background: -webkit-gradient(linear, left bottom, left top, from(#1c418d), to(#214ba3));
  background: linear-gradient(to top, #1c418d 0%, #214ba3 100%);
  color: #ffffff;
  -webkit-box-shadow: inset 0 0 1px 1px #ffffff;
  box-shadow: inset 0 0 1px 1px #ffffff;
  font-family: "PF Handbook Pro";
  font-size: 24px;
  line-height: 28px;
  border: 1px solid #1c418d;
  text-align: center;
}

.articles_body_content .articles_wrap {
  margin-top: 80px;
}

.articles_body_content .articles_wrap .article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 60px 0;
  border-bottom: 1px solid rgba(8, 39, 98, 0.13);
}

.articles_body_content .articles_wrap .article_date {
  height: 90px;
  min-width: 90px;
  background-color: #1c418d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 30px;
}

.articles_body_content .articles_wrap .article_date h4 {
  text-align: center;
  color: #ffffff;
  font-family: "PF Handbook Pro";
  font-size: 18px;
  line-height: 17.75px;
  letter-spacing: 2.4px;
}

.articles_body_content .articles_wrap .article_img {
  position: relative;
  min-width: 25%;
  margin-right: 15px;
}

.articles_body_content .articles_wrap .article_img img {
  width: 100%;
  height: 100%;
}

.articles_body_content .articles_wrap .article_img .hover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(21, 44, 90, 0.67);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.articles_body_content .articles_wrap .article_img .hover:hover {
  opacity: 1;
}

.articles_body_content .articles_wrap .article_img .hover a {
  text-decoration: none;
  color: #ffffff;
  font-family: "PF Handbook Pro";
  font-size: 24px;
  line-height: 40px;
}

.articles_body_content .articles_wrap .article_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.articles_body_content .articles_wrap .article_info h3 {
  color: #1945a1;
  font-family: "PF Handbook Pro";
  font-size: 36px;
  line-height: 40px;
}

.articles_body_content .articles_wrap .article_info p {
  font-family: "PF Handbook Pro";
  color: #272829;
  font-size: 20px;
}

.articles_body_content .articles_wrap .article_info a {
  font-family: "PF Handbook Pro";
  font-size: 24px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 250px;
  background-color: #1c418d;
  color: #ffffff;
}

.articles_body_content .articles_wrap .article_info a:focus, .articles_body_content .articles_wrap .article_info a .text:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

.articles_body_content .articles_wrap .article_info a .arrow {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.articles_body_content .articles_wrap .article_info a .link_text {
  width: 80%;
  text-decoration: underline;
  padding-left: 5%;
  background-color: #ffffff;
  color: #1c418d;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.articles_body_content .articles_wrap .article_info a:hover .link_text {
  background-color: #1c418d;
  color: #ffffff;
}

.articles_body_content .articles_wrap .article:first-child {
  padding-top: 10px;
}

.articles_body_content .article_navigation_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 60px;
}

.articles_body_content .article_navigation_wrap .navigate_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.articles_body_content .article_navigation_wrap .navigate_block .navBtn button {
  background-color: #1c418d;
  width: 34px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  border-radius: 0;
}

.articles_body_content .article_navigation_wrap .navigate_block .nav_text {
  margin: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "PF Handbook Pro";
  color: #7c7c7c;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.27px;
}

.articles_body_content .article_navigation_wrap .navigate_block .disabledBtn button {
  background-color: rgba(0, 0, 0, 0.32);
  cursor: initial;
}

.articles_body_content .article_navigation_wrap .navigate_block .disabledBtn button:focus {
  outline: none;
}

@media screen and (max-width: 1650px) {
  .articles_body_top {
    margin-left: 25px;
  }
  .articles_body_top .banner {
    height: 160px;
  }
  .articles_body_top .banner h1 {
    font-size: 28px;
  }
  .articles_body_content {
    margin: 40px 60px;
  }
  .articles_body_content .search_wrap form .input-group .input-group-prepend .input-group-text {
    font-size: 20px;
    line-height: 20px;
  }
  .articles_body_content .search_wrap form .input-group .input-group-prepend .form-control {
    font-size: 20px;
    line-height: 20px;
  }
  .articles_body_content .search_wrap form .input-group button {
    font-size: 20px;
    line-height: 22px;
  }
  .articles_body_content .articles_wrap {
    margin-top: 40px;
  }
  .articles_body_content .articles_wrap .article_date h4 {
    font-size: 16px;
  }
  .articles_body_content .articles_wrap .article_info h3 {
    font-size: 28px;
  }
  .articles_body_content .articles_wrap .article_info p {
    font-size: 18px;
  }
  .articles_body_content .articles_wrap .article_info a {
    font-size: 20px;
  }
}

@media screen and (max-width: 1100px) {
  .articles_body_content {
    margin: 20px 30px;
  }
  .articles_body_content .search_wrap .line {
    width: 25%;
  }
  .articles_body_content .search_wrap form {
    width: 45%;
  }
  .articles_body_content .articles_wrap .article_info h3 {
    font-size: 22px;
  }
  .articles_body_content .articles_wrap .article_info p {
    font-size: 16px;
  }
  .articles_body_content .articles_wrap .article_info a {
    font-size: 18px;
  }
  .articles_body_content .article_navigation_wrap {
    margin-top: 30px;
  }
}

@media screen and (max-width: 990px) {
  .articles_body_top {
    margin-left: 5px;
  }
  .articles_body_top .header_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .articles_body_top .header_block .banner {
    width: 85%;
  }
  .articles_body_content {
    margin: 10px 20px;
  }
  .articles_body_content .articles_wrap .article_date {
    min-width: 70px;
    height: 70px;
  }
  .articles_body_content .articles_wrap .article_date h4 {
    font-size: 14px;
  }
}

@media screen and (max-width: 760px) {
  .articles_body {
    padding: 0;
  }
  .articles_body_top {
    margin: 1.5rem 0 0 0;
  }
  .articles_body_top .header_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 0;
  }
  .articles_body_top .header_block .banner {
    width: 85%;
    padding-left: 20px;
  }
  .articles_body_content {
    margin: 10px 10px;
  }
  .articles_body_content .search_wrap .line {
    width: 20%;
  }
  .articles_body_content .search_wrap form {
    width: 55%;
  }
  .articles_body_content .articles_wrap .article_date {
    margin-right: 12px;
  }
  .articles_body_content .articles_wrap .article_date h4 {
    font-size: 14px;
  }
  .articles_body_content .articles_wrap .article_img .hover a {
    font-size: 20px;
  }
  .articles_body_content .articles_wrap .article_info h3 {
    font-size: 20px;
  }
  .articles_body_content .articles_wrap .article_info p {
    font-size: 14px;
  }
  .articles_body_content .articles_wrap .article_info a {
    font-size: 16px;
  }

  .home_footer .footer{
    position: unset;
  }
  .footer .footer_wrap{
    flex-direction: column;
  }
  #devBy{
    flex-direction: column;
    margin-top: 20px;
    text-align: center;
  }
  #devBy img{
    margin-left: 0;
    width: 80px;
  }
}

@media screen and (max-width: 580px) {
  .articles_body_top .header_block .banner {
    width: 85%;
  }
  .articles_body_top .logo img {
    width: 146px;
    height: 96px;
  }
  .articles_body_content .articles_wrap .article {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 392px) {
  .articles_body_top .header_block .banner {
    height: 120px;
    width: 70%;
  }
  .articles_body_top .header_block .banner h1 {
    font-size: 22px;
  }
  .articles_body_content .search_wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .articles_body_content .search_wrap .line {
    display: none;
  }
  .articles_body_content .search_wrap form {
    width: 90%;
  }
}

@media screen and (max-width: 320px) {
  .articles_body_top .header_block .banner {
    height: 100px;
    width: 65%;
  }
  .articles_body_top .header_block .banner h1 {
    font-size: 22px;
  }
}

.complexes_body {
  padding-bottom: 30px;
  margin-top: 20px;
}

.complexes_body_top {
  padding: 30px;
}

.complexes_body_main {
  padding-right: 95px;
}

.complexes_body_main .logo {}

.complexes_body_main .sidebar .accordion {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
}

.complexes_body_main .logo img {
  height: 150px;
  padding-top: 20px;
  padding-bottom: 10px;
}

.complexes_body_main .sidebar .accordion .card {
  border: none;
}

.complexes_body_main .sidebar .accordion .card .card-header {
  width: 100%;
  padding: 0;
  height: 75px;
}

.complexes_body_main .sidebar .accordion .card .card-header h5 {
  padding: 0;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.complexes_body_main .sidebar .accordion .card .card-header h5::after {
  position: absolute;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
  bottom: 2px;
  background-color: rgba(252, 252, 252, 0.1);
}

.complexes_body_main .sidebar .accordion .card .card-header h5 button {
  color: #ffffff;
  white-space: normal;
  text-align: left;
  font-family: "MyriadPro-Semibold";
  width: 100%;
  height: 75px;
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0);
}

.complexes_body_main .sidebar .accordion .card .card-header:hover button {
  background-color: rgba(255, 255, 255, 0.37);
}

.complexes_body_main .sidebar .accordion .card .card-body {
  width: 100%;
  border: 1px solid #e8e8e8;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
}

.certificats_body {
  margin-top: 5%;
}

.complexes_body_main .sidebar .accordion .card .card-body a {
  padding: 5px;
  width: 100%;
  margin-bottom: 0;
  border-bottom: 1px solid #c4c4c4;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.complexes_body_main .sidebar .accordion .card .card-body a h6 {
  color: #0e2443;
  font-family: "MyriadPro-Regular";
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.complexes_body_main .sidebar .accordion .card .card-body a:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.complexes_body_main .sidebar .accordion .card .card-body a.active {
  border: none;
  border-bottom: 1px solid #c4c4c4;
}

.complexes_body_main .sidebar .accordion .card .show, .complexes_body_main .sidebar .accordion .card .collapse, .complexes_body_main .sidebar .accordion .card .collapsing {
  padding-left: 10%;
}

.complexes_body_main .sidebar .accordion .card #headingOne {
  background-color: #193861;
}

.complexes_body_main .sidebar .accordion .card #headingTwo {
  background-color: #1c4171;
}

.complexes_body_main .sidebar .accordion .card #headingThree {
  background-color: #275187;
}

.complexes_body_main .sidebar .accordion .card #headingFour {
  background-color: #305d97;
}

.complexes_body_main .sidebar .accordion .card #headingFive {
  background-color: #3e6eab;
}

.complexes_body_main .sidebar .accordion .card #headingSix {
  background-color: #477bbd;
}

.complexes_body_main .content {
  margin-top: 55px;
}

.complexes_body_main .content .video_wrap {
  width: 100%;
  margin-bottom: 0px;
}

.complexes_body_main .content .video_wrap_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 30px;
}

.complexes_body_main .content .video_wrap_header h1 {
  color: #224676;
  font-family: "Bandera Pro";
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2.4px;
}

.complexes_body_main .content .video_wrap_header h1::after {
  display: block;
  content: "";
  height: 4px;
  background-color: #224676;
  width: 58px;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.complexes_body_main .content .video_wrap .iframe_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.04);
}

.iframe_wrap iframe {
  width: 80%;
  height: 520px;
}

.complexes_body_main .content .products_wrap_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.complexes_body_main .content .products_wrap_header h2 {
  color: #224676;
  font-family: "Bandera Pro";
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.2px;
}

.complexes_body_main .content .products_wrap_body .tabs_container {
  padding: 5px;
  margin-bottom: 80px;
}

.complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}

.complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a {
  width: 33%;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
  padding: 25px 50px;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a h3 {
  color: #696969;
  font-size: 24px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  font-family: "MyriadPro-Semibold";
}

.complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a h3::after {
  display: block;
  content: "";
  height: 3px;
  width: 45px;
  background-color: #696969;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a p {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #696969;
  font-family: "GothaProReg";
  font-size: 13px;
  margin-top: 20px;
}

.complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a.active, .complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs .show {
  border: 3px solid #224676;
  color: #224676;
  -webkit-box-shadow: 0 0 3px 3px #c1dffe;
  box-shadow: 0 0 3px 3px #c1dffe;
  border-radius: 5px;
}

.complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a.active h3, .complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a.active p, .complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs .show h3, .complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs .show p {
  color: inherit;
}

.complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a.active h3::after, .complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs .show h3::after {
  background-color: #224676;
}

.complexes_body_main .content .products_wrap_body .content_container .tab-content .tab-pane h3 {
  color: #082762;
  font-family: "Bandera Pro";
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  margin-bottom: 25px;
}

.complexes_body_main .content .products_wrap_body .content_container .tab-content .tab-pane .current_tab_content p {
  color: #0c2342;
  font-family: "GothaProReg";
  font-size: 18px;
}

.complexes_body_main .content .table_wrap {
  margin-top: 80px;
}

.complexes_body_main .content .table_wrap_header h2 {
  color: #224676;
  font-family: "Bandera Pro";
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}

.complexes_body_main .content .table_wrap_header h2::after {
  display: block;
  content: "";
  height: 4px;
  background-color: #224676;
  width: 58px;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.complexes_body_main .content .table_wrap_body {
  margin-top: 40px;
}

.complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a {
  height: 76px;
  padding: 0px 0px !important;
}

.complexes_body_main .content {
  margin-top: 0px !important;
}

.complexes_body_main .content .video_wrap_header {
  padding-bottom: 0px !important;
}

.complexes_body_main .sidebar .accordion .card .card-body a.selected {
  background-color: rgba(0, 0, 0, 0.04);
}

.complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a p {
  margin-top: 0px !important;
  padding-top: 5px;
}

.complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a {
  height: 65px !important;
}

/*.complexes_body_main .content .table_wrap_body table {
  border: 2px solid #cccccc;
}
.complexes_body_main .content .table_wrap_body table thead .main_table_header {
  background-color: #2646aa;
}
.complexes_body_main .content .table_wrap_body table thead .main_table_header td {
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  font-family: "Myriad Pro - Semibold";
}
.complexes_body_main .content .table_wrap_body table thead .sub_table_header {
  background-color: #4875aa;
}
.complexes_body_main .content .table_wrap_body table thead .sub_table_header td {
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  font-family: "Myriad Pro - Semibold";
}
.complexes_body_main .content .table_wrap_body table tbody tr td {
  color: #474747;
  font-family: "Gotham Pro";
  font-size: 16px;
  padding-left: 40px;
  padding-right: 60px;
  vertical-align: middle;
  font-family: "GothaProReg";
}
.complexes_body_main .content .table_wrap_body table tbody tr td:first-child {
  width: 50%;
}
.complexes_body_main .content .table_wrap_body table tbody tr .big_cell {
  background-color: #ffffff;
}
.complexes_body_main .content .table_wrap_body table tbody .table_footer {
  background-color: #cccccc;
}
.complexes_body_main .content .table_wrap_body table tbody .table_footer td {
  border: 1px solid #cccccc;
}*/

.complexes_body_main .content .diagram_wrap {
  margin-top: 80px;
}

.complexes_body_main .content .diagram_wrap_header {
  margin-bottom: 40px;
}

.complexes_body_main .content .diagram_wrap_header h2 {
  color: #224676;
  font-family: "Bandera Pro";
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}

.complexes_body_main .content .diagram_wrap_header h2::after {
  display: block;
  content: "";
  height: 4px;
  background-color: #224676;
  width: 58px;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.complexes_body_main .content .diagram_wrap_body {
  margin-top: 80px;
}

.complexes_body_main .content .diagram_wrap_body .diagrams {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.complexes_body_main .content .diagram_wrap_body .diagrams .diagram img {
  width: 100%;
}

.complexes_body_main .content .photo_wrap {
  margin-top: 80px;
  margin-bottom: 100px;
}

.complexes_body_main .content .photo_wrap_header {
  margin-bottom: 40px;
}

.complexes_body_main .content .photo_wrap_header h2 {
  color: #224676;
  font-family: "Bandera Pro";
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}

.complexes_body_main .content .photo_wrap_body .photo img {
  width: 100%;
}

.complexes_body_main .content .photo_wrap_body .info {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.complexes_body_main .content .photo_wrap_body .info button {
  text-decoration: none;
  border-radius: 0;
  width: 30%;
  height: 60px;
  background-color: #2861aa;
  -webkit-box-shadow: 3px 6px 10px 1px rgba(0, 0, 0, 0.27);
  box-shadow: 3px 6px 10px 1px rgba(0, 0, 0, 0.27);
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  font-size: 24px;
  font-weight: bold;
  font-family: "Bandera Pro";
  letter-spacing: 2.06px;
  line-height: 20.69px;
  text-transform: uppercase;
}

/*.video_wrap_header {
    background-color: #fff;
  }
    .video_wrap_header h1{
      position: fixed;
      top: 40px;

      background-color: #fff;
      padding: 20px 310px;
      padding-top: 50px;
    }*/

@media screen and (max-width: 1650px) {
  .complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a {
    padding: 10px 5px !important;
  }
  .complexes_body_top {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .complexes_body_top .header_block h1 {
    font-size: 22px;
  }
  .complexes_body_main {
    padding-right: 65px;
  }
  .complexes_body_main .sidebar .accordion .card .card-header h5 button {
    font-size: 14px;
  }
  .complexes_body_main .sidebar .accordion .card .card-body a h6 {
    font-size: 12px;
  }
  .iframe_wrap iframe {
    height: 340px;
  }
  .complexes_body_main .content .products_wrap_header {
    margin-bottom: 15px;
  }
  .complexes_body_main .content .products_wrap_header h2 {
    font-size: 20px;
  }
  .complexes_body_main .content .products_wrap_body {
    margin-bottom: 40px;
  }
  .complexes_body_main .content .products_wrap_body .nav-tabs a.nav-item {
    padding: 15px 25px;
  }
  .complexes_body_main .content .products_wrap_body .nav-tabs a.nav-item h3 {
    font-size: 18px;
  }
  .complexes_body_main .content .products_wrap_body .content_container .tab-content .tab-pane h3 {
    font-size: 20px;
  }
  .complexes_body_main .content .products_wrap_body .content_container .tab-content .tab-pane .current_tab_content p {
    font-size: 16px;
  }
  .complexes_body_main .content .table_wrap {
    margin-top: 40px;
  }
  .complexes_body_main .content .table_wrap_header h2 {
    font-size: 20px;
  }
  /*.complexes_body_main .content .table_wrap_body table thead .main_table_header td {
    font-size: 20px;
  }
  .complexes_body_main .content .table_wrap_body table thead .sub_table_header td {
    font-size: 20px;
  }
  .complexes_body_main .content .table_wrap_body table tbody tr td {
    padding: 8px 40px 8px 20px;
    font-size: 14px;
  }
  .complexes_body_main .content .table_wrap_body table tbody tr .big_cell {
    width: 25%;
  }*/
  .complexes_body_main .content .diagram_wrap {
    margin-top: 40px;
  }
  .complexes_body_main .content .diagram_wrap_header h2 {
    font-size: 20px;
  }
  .complexes_body_main .content .diagram_wrap_body {
    margin-top: 40px;
  }
  .complexes_body_main .content .photo_wrap {
    margin-top: 40px;
    margin-bottom: 50px;
  }
  .complexes_body_main .content .photo_wrap_header h2 {
    font-size: 20px;
  }
  .complexes_body_main .content .photo_wrap_body .info button {
    font-size: 16px;
  }
  /*.video_wrap_header {
    background-color: #fff;
  }
    .video_wrap_header h1{
      position: fixed;
      top: 40px;

      background-color: #fff;
      padding: 20px 115px;
      padding-top: 50px;
    
    }*/
  .complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a {
    height: 100px;
  }
  .complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a p {
    margin-top: 9px;
    margin-bottom: 2px;
    font-size: 13px;
    line-height: 14px;
  }
  .content .products_wrap_body .tabs_container .nav-tabs .show h3 {
    margin-bottom: 0px;
    line-height: 10px;
    font-size: 16px;
  }
  .complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a h3 {
    margin-bottom: 0px;
    line-height: 10px;
    font-size: 17px;
    margin-top: 7px;
  }
  .complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a {
    padding: 0px 0px;
    padding-top: 5px;
  }
  .complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a h3::after {
    top: -6px;
    position: relative;
    height: 2px;
  }
  .video_wrap_header {}
}

.complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a {
  padding: 10px 30px;
}

@media screen and (max-width: 1100px) {
  .complexes_body_main .content .video_wrap iframe {
    height: 300px;
  }
  .complexes_body_main .content .photo_wrap .info button {
    font-size: 12px;
  }
}

@media screen and (max-width: 990px) {
  .complexes_body_main {
    padding-right: 0;
  }
}

@media screen and (max-width: 760px) {
  .unit-space-logo {
    width: 90px;
  }
  .complexes_body_main .content {
    padding: 0 10px;
  }
  .complexes_body_main .content .photo_wrap_body .photo .info button {
    width: 35%;
  }
  .complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a {
    height: 125px;
  }
}

@media screen and (max-width: 580px) {
  .complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a {
    width: 49%;
  }
  /* .complexes_body .complexes_body_main .table_wrap_body .table tbody tr td {
    padding: 8px 20px 8px 10px;
  }*/
  .iframe_wrap iframe {
    height: 320px;
    width: 90%;
  }
  .complexes_body .complexes_body_main .photo_wrap_body .info button {
    width: 40%;
  }
  /*.complexes_body .complexes_body_main .table_wrap_body .table tbody tr td {
    padding: 8px 20px 8px 10px;
  }*/
  .complexes_body .complexes_body_main .diagram_wrap_body .diagrams {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .complexes_body .complexes_body_main .diagram_wrap_body .diagrams .diagram {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 500px) {
  .complexes_body_main .content .photo_wrap_body .photo .info button {
    width: 50%;
  }
  .complexes_body_main .content .products_wrap_body .tabs_container .nav-tabs a {
    width: 99%;
  }
}

@media screen and (max-width: 392px) {
  .complexes_body_main .content .photo_wrap_body .photo .info button {
    width: 60%;
  }
  .complexes_body_main .content .video_wrap {
    margin-bottom: 40px;
  }
  .complexes_body_main .content .video_wrap_header h1 {
    font-size: 22px;
  }
  .iframe_wrap iframe {
    height: 200px;
    width: 90%;
  }
}

.article_body_top {
  margin-top: 20px;
  margin-left: 75px;
}

.article_body_top .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.article_body_top .banner {
  background: url("../img/articles/banner.png");
  height: 220px;
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article_body_top .banner h1 {
  font-family: "PF Handbook Pro";
  color: #ffffff;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 2.7px;
}

.article_body_content {
  margin: 80px 100px;
}

.article_body_content_top_text {
  color: #6c6d6e;
  font-family: "PF Handbook Pro";
  font-size: 32px;
  line-height: 36px;
}

.article_body_content_top_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  color: #1c418d;
  font-family: "PF Handbook Pro";
  font-size: 24px;
}

.article_body_content_image {
  margin-top: 70px;
}

.article_body_content_image img {
  width: 100%;
  height: 100%;
}

.article_body_content_main {
  margin-top: 70px;
  padding-bottom: 10px;
}

.article_body_content_main h5 {
  color: #404040;
  font-family: "PF Handbook Pro";
  font-size: 24px;
  line-height: 25.61px;
}

.article_body_content_main p {
  margin-top: 40px;
  width: 100%;
  color: #868787;
  font-family: "PF Handbook Pro";
  font-size: 23px;
  line-height: 25.61px;
}

.article_body_content_main blockquote p {
  color: #404040;
  font-family: "PF Handbook Pro";
  padding: 20px 0 20px 10px;
  border-left: 3px solid #40719b;
}

.article_body_content_recomendations {
  margin-top: 70px;
}

.article_body_content_recomendations_top {
  margin-bottom: 50px;
}

.article_body_content_recomendations_top h3 {
  color: #082762;
  font-family: "Bandera Pro";
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}

.article_body_content_recomendations_top h3::after {
  display: block;
  content: "";
  width: 60px;
  height: 3px;
  background-color: #082762;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
}

.article_body_content_recomendations_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.article_body_content_recomendations_body .recomendation {
  width: 24%;
}

.article_body_content_recomendations_body .recomendation img {
  width: 100%;
}

.article_body_content_recomendations_body .recomendation .small_date {
  margin-top: 10px;
  color: #444444;
  font-family: "Bandera Pro";
  font-size: 15px;
}

.article_body_content_recomendations_body .recomendation a {
  text-decoration: none;
}

.article_body_content_recomendations_body .recomendation a h5 {
  color: #323334;
  font-family: "PF Handbook Pro";
  font-size: 28px;
  line-height: 37.17px;
}

.article_body_content_recomendations_body .recomendation a p {
  color: #868787;
  font-family: "PF Handbook Pro";
  font-size: 19px;
}

.article_body_content_recomendations_body .recomendation a:hover h5, .article_body_content_recomendations_body .recomendation a:hover p {
  color: #215699;
}

@media screen and (max-width: 1650px) {
  .article_body_top {
    margin-left: 25px;
    margin-top: 20px;
  }
  .article_body_top .banner {
    height: 160px;
  }
  .article_body_top .banner h1 {
    font-size: 28px;
  }
  .article_body_content {
    margin: 40px 60px;
  }
  .article_body_content_top_text {
    font-size: 28px;
    line-height: 30px;
  }
  .article_body_content_top_date {
    font-size: 20px;
  }
  .article_body_content_image {
    margin-top: 50px;
  }
  .article_body_content_main {
    margin-top: 40px;
  }
  .article_body_content_main h5 {
    font-size: 20px;
  }
  .article_body_content_main p {
    margin-top: 30px;
    font-size: 18px;
  }
  .article_body_content_recomendations {
    margin-top: 40px;
  }
  .article_body_content_recomendations_top {
    margin-bottom: 35px;
  }
  .article_body_content_recomendations_top h3 {
    font-size: 20px;
  }
  .article_body_content_recomendations_body .recomendation .small_date {
    font-size: 12px;
  }
  .article_body_content_recomendations_body .recomendation a h5 {
    font-size: 24px;
  }
  .article_body_content_recomendations_body .recomendation a p {
    font-size: 16px;
  }
}

@media screen and (max-width: 760px) {
  .article_body {
    padding: 0;
  }
  .article_body_top {
    margin: 1.5rem 0 0 0;
  }
  .article_body_top .header_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 0;
  }
  .article_body_top .header_block .banner {
    width: 85%;
    padding-left: 20px;
  }
  .article_body_content {
    margin: 20px 15px;
  }
  .article_body_content_recomendations_body .recomendation .small_date {
    font-size: 10px;
  }
  .article_body_content_recomendations_body .recomendation a h5 {
    font-size: 20px;
    line-height: 25px;
  }
  .article_body_content_recomendations_body .recomendation a p {
    font-size: 14px;
  }
}

@media screen and (max-width: 580px) {
  .article_body_top .logo img {
    width: 146px;
    height: 96px;
  }
  .article_body_content_top_text {
    font-size: 22px;
  }
  .article_body_content_top_text p {
    font-size: 22px;
  }
  .article_body_content_top_date p {
    text-align: center;
  }
  .article_body_content_recomendations_body {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .article_body_content_recomendations_body .recomendation {
    width: 49%;
  }
}

@media screen and (max-width: 392px) {
  .article_body_top .header_block .banner {
    width: 75%;
  }
}

@media screen and (max-width: 320px) {
  .article_body_top .header_block .banner {
    height: 100px;
    width: 65%;
  }
  .article_body_top .header_block .banner h1 {
    font-size: 22px;
  }
}

.contacts_body_top {
  margin-left: 75px;
  padding-top: 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
  z-index: 15;
  background: #fff;
}

.contacts_body_top .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.contacts_body_top .banner {
  background: url("../img/articles/banner.png");
  height: 220px;
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contacts_body_top .banner h1 {
  font-family: "PF Handbook Pro";
  color: #ffffff;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 2.7px;
}

.contacts_body_content {
  margin: 80px 100px;
}

.contacts_body_content .contact_info {
  padding-right: 30px;
}

.contacts_body_content .contact_info::before {
  display: block;
  content: "";
  width: 60px;
  height: 3px;
  background-color: #082762;
}

.contacts_body_content .contact_info_inform {
  margin-top: 30px;
  color: #082762;
  opacity: 0.9;
  font-size: 18px;
  font-family: "PF Handbook Pro";
  margin-bottom: 40px;
}

.contacts_body_content .contact_info_data a {
  color: inherit;
  text-decoration: none;
}

.contacts_body_content .contact_info_data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 75%;
  color: #082762;
  opacity: 0.9;
  font-size: 18px;
  font-family: "PF Handbook Pro";
  margin-bottom: 10px;
}

.contacts_body_content .contact_info_data .fa-phone {
  -webkit-transform: rotate(100deg);
  transform: rotate(100deg);
}

.contacts_body_content .contact_info_data span {
  margin-right: 20px;
}

.contacts_body_content .contact_map_header {
  margin-bottom: 40px;
}

.contacts_body_content .contact_map_header h2 {
  color: #152c5a;
  font-family: "Bandera Pro";
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  height: 100%;
}

.contacts_body_content .contact_map_header h2::after {
  width: 60px;
  display: block;
  content: "";
  height: 3px;
  background-color: #152c5a;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
}

.contacts_body_content .contact_map_wrap #map {
  width: 100%;
  height: 400px;
}

@media screen and (max-width: 1650px) {
  .contacts_body_top {
    margin-left: 25px;
  }
  .contacts_body_top .banner {
    height: 160px;
  }
  .contacts_body_top .banner h1 {
    font-size: 28px;
  }
  .contacts_body_content {
    margin: 40px 60px;
  }
  .contacts_body_content .contact_info {
    padding-right: 20px;
  }
  .contacts_body_content .contact_info_inform {
    margin-top: 20px;
    font-size: 16px;
  }
  .contacts_body_content .contact_info_data {
    font-size: 16px;
    width: 100%;
  }
}

.st {
  position: -webkit-sticky;
  position: sticky;
  top: 35px;
  z-index: 800;
  background: #fff;
  padding-top: 10px;
}

@media screen and (max-width: 760px) {
  .contacts_body {
    padding: 0;
  }
  .contacts_body_top {
    margin: 1.5rem 0 0 0;
  }
  .contacts_body_top .header_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 0;
  }
  .contacts_body_top .header_block .banner {
    width: 85%;
    padding-left: 20px;
  }
  .contacts_body_content {
    margin: 20px 15px;
  }
}

@media screen and (max-width: 580px) {
  .contacts_body_top .header_block .banner {
    width: 85%;
  }
  .contacts_body_top .logo img {
    width: 146px;
    height: 96px;
  }
}

@media screen and (max-width: 392px) {
  .contacts_body_top .header_block .banner {
    width: 75%;
  }
}

@media screen and (max-width: 320px) {
  .contacts_body_top .header_block .banner {
    height: 100px;
    width: 65%;
  }
  .contacts_body_top .header_block .banner h1 {
    font-size: 22px;
  }
}

.gallery_body_top {
  margin-top: 20px;
  margin-left: 75px;
}

.gallery_body_top .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.gallery_body_top .banner {
  background: url("../img/articles/banner.png");
  height: 220px;
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gallery_body_top .banner h1 {
  font-family: "PF Handbook Pro";
  color: #ffffff;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 2.7px;
}

.gallery_body_content {
  margin: 80px 100px;
  margin-top: 20px;
}

.gallery_body_content .categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px solid rgba(8, 39, 98, 0.07);
  /* position: sticky;
  top: 40px;*/
  /*  z-index: 800;*/
}

.gallery_body_content .categories button {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background-color: #143981;
  color: #FFFFFF;
  padding: 12px 32px;
}

.gallery_body_content .categories button:first-child {
  border-radius: 6px 0 0 6px;
}

.gallery_body_content .categories button:last-child {
  border-radius: 0 6px 6px 0;
}

.gallery_body_content .categories button:hover {
  background-color: #082762;
}

.gallery_body_content .gallery {
  margin: 50px 9px;
}

.gallery_body_content .gallery .row, .gallery_body_content .gallery .col-12, .gallery_body_content .gallery .col-lg-6, .gallery_body_content .gallery .col-lg-3 {
  padding: 2px;
}

.gallery_body_content .gallery .gallery_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gallery_body_content .gallery .gallery_row .photo {
  position: relative;
  height: 100%;
  padding: 2px;
}

.gallery_body_content .gallery .gallery_row .photo img {
  height: 100%;
}

.gallery_body_content .gallery .gallery_row .photo .hover_block {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
}

.gallery_body_content .gallery .gallery_row .photo .hover_block h3 {
  color: #1f1f1f;
  font-family: "PF Handbook Pro";
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 55px;
  text-align: center;
}

.gallery_body_content .gallery .gallery_row .photo .hover_block h3:after {
  display: block;
  content: "";
  height: 3px;
  width: 90px;
  background-color: #1f1f1f;
  -webkit-transform: translateY(17px);
  transform: translateY(17px);
  margin-left: calc(50% - 45px);
}

.gallery_body_content .gallery .gallery_row .photo .hover_block p {
  color: #404040;
  font-family: "PF Handbook Pro";
  font-size: 24px;
  padding: 0 10%;
}

.gallery_body_content .gallery .gallery_row .photo:hover .hover_block {
  opacity: 0.83;
}

.gallery_body_content .gallery .gallery_row .big_photo img {
  height: 100%;
}

.gallery_body_content .gallery .gallery_row .big_photo img h3 {
  color: #1f1f1f;
  font-family: "PF Handbook Pro";
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.gallery_body_content .gallery .gallery_row .big_photo img h3::after {
  display: block;
  content: "";
  width: 90px;
  height: 2px;
  background-color: #1f1f1f;
  margin-left: calc(50% - 45px);
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
}

.gallery_body_content .gallery .gallery_row .big_photo img p {
  color: #404040;
  margin-top: 50px;
  font-family: "PF Handbook Pro";
  font-size: 24px;
  width: 70%;
}

.gallery_body_content .gallery .gallery_row .dbl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.gallery_body_content .gallery .gallery_row .dbl .photo .hover_block h3 {
  font-size: 22px;
  margin-bottom: 30px;
}

.gallery_body_content .gallery .gallery_row .dbl .photo .hover_block p {
  font-size: 18px;
}

.gallery_body_content .gallery .gallery_row .sngl .photo .hover_block h3 {
  font-size: 24px;
  margin-bottom: 30px;
}

.gallery_body_content .gallery .gallery_row .sngl .photo .hover_block p {
  font-size: 20px;
}

.gallery_body_content .gallery .gallery_row img {
  width: 100%;
}

.gallery_body_content .bottom_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 80px;
  margin-top: 60px;
}

.gallery_body_content .bottom_nav .counts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.gallery_body_content .bottom_nav .counts a:hover {
  text-decoration: none;
}

.gallery_body_content .bottom_nav .counts button.active {
  cursor: initial;
}

.gallery_body_content .bottom_nav .counts button {
  height: 46px;
  border: 1px solid #a8a8a8;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 6px;
  color: #a8a8a8;
  font-size: 20px;
}

.gallery_body_content .bottom_nav .counts .active {
  background-color: #15429b;
  color: #FFFFFF;
}

.gallery_body_content .bottom_nav .counts .dots {
  color: #6e6e6e;
  font-family: "Open Sans";
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 3%;
}

.gallery_body_content .bottom_nav .arrow a {
  text-decoration: none;
}

.gallery_body_content .bottom_nav .arrow button {
  width: 52px;
  height: 46px;
  background-color: #1c418d;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 15px;
  border-radius: 0;
  font-size: 20px;
}

.gallery_body_content .bottom_nav .arrow .disabled {
  background-color: #a9a9a9;
}

.viewbox-container .viewbox-button-close {
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 1900px) {
  .index_body .logo{
    margin-top: 55px;
  }
}
@media screen and (max-width: 1650px) {
  .gallery_body_top {
    margin-left: 25px;
  }
  .gallery_body_top .banner {
    height: 160px;
  }
  .gallery_body_top .banner h1 {
    font-size: 28px;
  }
  .gallery_body_content {
    margin: 10px 60px;
  }
  .gallery_body_content .gallery {
    margin-top: 30px;
  }
  .gallery_body_content .gallery .gallery_row .hover_block h3 {
    font-size: 22px;
  }
  .gallery_body_content .gallery .gallery_row .hover_block p {
    font-size: 18px;
  }
  .gallery_body_content .gallery .gallery_row .sngl .photo .hover_block h3 {
    font-size: 18px;
  }
  .gallery_body_content .gallery .gallery_row .sngl .photo .hover_block p {
    font-size: 14px;
  }
  .gallery_body_content .gallery .gallery_row .dbl .photo .hover_block h3 {
    font-size: 16px;
  }
  .gallery_body_content .gallery .gallery_row .dbl .photo .hover_block p {
    font-size: 12px;
  }
  .gallery_body_content .bottom_nav {
    margin-bottom: 40px;
    margin-top: 30px;
  }
  .gallery_body_content .bottom_nav .counts button {
    height: 36px;
    font-size: 16px;
  }
  .gallery_body_content .bottom_nav .counts .dots {
    font-size: 16px;
  }
  .gallery_body_content .bottom_nav .arrow button {
    height: 36px;
    width: 42px;
    font-size: 18px;
  }
}

@media screen and (max-width: 1100px) {
  .gallery_body_content {
    margin: 20px 5px;
  }
  .gallery_body_content .gallery .gallery_row .photo .hover_block h3 {
    font-size: 24px;
  }
  .gallery_body_content .gallery .gallery_row .photo .hover_block p {
    font-size: 18px;
  }
  .gallery_body_content .gallery .gallery_row .dbl .photo .hover_block h3 {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .gallery_body_content .gallery .gallery_row .dbl .photo .hover_block h3::after {
    height: 2px;
    width: 60px;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    margin-left: calc(50% - 30px);
  }
  .gallery_body_content .gallery .gallery_row .dbl .photo .hover_block p {
    font-size: 10px;
  }
  .gallery_body_content .gallery .gallery_row .sngl .photo .hover_block h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .gallery_body_content .gallery .gallery_row .sngl .photo .hover_block h3::after {
    height: 2px;
    width: 60px;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    margin-left: calc(50% - 30px);
  }
  .gallery_body_content .gallery .gallery_row .sngl .photo .hover_block p {
    font-size: 12px;
  }
}

@media screen and (max-width: 990px) {
  .gallery_body_content .gallery .gallery_row .photo .hover_block h3 {
    font-size: 28px;
  }
  .gallery_body_content .gallery .gallery_row .photo .hover_block p {
    font-size: 22px;
  }
  .gallery_body_content .gallery .gallery_row .dbl .photo .hover_block h3 {
    font-size: 20px;
  }
  .gallery_body_content .gallery .gallery_row .dbl .photo .hover_block p {
    font-size: 16px;
  }
  .gallery_body_content .gallery .gallery_row .sngl .photo .hover_block h3 {
    font-size: 26px;
  }
  .gallery_body_content .gallery .gallery_row .sngl .photo .hover_block p {
    font-size: 20px;
  }
}

@media screen and (max-width: 760px) {
  .gallery_body {
    padding: 0;
  }
  .gallery_body_top {
    margin: 1.5rem 0 0 0;
  }
  .gallery_body_top .header_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 0;
  }
  .gallery_body_top .header_block .banner {
    width: 85%;
    padding-left: 20px;
  }
}

@media screen and (max-width: 580px) {
  .gallery_body_top .header_block .banner {
    width: 85%;
  }
  .gallery_body_top .logo img {
    width: 146px;
    height: 96px;
  }
  .gallery_body_content .categories button {
    padding: 6px 16px;
  }
  .gallery_body_content .gallery .gallery_row .photo .hover_block {
    display: none;
    opacity: 0;
  }
  .gallery_body_content .gallery .gallery_row:hover {
    opacity: 0;
  }
}

@media screen and (max-width: 392px) {
  .gallery_body_top .header_block .banner {
    width: 75%;
  }
  .gallery_body_content .categories {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .gallery_body_content .categories button {
    width: 40%;
  }
  .gallery_body_content .categories button:first-child, .gallery_body_content .categories button:last-child {
    border-radius: 0;
  }
  .gallery_body_content .gallery .gallery_row {
    margin: 0;
  }
  .gallery_body_content .bottom_nav {
    margin-top: 15px;
  }
  .gallery_body_content .bottom_nav .arrow button {
    height: 30px;
    width: 35px;
    margin: 10px;
  }
}

@media screen and (max-width: 320px) {
  .gallery_body_top .header_block .banner {
    height: 100px;
    width: 65%;
  }
  .gallery_body_top .header_block .banner h1 {
    font-size: 22px;
  }
  .gallery_body_content .categories button.btn {
    padding: 5px 12px;
    font-size: 0.8rem;
  }
  .gallery_body_content .bottom_nav .counts .btn {
    height: 30px;
    font-size: 12px;
    margin: 3px;
  }
  .gallery_body_content .bottom_nav .arrow button {
    height: 30px;
    width: 30px;
    margin: 10px;
    font-size: 14px;
  }
}

@media (max-width: 1650px) {
  .navbar .header_info p {
    font-size: 14px;
    margin-left: 8px;
  }
  .navbar .navbar-nav li {
    max-height: 42px;
  }
  .navbar .navbar-nav li a {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.53px;
  }
  .navbar .navbar-nav .dropdown .dropdown-menu {
    min-width: 8rem;
  }
  .navbar .navbar-nav .dropdown a {
    padding-top: 6px;
    font-size: 12px;
  }
  .index_body .logo img {
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  .index_body .about {
    height: 55%;
    padding-left: 25px;
  }
  .index_body .about h2 {
    font-size: 38px;
  }
  .index_body .about .main_text {
    font-size: 16px;
  }
  .index_body .about .sub_text {
    font-size: 12px;
  }
  .index_body .bottom .toNew a {
    font-size: 18px;
  }
  .index_body .slider_block .sb-slider {
    width: 80%;
  }
  .index_body .slider_block .sb-slider .sb-description h3 {
    font-size: 24px;
  }
  .index_body .slider_block .sb-slider .sb-description p {
    font-size: 18px;
  }
  .index_body .slider_block .sb-slider .sb-description button {
    font-size: 14px;
  }
  .index_body .slider_block .nav-arrows a {
    width: 42px;
    height: 42px;
    font-size: 16px;
    top: 50%;
  }
  .modal .modal-content {
    padding-top: 15px;
  }
  .modal .modal-content .close {
    right: -9%;
  }
  .modal .modal-content .modal-header {
    padding: 0;
    margin-bottom: 1rem;
  }
  .modal .modal-content .modal-header h3 {
    font-size: 24px;
  }
  .modal .modal-content .modal-body {
    width: 65%;
    margin-top: 15px;
  }
  .modal .modal-content .modal-body .input-group {
    margin-bottom: 1rem;
  }
  .modal .modal-content .modal-body .form-input {
    font-size: 18px;
  }
  .modal .modal-content .modal-body .userCommentLabel p {
    font-size: 18px;
  }
  .modal .modal-content .modal-body textarea {
    margin-bottom: 20px;
  }
  .modal .modal-content .modal-body button {
    height: 45px;
    display: block;
    margin: 30px auto;
    font-size: 18px;
    max-width: 190px;
  }
  .modal .modal-content .modal-footer {
    width: 80%;
    padding: 0;
  }
  .modal .modal-content .modal-footer p {
    font-size: 12px;
  }
  .complexes_body_main .content .products_wrap_body .tabs_container {
    top: 5% !important;
  }
  .complexes_body_main .content .video_wrap {
    position: -webkit-sticky;
    position: sticky;
    top: 4%;
    background: #fff;
  }
  .complexes_body_main .content .video_wrap h1 {
    padding-top: 30px;
    padding-bottom: 15px;
  }
  .complexes_body_main .content .products_wrap_body .tabs_container {
    position: -webkit-sticky;
    position: sticky;
    top: 9% !important;
  }
}

@media (max-width: 1200px) {
  .index_body_top .logo {
    margin-bottom: 25px;
  }
  .index_body_content .about_info h2 {
    font-size: 32px;
  }
  .index_body_content .about_info .main_text p {
    font-size: 14px;
  }
  .index_body_content .about_info .sub_text p {
    font-size: 10px;
  }
  .index_body_content .slider_block {
    margin-top: 0;
  }
  .index_body_content .bottom {
    margin-top: 40px;
  }
}

.complexes_body_main .content .products_wrap_body .tabs_container {
  /* top: 12% !important;*/
}

.complexes_body_main .content .video_wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 42px;
  background: #fff;
  padding-top: 10px;
  z-index: 100;
}

.complexes_body_main .content .video_wrap h1 {
  padding-top: 20px;
}

.complexes_body_main .content .products_wrap_body .tabs_container {
  position: -webkit-sticky;
  position: sticky;
  top: 127px !important;
  background: #fff;
  z-index: 100;
}

@media(max-width: 990px) {
  .index_body {
    padding-left: 20px;
  }
  .footer {
    padding: 0 20px;
  }
  .footer .footer_wrap .license {
    font-size: 14px;
  }
  .footer .footer_wrap .devBy a {
    font-size: 14px;
  }
  .modal .modal-content .close {
    right: -12%;
  }
}

@media screen and (max-width: 760px) {
  .index_body .slider_block .sb-slider {
    width: 90%;
  }
  .index_body .slider_block .sb-slider .sb-description {
    width: 60%;
  }
  .index_body .slider_block .sb-slider .sb-description h3 {
    font-size: 20px;
  }
  .index_body .slider_block .sb-slider .sb-description p {
    font-size: 16px;
  }
  .index_body .slider_block .sb-slider .sb-description button {
    font-size: 12px;
  }
  .index_body .slider_block .nav-arrows a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .modal .modal-dialog {
    max-width: 60%;
  }
}

@media screen and (max-width: 580px) {
  .index_body .slider_block .sb-slider {
    width: 90%;
  }
  .index_body .slider_block .sb-slider .sb-description {
    width: 65%;
  }
  .index_body .slider_block .sb-slider .sb-description h3 {
    font-size: 18px;
  }
  .index_body .slider_block .sb-slider .sb-description p {
    font-size: 14px;
  }
  .index_body .slider_block .sb-slider .sb-description button {
    font-size: 10px;
  }
  .index_body .slider_block .nav-arrows a {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  .modal .modal-content {
    left: 15%;
  }
  .modal .modal-content .modal-header h3 {
    font-size: 24px;
  }
  .modal .modal-content .modal-body .input-group {
    font-size: 20px;
  }
  .modal .modal-content .modal-body input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .modal .modal-content .modal-body input:-moz-placeholder {
    font-size: 14px;
  }
  .modal .modal-content .modal-body textarea {
    margin-bottom: 35px;
  }
  .modal .modal-content .modal-body textarea::-moz-placeholder {
    font-size: 14px;
  }
  .modal .modal-content .modal-body textarea::-webkit-input-placeholder {
    font-size: 14px;
  }
  .modal .modal-content .modal-body button {
    font-size: 18px;
  }
}

@media screen and (max-width: 520px) {
  .modal .modal-dialog {
    max-width: 75%;
  }
  .modal .modal-dialog .modal-content .close img {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  .modal .modal-content .modal-body button {
    height: 40px;
    font-size: 14px;
    max-width: 150px;
    padding: 3px;
  }
}

@media screen and (max-width: 392px) {
  .navbar {
    padding: 0 12px;
  }
  .navbar .header_info_phone {
    margin-right: 13px;
  }
  .navbar .header_info_phone img {
    width: 15px;
    height: 15px;
  }
  .navbar .header_info_phone p {
    font-size: 12px;
  }
  .navbar .header_info_email img {
    width: 15px;
    height: 15px;
  }
  .navbar .header_info_email p {
    font-size: 12px;
  }
  .navbar .navbar-toggler .wrap .navbar-toggler-icon {
    height: 2px;
    width: 20px;
    margin-bottom: 4px;
  }
  .main_page_wrap .index_body {
    padding: 15px 0 10px 0;
  }
  .main_page_wrap .index_body_top {
    margin: 0;
  }
  .main_page_wrap .index_body_top .logo {
    margin: 0.5rem 0 1rem 0;
  }
  .main_page_wrap .index_body_content {
    margin: 0;
  }
  .main_page_wrap .index_body_content .about {
    padding-left: 5px;
  }
  .main_page_wrap .index_body_content .about .about_info h2 {
    font-size: 28px;
  }
  .main_page_wrap .index_body_content .about .about_info .main_text {
    font-size: 14px;
  }
  .main_page_wrap .index_body_content .about .about_info .sub_text {
    font-size: 10px;
  }
  .main_page_wrap .index_body_content .slider_block .sb-slider .sb-description {
    padding: 10px;
    width: 75%;
  }
  .main_page_wrap .index_body_content .slider_block .sb-slider .sb-description h3 {
    font-size: 16px;
  }
  .modal .modal-dialog {
    max-width: 85%;
  }
  .modal .modal-dialog .modal-content {
    left: 5%;
  }
  .modal .modal-dialog .modal-content .modal-header h3 {
    font-size: 18px;
  }
  .modal .modal-dialog .modal-content .modal-body .input-group {
    font-size: 12px;
  }
  .modal .modal-dialog .modal-content .modal-body .userCommentLabel p {
    font-size: 12px;
  }
  .modal .modal-dialog .modal-content .modal-body textarea {
    margin-bottom: 20px;
  }
  .modal .modal-dialog .modal-content .modal-body textarea::-moz-placeholder {
    font-size: 12px;
  }
  .modal .modal-dialog .modal-content .modal-body textarea::-webkit-input-placeholder {
    font-size: 12px;
  }
  .modal .modal-dialog .modal-content .modal-body button {
    font-size: 16px;
  }
}

@media screen and (max-width: 340px) {
  .navbar {
    padding: 0 6px;
  }
  .navbar .header_info .header_info_phone {
    margin-right: 8px;
  }
  .navbar .header_info .header_info_phone img {
    width: 12px;
    height: 12px;
  }
  .navbar .header_info .header_info_phone p {
    font-size: 12px;
  }
  .navbar .header_info .header_info_email img {
    width: 12px;
    height: 12px;
  }
  .navbar .header_info .header_info_email p {
    font-size: 12px;
  }
  .index_body .slider_block .nav-dots {
    bottom: -20%;
  }
}

/*.products_wrap {
  background: #fff;
}*/

/*.complexes_body_main .content .video_wrap_header {
  top: 5%;
  position: sticky;
  background: #fff;
}*/

.products_wrap {}

.gallery_body_content .categories {
  background: #fff;
}

.contacts_body_top .banner, .articles_body_top .banner, .gallery_body_top .banner {
  height: 120px
}

.contacts_body_top .logo, .articles_body_top .logo, .gallery_body_top .logo {
  height: 80%;
}

.main_page_wrap .logo img {
  height: 120px;
}

.iframe_wrap {
  background-color: rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

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

.cert_img {
  width: 100%;
  height: 100%;
}

.cert_container {
  height: 100%;
  text-align: center;
}

@media screen and (min-width:1600px) {
  .complexes_body_main .content .video_wrap_header {
    padding-bottom: 20px !important;
  }
  .complexes_body_main .content .products_wrap_body .tabs_container {
    top: 116px !important;
  }
}

/*.supsystic-tables-wrap {
  width: 100% !important;
}*/

/* #supsystic-table-11_97679 table.dataTable.cell-border tbody tr th:first-child, table.dataTable.cell-border tbody tr td:first-child {
  border-left: 0px solid #ddd !important;
}

#supsystic-table-11_97679 table.dataTable.cell-border tbody tr th:first-child, table.dataTable.cell-border tbody tr td:last-child {
  border-right: 0px solid #ddd !important;
} */

/* table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
  border-right: 5px solid #ddd !important; 
  border-top: 5px solid #ddd !important;
}

.border {
  border: 5px solid #dee2e6!important;
} */

table.dataTable thead th, table.dataTable thead td {
  border-bottom: none!important;
}

.complexes_body_main .content .products_wrap_body .tabs_container {
  margin-bottom: -12px !important;
}

/* .complexes_body_main .content .products_wrap_header {
  margin-bottom: 46px !important;
} */

.complexes_body_main {
  padding-right: 15px !important;
}

.ctu-ulitate-style-1-tabs{
  padding: 15px 20px 20px 20px !important;
}