  
  @-webkit-keyframes pulse {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    20% {
      -webkit-transform: scale(1.3);
              transform: scale(1.3);
    }
    60% {
      -webkit-transform: scale(0.95);
              transform: scale(0.95);
    }
  }
  
  @keyframes pulse {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    20% {
      -webkit-transform: scale(1.3);
              transform: scale(1.3);
    }
    60% {
      -webkit-transform: scale(0.95);
              transform: scale(0.95);
    }
  }
  
  * {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  
  *::before,
  *::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  
  *:focus {
    outline: none;
  }
  
  *::-moz-selection {
    color: white;
    background: #365a6c;
  }
  
  *::selection {
    color: white;
    background: #365a6c;
  }
  
  ::-webkit-scrollbar {
    width: 0px;
    background: transparent;
  }
  
  input::-webkit-input-placeholder {
    color: #a3a6aa;
  }
  
  input:-ms-input-placeholder {
    color: #a3a6aa;
  }
  
  input::-ms-input-placeholder {
    color: #a3a6aa;
  }
  
  input::placeholder {
    color: #a3a6aa;
  }
  
  input {
    -webkit-appearance: none;
  }
  
  input[type="number"] {
    -moz-appearance: textfield;
  }
  
  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  textarea,
  input {
    font-family: "Montserrat", "Helvetica", sans-serif;
    font-size: 14px;
    line-height: 14px;
  }
  
  html {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  div {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  section {
    position: relative;
  }
  
  body {
    font-size: 18px;
    font-family: "Montserrat", "Helvetica", sans-serif;
    line-height: 110%;
    min-width: 320px;
    color: #365a6c;
    background-color: #f4f4f4;
    -ms-touch-action: pan-x pan-y;
        touch-action: pan-x pan-y;
    scroll-behavior: smooth;
  }
  
  body > #__site_wrapper {
    overflow: hidden;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  
  main {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 120px;
    background-color: #ffffff;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  
  @media (max-width: 768px) {
    main {
      padding-top: 60px;
    }
  }
  
  .container {
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
  }
  
  @media (max-width: 768px) {
    .container {
      padding-left: 16px;
      padding-right: 16px;
    }
  }
  
  a {
    text-decoration: none;
    color: #365a6c;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  
  a:focus, a:hover {
    opacity: 0.8;
  }
  
  a.__self {
    border-bottom: 1px dashed #365a6c;
  }
  
  .btn {
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    padding: 20px 36px;
    border-radius: 4px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer;
    border: none;
    color: #ffffff;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  
  .btn:hover {
    -webkit-transition: 0.05s;
    transition: 0.05s;
  }
  
  .btn:hover {
    -webkit-transition: 0.02s;
    transition: 0.02s;
  }
  
  @media (max-width: 495px) {
    .btn {
      padding: 16px 24px;
      font-size: 18px;
      line-height: 20px;
    }
  }
  
  .btn.__primary {
    background-color: #365a6c;
  }
  
  .btn.__primary:hover {
    background-color: #2dc6ff;
  }
  
  .btn.__primary:active {
    background-color: #0090c6;
  }
  
  .btn.__primary.__big:before, .btn.__primary.__big:after {
    background-color: rgba(0, 181, 249, 0.2);
  }
  
  .btn.__secondary {
    background-color: #365a6cb3;
  }
  
  .btn.__secondary:hover {
    background-color: #f34747;
  }
  
  .btn.__secondary:active {
    background-color: #c70d0d;
  }
  
  .btn.__secondary.__big:before, .btn.__secondary.__big:after {
    background-color: rgba(240, 23, 23, 0.2);
  }
  
  .btn.__big {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 300px;
    text-align: center;
    text-transform: uppercase;
    z-index: 20;
  }
  
  .btn.__big:before, .btn.__big:after {
    content: "";
    position: absolute;
    display: block;
    border-radius: 500px;
    z-index: -1;
    pointer-events: none;
    background-color: rgba(0, 181, 249, 0.2);
  }
  
  .btn.__big:before {
    width: 120%;
    height: 120%;
    left: -10%;
    top: -10%;
    -webkit-animation: pulse 6s infinite;
            animation: pulse 6s infinite;
  }
  
  .btn.__big:after {
    width: 140%;
    height: 140%;
    left: -20%;
    top: -20%;
    -webkit-animation: pulse 6s infinite 0.3s;
            animation: pulse 6s infinite 0.3s;
  }
  
  .btn.__big.__mini_text p {
    font-size: 28px;
    line-height: 32px;
  }
  
  @media (max-width: 1024px) {
    .btn.__big.__mini_text p {
      font-size: 26px;
      line-height: 28px;
    }
  }
  
  @media (max-width: 768px) {
    .btn.__big.__mini_text p {
      font-size: 24px;
      line-height: 28px;
    }
  }
  
  @media (max-width: 495px) {
    .btn.__big.__mini_text p {
      font-size: 20px;
      line-height: 24px;
    }
  }
  
  .btn.__big p {
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    color: #ffffff;
  }
  
  @media (max-width: 1024px) {
    .btn.__big p {
      font-size: 36px;
      line-height: 40px;
    }
  }
  
  @media (max-width: 768px) {
    .btn.__big p {
      font-size: 32px;
      line-height: 36px;
    }
  }
  
  @media (max-width: 495px) {
    .btn.__big p {
      font-size: 24px;
      line-height: 28px;
    }
  }
  
  .btn.__big span {
    display: inline;
    border-bottom: 1px solid;
  }
  
  @media (max-width: 1024px) {
    .btn.__big {
      width: 280px;
      height: 280px;
    }
  }
  
  @media (max-width: 768px) {
    .btn.__big {
      width: 240px;
      height: 240px;
    }
  }
  
  @media (max-width: 495px) {
    .btn.__big {
      width: 200px;
      height: 200px;
    }
  }
  
  .btn:hover, .btn:focus, .btn:active {
    opacity: 1;
  }
  
  h1,
  .h1 {
    font-size: 54px;
    line-height: 56px;
    font-weight: 600;
    color: #365a6c;
  }
  
  @media (max-width: 768px) {
    h1,
    .h1 {
      font-size: 40px;
      line-height: 42px;
    }
  }
  
  @media (max-width: 495px) {
    h1,
    .h1 {
      font-size: 32px;
      line-height: 34px;
    }
  }
  
  h2,
  .h2 {
    font-size: 52px;
    line-height: 54px;
    font-weight: 500;
    color: #365a6c;
  }
  
  @media (max-width: 768px) {
    h2,
    .h2 {
      font-size: 40px;
      line-height: 42px;
    }
  }
  
  @media (max-width: 495px) {
    h2,
    .h2 {
      font-size: 32px;
      line-height: 34px;
    }
  }
  
  h3,
  .h3 {
    color: #365a6c;
    font-size: 1.92rem;
    font-weight: 600;
    line-height: 2.6rem;
    text-transform: uppercase;
  }
  
  @media (max-width: 768px) {
    h3,
    .h3 {
      font-size: 28px;
      line-height: 30px;
    }
  }
  
  @media (max-width: 495px) {
    h3,
    .h3 {
      font-size: 24px;
      line-height: 28px;
    }
  }
  
  p {
    font-size: 18px;
    line-height: 32px;
    color: #365a6c;
  }
  
  @media (max-width: 768px) {
    p {
      font-size: 18px;
      line-height: 26px;
    }
  }
  
  @media (max-width: 495px) {
    p {
      font-size: 16px;
      line-height: 24px;
    }
  }
  
  hr {
    background-color: #f4f4f4;
  }
  
  section {
    padding: 56px 0;
  }
  
  section ._about_special,
  section a,
  section p,
  section h1,
  section h2,
  section h3,
  section h4,
  section h5,
  section h6,
  section ul,
  section ol {
    margin: 40px 0;
  }
  
  @media (max-width: 768px) {
    section ._about_special,
    section a,
    section p,
    section h1,
    section h2,
    section h3,
    section h4,
    section h5,
    section h6,
    section ul,
    section ol {
      margin: 36px 0;
    }
  }
  
  @media (max-width: 495px) {
    section ._about_special,
    section a,
    section h1,
    section h2,
    section h3,
    section h4,
    section h5,
    section h6,
    section p,
    section ul,
    section ol {
      margin: 32px 0;
    }
  }
  
  section .container img {
    border-radius: 9px;
  }

  section .topcards img {
    border-radius: 10px;
    border: 3px white;
    border-style: ridge;
  }

  
  @media (max-width: 768px) {
    section {
      padding: 44px 0;
    }
  }
  
  @media (max-width: 495px) {
    section {
      padding: 36px 0;
    }
  }
  
  ._about_special:first-child,
  a:first-child,
  p:first-child,
  h1:first-child,
  h2:first-child,
  h3:first-child,
  h4:first-child,
  h5:first-child,
  h6:first-child,
  ul:first-child,
  ol:first-child {
    margin-top: 0;
  }
  
  ._about_special:last-child,
  a:last-child,
  p:last-child,
  h1:last-child,
  h2:last-child,
  h3:last-child,
  h4:last-child,
  h5:last-child,
  h6:last-child,
  ul:last-child,
  ol:last-child {
    margin-bottom: 0;
  }
  
  .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  @media (max-width: 1024px) {
    .row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
  }
  
  .row .col {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  
  @media (max-width: 1024px) {
    .row .col {
      width: 100%;
    }
  }
  
  .row .col > img {
    max-width: 100%;
  }
  
  img {
    overflow: hidden;
  }
  
  img.__fill {
    width: 100%;
  }
  
  .hListBox {
    margin: 24px 0;
  }
  
  @media (max-width: 768px) {
    .hListBox {
      margin: 20px 0;
    }
  }
  
  @media (max-width: 495px) {
    .hListBox {
      margin: 16px 0;
    }
  }
  
  .hListBox:first-child {
    margin-top: 0;
  }
  
  .hListBox .hListBox_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -24px;
    list-style: none;
  }
  
  @media (max-width: 768px) {
    .hListBox .hListBox_list {
      margin: -20px;
    }
  }
  
  @media (max-width: 495px) {
    .hListBox .hListBox_list {
      margin: -16px;
    }
  }
  
  .hListBox .hListBox_item {
    margin: 24px;
  }
  
  @media (max-width: 768px) {
    .hListBox .hListBox_item {
      margin: 20px;
    }
  }
  
  @media (max-width: 495px) {
    .hListBox .hListBox_item {
      margin: 16px;
    }
  }
  
  .hListBox .hListBox_item .hListBox_item_title {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 6px;
  }
  
  @media (max-width: 495px) {
    .hListBox .hListBox_item .hListBox_item_title {
      font-size: 14px;
      line-height: 16px;
      margin-bottom: 4px;
    }
  }
  
  .hListBox .hListBox_item .hListBox_item_value {
    font-size: 36px;
    line-height: 38px;
    font-weight: 500;
  }
  
  @media (max-width: 768px) {
    .hListBox .hListBox_item .hListBox_item_value {
      font-size: 32px;
      line-height: 34px;
    }
  }
  
  @media (max-width: 495px) {
    .hListBox .hListBox_item .hListBox_item_value {
      font-size: 24px;
      line-height: 26px;
    }
  }
  
  .readyBox {
    background-color: #f4f4f4;
    border-radius: 10px;
    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;
    height: 740px;
  }
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 200;
    border-bottom: 1px solid #a3a6aa;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  
  @media (max-width: 768px) {
    header {
      height: 90px;
    }
  }
  
  @media (max-width: 495px) {
    header {
      height: 60px;
    }
  }
  
  header.__filled {
    background-color: rgba(26, 33, 42, 0.8);
    height: calc(120px - 32px);
    border-bottom: 1px solid rgba(0, 0, 0, 0);
  }
  
  @media (max-width: 768px) {
    header.__filled {
      height: 90px;
      height: calc(90px - 16px);
    }
  }
  
  @media (max-width: 495px) {
    header.__filled {
      height: 60px;
    }
  }
  
  header.__filled ._info {
    padding: 8px 0;
    padding-left: 64px;
    padding-right: 32px;
  }
  
  @media (max-width: 1024px) {
    header.__filled ._info {
      padding-left: 16px;
      padding-right: 16px;
    }
  }
  
  @media (max-width: 768px) {
    header.__filled ._info {
      padding: 6px 0;
      padding-left: 32px;
      padding-right: 16px;
    }
  }
  
  header ._inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  header ._info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 16px 0;
    padding-left: 32px;
    padding-right: 32px;
    margin-left: 32px;
    border-left: 1px solid #a3a6aa;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  
  @media (max-width: 1024px) {
    header ._info {
      padding-left: 16px;
      margin-left: 16px;
      padding-right: 16px;
    }
  }
  
  @media (max-width: 768px) {
    header ._info {
      padding: 8px 0;
      padding-left: 32px;
      margin-left: 32px;
      padding-right: 16px;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
    }
  }
  
  @media (max-width: 495px) {
    header ._info {
      padding: 8px 0;
      border-left: 0;
      margin-left: 16px;
    }
  }
  
  header .siteinfo.__phone {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  
  @media (max-width: 495px) {
    header .siteinfo.__phone {
      display: none;
    }
  }
  
  header .siteinfo.__socials {
    margin-left: 64px;
  }
  
  @media (max-width: 1024px) {
    header .siteinfo.__socials {
      margin-left: 16px;
    }
  }
  
  @media (max-width: 768px) {
    header .siteinfo.__socials {
      margin-left: 0;
    }
  }
  
  @media (max-width: 768px) {
    header .siteinfo.__socials {
      display: none;
    }
  }
  
  @media (max-width: 768px) {
    header .siteinfo.__socials .siteinfo_text {
      display: none;
    }
  }
  
  header .siteinfo .siteinfo_text.__link {
    color: #ffffff;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  
  header .siteinfo .siteinfo_text.__link:hover {
    -webkit-transition: 0.05s;
    transition: 0.05s;
  }
  
  header .siteinfo .siteinfo_text.__link:hover {
    -webkit-transition: 0.02s;
    transition: 0.02s;
  }
  
  header .siteinfo .siteinfo_text.__link:hover {
    opacity: 0.8;
  }
  
  header .siteinfo .siteinfo_text.__link:active {
    opacity: 0.6;
  }
  
  .logo {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 22px;
    color: #ffffff;
    font-family: "Supermolot", "Helvetica", sans-serif;
    position: relative;
  }
  
  .logo span {
    display: block;
    margin-top: 14px;
    font-size: 16px;
    font-weight: 300;
  }
  
  @media (max-width: 768px) {
    .logo {
      font-size: 24px;
    }
    .logo span {
      margin-top: 12px;
      font-size: 15px;
    }
  }
  
  @media (max-width: 495px) {
    .logo {
      font-size: 18px;
    }
    .logo span {
      margin-top: 4px;
      font-size: 14px;
    }
  }
  
  .siteinfo {
    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;
  }
  
  .siteinfo .siteinfo_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .siteinfo .siteinfo_row .siteinfo_item + .siteinfo_item {
    margin-left: 24px;
  }
  
  .siteinfo .__padder {
    margin-bottom: 4px;
  }
  
  .siteinfo .siteinfo_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #ffffff;
    font-size: 16px;
  }
  
  @media (max-width: 768px) {
    .siteinfo .siteinfo_item {
      font-size: 14px;
    }
  }
  
  .siteinfo .siteinfo_item ._ico {
    width: 24px;
    margin-right: 6px;
  }
  
  @media (max-width: 768px) {
    .siteinfo .siteinfo_item ._ico {
      width: 20px;
    }
  }
  
  .siteinfo .siteinfo_item.__main {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
  }
  
  @media (max-width: 768px) {
    .siteinfo .siteinfo_item.__main {
      font-size: 18px;
      line-height: 20px;
    }
  }
  
  @media (max-width: 495px) {
    .siteinfo .siteinfo_item.__main {
      font-size: 15px;
      line-height: 18px;
    }
  }
  
  .siteinfo .siteinfo_text {
    color: #a3a6aa;
    font-size: 13px;
    padding-bottom: 3px;
  }
  
  @media (max-width: 495px) {
    .siteinfo .siteinfo_text {
      font-size: 12px;
      padding-bottom: 1px;
    }
  }
  
  .siteinfo .siteinfo_text.__link {
    text-transform: lowercase;
    display: inline;
    border-bottom: 1px solid;
    cursor: pointer;
  }
  
  #__burgerBox {
    width: 48px;
    height: 48px;
    margin-right: -9px;
    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;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  
  #__burgerBox #__burger {
    width: 30px;
    height: 19px;
    cursor: pointer;
    position: relative;
  }
  
  #__burgerBox #__burger span {
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background-color: #ffffff;
    display: block;
    position: absolute;
  }
  
  #__burgerBox #__burger span:nth-child(1) {
    top: 0;
  }
  
  #__burgerBox #__burger span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  
  #__burgerBox #__burger span:nth-child(3) {
    bottom: 0;
  }
  
  .teaser {
    background-color: #365a6c;
    margin-top: -120px;
    padding-top: 120px;
    position: relative;
  }
  
  @media (max-width: 768px) {
    .teaser {
      margin-top: -60px;
      padding-top: 60px;
    }
  }
  
  .teaser ._bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .teaser ._bg:before {
    content: "";
    position: absolute;
    display: block;
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    top: 0;
    left: 0;
  }
  
  .teaser ._bg:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    top: 0;
    left: 0;
  }
  
  .teaser ._bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .teaser ._inner {
    position: relative;
    min-height: 76vh;
    color: #ffffff;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .teaser .teaser_box {
    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;
    padding: 10vh 0;
    max-width: calc(100% - 260px);
  }
  
  @media (max-width: 768px) {
    .teaser .teaser_box {
      max-width: none;
    }
  }
  
  .teaser .teaser_box_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 600;
    padding-bottom: 14vh;
  }
  
  @media (max-width: 768px) {
    .teaser .teaser_box_inner {
      padding-bottom: 0;
    }
  }
  
  .teaser .teaser_title {
    font-weight: 500;
    color: #ffffff;
  }
  
  .teaser .teaser_subtitle {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6rem;
    margin-top: 3.8vh;
  }
  
  @media (max-width: 768px) {
    .teaser .teaser_subtitle {
      font-size: 22px;
      line-height: 28px;
    }
  }
  
  @media (max-width: 495px) {
    .teaser .teaser_subtitle {
      font-size: 18px;
      line-height: 22px;
    }
  }
  
  .teaser .teaser_actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -8px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  
  .teaser .teaser_actions > * {
    margin: 8px;
  }
  
  @media (max-width: 768px) {
    .teaser .teaser_actions {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
  }
  
  .teaser .teaser_stickers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  
  @media (max-width: 1024px) {
    .teaser .teaser_stickers {
      max-width: 240px;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    .teaser .teaser_stickers {
      margin: -16px;
      position: relative;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      margin: 24px -16px;
      max-width: none;
    }
  }
  
  .teaser .teaser_stickers .teaser_stickers_item {
    width: 100%;
  }
  
  .teaser .teaser_stickers .teaser_stickers_item img {
    max-width: 100%;
  }
  
  @media (max-width: 1024px) {
    .teaser .teaser_stickers .teaser_stickers_item {
      margin: 16px;
      width: calc(100% - 32px);
    }
  }
  
  @media (max-width: 768px) {
    .teaser .teaser_stickers .teaser_stickers_item {
      max-width: 180px;
      width: calc((100% / 2) - 32px);
    }
  }
  
  .about .col:first-child {
    width: 44%;
    padding-right: 110px;
  }
  
  .about .col:last-child {
    width: 56%;
  }
  
  @media (max-width: 1024px) {
    .about .col:first-child, .about .col:last-child {
      padding-bottom: 48px;
      padding-right: 0;
      width: 100%;
    }
  }
  
  .about .row:first-child .col:first-child {
    padding-bottom: 200px;
  }
  
  @media (max-width: 1024px) {
    .about .row:first-child .col:first-child {
      padding-bottom: 48px;
    }
  }
  
  .about .row.__special {
    margin-top: -110px;
  }
  
  .about .row.__special .col:last-child {
    margin-top: 220px;
  }
  
  @media (max-width: 1024px) {
    .about .row.__special {
      margin-top: 0;
    }
    .about .row.__special .col:last-child {
      margin-top: 0;
    }
  }
  
  .about .about_image_1 {
    width: 100%;
    height: 340px;
    border-radius: 10px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .about .about_image_1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .about .about_image_2 {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .about .about_image_2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .about ._about_special {
    font-size: 48px;
    line-height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #365a6c;
    text-transform: uppercase;
  }
  
  .about ._about_special span {
    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;
    width: 100px;
    height: 100px;
    background-color: #365a6c;
    border-radius: 100px;
    color: #ffffff;
    margin-left: 16px;
  }
  
  @media (max-width: 768px) {
    .about ._about_special span {
      width: 80px;
      height: 80px;
    }
  }
  
  @media (max-width: 495px) {
    .about ._about_special span {
      width: 60px;
      height: 60px;
    }
  }
  
  @media (max-width: 768px) {
    .about ._about_special {
      font-size: 36px;
      line-height: 38px;
    }
  }
  
  @media (max-width: 495px) {
    .about ._about_special {
      font-size: 24px;
      line-height: 26px;
    }
  }
  
  .about ._about_special_2 {
    z-index: 20;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-right: -180px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 14vh;
  }
  
  @media (max-width: 1024px) {
    .about ._about_special_2 {
      margin-top: 0;
      margin-right: 0;
      -ms-flex-pack: distribute;
          justify-content: space-around;
    }
  }
  
  @media (max-width: 495px) {
    .about ._about_special_2 {
      -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;
    }
  }
  
  @media (max-width: 495px) {
    .about ._about_special_2 ._about_special_2_num_box {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
    }
  }
  
  .about ._about_special_2 ._about_special_2_num_title {
    font-size: 180px;
    font-weight: 500;
    line-height: 200px;
  }
  
  @media (max-width: 768px) {
    .about ._about_special_2 ._about_special_2_num_title {
      font-size: 160px;
      line-height: 126px;
    }
  }
  
  @media (max-width: 495px) {
    .about ._about_special_2 ._about_special_2_num_title {
      font-size: 120px;
      line-height: 96px;
    }
  }
  
  .about ._about_special_2 ._about_special_2_num_text {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #365a6c;
  }
  
  .about ._about_special_2 ._about_special_2_num_text img {
    margin-left: -10px;
  }
  
  @media (max-width: 495px) {
    .about ._about_special_2 ._about_special_2_num_text {
      margin-left: 12px;
    }
  }
  
  .about ._about_special_2 ._about_special_2_image {
    max-width: 440px;
    max-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  @media (max-width: 495px) {
    .about ._about_special_2 ._about_special_2_image {
      margin-top: 48px;
    }
  }
  
  .about ._about_special_2 ._about_special_2_image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  
  .about ._about_btn {
    position: relative;
  }
  
  @media (max-width: 768px) {
    .about ._about_btn {
      height: 100px;
      margin-bottom: 80px;
    }
  }
  
  .about ._about_btn ._about_btn_wrapper {
    position: absolute;
    right: 10%;
    bottom: -50px;
  }
  
  @media (max-width: 495px) {
    .about ._about_btn ._about_btn_wrapper {
      margin-top: 48px;
    }
  }
  
  .cardBox {
    background-color: #365a6c;
    color: #ffffff;
  }
  
  .cardBox ._inner {
    position: relative;
  }
  
  .cardBox ._sub {
    font-weight: 500;
    font-size: 24px;
    line-height: 26px;
    color: #365a6c;
    margin-top: -32px;
  }
  
  .cardBox ._sub + h2 {
    margin-top: 20px;
  }
  
  @media (max-width: 768px) {
    .cardBox ._sub {
      margin-top: -16px;
      font-size: 22px;
      line-height: 24px;
    }
  }
  
  @media (max-width: 495px) {
    .cardBox ._sub {
      font-size: 20px;
      line-height: 22px;
      margin-top: 0;
    }
  }
  
  .cardBox h2 {
    color: #ffffff;
  }
  
  .cardBox .cardBox_info {
    background-color: #365a6c;
    border-radius: 14px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    min-width: 320px;
    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;
  }
  
  .cardBox .cardBox_info ._ico {
    margin-bottom: 8px;
    width: 40px;
    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;
  }
  
  .cardBox .cardBox_info ._ico img {
    max-width: 100%;
    border-radius: 0;
  }
  
  @media (max-width: 768px) {
    .cardBox .cardBox_info ._ico {
      width: 38px;
    }
  }
  
  @media (max-width: 495px) {
    .cardBox .cardBox_info ._ico {
      width: 24px;
    }
  }
  
  @media (max-width: 768px) {
    .cardBox .cardBox_info {
      padding: 16px 24px;
      font-size: 18px;
      line-height: 20px;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
  }
  
  @media (max-width: 495px) {
    .cardBox .cardBox_info {
      font-size: 16px;
      line-height: 18px;
    }
  }
  
  .cardBox .cardBox_solo {
    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;
  }
  
  .cardBox .cardBox_solo .cardBox_solo_box {
    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;
  }
  
  .cardBox .cardBox_solo .cardBox_solo_assets {
    position: absolute;
    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;
    pointer-events: none;
  }
  
  .cardBox .cardBox_solo .cardBox_solo_assets > div {
    position: absolute;
    border-radius: 1000px;
    border: 1px solid #365a6c;
  }
  
  .cardBox .cardBox_solo .cardBox_solo_assets > div:nth-child(1) {
    width: 150px;
    height: 150px;
    opacity: 1;
    -webkit-animation: pulse 6s infinite 0.25s;
            animation: pulse 6s infinite 0.25s;
  }
  
  .cardBox .cardBox_solo .cardBox_solo_assets > div:nth-child(2) {
    width: 300px;
    height: 300px;
    opacity: 0.8;
    -webkit-animation: pulse 6s infinite 0.5s;
            animation: pulse 6s infinite 0.5s;
  }
  
  .cardBox .cardBox_solo .cardBox_solo_assets > div:nth-child(3) {
    width: 450px;
    height: 450px;
    opacity: 0.6;
    -webkit-animation: pulse 6s infinite 0.75s;
            animation: pulse 6s infinite 0.75s;
  }
  
  .cardBox .cardBox_solo .cardBox_solo_assets > div:nth-child(4) {
    width: 600px;
    height: 600px;
    opacity: 0.4;
    -webkit-animation: pulse 6s infinite 1s;
            animation: pulse 6s infinite 1s;
  }
  
  .cardBox .cardBox_solo .cardBox_solo_assets > div:nth-child(5) {
    width: 750px;
    height: 750px;
    opacity: 0.2;
    -webkit-animation: pulse 6s infinite 1.25s;
            animation: pulse 6s infinite 1.25s;
  }
  
  .cardBox .cardBox_solo .card {
    position: relative;
  }
  
  .cardBox .cardBox_solo .cardBox_solo_btn {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  
  @media (max-width: 768px) {
    .cardBox .cardBox_solo .cardBox_solo_btn {
      position: relative;
      margin-top: 64px;
    }
  }
  
  @media (max-width: 1024px) {
    .cardBox .row {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
    }
  }
  
  @media (max-width: 768px) {
    .cardBox .row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
  }
  
  .cardBox .col:first-child {
    width: 35%;
    padding-right: 48px;
    padding-bottom: 48px;
    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;
  }
  
  @media (max-width: 1024px) {
    .cardBox .col:first-child {
      width: 45%;
    }
  }
  
  @media (max-width: 768px) {
    .cardBox .col:first-child {
      width: 100%;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-align: center;
      padding-right: 0;
    }
  }
  
  .cardBox .col:last-child {
    width: 65%;
  }
  
  @media (max-width: 1024px) {
    .cardBox .col:last-child {
      width: 55%;
    }
  }
  
  @media (max-width: 768px) {
    .cardBox .col:last-child {
      width: 100%;
    }
  }
  
  .cardBox .arrows {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  
  @media (max-width: 768px) {
    .cardBox .arrows {
      margin-top: 36px;
      position: relative;
      margin-left: calc(((100vw - 240px) / 2) - 16px);
    }
  }
  
  @media (max-width: 495px) {
    .cardBox .arrows {
      margin-left: calc(((100vw - 180px) / 2) - 16px);
    }
  }
  
  .arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 280px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  @media (max-width: 768px) {
    .arrows {
      width: 240px;
    }
  }
  
  @media (max-width: 495px) {
    .arrows {
      width: 180px;
    }
  }
  
  .arrows .arrow {
    width: 100px;
    height: 100px;
    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;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    background-color: #f4f4f4;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer;
    border-radius: 200px;
  }
  
  .arrows .arrow:hover {
    -webkit-transition: 0.05s;
    transition: 0.05s;
  }
  
  .arrows .arrow:hover {
    -webkit-transition: 0.02s;
    transition: 0.02s;
  }
  
  .arrows .arrow:hover {
    background-color: white;
  }
  
  .arrows .arrow:active {
    background-color: #dbdbdb;
  }
  
  @media (max-width: 768px) {
    .arrows .arrow {
      width: 80px;
      height: 80px;
    }
  }
  
  @media (max-width: 495px) {
    .arrows .arrow {
      width: 60px;
      height: 60px;
    }
  }
  
  .__owl_cards .owl-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: -1;
    pointer-events: none;
  }
  
  .__owl_cards .owl-item .structureSlider_item,
  .__owl_cards .owl-item .card {
    opacity: 0;
    -webkit-transform: scale(0.9) translateX(100%);
            transform: scale(0.9) translateX(100%);
    -webkit-transform-origin: 300% center;
            transform-origin: 300% center;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  
  .__owl_cards .owl-item.active,
  .__owl_cards .owl-item.active + .owl-item {
    z-index: 2;
    pointer-events: all;
  }
  
  .__owl_cards .owl-item.active .structureSlider_item,
  .__owl_cards .owl-item.active .card,
  .__owl_cards .owl-item.active + .owl-item .structureSlider_item,
  .__owl_cards .owl-item.active + .owl-item .card {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  
  .__owl_cards .owl-stage {
    pointer-events: none;
  }
  
  .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 420px;
    background-color: #ffffff;
    border-radius: 20px;
    color: #365a6c;
  }
  
  @media (max-width: 1024px) {
    .card {
      width: 420px;
    }
  }
  
  @media (max-width: 768px) {
    .card {
      width: 360px;
    }
  }
  
  @media (max-width: 495px) {
    .card {
      width: 300px;
    }
  }
  
  .card .card_image {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    max-height: 240px;
  }
  
  .card .card_image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .card .card_actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: -8px;
    margin-top: -48px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  
  @media (max-width: 768px) {
    .card .card_actions {
      margin-top: -36px;
    }
  }
  
  @media (max-width: 495px) {
    .card .card_actions {
      margin-top: -32px;
    }
  }
  
  .card .card_actions > * {
    margin: 8px;
  }
  
  .card .card_actions .btn {
    font-size: 18px;
    border-radius: 20px;
  }
  
  .card .card_actions .btn.__primary {
    -webkit-box-shadow: 0 8px 20px #365a6c;
            box-shadow: 0 8px 20px #365a6c;
  }
  
  .card .card_actions .btn.__secondary {
    -webkit-box-shadow: 0 8px 20px #365a6c;
            box-shadow: 0 8px 20px #365a6c;
  }
  
  @media (max-width: 768px) {
    .card .card_actions .btn {
      padding: 16px 24px;
      border-radius: 16px;
    }
  }
  
  @media (max-width: 495px) {
    .card .card_actions .btn {
      padding: 12px 16px;
      border-radius: 8px;
    }
  }
  
  .card .card_info {
    padding: 24px;
  }
  
  .card .card_info hr {
    margin: 24px 0;
  }
  
  @media (max-width: 768px) {
    .card .card_info hr {
      margin: 16px 0;
    }
  }
  
  @media (max-width: 495px) {
    .card .card_info hr {
      margin: 12px 0;
    }
  }
  
  @media (max-width: 768px) {
    .card .card_info {
      padding: 24px 20px;
    }
  }
  
  @media (max-width: 495px) {
    .card .card_info {
      padding: 24px 16px;
    }
  }
  
  .card .card_title {
    font-weight: 600;
    font-size: 40px;
    line-height: 42px;
    margin-bottom: 12px;
  }
  
  @media (max-width: 768px) {
    .card .card_title {
      font-size: 36px;
      line-height: 38px;
    }
  }
  
  @media (max-width: 495px) {
    .card .card_title {
      font-size: 32px;
      line-height: 34px;
    }
  }
  
  .card .card_subtitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 4px;
  }
  
  @media (max-width: 768px) {
    .card .card_subtitle {
      font-size: 22px;
      line-height: 24px;
    }
  }
  
  @media (max-width: 495px) {
    .card .card_subtitle {
      font-size: 20px;
      line-height: 22px;
    }
  }
  
  .card .card_text {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
  }
  
  @media (max-width: 768px) {
    .card .card_text {
      font-size: 16px;
      line-height: 20px;
    }
  }
  
  @media (max-width: 495px) {
    .card .card_text {
      font-size: 16px;
      line-height: 18px;
    }
  }
  
  .gallery ._inner {
    position: relative;
  }
  
  .gallery .gallerySlider .owl-stage-outer {
    pointer-events: none;
  }
  
  .gallery .gallerySlider .owl-stage {
    pointer-events: all;
  }
  
  .gallery .gallerySlider_item {
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
    height: 25vw;
    max-width: 90vw;
    min-height: 300px;
  }
  
  .gallery .gallerySlider_item img {
    height: 100%;
  }
  
  .gallery .arrows {
    position: absolute;
    height: 110px;
    max-width: 1440px;
    width: 90%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    margin: auto;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  
  @media (min-width: 496px) {
    .gallery .arrows {
      width: auto;
    }
  }
  
  @media (max-width: 495px) {
    .gallery .arrows {
      position: relative;
      margin-top: 24px;
    }
  }
  
  .gallery .arrows:after, .gallery .arrows:before {
    content: "";
    width: 130px;
    height: 130px;
    top: -10px;
    border-radius: 200px;
    position: absolute;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    background-color: white;
  }
  
  @media (max-width: 768px) {
    .gallery .arrows:after, .gallery .arrows:before {
      height: 100px;
      width: 100px;
    }
  }
  
  @media (max-width: 495px) {
    .gallery .arrows:after, .gallery .arrows:before {
      height: 80px;
      width: 80px;
    }
  }
  
  .gallery .arrows:before {
    left: -10px;
  }
  
  .gallery .arrows:after {
    right: -10px;
  }
  
  .gallery .arrows .arrow {
    pointer-events: all;
    height: 110px;
    width: 110px;
    z-index: 20;
    border: 1px solid #a3a6aa;
  }
  
  @media (max-width: 768px) {
    .gallery .arrows .arrow {
      height: 80px;
      width: 80px;
    }
  }
  
  @media (max-width: 495px) {
    .gallery .arrows .arrow {
      height: 60px;
      width: 60px;
    }
  }
  
  @media (max-width: 1024px) {
    .gallery .arrows {
      height: 110px;
    }
  }
  
  @media (max-width: 768px) {
    .gallery .arrows {
      height: 80px;
    }
  }
  
  @media (max-width: 495px) {
    .gallery .arrows {
      height: 60px;
    }
  }
  
  .structure ._sub {
    font-size: 24px;
    line-height: 26px;
    font-weight: 500;
    margin-top: -24px;
    margin-bottom: 24px;
  }
  
  @media (max-width: 768px) {
    .structure ._sub {
      margin-top: -24px;
      font-size: 20px;
      line-height: 22px;
    }
  }
  
  @media (max-width: 495px) {
    .structure ._sub {
      margin-top: -16px;
      font-size: 18px;
      line-height: 20px;
    }
  }
  
  .structure .structure_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -8px;
    margin-top: 48px;
  }
  
  @media (max-width: 768px) {
    .structure .structure_list {
      margin: -6px;
      margin-top: 32px;
    }
  }
  
  @media (max-width: 495px) {
    .structure .structure_list {
      margin: -4px;
    }
  }
  
  .structure .structure_item {
    background-color: #f4f4f4;
    color: #365a6c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 16px;
    border-radius: 10px;
    margin: 8px;
    border: 1px solid #a3a6aa30;
  }
  
  @media (max-width: 768px) {
    .structure .structure_item {
      margin: 6px;
      padding: 8px 16px;
      border-radius: 6px;
    }
  }
  
  @media (max-width: 495px) {
    .structure .structure_item {
      margin: 4px;
      padding: 8px 12px;
    }
  }
  
  .structure .structure_item ._ico {
    margin-right: 16px;
    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;
    width: 32px;
    height: 32px;
  }
  
  .structure .structure_item ._ico img {
    border-radius: 0;
    max-width: 100%;
    max-height: 100%;
  }
  
  @media (max-width: 768px) {
    .structure .structure_item ._ico {
      width: 28px;
      height: 28px;
      margin-right: 8px;
    }
  }
  
  @media (max-width: 495px) {
    .structure .structure_item ._ico {
      width: 24px;
      height: 24px;
    }
  }
  
  .structure .structure_item ._text {
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
  }
  
  @media (max-width: 768px) {
    .structure .structure_item ._text {
      font-size: 20px;
      line-height: 22px;
    }
  }
  
  @media (max-width: 495px) {
    .structure .structure_item ._text {
      font-size: 18px;
      line-height: 20px;
    }
  }
  
  .structure .structure_slider {
    position: relative;
    margin: 64px 0;
  }
  
  .structure .structure_slider .structureSlider_item {
    width: 340px;
    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;
  }
  
  .structure .structure_slider .structureSlider_item img {
    max-width: 100%;
  }
  
  @media (max-width: 768px) {
    .structure .structure_slider .structureSlider_item {
      width: 320px;
    }
  }
  
  @media (max-width: 495px) {
    .structure .structure_slider .structureSlider_item {
      width: 300px;
    }
  }
  
  @media (max-width: 1024px) {
    .structure .structure_slider .row {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
    }
  }
  
  @media (max-width: 768px) {
    .structure .structure_slider .row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
  }
  
  .structure .structure_slider .col:first-child {
    width: 35%;
    padding-right: 48px;
    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;
  }
  
  @media (max-width: 1024px) {
    .structure .structure_slider .col:first-child {
      width: 45%;
    }
  }
  
  @media (max-width: 768px) {
    .structure .structure_slider .col:first-child {
      width: 100%;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-align: center;
      padding-right: 0;
    }
  }
  
  .structure .structure_slider .col:last-child {
    width: 65%;
  }
  
  @media (max-width: 1024px) {
    .structure .structure_slider .col:last-child {
      width: 55%;
    }
  }
  
  @media (max-width: 768px) {
    .structure .structure_slider .col:last-child {
      width: 100%;
    }
  }
  
  .structure .structure_slider .arrows {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  
  @media (max-width: 768px) {
    .structure .structure_slider .arrows {
      margin-top: 36px;
      position: relative;
      margin-left: calc(((100vw - 240px) / 2) - 16px);
    }
  }
  
  @media (max-width: 495px) {
    .structure .structure_slider .arrows {
      margin-left: calc(((100vw - 180px) / 2) - 16px);
    }
  }
  
  .structure .structure_form p {
    font-weight: 500;
  }
  
  @media (max-width: 1024px) {
    .structure .structure_form .row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
    }
  }
  
  .structure .structure_form .col:first-child {
    width: 44%;
    padding-right: 110px;
  }
  
  .structure .structure_form .col:last-child {
    width: 56%;
  }
  
  @media (max-width: 1024px) {
    .structure .structure_form .col:first-child, .structure .structure_form .col:last-child {
      padding-right: 0;
      width: 100%;
    }
  }
  
  .structure .structure_form .structure_form_women {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .structure .structure_form .structure_form_women > img {
    max-width: 100%;
  }
  
  @media (max-width: 768px) {
    .structure .structure_form .structure_form_women > img {
      width: 80%;
      max-width: 360px;
    }
  }
  
  .structure .structure_form .structure_form_women_about {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    position: absolute;
    bottom: 10%;
    width: 90%;
    max-width: 340px;
    margin: auto;
    left: 0;
    right: 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px;
  }
  
  .structure .structure_form .structure_form_women_about ._title {
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
  }
  
  .structure .structure_form .structure_form_women_about ._text {
    margin-top: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
  }
  
  .structure .structure_form .structure_checbox_list {
    margin: -8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  
  @media (max-width: 768px) {
    .structure .structure_form .structure_checbox_list {
      margin: -4px;
    }
  }
  
  .structure .structure_form .structure_checbox_item {
    margin: 8px;
  }
  
  @media (max-width: 768px) {
    .structure .structure_form .structure_checbox_item {
      margin: 4px;
    }
  }
  
  .structure .structure_form .structure_checbox_item input {
    -webkit-appearance: none;
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
  }
  
  .structure .structure_form .structure_checbox_item label {
    font-size: 32px;
    line-height: 36px;
    position: relative;
    font-weight: 500;
    padding-left: 40px;
    cursor: pointer;
  }
  
  .structure .structure_form .structure_checbox_item label:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: #f4f4f4;
    border-radius: 4px;
    border: 1px solid #c4d1e1;
  }
  
  .text-red {
    color: #365a6c;
}

.card .card_actions.nt {
  margin-top: -8px;
}
  
  .structure .structure_form .structure_checbox_item label:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    -webkit-transform: translateY(12px) scale(0.8);
            transform: translateY(12px) scale(0.8);
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    background: url(../img_promo/ico__checkbox_check.png) no-repeat center center;
  }
  
  @media (max-width: 768px) {
    .structure .structure_form .structure_checbox_item label {
      font-size: 32px;
      line-height: 36px;
      padding-left: 32px;
    }
    .structure .structure_form .structure_checbox_item label:before, .structure .structure_form .structure_checbox_item label:after {
      top: 8px;
      width: 24px;
      height: 24px;
    }
  }
  
  @media (max-width: 495px) {
    .structure .structure_form .structure_checbox_item label {
      font-size: 20px;
      line-height: 24px;
      padding-left: 28px;
    }
    .structure .structure_form .structure_checbox_item label:before, .structure .structure_form .structure_checbox_item label:after {
      top: 4px;
      width: 20px;
      height: 20px;
    }
  }
  
  .structure .structure_form .structure_checbox_item input:checked + label:after {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
  
  .structure .structure_form .structure_phone_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 440px;
    margin: -12px;
    margin-top: 64px;
  }
  
  @media (max-width: 768px) {
    .structure .structure_form .structure_phone_box {
      margin: -8px;
      margin-top: 64px;
    }
  }
  
  .structure .structure_form .structure_phone_box > * {
    margin: 12px;
  }
  
  @media (max-width: 768px) {
    .structure .structure_form .structure_phone_box > * {
      margin: 8px;
    }
  }
  
  @media (max-width: 495px) {
    .structure .structure_form .structure_phone_box .btn {
      width: 100%;
    }
  }
  
  .box_input_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  
  .box_input_wrapper > *:not(:first-child) {
    margin-top: 24px;
  }
  
  .box_input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    width: 100%;
  }
  
  @media (max-width: 495px) {
    .box_input {
      width: 100%;
    }
  }
  
  .box_input.__error .box_input__mistake {
    display: block;
  }
  
  .box_input.__error input {
    border-color: red;
  }
  
  .box_input label {
    bottom: 100%;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 10px;
  }
  
  .box_input input {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    border: 1px solid #c4d1e1;
    background: #f4f4f4;
    border-radius: 4px;
    font-size: 20px;
    line-height: 22px;
    padding: 16px;
    width: 100%;
    height: 62px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  
  @media (max-width: 768px) {
    .box_input input {
      padding: 16px;
      font-size: 20px;
    }
  }
  
  @media (max-width: 495px) {
    .box_input input {
      padding: 8px 16px;
      font-size: 16px;
    }
  }
  
  .box_input .box_input__mistake {
    display: none;
    color: red;
    font-size: 12px;
    margin-top: 4px;
    line-height: 14px;
  }
  
  .sideMenuBox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 240;
  }
  
  .sideMenuBox.__active {
    pointer-events: all;
  }
  
  .sideMenuBox.__active .sideMenuBox__shadow {
    opacity: 1;
  }
  
  .sideMenuBox.__active .sideMenuBox__outer {
    -webkit-transform: none;
            transform: none;
    visibility: visible;
  }
  
  .sideMenuBox__shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 33, 42, 0.5);
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  
  .sideMenuBox__outer {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: calc(((100vw - 1440px) / 2) + 520px);
    padding-right: calc((100vw - 1440px) / 2);
    background-color: #365a6c;
    visibility: hidden;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  
  @media (max-width: 1440px) {
    .sideMenuBox__outer {
      width: 100%;
      max-width: 520px;
      padding-right: 16px;
    }
  }
  
  @media (max-width: 768px) {
    .sideMenuBox__outer {
      padding-right: 0px;
    }
  }
  
  .sideMenuBox__close {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 48px;
    right: 96px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    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;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 20;
  }
  
  .sideMenuBox__close:hover {
    -webkit-transition: 0.05s;
    transition: 0.05s;
  }
  
  .sideMenuBox__close:hover {
    -webkit-transition: 0.02s;
    transition: 0.02s;
  }
  
  @media (max-width: 1024px) {
    .sideMenuBox__close {
      top: 48px;
      right: 64px;
    }
  }
  
  @media (max-width: 768px) {
    .sideMenuBox__close {
      top: 36px;
      right: 48px;
    }
  }
  
  @media (max-width: 495px) {
    .sideMenuBox__close {
      top: 16px;
      right: 16px;
    }
  }
  
  .sideMenuBox__close:hover {
    opacity: 0.8;
  }
  
  .sideMenuBox__close:before, .sideMenuBox__close:after {
    content: "";
    width: 100%;
    height: 4px;
    display: block;
    background-color: #ffffff;
    position: absolute;
  }
  
  .sideMenuBox__close:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  
  .sideMenuBox__close:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  
  .sideMenuBox__scroller {
    position: relative;
    max-height: 100vh;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .sideMenuBox__scroller::-webkit-scrollbar {
    width: 0px;
    background: transparent;
  }
  
  .sideMenuBox__inner {
    position: relative;
    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;
    min-height: 100vh;
    padding: 40px 72px;
  }
  
  @media (max-width: 1024px) {
    .sideMenuBox__inner {
      padding: 36px 64px;
    }
  }
  
  @media (max-width: 768px) {
    .sideMenuBox__inner {
      padding: 32px 48px;
    }
  }
  
  @media (max-width: 495px) {
    .sideMenuBox__inner {
      padding: 16px 16px;
    }
  }
  
  .sideMenuBox__inner ._menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 48px 0;
  }
  
  .sideMenuBox__inner ._menu > a {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
  }
  
  .sideMenuBox__inner ._menu > a:not(:first-child) {
    margin-top: 40px;
  }
  
  @media (max-width: 1024px) {
    .sideMenuBox__inner ._menu > a:not(:first-child) {
      margin-top: 32px;
    }
  }
  
  @media (max-width: 768px) {
    .sideMenuBox__inner ._menu > a {
      font-size: 14px;
      line-height: 16px;
    }
    .sideMenuBox__inner ._menu > a:not(:first-child) {
      margin-top: 24px;
    }
  }
  
  @media (max-width: 495px) {
    .sideMenuBox__inner ._menu > a {
      font-size: 12px;
      line-height: 14px;
    }
    .sideMenuBox__inner ._menu > a:not(:first-child) {
      margin-top: 16px;
    }
  }
  
  .sideMenuBox__inner ._info .siteinfo.__phone {
    margin-bottom: 8px;
  }
  
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 260;
    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;
  }
  
  .modal.__active {
    pointer-events: all;
  }
  
  .modal.__active .modal__shadow {
    opacity: 1;
  }
  
  .modal.__active .modal__outer {
    -webkit-transform: none;
            transform: none;
    visibility: visible;
    opacity: 1;
  }
  
  .modal__shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 33, 42, 0.5);
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  
  .modal__outer {
    position: absolute;
    width: calc(100% - 32px);
    max-width: 1240px;
    visibility: hidden;
    -webkit-transform: translateY(32px);
            transform: translateY(32px);
    opacity: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  
  @media (max-width: 1024px) {
    .modal__outer {
      width: calc(100% - 32px);
      max-width: 640px;
    }
  }
  
  @media (max-width: 768px) {
    .modal__outer {
      padding-right: 0px;
    }
  }
  
  .modal__close {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 56px;
    right: 32px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    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;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 20;
  }
  
  .modal__close:hover {
    -webkit-transition: 0.05s;
    transition: 0.05s;
  }
  
  .modal__close:hover {
    -webkit-transition: 0.02s;
    transition: 0.02s;
  }
  
  @media (max-width: 1024px) {
    .modal__close {
      top: 64px;
      right: 32px;
    }
  }
  
  @media (max-width: 768px) {
    .modal__close {
      top: 36px;
      right: 8px;
    }
  }
  
  @media (max-width: 495px) {
    .modal__close {
      width: 24px;
      height: 24px;
      top: 36px;
      right: 8px;
    }
  }
  
  .modal__close:hover {
    opacity: 0.8;
  }
  
  .modal__close:before, .modal__close:after {
    content: "";
    width: 100%;
    height: 4px;
    display: block;
    background-color: #365a6c;
    position: absolute;
  }
  
  @media (max-width: 768px) {
    .modal__close:before, .modal__close:after {
      height: 2px;
    }
  }
  
  .modal__close:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  
  .modal__close:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  
  .modal__scroller {
    position: relative;
    max-height: 100vh;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .modal__scroller::-webkit-scrollbar {
    width: 0px;
    background: transparent;
  }
  
  .modal__inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #ffffff;
    -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;
    padding: 32px;
    padding-bottom: 0;
    border-radius: 10px;
    margin: 32px 0;
  }
  
  @media (max-width: 1024px) {
    .modal__inner {
      padding: 32px;
    }
  }
  
  @media (max-width: 768px) {
    .modal__inner {
      padding: 32px 16px;
    }
  }
  
  .modal h2 {
    font-size: 36px;
    line-height: 38px;
    margin-bottom: 32px;
    font-weight: 600;
    padding-right: 150px;
  }
  
  @media (max-width: 1024px) {
    .modal h2 {
      padding-right: 36px;
    }
  }
  
  @media (max-width: 768px) {
    .modal h2 {
      padding-right: 0;
      font-size: 32px;
      line-height: 34px;
    }
  }
  
  @media (max-width: 495px) {
    .modal h2 {
      font-size: 28px;
      line-height: 30px;
    }
  }
  
  .modal p {
    font-weight: 500;
    padding-right: 150px;
  }
  
  @media (max-width: 1024px) {
    .modal p {
      padding-right: 0;
    }
  }
  
  @media (max-width: 1024px) {
    .modal .row {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
    }
  }
  
  .modal .col {
    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;
  }
  
  .modal .col:first-child {
    width: 44%;
    padding-right: 110px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  
  .modal .col:last-child {
    width: 56%;
    padding-bottom: 32px;
  }
  
  @media (max-width: 1024px) {
    .modal .col:first-child, .modal .col:last-child {
      padding-right: 0;
      width: 100%;
      padding-bottom: 0;
    }
    .modal .col:first-child {
      display: none;
    }
  }
  
  .modal .structure_form_women {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .modal .structure_form_women > img {
    width: 100%;
    max-height: 600px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
  
  @media (max-width: 768px) {
    .modal .structure_form_women > img {
      width: 80%;
      max-width: 360px;
    }
  }
  
  .modal .structure_form_women_about {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    position: absolute;
    bottom: 10%;
    width: 90%;
    max-width: 340px;
    margin: auto;
    left: 0;
    right: 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px;
  }
  
  .modal .structure_form_women_about ._title {
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
  }
  
  .modal .structure_form_women_about ._text {
    margin-top: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
  }
  
  .modal .structure_phone_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 440px;
    margin: -12px;
    margin-top: 32px;
  }
  
  @media (max-width: 768px) {
    .modal .structure_phone_box {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: -8px;
      margin-top: 64px;
    }
  }
  
  .modal .structure_phone_box > * {
    margin: 12px;
  }
  
  @media (max-width: 1024px) {
    .modal .structure_phone_box > * {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
    }
  }
  
  @media (max-width: 768px) {
    .modal .structure_phone_box > * {
      margin: 8px 0px;
    }
  }
  
  @media (max-width: 495px) {
    .modal .structure_phone_box .btn {
      width: 100%;
    }
  }
  
  footer {
    background: #365a6c;
    color: #ffffff;
    padding-bottom: 24px;
  }
  
  @media (max-width: 768px) {
    footer {
      border-bottom: 32px solid #ffffff;
    }
  }
  
  footer ._inner {
    padding: 48px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;            -ms-flex-pack: center;            justify-content: center;
  }
  
  @media (max-width: 768px) {
    footer ._inner {
      -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;
      padding-bottom: 48px;
    }
  }
  
  @media (max-width: 495px) {
    footer ._inner {
      padding-bottom: 32px;
    }
  }
  
  footer ._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-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    footer ._info {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
    }
  }
  
  footer ._info_adress {
    margin-top: 24px;
    font-size: 16px;
  }
  
  @media (max-width: 768px) {
    footer ._info_adress {
      margin-bottom: 16px;
    }
  }
  
  @media (max-width: 768px) {
    footer .siteinfo {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      margin-top: 24px;
      text-align: center;
    }
  }
  
  footer .siteinfo.__phone .siteinfo_text {
    border-bottom: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #365a6c;
  }
  
  footer .siteinfo.__phone .siteinfo_text img {
    margin-left: 8px;
  }
  
  @media (max-width: 768px) {
    footer .siteinfo.__phone {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
  }
  
  footer .siteinfo.__socials {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  
  @media (max-width: 768px) {
    footer .siteinfo.__socials {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
  }
  
  footer ._menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 -20px;
  }
  
  @media (max-width: 768px) {
    footer ._menu {
      margin: 0 -16px;
    }
  }
  
  @media (max-width: 495px) {
    footer ._menu {
      margin: 0 -8px;
      -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;
    }
  }
  
  footer ._menu > a {
    margin: 12px 20px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
  }
  
  @media (max-width: 768px) {
    footer ._menu > a {
      font-size: 14px;
      margin: 12px 16px;
      line-height: 16px;
    }
  }
  
  @media (max-width: 495px) {
    footer ._menu > a {
      font-size: 12px;
      line-height: 14px;
      margin: 8px;
    }
  }
  
  .advantages {
    background-color: #ffffff;
    color: #365a6c;
  }
  
  .advantages ._inner {
    position: relative;
  }
  
  .advantages h3 {
    color: #365a6c;
  }
  
  .advantages .advantagesSlider {
    margin-top: 96px;
  }
  
  @media (max-width: 768px) {
    .advantages .advantagesSlider {
      margin-top: 36px;
    }
  }
  
  .advantages .advantagesSlider_item {
    width: 480px;
    background-color: #ffffff;
    color: #365a6c;
    padding: 40px;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  
  @media (max-width: 768px) {
    .advantages .advantagesSlider_item {
      width: 400px;
      padding: 32px;
    }
  }
  
  @media (max-width: 495px) {
    .advantages .advantagesSlider_item {
      width: 300px;
      padding: 24px;
    }
  }
  
  .advantages .advantagesSlider_item ._title {
    font-weight: 600;
    font-size: 26px;
    line-height: 28px;
  }
  
  @media (max-width: 768px) {
    .advantages .advantagesSlider_item ._title {
      font-size: 22px;
      line-height: 24px;
    }
  }
  
  @media (max-width: 495px) {
    .advantages .advantagesSlider_item ._title {
      font-size: 20px;
      line-height: 22px;
    }
  }
  
  .advantages .advantagesSlider_item ._text {
    margin-top: 24px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  
  .advantages .advantagesSlider_item ._image {
    height: 240px;
    margin: 0 -40px -40px;
    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;
    overflow: hidden;
  }
  
  @media (max-width: 768px) {
    .advantages .advantagesSlider_item ._image {
      margin: 0 -32px -32px;
    }
  }
  
  @media (max-width: 495px) {
    .advantages .advantagesSlider_item ._image {
      height: 220px;
      margin: 0 -24px -24px;
    }
  }
  
  .advantages .advantagesSlider_item img {
    -o-object-fit: cover;
    filter: drop-shadow(2px 4px 6px black);
    height: 100%;
    object-fit: contain;
    opacity: 0.6;
    width: 100%;
  }
  
  .advantages .arrows {
    position: absolute;
    top: 0;
    right: 0;
  }
  
  @media (max-width: 768px) {
    .advantages .arrows {
      margin-top: 36px;
      position: relative;
      margin-left: calc(((100vw - 240px) / 2) - 16px);
    }
  }
  
  @media (max-width: 495px) {
    .advantages .arrows {
      margin-left: calc(((100vw - 180px) / 2) - 16px);
    }
  }
  /*# sourceMappingURL=styles.css.map */