

/* Start:/local/templates/projects/styles.css?175223391621916*/
/* ==========================================================================
      IMPORTS
/* ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
/* ==========================================================================
      /IMPORTS
/* ========================================================================== */


/* Nav menu
    * -------------------------------------------------- */
.menu {
  display: none;
  -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
  font-family: Raleway;
  font-size: 18px;
  color: #fff;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}
@media screen and (min-width: 768px) {
    .menu {
        display: flex;
        font-size: 20px;
    }
}
/*.menu:hover {
  background: #091c42;
}*/
.menu__item {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  /*margin-right: 40px;*/
  padding: 15px 0;
  /*line-height: 3em;*/
  /*line-height: 1.3em;*/
  text-align: center;
}
.menu__item:last-child {
  margin-right: 0;
}
.menu__link {
  display: block;
  width: 100%;
  font-weight: 600;
}
.submenu {
  position: relative;
  display: none;
  top: 100%;
  margin-top: 15px;
  padding: 0 20px;
  line-height: 1.4em;
  font-size: 16px;
  text-align: left;
  background: #091c42;
  border-top: 1px solid #fff;
  border-width: 3px;
}
@media screen and (min-width: 768px) {
    .submenu {
        position: absolute;
        margin-top: 0;
    }
}
.submenu__item {
  padding: 10px 0;
  border-bottom: 1px solid #646464;
}
.submenu__item:hover {
  color: #B0B0B0;
}
.submenu__link.active {
  color: #B0B0B0;
}
.submenu__item:last-child {
  border-bottom: none;
}
/*@media screen and (min-width: 768px) {*/
    .menu__item:hover .submenu {
        display: block;
    }
/*}*/


/*.menu {
  position: fixed;
  transform: translateY(-100%);
  transition: transform 0.2s;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: black;
  color: white;
  list-style: none;
  padding-top: 4rem;
}*/
/*.hamburger {
  position: fixed;
  z-index: 100;
  top: 1rem;
  right: 1rem;
  padding: 4px;
  border: black solid 1px;
  background: white;
  cursor: pointer;
}*/
.closeIcon {
  display: none;
}
/*.show-menu {
  transform: translateY(0);
}*/

.hamburger {
  display: none;
  width: 50px;
  height: 50px;
  position: absolute;
  padding: 15px;
  top: 0;
  right: 0;
  z-index: 500;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .hamburger {
    display: block;
    cursor: pointer;
  }
}
.icon-hamburger {
  position: relative;
  margin-top: 11px;
  margin-bottom: 7px;
}
.icon-hamburger,
.icon-hamburger:before,
.icon-hamburger:after {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: all ease .4s;
  transition: all ease .4s;
}
.icon-hamburger:before,
.icon-hamburger:after {
  position: absolute;
  content: "";
}
.icon-hamburger:before {
  top: -6px;
}
.icon-hamburger:after {
  top: 6px;
}
.hamburger.active .icon-hamburger {
  background-color: transparent;
}
.hamburger.active .icon-hamburger:before,
.hamburger.active .icon-hamburger:after {
  background-color: #ffffff;
}
.hamburger.active .icon-hamburger:before {
  -moz-transform: translateY(6px) rotate(45deg);
  -ms-transform: translateY(6px) rotate(45deg);
  -webkit-transform: translateY(6px) rotate(45deg);
  transform: translateY(6px) rotate(45deg);
}
.hamburger.active .icon-hamburger:after {
  -moz-transform: translateY(-6px) rotate(-45deg);
  -ms-transform: translateY(-6px) rotate(-45deg);
  -webkit-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
}
/* /Nav menu
    * -------------------------------------------------- */


/* Swiper slider
    * -------------------------------------------------- */
.swiper {
  width: 100%;
  height: 100vh;
  position: relative;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Затемнение */
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  color: #fff;
}

.slide-content h2 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 1.5rem;
  opacity: 0.8;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 25px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  width: 12px;
  height: 12px;
  transition: background 0.3s;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1.2rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

.slide-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
/* /Swiper slider
    * -------------------------------------------------- */

/* About section
    * -------------------------------------------------- */
.about {
  position: relative;
  width: 100%;
  /*min-height: 400px;*/
  font-family: Raleway;
  font-weight: 500;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: linear-gradient(180deg,rgba(6,8,14,.7) 37.96%,rgba(6,8,14,0) 100%);
  /*background-image: url('/local/templates/projects/../images/slider/slide-1.jpg');*/
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Затемнение */
}
.about__title {
  position: relative;
  z-index: 1;
  padding: 200px 10px 30px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .about__title {
    padding: 250px 30px 50px;
    font-size: 26px;
  }
}
.content {
  width: 100%;
  /*height: 70%;*/
  padding: 30px 10px;
}
@media (min-width: 768px) {
  .content {
    padding: 50px 30px;
  }
}
/* /About section
    * -------------------------------------------------- */


/* Image gallery
    * -------------------------------------------------- */
.fancybox__container {
  --fancybox-bg: rgba(24, 24, 27, 0.8) !important;
}

.image-list {
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: center;
            justify-content: center;
    margin: 0; /*20px 0 !important;*/
    padding: 0; /*15px !important;*/
    /*font-family: "Courier New", Courier, monospace;*/
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    color: black;
    list-style-type: none; /*square;*/
/*    list-style-position: outside;*/
    -webkit-box-sizing: inherit;
       -moz-box-sizing: inherit;
            box-sizing: inherit;
}
.image-list_orient_hor:not(.image-gallery_size_s),
.image-list_orient_vert:not(.image-gallery_size_s) {
    margin-top: 50px;
}
@media screen and (min-width: 768px) {
    .row .image-list_orient_hor,
    .row .image-list_orient_vert {
        margin-top: 19px;
    }
}
.image-list__item {
    width: 210px; /*270px; 300px;*/
    margin: 0 15px 30px;
    overflow: hidden;
/*    border: 1px solid #807659;*/
/*    border-radius: 15px;*/
    -webkit-box-sizing: inherit;
       -moz-box-sizing: inherit;
            box-sizing: inherit;
    /*-webkit-box-shadow: 3px 3px 8px 6px rgba(0, 0, 0, 0.2);
       -moz-box-shadow: 3px 3px 8px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 3px 3px rgba(0, 0, 0, 0.2);*/
}
.image-text .image-list__item {
    margin-bottom: 30px !important;
}
@media screen and (min-width: 768px) {
    .image-text .image-list__item {
        margin-bottom: 0 !important;
    }
}
.image-list_orient_hor .image-list__item {
    max-width: 300px;
    width: 100%;
    margin: 0 15px 25px;
}
.image-list__item-heading {
    padding: 10px 0;
/*    background: rgba(4,3,3,.68);*/
    color: #000;
/*    border-radius: 0px 0px 15px 15px;*/
    font-size: 14px;
    line-height: normal;
}
.image-list_orient_hor .image-list__item-heading {
    color: #000;
}
.image-list__link {
    position: relative;
    display: block;
    width: 100%;
/*    max-width: 300px;*/
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #d7c695;
    border-radius: 15px;
    color: black;
    /*font-family: "Courier New", Courier, monospace;*/
    font-size: 18px;
    text-decoration: none;
    -webkit-box-shadow: 3px 3px 8px 6px rgba(0, 0, 0, 0.2);
       -moz-box-shadow: 3px 3px 8px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 3px 3px rgba(0, 0, 0, 0.2);
}
.image-list_orient_hor .image-list__link {
    border: none;
    border-radius: 8px;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
}
@media screen and (min-width: 768px) {
    .image-list__link {
/*        width: 300px;*/
/*        max-width: none;*/
    }
}
.image-list__link:hover {
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    color: #fff !important;
}
.image-list__preview {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.image-list_orient_hor .image-list__preview {
    height: auto;
}
@media screen and (min-width: 540px) {
    .image-list__preview {
        height: 280px; /* 360px; 400px;*/
    }
    .image-list_orient_hor .image-list__preview {
        height: 170px;
    }
}
.image-list__overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 15px;
    overflow: hidden;
    background: rgba(4,3,3,.68);
    -webkit-transition: .5s ease;
         -o-transition: .5s ease;
            transition: .5s ease;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
.image-list__link:hover .image-list__overlay {
  opacity: 1;
}
.image-list__overlay::before {
  content: url('/images/yurevets800/icons/view-icon.svg');
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  width: 40px;
  height: auto;
/*  margin-bottom: 10px;*/
  vertical-align: middle;
}
.image-list__link:hover .image-list__overlay::before {
    opacity: 1;
    visibility: visible;
}
/*.image-gallery .image-list__overlay::before {
    content: url('/images/yurevets800/icons/view-icon.svg');
}*/
.image-gallery_size_s .image-list__item {
    margin: 0 2px 4px;
}
/* /Image gallery
    * -------------------------------------------------- */

/* Misc
    * -------------------------------------------------- */
.notes {
    margin: 30px 0 0;
    padding: 14px 0;
    font-size: 14px;
    border-top: 1px solid #b5b5b5;
}
.notes__intro {
    margin: 0 0 14px;
    font-weight: bold;
}
.notes-list {
    margin: 0;
    padding: 0;
}
.notes-list__item {
    margin: 0 0 5px;
}
/* /Misc
    * -------------------------------------------------- */


/* Spolier
    * -------------------------------------------------- */
    .spoiler {
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 8px;
    }
    .spoiler__body {
        display: none;
    }
    .spoiler.spoiler_opened .spoiler__body {
        display: block;
    }
    .spoiler__title {
        padding: 8px;
        font-size: 16px;
        line-height: 1.3;
        border-bottom: 1px solid #ccc;
        background: #F3F4F7;
        cursor: pointer;
    }
    @media screen and (min-width: 768px) {
        .spoiler__title {
            font-size: 18px;
        }
    }
    .spoiler__title::before {
        content: "";
        display: inline-block;
        width: 16px;
        height: 20px;
        background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tIFVwbG9hZGVkIHRvOiBTVkcgUmVwbywgd3d3LnN2Z3JlcG8uY29tLCBHZW5lcmF0b3I6IFNWRyBSZXBvIE1peGVyIFRvb2xzIC0tPg0KPHN2ZyB3aWR0aD0iODAwcHgiIGhlaWdodD0iODAwcHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik05IDZMMTUgMTJMOSAxOCIgc3Ryb2tlPSIjMDAwMDAwIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPg0KPC9zdmc+");
        background-size: 20px 20px;
        background-position: center;
        background-repeat: no-repeat;
        vertical-align: text-bottom;
        filter: invert(13%) sepia(18%) saturate(4273%) hue-rotate(194deg) brightness(85%) contrast(103%);
    }
    .spoiler.spoiler_opened .spoiler__title::before {
        content: "";
        display: inline-block;
        width: 16px;
        height: 20px;
        background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tIFVwbG9hZGVkIHRvOiBTVkcgUmVwbywgd3d3LnN2Z3JlcG8uY29tLCBHZW5lcmF0b3I6IFNWRyBSZXBvIE1peGVyIFRvb2xzIC0tPg0KPHN2ZyB3aWR0aD0iODAwcHgiIGhlaWdodD0iODAwcHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik02IDlMMTIgMTVMMTggOSIgc3Ryb2tlPSIjMDAwMDAwIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPg0KPC9zdmc+");
        background-size: 20px 20px;
        filter: invert(13%) sepia(18%) saturate(4273%) hue-rotate(194deg) brightness(85%) contrast(103%);
        vertical-align: text-bottom;
        background-repeat: no-repeat;
    }
    @media screen and (min-width: 768px) {
        .spoiler__title::before,
        .spoiler.spoiler_opened .spoiler__title::before {
            vertical-align: text-top;
        }
    }
/* /Spolier
    * -------------------------------------------------- */


/* Scroll to Top button
    * -------------------------------------------------- */
#scrollTopBtn {
    content:"";
    display: none;
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    /*padding: 10px 20px;*/
    background: url(/images/yurevets800/icons/arrow-up-circle-2.svg) center center no-repeat;
    /*background-color: #8daae6;*/
    background-size: cover;
    color: white;
    border: none;
    /*border-radius: 30px;*/
    cursor: pointer;
    filter: invert(44%) sepia(72%) saturate(247%) hue-rotate(154deg) brightness(94%) contrast(89%);
}
@media screen and (min-width: 768px) {
    #scrollTopBtn {
        right: 20px;
        bottom: 20px;
        width: 60px;
        height: 60px;
    }
}

/* /Scroll to Top button
    * -------------------------------------------------- */


/* Cookie notification
    * -------------------------------------------------- */
.cookie-notification {
    position: fixed;
    background-color: rgba(0, 0, 0, .8);
    bottom: 0;
    width: 100%;
    color: white;
    padding: 15px;
    z-index: 1;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
.cookie-notification_hidden_yes {
    display: none;
}
.cookie-notification__header {
    margin-bottom: 10px;
    font-size: 18px;
}
@media (min-width: 1280px) {
  .cookie-notification__header {
    font-size: 20px;
  }
}
.cookie-notification__wrapper {
  display: flex;
  align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (min-width: 768px) {
  .cookie-notification__wrapper {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.cookie-notification__body {
  margin-bottom: 10px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .cookie-notification__body {
    margin-bottom: 0;
    padding-right: 50px;
  }
}
@media (min-width: 1280px) {
  .cookie-notification__body {
    font-size: 16px;
  }
}
.cookie-notification__link {
  color: #ffe3d2;
  text-decoration: none;
}
.cookie-notification__link:hover {
  color: #ffe3d2;
  text-decoration: underline;
}
.cookie-notification__buttons {
  width: 100%;
}
@media (min-width: 768px) {
  .cookie-notification__buttons {
    width: auto;
  }
}
.cookie-notification__agreement {
  display: block !important;
  margin: 0 auto;
}
/* /Cookie notification
    * -------------------------------------------------- */

/* Icons
    * -------------------------------------------------- */
.icon {
  display: inline-block;
  overflow: hidden;
  width: 20px;
  height: 20px;
  vertical-align: text-top;
  background: url('/local/templates/projects/images/all-icons.png') 0 0 no-repeat;
}
@media screen and (min-resolution: 192dpi) {
  .icon {
    background-image: url(/local/templates/projects/images/all-icons@2x.png);
    background-size: 200px 300px;
  }
}
.icon-social-vk {
    width: 40px;
    height: 30px;
    background: url(/local/templates/projects/images/icon-social.png) -13px center no-repeat;
}
.icon-social-rutube {
  width: 50px;
  height: 25px;
  background: url(/local/templates/projects/images/rutube.svg) 8px center no-repeat;
}
.icon-social-tw {
    width: 30px;
    height: 30px;
    background: url(/local/templates/projects/images/icon-social.png) -70px center no-repeat;
}
.icon-social-fb {
    width: 30px;
    height: 30px;
    background: url(/local/templates/projects/images/icon-social.png) -70px center no-repeat;
}
.icon-social-inst {
    width: 30px;
    height: 30px;
    background: url(/local/templates/projects/images/icon-social.png) -157px center no-repeat;
}
.icon-social-in {
  background-position: 0 -200px;
}
.icon-social-gplus {
    width: 30px;
    height: 30px;
    background: url(/local/templates/projects/images/icon-social.png) -255px center no-repeat;
}
.icon-social-yt {
    width: 30px;
    height: 30px;
    background: url(/local/templates/projects/images/icon-social.png) -206px center no-repeat;
}
.icon-social-ok {
    width: 30px;
    height: 30px;
    background: url(/local/templates/projects/images/icon-social.png) -302px center no-repeat;
}
/* /Icons
    * -------------------------------------------------- */


/* Buttons
    * -------------------------------------------------- */
.btn {
  display: inline-block;
  color: #091c42 !important;
  margin-bottom: 0;
  font: normal 16px/40px  "PT Sans", PTsans, Arial, sans-serif;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  background: #ffe3d2;
  border: 0;
  text-decoration: none;
  white-space: nowrap;
  height: 40px;
  padding: 0 20px;
  border-radius: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus {
  color: #ffffff !important;
  background: #506082; /*#091c42;*/
  text-decoration: none;
}
.btn:active,
.btn.active {
  outline: 0;
  background: #b74300;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: .65;
}
.btn-cta {
  background: #ffffff;
  color: #091c42;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}
.btn-cta:hover,
.btn-cta:focus {
  color: #091c42;
  background: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.2) ;
}
.btn-cta:active,
.btn-cta.active {
  color: #091c42;
  background: #ffffff;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
.btn-square {
  border-radius: 8px;
}
.btn-dark {
  background: rgba(24, 24, 24, 0.3);
  color: #ffffff;
}
.btn-dark:hover,
.btn-dark:focus {
  color: #ffffff;
  background: rgba(24, 24, 24, 0.5);
  text-decoration: none;
}
.btn-dark:active,
.btn-dark.active {
  color: #ffffff;
  background: rgba(24, 24, 24, 0.7);
}
.btn-blue {
  background: #506082;
  color: #ffffff !important;
  border-radius: 8px;
}
.btn-blue:hover {
  background: #ffe3d2;
  color: #091c42 !important;
}
.btn-long {
  padding-left: 40px;
  padding-right: 40px;
}
.btn-link {
  color: #091c42;
  cursor: pointer;
  border-radius: 0;
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}
.btn-link:hover,
.btn-link:focus {
  color: #091c42;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  background-color: transparent;
  color: #091c42;
  text-decoration: none;
}
.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
/* /Buttons
    * -------------------------------------------------- */
/* End */


/* Start:/local/templates/projects/template_styles.css?175507498119043*/
/* ==========================================================================
      RESET.CSS */
/* ========================================================================== */

@charset "utf-8";

/**:where(
    :not(html, iframe, canvas, img, svg, video, audio, p, strong, sup, em):not(svg *, symbol *)
  ) {
  all: unset;
  display: revert;
}*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

/*a,
button {
  cursor: revert;
}*/

ol,
ul,
menu {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}
/* ==========================================================================
      /RESET.CSS */
/* ========================================================================== */


/* ==========================================================================
      BASE.CSS */
/* ========================================================================== */
html {
  height: 100%;
}

body {
  /*position: relative;*/
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: Georgia, Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #222;
  /*background: url('/local/templates/projects/bg.jpg') no-repeat fixed 0% 0% / cover;*/
  /*background: rgba(210, 204, 173, 0.6);*/
  /*background: rgb(244, 236, 216)*/
}
@media screen and (min-width: 768px) {
  body {
    font-size: 19px;
  }
}

header {
  flex: 0 0 auto;
}
.header {
  width: 100%;
  padding: 40px 10px;
  font-family: Raleway;
  font-weight: 500;
  background: #091C42;
  -webkit-transition: transform .3s linear,-webkit-transform .3s linear;
     -moz-transition: transform .3s linear,-webkit-transform .3s linear;
      -ms-transition: transform .3s linear,-webkit-transform .3s linear;
       -o-transition: transform .3s linear,-webkit-transform .3s linear;
          transition: transform .3s linear,-webkit-transform .3s linear;
}
.header__title {
  margin: 0;
  font-family: Raleway;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .header__title {
    font-size: 26px;
  }
}
.header__title-link {
  color: #fff;
  text-decoration: none;
}
.header__title-link:hover {
  color: #B0B0B0;
}
.header__subtitle {
  padding: 0 0 15px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .header__subtitle {
    padding: 0 0 30px;
    font-size: 22px;
  }
}
.sticky {
  background: #091C42;
}

main {
  flex: 1 0 auto;
  position: relative;
}
/*.main {
  display: flex;
  flex-direction: column;
}*/
.main:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /*min-height: 100vh;*/
  padding: 50px 0;
  /*background: rgba(210, 204, 173, 0.6);*/
  background: url('/local/templates/projects/bg.jpg') no-repeat fixed 0% 0% / cover;
  opacity: 0.2;
}
.main__about {
  position: absolute;
  top: 30%;
  left: 0;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 30px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background: rgba(0,0,0,.4);
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .main__about {
   top: 40%;
   left: calc(50% - 400px);
   max-width: 800px;
   font-size: 20px;
  }
}
.main__header {
  margin-bottom: 16px;
  font-size: 28px;
}
.main__text {
  margin-bottom: 28px;
  line-height: 1.5em;
  font-size: 16px;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .main__text {
   font-size: 20px;
  }
}
.main__more {
  display: inline-block;
  padding: 10px 20px;
  font-weight: bold;
  color: #000;
  background: #ccc;
  border-radius: 20px;
}
.main__more:hover {
  background: #b0b0b0;
}

footer {
  flex: 0 0 auto;
}
.footer {
  padding: 30px 10px;
  font-size: 16px;
  color: #fff;
  background: #091C42;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  color: #B0B0B0;
}

.social-networks {
  margin-top: 20px;
}
@media (min-width: 768px){
  .social-networks {
    margin-top: 0;
    text-align: right;
  }
}
.social-network {
  display: inline-block;
  min-width: 30px;
}
.social-network + .social-network {
  margin-left: 5px;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}

.container--row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

body.noscroll {
  overflow: hidden;
}

.hide {
  display: none;
}

.list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 18px;
}
@media (min-width: 768px){
  .list {
    font-size: 20px;
  }
}
.list__item {
  margin-bottom: 10px;
  padding: 10px;
  /*border-bottom: 1px solid #aaa;*/
}
.list__item:last-child {
  border-bottom: none;
}

.content p {
  text-indent: 20px;
}
.content a {
  color: #162951;
}
.content a:hover {
  /*color: #394F7B;*/
  color: #b75904;
  text-decoration: none;
}

.h1 {

}
.h2 {
  margin: 36px 0 19px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .h2 {
    font-size: 22px;
    text-align: left;
    text-indent: 20px;
  }
}
/* ==========================================================================
      /BASE.CSS */
/* ========================================================================== */


/* ==========================================================================
      GRID.CSS */
/* ========================================================================== */
.row {
  position: relative;
  margin: 0 auto;
}
.row:before,
.row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
@media (max-width: 768px) {
  .row .row {
    margin-left: -5px;
    margin-right: -5px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .row .row {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .row .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (min-width: 1280px) {
  .row .row {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.col {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .col {
    padding-left: 5px;
    padding-right: 5px;
  }
  .image-text .col,
  .image-text .col {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .col {
    padding-left: 10px;
    padding-right: 10px;
  }
  .image-text .col:first-child {
    padding-left: 0;
  }
  .image-text .col:last-child {
    padding-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .col {
    padding-left: 15px;
    padding-right: 15px;
  }
  .image-text .col:first-child {
    padding-left: 0;
  }
  .image-text .col:last-child {
    padding-right: 0;
  }
}
@media (min-width: 1280px) {
  .col {
    padding-left: 20px;
    padding-right: 20px;
  }
  .image-text .col:first-child {
    padding-left: 0;
  }
  .image-text .col:last-child {
    padding-right: 0;
  }
}
.col-mb-12 {
  width: 100%;
}
.col-mb-11 {
  width: 91.66666667%;
}
.col-mb-10 {
  width: 83.33333333%;
}
.col-mb-9 {
  width: 75%;
}
.col-mb-8 {
  width: 66.66666667%;
}
.col-mb-7 {
  width: 58.33333333%;
}
.col-mb-6 {
  width: 50%;
}
.col-mb-5 {
  width: 41.66666667%;
}
.col-mb-4 {
  width: 33.33333333%;
}
.col-mb-3 {
  width: 25%;
}
.col-mb-2 {
  width: 16.66666667%;
}
.col-mb-1 {
  width: 8.33333333%;
}
.col-mb-right-12 {
  right: 100%;
}
.col-mb-right-11 {
  right: 91.66666667%;
}
.col-mb-right-10 {
  right: 83.33333333%;
}
.col-mb-right-9 {
  right: 75%;
}
.col-mb-right-8 {
  right: 66.66666667%;
}
.col-mb-right-7 {
  right: 58.33333333%;
}
.col-mb-right-6 {
  right: 50%;
}
.col-mb-right-5 {
  right: 41.66666667%;
}
.col-mb-right-4 {
  right: 33.33333333%;
}
.col-mb-right-3 {
  right: 25%;
}
.col-mb-right-2 {
  right: 16.66666667%;
}
.col-mb-right-1 {
  right: 8.33333333%;
}
.col-mb-left-12 {
  left: 100%;
}
.col-mb-left-11 {
  left: 91.66666667%;
}
.col-mb-left-10 {
  left: 83.33333333%;
}
.col-mb-left-9 {
  left: 75%;
}
.col-mb-left-8 {
  left: 66.66666667%;
}
.col-mb-left-7 {
  left: 58.33333333%;
}
.col-mb-left-6 {
  left: 50%;
}
.col-mb-left-5 {
  left: 41.66666667%;
}
.col-mb-left-4 {
  left: 33.33333333%;
}
.col-mb-left-3 {
  left: 25%;
}
.col-mb-left-2 {
  left: 16.66666667%;
}
.col-mb-left-1 {
  left: 8.33333333%;
}
.col-mb-left-0 {
  left: 0%;
}
@media (min-width: 768px) {
  .row {
    /*max-width: 758px;*/
    max-width: 100%;
  }
  .col {
    float: left;
  }
  .col-12 {
    width: 100%;
  }
  .col-11 {
    width: 91.66666667%;
  }
  .col-10 {
    width: 83.33333333%;
  }
  .col-9 {
    width: 75%;
  }
  .col-8 {
    width: 66.66666667%;
  }
  .col-7 {
    width: 58.33333333%;
  }
  .col-6 {
    width: 50%;
  }
  .col-5 {
    width: 41.66666667%;
  }
  .col-4 {
    width: 33.33333333%;
  }
  .col-3 {
    width: 25%;
  }
  .col-2 {
    width: 16.66666667%;
  }
  .col-1 {
    width: 8.33333333%;
  }
  .col-right-12 {
    right: 100%;
  }
  .col-right-11 {
    right: 91.66666667%;
  }
  .col-right-10 {
    right: 83.33333333%;
  }
  .col-right-9 {
    right: 75%;
  }
  .col-right-8 {
    right: 66.66666667%;
  }
  .col-right-7 {
    right: 58.33333333%;
  }
  .col-right-6 {
    right: 50%;
  }
  .col-right-5 {
    right: 41.66666667%;
  }
  .col-right-4 {
    right: 33.33333333%;
  }
  .col-right-3 {
    right: 25%;
  }
  .col-right-2 {
    right: 16.66666667%;
  }
  .col-right-1 {
    right: 8.33333333%;
  }
  .col-left-12 {
    left: 100%;
  }
  .col-left-11 {
    left: 91.66666667%;
  }
  .col-left-10 {
    left: 83.33333333%;
  }
  .col-left-9 {
    left: 75%;
  }
  .col-left-8 {
    left: 66.66666667%;
  }
  .col-left-7 {
    left: 58.33333333%;
  }
  .col-left-6 {
    left: 50%;
  }
  .col-left-5 {
    left: 41.66666667%;
  }
  .col-left-4 {
    left: 33.33333333%;
  }
  .col-left-3 {
    left: 25%;
  }
  .col-left-2 {
    left: 16.66666667%;
  }
  .col-left-1 {
    left: 8.33333333%;
  }
  .col-left-0 {
    left: 0%;
  }
}
@media (min-width: 992px) {
  .row {
    /*max-width: 992px;*/
    max-width: 100%;
  }
  .col {
    float: left;
  }
  .col-dt-12 {
    width: 100%;
  }
  .col-dt-11 {
    width: 91.66666667%;
  }
  .col-dt-10 {
    width: 83.33333333%;
  }
  .col-dt-9 {
    width: 75%;
  }
  .col-dt-8 {
    width: 66.66666667%;
  }
  .col-dt-7 {
    width: 58.33333333%;
  }
  .col-dt-6 {
    width: 50%;
  }
  .col-dt-5 {
    width: 41.66666667%;
  }
  .col-dt-4 {
    width: 33.33333333%;
  }
  .col-dt-3 {
    width: 25%;
  }
  .col-dt-2 {
    width: 16.66666667%;
  }
  .col-dt-1 {
    width: 8.33333333%;
  }
  .col-dt-right-12 {
    right: 100%;
  }
  .col-dt-right-11 {
    right: 91.66666667%;
  }
  .col-dt-right-10 {
    right: 83.33333333%;
  }
  .col-dt-right-9 {
    right: 75%;
  }
  .col-dt-right-8 {
    right: 66.66666667%;
  }
  .col-dt-right-7 {
    right: 58.33333333%;
  }
  .col-dt-right-6 {
    right: 50%;
  }
  .col-dt-right-5 {
    right: 41.66666667%;
  }
  .col-dt-right-4 {
    right: 33.33333333%;
  }
  .col-dt-right-3 {
    right: 25%;
  }
  .col-dt-right-2 {
    right: 16.66666667%;
  }
  .col-dt-right-1 {
    right: 8.33333333%;
  }
  .col-dt-left-12 {
    left: 100%;
  }
  .col-dt-left-11 {
    left: 91.66666667%;
  }
  .col-dt-left-10 {
    left: 83.33333333%;
  }
  .col-dt-left-9 {
    left: 75%;
  }
  .col-dt-left-8 {
    left: 66.66666667%;
  }
  .col-dt-left-7 {
    left: 58.33333333%;
  }
  .col-dt-left-6 {
    left: 50%;
  }
  .col-dt-left-5 {
    left: 41.66666667%;
  }
  .col-dt-left-4 {
    left: 33.33333333%;
  }
  .col-dt-left-3 {
    left: 25%;
  }
  .col-dt-left-2 {
    left: 16.66666667%;
  }
  .col-dt-left-1 {
    left: 8.33333333%;
  }
  .col-dt-left-0 {
    left: 0%;
  }
}
@media (min-width: 1280px) {
  .row {
    max-width: 1600px;
  }
  .col {
    float: left;
  }
  .col-ld-12 {
    width: 100%;
  }
  .col-ld-11 {
    width: 91.66666667%;
  }
  .col-ld-10 {
    width: 83.33333333%;
  }
  .col-ld-9 {
    width: 75%;
  }
  .col-ld-8 {
    width: 66.66666667%;
  }
  .col-ld-7 {
    width: 58.33333333%;
  }
  .col-ld-6 {
    width: 50%;
  }
  .col-ld-5 {
    width: 41.66666667%;
  }
  .col-ld-4 {
    width: 33.33333333%;
  }
  .col-ld-3 {
    width: 25%;
  }
  .col-ld-2 {
    width: 16.66666667%;
  }
  .col-ld-1 {
    width: 8.33333333%;
  }
  .col-ld-right-12 {
    /* right: 100%; */
  }
  .col-ld-right-11 {
    right: 91.66666667%;
  }
  .col-ld-right-10 {
    right: 83.33333333%;
  }
  .col-ld-right-9 {
    right: 75%;
  }
  .col-ld-right-8 {
    right: 66.66666667%;
  }
  .col-ld-right-7 {
    right: 58.33333333%;
  }
  .col-ld-right-6 {
    right: 50%;
  }
  .col-ld-right-5 {
    right: 41.66666667%;
  }
  .col-ld-right-4 {
    right: 33.33333333%;
  }
  .col-ld-right-3 {
    right: 25%;
  }
  .col-ld-right-2 {
    right: 16.66666667%;
  }
  .col-ld-right-1 {
    right: 8.33333333%;
  }
  .col-ld-left-12 {
    left: 100%;
  }
  .col-ld-left-11 {
    left: 91.66666667%;
  }
  .col-ld-left-10 {
    left: 83.33333333%;
  }
  .col-ld-left-9 {
    left: 75%;
  }
  .col-ld-left-8 {
    left: 66.66666667%;
  }
  .col-ld-left-7 {
    left: 58.33333333%;
  }
  .col-ld-left-6 {
    left: 50%;
  }
  .col-ld-left-5 {
    left: 41.66666667%;
  }
  .col-ld-left-4 {
    left: 33.33333333%;
  }
  .col-ld-left-3 {
    left: 25%;
  }
  .col-ld-left-2 {
    left: 16.66666667%;
  }
  .col-ld-left-1 {
    left: 8.33333333%;
  }
  .col-ld-left-0 {
    left: 0%;
  }
}
.center-block {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .col-mb-hide,
  .mb-hide,
  .tablet-block,
  .dt-block,
  .ld-block {
    display: none !important;
  }
  .mb-block {
    display: block;
  }

  .container-top-header__ins {
    -webkit-justify-content: flex-end !important;
            justify-content: flex-end !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .col-hide,
  .tablet-hide,
  .mb-block,
  .dt-block,
  .ld-block {
    display: none !important;
  }
  .tablet-block {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .col-dt-hide,
  .dt-hide,
  .mb-block,
  .tablet-block,
  .ld-block {
    display: none !important;
  }
  .dt-block {
    display: block;
  }
}
@media (min-width: 1280px) {
  .col-ld-hide,
  .ld-hide,
  .mb-block,
  .tablet-block,
  .dt-block {
    display: none !important;
  }
  .ld-block {
    display: block;
  }
}
@media (max-width: 768px) {
  .col-padding {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .col-padding {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .col-padding {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1280px) {
  .col-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .col-margin {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .col-margin {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .col-margin {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1280px) {
  .col-margin {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .col-margin-bottom {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .col-margin-bottom {
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .col-margin-bottom {
    margin-bottom: 25px;
  }
}
@media (min-width: 1280px) {
  .col-margin-bottom {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .col-margin-top {
    margin-top: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .col-margin-top {
    margin-top: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .col-margin-top {
    margin-top: 30px;
  }
}
@media (min-width: 1280px) {
  .col-margin-top {
    margin-top: 40px;
  }
}
/* ==========================================================================
      /GRID.CSS */
/* ========================================================================== */

/* ==========================================================================
   HELPER CLASSES */
/* ========================================================================== */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.p0 {
  padding: 0;
}
.p10 {
  padding: 10px;
}
.p20 {
  padding: 20px;
}
.p30 {
  padding: 30px;
}
.p40 {
  padding: 40px;
}
.pt0 {
  padding-top: 0;
}
.pt10 {
  padding-top: 10px;
}
.pt20 {
  padding-top: 20px;
}
.pt30 {
  padding-top: 30px;
}
.pt40 {
  padding-top: 40px;
}
.pr0 {
  padding-right: 0;
}
.pr10 {
  padding-right: 10px;
}
.pr20 {
  padding-right: 20px;
}
.pr30 {
  padding-right: 30px;
}
.pr40 {
  padding-right: 40px;
}
.pb0 {
  padding-bottom: 0;
}
.pb10 {
  padding-bottom: 10px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb30 {
  padding-bottom: 30px;
}
.pb40 {
  padding-bottom: 40px;
}
.pl0 {
  padding-left: 0;
}
.pl10 {
  padding-left: 10px;
}
.pl20 {
  padding-left: 20px;
}
.pl30 {
  padding-left: 30px;
}
.pl40 {
  padding-left: 40px;
}
.m0 {
  margin: 0;
}
.m10 {
  margin: 10px;
}
.my16 {
  margin: 0 16px;
}
.m20 {
  margin: 20px;
}
.m30 {
  margin: 30px;
}
.m40 {
  margin: 40px;
}
.m50 {
  margin: 50px;
}
.mt0 {
  margin-top: 0;
}
.mt10 {
  margin-top: 10px;
}
.mt16 {
  margin-top: 16px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mt50 {
  margin-top: 50px;
}
.mr0 {
  margin-right: 0;
}
.mr10 {
  margin-right: 10px;
}
.mr20 {
  margin-right: 20px;
}
.mr30 {
  margin-right: 30px;
}
.mr40 {
  margin-right: 40px;
}
.mr50 {
  margin-right: 50px;
}
.mb0 {
  margin-bottom: 0;
}
.mb10 {
  margin-bottom: 10px;
}
.mb16 {
  margin-bottom: 16px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.ml0 {
  margin-left: 0;
}
.ml10 {
  margin-left: 10px;
}
.ml20 {
  margin-left: 20px;
}
.ml30 {
  margin-left: 30px;
}
.ml40 {
  margin-left: 40px;
}
.ml50 {
  margin-left: 50px;
}
/* ==========================================================================
   /HELPER CLASSES */
/* ========================================================================== */
/* End */
/* /local/templates/projects/styles.css?175223391621916 */
/* /local/templates/projects/template_styles.css?175507498119043 */
