@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
/* UpConstraction Color*/
/*   Color   */
/*   Font   */
body {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #f5f6f7; }

.h1, .h2, .h3, h1, h2, h3 {
  color: #2e3135;
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  line-height: 1.2;
  margin-bottom: 20px; }

.h1, h1 {
  font-size: calc(38px + 18 * ((100vw - 320px) / (1920 - 320))); }

.h2, h2 {
  font-size: calc(28px + 8 * ((100vw - 320px) / (1920 - 320))); }

.h3, h3 {
  font-size: calc(24px + 8 * ((100vw - 320px) / (1920 - 320))); }

.h4, h4 {
  font-size: calc(18px + 6 * ((100vw - 320px) / (1920 - 320))); }

.h5, h5 {
  font-size: calc(16px + 4 * ((100vw - 320px) / (1920 - 320))); }

.h6, h6 {
  font-size: 1rem; }

a, a:not([class]), .link {
  color: rgba(226, 100, 77, 0.7);
  border-bottom: 1px solid rgba(226, 100, 77, 0.7);
  text-decoration: none;
  padding-bottom: 2px; }
  a:hover, a:focus, a:not([class]):hover, a:not([class]):focus, .link:hover, .link:focus {
    color: #e2644d;
    border-bottom-color: #e2644d;
    text-decoration: none; }

.no-decoration {
  border-bottom: none;
  text-decoration: none;
  padding-bottom: 0; }

.btn-primary {
  background-color: #e2644d;
  border-color: #e2644d; }
  .btn-primary:hover {
    background-color: rgba(226, 100, 77, 0.8);
    border-color: rgba(226, 100, 77, 0.8);
    box-shadow: none; }
  .btn-primary:focus, .btn-primary:disabled, .btn-primary:active, .btn-primary:active:focus {
    background-color: #e2644d;
    border-color: #e2644d;
    box-shadow: none; }
  .btn-primary-border {
    color: #e2644d;
    background-color: #fff;
    border: 1px solid #e2644d; }
    .btn-primary-border:hover {
      color: rgba(226, 100, 77, 0.8);
      background-color: #fff;
      border-color: rgba(226, 100, 77, 0.8); }
    .btn-primary-border:focus, .btn-primary-border:disabled, .btn-primary-border:active, .btn-primary-border:active:focus {
      color: #e2644d;
      background-color: #fff;
      border-color: #e2644d;
      box-shadow: none; }

.btn-success {
  background-color: #46647f;
  border-color: #46647f; }
  .btn-success:hover {
    background-color: rgba(70, 100, 127, 0.8);
    border-color: rgba(70, 100, 127, 0.8);
    box-shadow: none; }
  .btn-success:focus, .btn-success:disabled, .btn-success:active, .btn-success:active:focus {
    background-color: #46647f;
    border-color: #46647f;
    box-shadow: none; }
  .btn-success-border {
    color: #46647f;
    background-color: #fff;
    border: 1px solid #46647f; }
    .btn-success-border:hover {
      color: rgba(70, 100, 127, 0.8);
      background-color: #fff;
      border-color: rgba(70, 100, 127, 0.8); }
    .btn-success-border:focus, .btn-success-border:disabled, .btn-success-border:active, .btn-success-border:active:focus {
      color: #46647f;
      background-color: #fff;
      border: 1px solid #46647f;
      box-shadow: none; }

.text-small {
  font-size: 0.875rem; }

.text-large {
  font-size: 1.375rem; }

.checkbox-wrapper {
  margin: 10px 0 20px; }

.checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0; }

.checkbox + label {
  display: inline-flex;
  align-items: center;
  user-select: none; }

.checkbox + label::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 0;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  box-sizing: content-box;
  transition: 0.3s;
  margin-top: -2px; }

.checkbox:checked + label::before {
  border-color: #46647f;
  background-color: #46647f;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"); }

.checkbox + label:hover::before {
  border-color: #46647f;
  cursor: pointer; }

.checkbox + label {
  font-size: calc(10px + 4 * ((100vw - 320px) / (1920 - 320)));
  line-height: 1.2; }

.section {
  padding: 30px 0; }
@media screen and (min-width: 768px) {
  .section {
    padding: 60px 0; } }
@media screen and (min-width: 1200px) {
  .section {
    padding: 80px 0; } }

.bg-white {
  background: #fff; }

.list {
  list-style: none;
  padding: 0; }

/* .list_check {
    li {
        position: relative;
        padding-left: 30px;
        &::before {
            content: '\f336';
            position: absolute;
            width: 20px;
            height: 20px;
            top: 5px;
            left: 0;
            font-family: 'FontAwesome';
        }
    }
} */
.panel {
  background: #fff;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  padding: 25px; }

/*  Title  */
.page-header {
  margin: 30px 0; }
  .page-header h1 {
    position: relative;
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    text-align: center;
    padding-bottom: 15px;
    font-weight: 400; }
    .page-header h1::after {
      content: "";
      position: absolute;
      display: block;
      width: 80px;
      height: 4px;
      background: #e2644d;
      left: 0;
      right: 0;
      bottom: 0;
      margin: 0 auto; }
  @media screen and (min-width: 1200px) {
    .page-header {
      margin: 40px 0 50px; } }

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px; }
  .section-header h1, .section-header h2, .section-header h3 {
    font-weight: 500;
    margin-bottom: 0; }
  @media screen and (min-width: 360px) {
    .section-header h1::before, .section-header h1::after, .section-header h2::before, .section-header h2::after, .section-header h3::before, .section-header h3::after {
      content: "";
      width: 40px;
      height: 2px;
      background: #e2644d;
      display: inline-block; }
    .section-header h1::before, .section-header h2::before, .section-header h3::before {
      margin: 0 15px 10px 0; }
    .section-header h1::after, .section-header h2::after, .section-header h3::after {
      margin: 0 0 10px 15px; } }
@media screen and (min-width: 768px) {
  .section-header {
    padding-bottom: 50px; }
    .section-header h1::before, .section-header h1::after, .section-header h2::before, .section-header h2::after, .section-header h3::before, .section-header h3::after {
      width: 50px; } }
@media screen and (min-width: 1200px) {
  .section-header {
    padding-bottom: 70px; } }

.title-block, .title-block h1, .title-block h2, .title-block h3 {
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative; }
  .title-block::after, .title-block h1::after, .title-block h2::after, .title-block h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: #e2644d;
    left: 0;
    bottom: 0; }

.fos-h2 {
  color: #001B4C;
  font-size: 25px;
  font-weight: 500;
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  display: flex;
  justify-content: center;
  margin-bottom: -15px; }

.fields-fos {
  display: flex;
  justify-content: center; }

.form-group {
  width: 25%;
  margin-left: 15px; }

.recieve-offer {
  background: #e2644d;
  color: #fff !important;
  font-weight: bold !important;
  display: flex;
  justify-content: center;
  border-radius: 5px; }

.recieve-offer .btn {
  color: #fff !important;
  font-weight: bold !important; }

.separator-fos {
  width: 5%; }

.feadback__agree {
  margin-left: 12%; }

@media (max-width: 720px) {
  .fields-fos {
    display: block; }
  .form-group {
    width: 90%; } }

ol {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0; }

ol > li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em; }

ol > li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em; }

li ol > li {
  margin: 0; }

li ol > li:before {
  content: counters(item, ".") " "; }

.policy-table {
  border: 1px solid #333;
  text-align: center;
  padding: 5px; }

.policy-table-main {
  width: 80%;
  margin-left: 5%; }

.callback_button_wrapper {
  display: flex;
  border: 1px solid #e6e6e6;
  border-radius: 11px;
  margin-top: 35px;
  margin-bottom: 35px;
  padding: 15px; }

.callback_left {
  width: 55%;
  margin-left: 10%;
  margin-right: 5%;
  text-align: center; }

.callback_right {
  padding-top: 15px; }

@media (max-width: 900px) {
  .callback_right {
    padding-top: 45px; }
  .callback_button_wrapper {
    flex-wrap: wrap; }
  .callback_left {
    width: 100%; }
  .callback_right {
    width: 100%;
    padding-top: 25px; }
  .callback_btn {
    width: 100%; } }

.header {
  color: #d3d3d3;
  background: #223141; }
  .header a, .header a:hover, .header a:focus {
    border-bottom: none;
    padding-bottom: 0; }
  .header .dropdown-menu {
    background: #223141;
    border-color: rgba(255, 255, 255, 0.5);
    border-radius: 0;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
    padding: 10px;
    max-width: 200px; }
    .header .dropdown-menu a {
      font-size: 0.875rem;
      padding: 0;
      white-space: normal; }
      .header .dropdown-menu a:hover {
        background: transparent;
        color: #fff; }
  @media screen and (max-width: 991px) {
    .header.container-header.position-sticky {
      position: sticky !important; } }

.logo__link {
  display: flex;
  align-items: center;
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  border-bottom: none;
  color: #d3d3d3;
  padding: 0; }
  .logo__link:hover, .logo__link:focus {
    color: #fff;
    transform: 0.3s;
    outline: none !important; }
  .logo__link .logo__title {
    font-size: calc(48px + 4 * ((100vw - 320px) / (1920 - 320)));
    text-transform: uppercase;
    padding: 0;
    margin-left: 0.8rem;
    line-height: 1.2; }
  .logo__link .logo__desc {
    font-size: 12px;
    margin-left: 1rem;
    line-height: 1.2; }

.container-below-top {
  justify-content: space-between;
  display: none; }
  .container-below-top a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none; }
    .container-below-top a:hover {
      color: #fff;
      transform: 0.3s;
      text-decoration: none; }
    .container-below-top a + a {
      padding-left: 15px; }
  @media screen and (min-width: 768px) {
    .container-below-top {
      display: flex; } }

#mod-custom114 {
  display: flex;
  /* ul {
    background:  #3D444E;
    a:hover {
            color: #fff;
            background:  #3D444E;
            transform: .3s;
            text-decoration: none;
        }
    } */ }

.footer {
  background: #223141;
  text-align: center;
  margin-top: 35px; }
  .footer a {
    color: rgba(255, 255, 255, 0.6);
    border-bottom: none;
    padding-bottom: 0; }
    .footer a:hover, .footer a:focus {
      color: #fff;
      border-bottom: none;
      padding-bottom: 0; }
  .footer .grid-child > div + div {
    margin-top: 20px; }
  @media screen and (min-width: 992px) {
    .footer {
      text-align: left;
      margin-top: 50px; }
      .footer .grid-child > div + div {
        margin-top: 0; } }

.footer-contacts-block__title select {
  background-color: #223141;
  color: #fff;
  border: 1px solid;
  margin-top: 20px;
  margin-bottom: 5px; }

.footer-contacts-block-list {
  display: none;
  margin-bottom: 20px; }

#novosibirsk-ul {
  display: block; }

.container-nav {
  align-items: center; }

.mod-main-menu {
  position: relative; }
  .mod-main-menu nav.navbar {
    margin-top: 0; }
  .mod-main-menu .navbar .main-menu > li {
    padding: 10px 0 10px 28px; }
  .mod-main-menu .main-menu {
    align-items: center;
    justify-content: center; }
    .mod-main-menu .main-menu > li {
      padding: 10px 0 10px 28px; }
      .mod-main-menu .main-menu > li > a {
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        text-transform: uppercase;
        font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
        border-bottom: none;
        padding: 0;
        overflow: visible !important; }
        .mod-main-menu .main-menu > li > a:hover, .mod-main-menu .main-menu > li > a:focus {
          color: #fff;
          transform: 0.3s;
          outline: none !important; }
        .mod-main-menu .main-menu > li > a:hover::after, .mod-main-menu .main-menu > li > a:focus::after, .mod-main-menu .main-menu > li > a:active::after, .mod-main-menu .main-menu > li > a.active::after {
          background: #e2644d;
          opacity: 1;
          bottom: -6px; }
        .mod-main-menu .main-menu > li > a .fa {
          padding: 0 !important; }
      .mod-main-menu .main-menu > li.active a {
        color: #fff;
        text-decoration: none !important; }
        .mod-main-menu .main-menu > li.active a::after {
          background: #e2644d;
          opacity: 1;
          bottom: -6px; }
      .mod-main-menu .main-menu > li.parent {
        position: relative; }
        .mod-main-menu .main-menu > li.parent > a {
          padding-right: 19px; }
        .mod-main-menu .main-menu > li.parent > .mm-toggler {
          position: absolute;
          right: 0; }
      .mod-main-menu .main-menu > li .mm-toggler:focus {
        outline: none; }
      .mod-main-menu .main-menu > li .mm-toggler::before {
        display: none; }
      .mod-main-menu .main-menu > li .mm-toggler::after {
        border-left-width: 0.3em;
        border-right-width: 0.3em;
        border-top-width: 0.3em; }
    .mod-main-menu .main-menu.main-menu .metismenu-item > ul {
      width: min(50vw, 300px);
      min-width: auto;
      background: #223141;
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 0;
      box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
      padding: 20px; }
      .mod-main-menu .main-menu.main-menu .metismenu-item > ul li {
        padding: 0; }
        .mod-main-menu .main-menu.main-menu .metismenu-item > ul li + li {
          margin-top: 10px; }
        .mod-main-menu .main-menu.main-menu .metismenu-item > ul li.active a {
          color: #fff; }
      .mod-main-menu .main-menu.main-menu .metismenu-item > ul a {
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        text-transform: uppercase;
        font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
        white-space: normal; }
        .mod-main-menu .main-menu.main-menu .metismenu-item > ul a:hover, .mod-main-menu .main-menu.main-menu .metismenu-item > ul a:focus {
          color: #fff;
          transform: 0.3s;
          outline: none !important; }
  @media screen and (max-width: 991px) {
    .mod-main-menu .navbar-toggler, .mod-main-menu .navbar-toggler:hover, .mod-main-menu .navbar-toggler:focus {
      border: none;
      box-shadow: none; }
    .mod-main-menu .navbar-toggler_close .icon-menu::before {
      content: '';
      font-size: 24px;
      padding-left: 1px; }
    .mod-main-menu .navbar-collapse {
      position: absolute;
      width: 100vw;
      top: 0;
      left: calc(-100vw + 49px);
      background: #223141;
      z-index: -1;
      padding: 20px; }
    .mod-main-menu .main-menu {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      flex-direction: column;
      height: 100vh;
      padding-top: 100px; }
    .mod-main-menu .navbar .main-menu li {
      padding: 10px 0; }
      .mod-main-menu .navbar .main-menu li.parent {
        justify-content: center; }
        .mod-main-menu .navbar .main-menu li.parent > a {
          padding-right: 0; }
        .mod-main-menu .navbar .main-menu li.parent > .mm-toggler {
          position: initial;
          height: auto; }
        .mod-main-menu .navbar .main-menu li.parent ul {
          position: relative;
          top: auto;
          width: 100%;
          border: none;
          box-shadow: none;
          padding: 10px 0 0; }
        .mod-main-menu .navbar .main-menu li.parent li {
          justify-content: center; } }

.breadcrumb a {
  color: rgba(70, 100, 127, 0.7);
  border-bottom: none;
  padding-bottom: 0; }
  .breadcrumb a:hover, .breadcrumb a:focus {
    color: #46647f; }

.mod-industries .newsflash-horiz {
  grid-template-columns: 100%;
  grid-gap: 25px; }
  .mod-industries .newsflash-horiz > li {
    background: #fff;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    padding: 0; }
    .mod-industries .newsflash-horiz > li:hover .newsflash-image img {
      transform: scale(1.1); }
    .mod-industries .newsflash-horiz > li:hover .newsflash-title {
      color: #e2644d; }
    .mod-industries .newsflash-horiz > li a, .mod-industries .newsflash-horiz > li:hover, .mod-industries .newsflash-horiz > li:focus {
      text-decoration: none;
      border-bottom: none;
      padding-bottom: 0; }
.mod-industries .newsflash-image {
  overflow: hidden;
  margin-bottom: 0; }
  .mod-industries .newsflash-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.5s; }
.mod-industries .newsflash-body {
  padding: 40px; }
  .mod-industries .newsflash-body ul {
    font-size: 0.875rem;
    padding-left: 0; }
.mod-industries .newsflash-title {
  margin-bottom: 20px; }
@media screen and (min-width: 768px) {
  .mod-industries .newsflash-horiz {
    grid-template-columns: repeat(2, 1fr); } }
@media screen and (min-width: 992px) {
  .mod-industries .newsflash-horiz {
    grid-template-columns: repeat(4, 1fr); } }

#mod-custom119 .service {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 25px;
  justify-content: space-between; }
  #mod-custom119 .service__item {
    background: #fff;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    padding: 40px; }
  #mod-custom119 .service__icon {
    margin-bottom: 30px;
    width: 20%; }
  #mod-custom119 .service__title {
    color: #46647f;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    font-size: 22px;
    position: relative;
    display: inline-block;
    border-bottom: 4px solid #e2644d; }
  #mod-custom119 .service__text {
    font-size: 0.875rem; }
  @media screen and (min-width: 768px) {
    #mod-custom119 .service {
      grid-template-columns: repeat(2, 1fr); } }
@media screen and (min-width: 992px) {
  #mod-custom119 .service {
    grid-template-columns: repeat(2, 1fr); } }

#mod-custom121 .cert {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  #mod-custom121 .cert li {
    margin: 0 1em; }

.contacts {
  background: #fff;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  padding: 25px; }
  .contacts__map {
    margin: 0 -25px -25px -25px; }

@media (min-width: 992px) {
  .contacts {
    display: flex;
    align-items: stretch;
    justify-content: space-between; }
  .contacts__addresses {
    width: 40%; }
  .contacts__map {
    width: 60%;
    margin-top: -25px; } }

@media (max-width: 767px) {
  ul.sigFreeClassic {
    display: flex;
    flex-direction: column;
    align-items: center; } }

.cba .section-header {
  display: none; }
.cba__img-wrapper {
  text-align: center;
  margin-bottom: 20px; }

.spec .section-header {
  display: none; }
.spec__wrapper {
  display: grid;
  gap: 24px 16px; }
@media (min-width: 768px) {
  .spec__wrapper {
    grid-template-columns: repeat(2, 1fr); } }

.home .section-header {
  display: flex; }
@media (min-width: 992px) {
  .home .cba__wrapper {
    display: flex;
    margin-left: -8px;
    margin-right: -8px; }
    .home .cba__wrapper > div {
      padding-left: 8px;
      padding-right: 8px; }
  .home .cba__img-wrapper {
    width: 41.66666667%;
    flex: 0 0 auto;
    margin-bottom: 0; }
  .home .cba__body {
    flex: 0 0 auto;
    width: 58.33333333%; } }
@media (min-width: 992px) {
  .home .spec__wrapper {
    grid-template-columns: repeat(3, 1fr); } }

.logo-skolcovo {
  position: absolute;
  left: 0;
  bottom: -56px;
  width: 80px; }
  .logo-skolcovo-wrapper .mod-custom {
    position: initial; }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.container-banner {
  margin-bottom: 0; }

.hero {
  width: 100%;
  /* height: 100vh; */
  padding: 30px 0 70px;
  background: #3D444E;
  /* .container {
        padding-top: 50px;
    } */ }
  .hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff; }
  .hero h2 {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    font-size: 24px; }
  .hero a, .hero a:hover, .hero a:focus {
    border-bottom: none;
    /* padding-bottom: 0; */ }

.hero .btn-get-started {
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  padding: 14px 32px 15px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #e2644d; }

.hero .btn-get-started:hover {
  background: #fff;
  color: #000; }

.hero .btn-watch-video {
  font-size: 18px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1; }

.hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 48px;
  transition: 0.3s;
  margin-right: 8px; }

.hero .btn-watch-video:hover i {
  color: #e2644d; }

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both; }

@media (max-width: 991px) {
  .hero {
    /* height: 100vh; */
    padding: 15px 0 35px;
    text-align: center;
    /* .container {
        padding-top: 30px;
    } */ }
  .hero .animated {
    animation: none; }
  .hero h1 {
    font-size: 28px;
    line-height: 36px; }
  .hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px; }
  .hero .hero-img {
    text-align: center; }
  .hero .hero-img img {
    width: 50%; } }

@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px; }
  .hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px; }
  .hero .hero-img img {
    width: 70%; }
  .hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px; } }

@media (max-width: 575px) {
  .hero .hero-img img {
    width: 80%; }
  .hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px; } }

@keyframes up-down {
  0% {
    transform: translateY(10px); }
  100% {
    transform: translateY(-10px); } }
/*--------------------------------------------------------------
# CBA Section
--------------------------------------------------------------*/
.cba .content {
  padding-left: 0px !important; }

.cba .content h3 {
  font-weight: 400;
  font-size: 34px; }

.cba .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px; }

.cba .content p {
  font-size: 15px;
  color: #6c757d; }

.cba .accordion-item {
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px; }

.cba .accordion-item:last-child {
  margin-bottom: 0; }

.cba .accordion-collapse {
  border: 0; }

.cba .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: #46647f;
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px; }

.cba .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: #46647f; }

.cba .accordion-button:not(.collapsed) {
  color: #e2644d;
  border-bottom: 0;
  box-shadow: none; }

.cba .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px; }

.cba .accordion-body {
  padding: 0 40px 30px 45px;
  border: 0;
  background: #fff;
  box-shadow: none; }

.processes .accordion-item {
  background: transparent;
  box-shadow: none;
  border-radius: 0; }
.processes span:not(.num) {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(226, 100, 77, 0.7);
  margin-left: 20px; }
.processes .num {
  flex-shrink: 0;
  height: 45px;
  line-height: 45px;
  width: 48px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  background-color: #46647f;
  color: #fff;
  font-size: 1.375rem;
  padding-right: 0;
  /* -webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    -o-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg); */
  /* &::after {
        -webkit-transform: skewX(15deg);
        -moz-transform: skewX(15deg);
        -o-transform: skewX(15deg);
        -ms-transform: skewX(15deg);
        transform: skewX(15deg);
    } */ }
.processes__header {
  display: flex;
  align-items: center; }
  .processes__header .accordion-button {
    background: transparent;
    padding: 0;
    transition: 0.3s; }
    .processes__header .accordion-button::after {
      display: none; }
    .processes__header .accordion-button span:not(.num) {
      text-decoration: underline;
      text-decoration-style: dashed;
      margin-left: 20px; }
      .processes__header .accordion-button span:not(.num):hover, .processes__header .accordion-button span:not(.num):focus {
        color: #e2644d;
        text-decoration: underline;
        text-decoration-style: dashed; }
    .processes__header .accordion-button .num {
      flex-shrink: 0;
      height: 45px;
      line-height: 45px;
      width: 48px;
      text-align: center;
      display: inline-block;
      vertical-align: middle;
      background-color: #46647f;
      color: #fff;
      font-size: 1.375rem;
      padding-right: 0;
      /* -webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    -o-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg); */
      /* &::after {
        -webkit-transform: skewX(15deg);
        -moz-transform: skewX(15deg);
        -o-transform: skewX(15deg);
        -ms-transform: skewX(15deg);
        transform: skewX(15deg);
    } */ }
.processes .accordion-body {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  padding: 25px;
  margin-top: 20px; }
@media screen and (min-width: 768px) {
  .processes .accordion-button span:not(.num) {
    border-bottom: 1px dashed rgba(226, 100, 77, 0.7);
    text-decoration: none; }
    .processes .accordion-button span:not(.num):not(.num):hover, .processes .accordion-button span:not(.num):not(.num):focus {
      border-bottom-color: #e2644d;
      text-decoration: none; }
  .processes .accordion-body {
    padding: 40px; } }

/*--------------------------------------------------------------
# Spec Section  
--------------------------------------------------------------*/
.spec .service-item {
  padding: 40px;
  background: #fff;
  height: 100%; }

.spec .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px; }

.spec .service-item .icon i {
  color: #52565e;
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8; }

.spec .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s; }

.spec .service-item h3 {
  color: #46647f;
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #e2644d;
  transition: 0.3s; }

.spec .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0; }

.spec .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: #e2644d; }

.spec .service-item:hover .icon:before {
  background: #e2644d; }

/* .spec .service-item:hover h3 {
  border-color: $color-primary;
} */
/*--------------------------------------------------------------
# Callback Wrapper Section  
--------------------------------------------------------------*/
.callback-wrapper .callbak__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /* .callback__desc {
            width: 50%;
        } */
  /*       & div:first-child {
            width: 450px;
        }
        & div:last-child {
//            flex-basis: 1200px
            width: 500px;
        }*/ }

.modal-header {
  align-items: baseline;
  border-bottom: none;
  padding: 10px 25px 10px 57px; }
  .modal-header h3 {
    text-align: center;
    margin-bottom: 0; }
  .modal-header .btn-close {
    padding-top: 9px;
    margin-left: 0.5rem; }
.modal-body {
  padding: 25px; }
  .modal form h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px; }
.modal input[type="text"], .modal input[type="tel"], .modal input[type="email"], .modal input[type="password"], .modal input[type="number"], .modal input[type="month"], .modal input[type="datetime-local"], .modal input[type="date"], .modal textarea {
  width: 100%;
  margin: 0 0 20px 0;
  padding: 12px 15px;
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  .modal input[type="text"].is-invalid, .modal input[type="tel"].is-invalid, .modal input[type="email"].is-invalid, .modal input[type="password"].is-invalid, .modal input[type="number"].is-invalid, .modal input[type="month"].is-invalid, .modal input[type="datetime-local"].is-invalid, .modal input[type="date"].is-invalid, .modal textarea.is-invalid {
    border-color: #a51f18;
    margin-bottom: 0; }
.modal input[type="checkbox"].is-invalid + label::before {
  border-color: #a51f18;
  margin-bottom: 0; }
.modal textarea {
  margin: 0; }
.modal .invalid-feedback {
  padding-bottom: 15px; }
.modal .form-group {
  width: 100%;
  margin-left: 0; }

.carousel-item {
  padding: 30px 0 70px;
  background: #3D444E; }
.carousel-body {
  display: grid;
  gap: 50px; }
.carousel figure {
  margin-bottom: 0; }
.carousel-content {
  text-align: center; }
.carousel h1 {
  color: #fff;
  margin: 0 0 10px 0;
  font-size: calc(28px + 20 * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  line-height: calc(36px + 20 * ((100vw - 320px) / (1920 - 320))); }
.carousel h2 {
  color: rgba(255, 255, 255, 0.6);
  font-size: calc(18px + 6 * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(24px + 5 * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 30px; }
.carousel div .first {
  color: #fff;
  font-size: calc(28px + 20 * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  font-family: roboto; }
.carousel div .second {
  color: rgba(255, 255, 255, 0.6);
  font-size: calc(18px + 6 * ((100vw - 320px) / (1920 - 320)));
  font-family: roboto;
  font-weight: 700; }
.carousel a, .carousel a:hover, .carousel a:focus {
  border-bottom: none; }
.carousel .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 10px 24px 11px 24px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #e2644d; }
@media screen and (min-width: 768px) {
  .carousel-body {
    align-items: center;
    grid-template-columns: repeat(2, 1fr); }
  .carousel-img {
    order: 2; }
  .carousel .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both; }
  .carousel-content {
    text-align: left; }
  .carousel h2 {
    margin-bottom: 50px; }
  .carousel .btn-get-started {
    font-size: 18px;
    padding: 14px 32px 15px 32px; } }

@keyframes up-down {
  0% {
    transform: translateY(10px); }
  100% {
    transform: translateY(-10px); } }

.com-content-article__body {
  max-width: 1024px;
  margin: 0 auto; }
  .com-content-article__body > h3 {
    margin: 30px 0 20px; }
  .com-content-article__body > h3:first-child {
    margin: 0 0 20px; }

/*   Страница Карта проектов */
.projects {
  display: grid;
  grid-template-columns: 100%;
  gap: 25px; }
  .projects__item {
    text-align: center; }
  .projects__title {
    display: inline;
    color: #46647f;
    font-size: 1.28rem;
    font-weight: 400;
    white-space: normal;
    margin-bottom: 0;
    border-color: transparent; }
    .projects__title:hover, .projects__title:focus {
      color: rgba(70, 100, 127, 0.8);
      border-color: rgba(70, 100, 127, 0.8); }
  .projects__body {
    font-size: 14px;
    background: #fff;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
    border: none;
    padding: 40px;
    z-index: 2;
    width: calc(100% - 2rem); }
  @media screen and (min-width: 768px) {
    .projects {
      grid-template-columns: repeat(2, 1fr); }
      .projects__item {
        text-align: left; }
      .projects .projects__body {
        width: auto; } }
@media screen and (min-width: 1200px) {
  .projects {
    grid-template-columns: repeat(4, 1fr); }
    .projects .projects__body {
      width: 655px; } }

.project__header {
  display: flex;
  background: transparent;
  padding: 0; }
  .project__header:hover, .project__header:focus {
    background: transparent; }
  .project__header p:not(.project__year) {
    margin-bottom: 0; }
.project__year {
  width: 50px;
  color: #46647f;
  box-sizing: content-box;
  margin-bottom: 5px; }
.project__name {
  width: calc(100% - 50px);
  color: rgba(226, 100, 77, 0.7);
  white-space: normal; }
  .project__name:hover, .project__name:focus {
    color: #e2644d;
    cursor: pointer; }
.project__desc {
  width: calc(100% - 50px);
  margin-left: auto;
  padding: 10px 0; }
.project + .project {
  margin-top: 5px; }

.contacts {
  background: #fff;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  padding: 25px; }
  .contacts .list > li {
    padding-left: 3px; }
    .contacts .list > li + li {
      margin-top: 5px; }
  .contacts a {
    color: rgba(70, 100, 127, 0.7);
    border-bottom: none;
    text-decoration: none;
    padding-bottom: 0; }
    .contacts a:hover, .contacts a:focus {
      color: #46647f; }
  .contacts__addresses {
    padding-bottom: 25px; }
  .contacts__map {
    margin: 0 -25px -25px -25px; }

@media (min-width: 992px) {
  .contacts {
    display: flex;
    align-items: stretch;
    justify-content: space-between; }
  .contacts__addresses {
    width: 30%;
    padding-bottom: 0; }
  .contacts__map {
    width: 70%;
    margin-top: -25px; } }

/*   Страница ЦБА */
.cba .modifications {
  display: grid;
  gap: 25px;
  justify-content: center; }
  .cba .modifications li {
    text-align: center; }
  .cba .modifications p {
    color: #46647f;
    margin-top: 10px; }
@media screen and (min-width: 768px) {
  .cba .modifications {
    grid-template-columns: repeat(2, 1fr); }
    .cba .modifications li:last-child img {
      margin-left: 40px; } }
@media screen and (min-width: 992px) {
  .cba .modifications li:last-child img {
    margin-left: 95px; } }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*
.hero {
    width: 100%;
    height: 100vh;
    background: #3D444E;
    .container {
        padding-top: 50px;
    }
    h1 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
        color: #fff;
    }
    h2 {
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 50px;
        font-size: 24px;
    }
    a,
    a:hover,
    a:focus {
        border-bottom: none;
        // padding-bottom: 0; 
    }

}

.hero .btn-get-started {
//  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 18px;
//  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px 15px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: $success-color;
}

.hero .btn-get-started:hover {
  background: #fff;
  color: #000;

}

.hero .btn-watch-video {
  font-size: 18px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
  
}

.hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 48px;
  transition: 0.3s;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: $success-color;
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  .hero {
    height: 100vh;
    text-align: center;
    .container {
        padding-top: 30px;
    }
  }

  .hero .animated {
    animation: none;
  }
  
    .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .hero-img {
    text-align: center;
  }

  .hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .hero-img img {
    width: 70%;
    }
   .hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@media (max-width: 575px) {
  .hero .hero-img img {
    width: 80%;
  }

  .hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
*/
/*# sourceMappingURL=/media/templates/site/cassiopeia_gzo/css/user.css.map */