@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap");
body {
  font-family: 'Montserrat', sans-serif;
  color: #0D2133; }
  body.open {
    overflow: hidden; }

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

/* Firefox */
input[type=number] {
  -moz-appearance: textfield; }

.top {
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 7;
  background: #fff; }
  .top .block {
    display: flex;
    justify-content: flex-end;
    align-items: center; }
  @media (max-width: 1024px) {
    .top {
      display: none; } }

.language .langIcon {
  color: #0D2133;
  transition: color .3s ease-in; }
.language:hover .language_text {
  color: #1679C1;
  transition: color .3s ease-in; }
.language:hover .langIcon {
  color: #1679C1; }
.language_text {
  font-size: 14px;
  line-height: 14px;
  color: #0D2133;
  margin: 0 2px 0 1px; }
.language_btn {
  display: flex;
  text-decoration: none !important;
  transition: color .3s ease-in; }
.language .dropdown-menu {
  min-width: 60px;
  box-shadow: none;
  filter: drop-shadow(0px 0px 20px rgba(209, 217, 230, 0.5)), drop-shadow(0px 0px 20px rgba(255, 255, 255, 0.5)); }
  .language .dropdown-menu .language_item {
    font-size: 13px;
    line-height: 14px;
    color: #0D2133;
    text-decoration: none !important; }
    .language .dropdown-menu .language_item.active {
      font-weight: bold; }
    .language .dropdown-menu .language_item:hover {
      color: #1679C1; }

.block {
  width: 100%;
  max-width: 1320px;
  padding: 0 15px;
  margin: 0 auto; }

#logo {
  margin-right: 10px; }
  #logo .icon {
    display: none; }
  @media (max-width: 1024px) {
    #logo {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      height: 60px;
      order: 2; }
      #logo .icon {
        display: block; } }

header {
  height: 88px;
  border-top: 1px solid #EFEFEF;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 6;
  background: #fff; }
  header .block {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  @media (max-width: 1024px) {
    header {
      height: initial;
      padding-top: 10px; }
      header .block {
        flex-direction: column;
        padding: 0; } }

.bgCover {
  background: rgba(15, 15, 15, 0.2);
  position: fixed;
  top: 200px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: none; }
  .bgCover.open {
    display: block; }
  @media (max-width: 1024px) {
    .bgCover {
      z-index: 29;
      top: 0;
      background: rgba(15, 15, 15, 0.7); } }

.menu {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  height: 70px;
  border-top: 1px solid #EFEFEF;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
  background: #fff;
  /*@media (min-width: 1023px) {
    &_btn:hover {
      .bgCover, .menu_dropdown {
        display: block;
        animation: openMenu .4s ease;
      }
    }
  }*/ }
  .menu_row {
    display: flex;
    align-items: center; }
  .menu_links {
    padding-right: 30px;
    display: flex;
    height: 70px;
    border-right: 1px solid #EFEFEF; }
    .menu_links > ul {
      display: flex;
      align-items: center; }
      .menu_links > ul li.menu_link {
        margin: 0 15px;
        position: relative;
        cursor: pointer; }
        .menu_links > ul li.menu_link:after {
          content: '';
          position: absolute;
          left: 0;
          right: 0;
          height: 26px; }
        .menu_links > ul li.menu_link a, .menu_links > ul li.menu_link span {
          font-weight: 600;
          font-size: 14px;
          line-height: 17px;
          color: #0D2133;
          transition: color .3s ease-in;
          position: relative;
          z-index: 1; }
        .menu_links > ul li.menu_link .active {
          display: flex;
          align-items: center;
          color: #1679C1; }
        .menu_links > ul li.menu_link .child {
          position: absolute;
          background: #FFFFFF;
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          min-width: 250px;
          padding: 20px 25px;
          top: 40px;
          display: none; }
          .menu_links > ul li.menu_link .child_link {
            font-weight: 600;
            font-size: 14px;
            line-height: 17px;
            color: #0D2133;
            margin-bottom: 10px; }
            .menu_links > ul li.menu_link .child_link:hover a, .menu_links > ul li.menu_link .child_link:hover span {
              color: #1679C1; }
          .menu_links > ul li.menu_link .child_link:last-child {
            margin-bottom: 0; }
        .menu_links > ul li.menu_link:hover .child {
          display: block;
          animation: menuLinks .5s linear; }
        .menu_links > ul li.menu_link:hover > a, .menu_links > ul li.menu_link:hover > span {
          color: #1679C1; }
        @media (max-width: 1366px) {
          .menu_links > ul li.menu_link {
            margin: 0 10px; } }
      .menu_links > ul li:last-child {
        margin-right: 0; }
    @media (max-width: 1024px) {
      .menu_links {
        display: none; } }
@keyframes menuLinks {
  from {
    transform: translateY(-10px); }
  to {
    transform: translateY(0); } }
  .menu .links {
    display: flex; }
    .menu .links li {
      margin: 0 15px; }
      .menu .links li a:hover {
        color: #1679C1; }
      .menu .links li .active {
        color: #1679C1; }
      .menu .links li a, .menu .links li span {
        font-size: 14px;
        line-height: 17px;
        color: #0D2133; }
      @media (max-width: 1200px) {
        .menu .links li {
          margin: 0 10px; } }
    .menu .links li:last-child {
      margin-right: 0; }
    @media (max-width: 1024px) {
      .menu .links {
        display: none; } }
  .menu_dropdown {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -500px;
    height: 508px;
    z-index: 2;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: none;
    padding-top: 10px; }
    .menu_dropdown::before {
      content: '';
      left: 0;
      right: 0;
      top: 0;
      height: 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
      position: absolute; }
    .menu_dropdown.open {
      display: block;
      animation: openMenu .4s ease; }
    .menu_dropdown .item_list-title {
      font-weight: 600;
      font-size: 14px;
      line-height: 17px;
      color: #1679C1;
      margin-bottom: 10px; }
    .menu_dropdown .item_list li {
      margin-bottom: 5px; }
      .menu_dropdown .item_list li a {
        font-size: 14px;
        line-height: 17px;
        color: #0D2133;
        transition: all .3s ease-in; }
        .menu_dropdown .item_list li a:hover {
          color: #1679C1; }
    .menu_dropdown .item_img {
      margin: 10px; }
@keyframes openMenu {
  from {
    opacity: .3; }
  to {
    opacity: 1; } }
  .menu_dropdownWrap {
    display: flex; }
    .menu_dropdownWrap .item {
      width: 25%;
      padding-right: 10px;
      text-align: left; }
  .menu_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 230px;
    height: 52px;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px; }
    .menu_btn > a, .menu_btn > span {
      color: #fff; }
    .menu_btn .icon {
      display: inline-block;
      margin-right: 10px; }
    @media (max-width: 1024px) {
      .menu_btn {
        margin: 0 auto;
        font-size: 16px;
        line-height: 20px;
        max-width: 335px; } }
  .menu .bgCover.active, .menu .menu_dropdown.active {
    display: block;
    animation: openMenu .4s ease; }

.search {
  max-width: 360px;
  width: 100%;
  position: relative;
  border-radius: 10px;
  background: #F3F7F9; }
  .search [name="search"] {
    border: none;
    height: 44px;
    line-height: 44;
    padding: 5px 20px;
    outline: none !important;
    background: none;
    width: 100%;
    font-size: 14px;
    color: #555555; }
  .search_btn {
    position: absolute;
    right: 10px;
    border: none;
    background: none;
    padding: 10px;
    top: 5px; }
  .search.active {
    position: absolute;
    display: block;
    top: 0;
    max-width: 98%;
    animation: searchTop .4s linear; }
    .search.active .search_input {
      height: 40px;
      line-height: 40px; }
@keyframes searchTop {
  from {
    transform: translateY(-50px); }
  to {
    transform: translateY(0); } }
  @media (max-width: 1440px) {
    .search {
      max-width: 320px; } }
  @media (max-width: 1024px) {
    .search {
      display: none; } }

.custom_btn {
  border: none;
  background: linear-gradient(90deg, #1975C1 0%, #00AAC5 50%, #1975C1 100%) 0;
  background-size: 200%;
  transition: all .3s ease-in;
  color: #FFFFFF;
  border-radius: 10px; }
  .custom_btn:hover {
    background-position: 100%; }

.payment {
  width: 100%;
  max-width: 150px; }
  .payment_btn {
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px; }
  @media (max-width: 1024px) {
    .payment {
      display: none; } }

.infoBlock {
  display: flex; }
  .infoBlock_left p {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #0D2133; }
  .infoBlock_left span {
    font-size: 12px;
    line-height: 15px;
    color: #555555; }
  @media (max-width: 1024px) {
    .infoBlock_left {
      display: none; } }
  .infoBlock_right {
    text-align: right; }
    .infoBlock_right .tel a {
      font-weight: 600;
      font-size: 16px;
      line-height: 20px;
      color: #0D2133; }
    .infoBlock_right .mail {
      font-weight: 500;
      font-size: 14px;
      line-height: 17px;
      color: #1679C1; }
    @media (max-width: 1024px) {
      .infoBlock_right {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        justify-content: space-between;
        width: 100%;
        order: 1; }
        .infoBlock_right .tel a, .infoBlock_right .mail {
          font-size: 12px;
          line-height: 15px; } }
    @media (max-width: 360px) {
      .infoBlock_right {
        flex-direction: column;
        align-items: center; } }
  .infoBlock .item {
    padding: 0 25px; }
    @media (max-width: 1366px) {
      .infoBlock .item {
        padding: 0 15px; } }
  @media (max-width: 1024px) {
    .infoBlock {
      width: 100%;
      border-bottom: 1px solid #EFEFEF;
      padding-bottom: 10px; } }

.swiper-button-next, .swiper-button-prev {
  z-index: 1 !important; }

.swiper-button-next.mySwiper_btn {
  transform: rotate(180deg); }

.swiper-button-next {
  right: -30px; }

.swiper-button-prev {
  left: -30px; }

.mySwiper_btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%; }
  .mySwiper_btn:after, .mySwiper_btn:before {
    display: none; }

.slider {
  position: relative; }
  .slider .swiper-slide {
    border-radius: 24px; }
  .slider .desc {
    position: absolute;
    left: 100px;
    max-width: 520px;
    transform: translateY(-50%);
    top: 50%; }
    .slider .desc_title {
      font-weight: bold;
      font-size: 44px;
      line-height: 54px;
      display: flex;
      align-items: flex-end;
      color: #FFFFFF;
      margin-bottom: 10px;
      text-shadow: 0px 0px 2px #0d2133; }
    .slider .desc_text {
      font-weight: 500;
      font-size: 17px;
      line-height: 21px;
      color: #FFFFFF;
      text-shadow: 0px 0px 2px #0d2133; }
    @media (max-width: 1024px) {
      .slider .desc {
        left: 0;
        right: 0;
        top: 10px;
        transform: translate(0, 0);
        padding: 0 15px; }
        .slider .desc_title {
          font-size: 28px;
          line-height: 120%; }
        .slider .desc_text {
          font-size: 12px;
          line-height: 15px; } }
  @media (max-width: 1024px) {
    .slider {
      margin: 0 -15px; }
      .slider img {
        height: 320px;
        object-fit: cover;
        width: 100%;
        object-position: center; }
      .slider .mySwiper_btn {
        display: none; } }

.block_title, .advantages, .categories {
  margin-bottom: 30px;
  margin-top: 40px;
  text-align: center; }
  .block_title span, .advantages span, .categories span {
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase; }
  .block_title .desc, .advantages .desc, .categories .desc {
    font-weight: bold;
    font-size: 28px;
    line-height: 120%; }

.advantages {
  width: 100%;
  max-width: 1115px;
  padding: 0 15px;
  margin: 0 auto 40px; }
  .advantages_block {
    display: flex;
    justify-content: space-between; }
  .advantages_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100%/5);
    text-align: center; }
    .advantages_item .desc {
      margin-top: 16px;
      font-weight: 500;
      font-size: 14px;
      line-height: 140%;
      max-width: 185px; }
  @media (max-width: 1024px) {
    .advantages .advantages_block {
      flex-wrap: wrap;
      justify-content: center; }
    .advantages .advantages_item {
      width: calc(100%/3);
      margin-bottom: 20px; }
    .advantages .block_title span, .advantages .advantages span, .advantages .categories span {
      font-size: 12px; }
    .advantages .block_title .desc, .advantages .advantages .desc, .advantages .categories .desc {
      font-size: 24px; } }
@media (max-width: 1024px) and (max-width: 1024px) {
  .advantages .block_title span, .advantages .advantages span, .advantages .categories span {
    font-size: 12px; }
  .advantages .block_title .desc, .advantages .advantages .desc, .advantages .categories .desc {
    font-size: 24px;
    line-height: 120%; } }

  @media (max-width: 640px) {
    .advantages .advantages_item {
      width: calc(100%/2); } }
  @media (max-width: 480px) {
    .advantages .advantages_item {
      width: 100%;
      flex-direction: row; }
      .advantages .advantages_item .desc {
        margin-left: 20px;
        text-align: left; } }

.categories_wrap {
  padding-top: 40px; }

.categories {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px; }
  .categories .item {
    width: calc((100%/5) - 16px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
    margin: 0 8px 16px;
    min-height: 264px;
    transition: all .3s ease; }
    .categories .item img {
      display: inline-block;
      margin: 40px auto 16px; }
    .categories .item p {
      font-weight: 600;
      font-size: 16px;
      line-height: 20px;
      min-height: 44px;
      color: #0D2133;
      transition: all .3s ease; }
    .categories .item:hover {
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); }
      .categories .item:hover p {
        color: #1679C1; }
    @media (max-width: 1366px) {
      .categories .item {
        width: calc((100%/4) - 16px); } }
    @media (max-width: 1024px) {
      .categories .item {
        width: calc((100%/4) - 16px); }
        .categories .item p {
          font-size: 14px;
          line-height: 17px; } }
    @media (max-width: 768px) {
      .categories .item {
        width: calc((100%/3) - 16px); } }
    @media (max-width: 640px) {
      .categories .item {
        width: calc((100%/2) - 16px); } }
    @media (max-width: 360px) {
      .categories .item {
        width: calc((100%/1) - 16px); } }

.instagram {
  background: #F3F7F9;
  height: 780px;
  display: flex;
  align-items: center;
  position: relative; }
  .instagram:after, .instagram:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 40px; }
  .instagram:after {
    background-image: url("/catalog/view/theme/default/image/instbg.png");
    background-position: center;
    top: 0;
    z-index: 1; }
  .instagram:before {
    background-image: url("/catalog/view/theme/default/image/instbgbottom.png");
    background-position: center;
    bottom: 0;
    z-index: 1; }
  .instagram .title {
    font-weight: bold;
    font-size: 120px;
    line-height: 120%;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 30px; }
    .instagram .title .title_text {
      font-weight: bold;
      font-size: 28px;
      line-height: 120%;
      text-align: center;
      color: #0D2133;
      position: relative;
      margin-top: -20px; }
      .instagram .title .title_text:after {
        content: "Instagram";
        position: absolute;
        top: -10px;
        font-weight: 500;
        font-size: 12px;
        line-height: 100%;
        text-align: center;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        left: 50%;
        transform: translateX(-50%);
        color: #0D2133; }
      .instagram .title .title_text span {
        color: #00AAC5; }
    @media (max-width: 1024px) {
      .instagram .title {
        font-size: 60px; }
        .instagram .title .title_text {
          font-size: 24px;
          margin-top: 0; } }
    @media (max-width: 360px) {
      .instagram .title {
        font-size: 40px; }
        .instagram .title .title_text {
          font-size: 21px; } }
  .instagram_bottom {
    text-align: center;
    margin-top: 40px; }
    .instagram_bottom .insta_btn {
      border: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 220px;
      height: 56px;
      background: linear-gradient(90deg, #1975C1 0%, #00AAC5 50%, #1975C1 100%) 0;
      background-size: 200%;
      border-radius: 10px;
      color: #fff;
      transition: all .3s ease-in; }
      .instagram_bottom .insta_btn:hover {
        background-position: 100%; }
      .instagram_bottom .insta_btn span {
        display: inline-block;
        margin-left: 16px; }
  @media (max-width: 1366px) {
    .instagram .block {
      padding: 0 34px; }
    .instagram .swiper-slide {
      width: 260px;
      border-radius: 20px;
      height: 260px;
      overflow: hidden; } }
  @media (max-width: 1024px) {
    .instagram {
      height: initial;
      padding: 70px 0;
      overflow: hidden; }
      .instagram .block {
        padding: 0; } }

.reviews_block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .reviews_block .left {
    width: 100%;
    max-width: 360px;
    position: relative;
    margin-top: 50px; }
    .reviews_block .left .reviews_client {
      padding-bottom: 40px; }
    .reviews_block .left .swiper-pagination {
      display: flex;
      align-items: center;
      bottom: 5px; }
      .reviews_block .left .swiper-pagination .swiper-pagination-bullet {
        width: 4px;
        height: 4px;
        background: #00AAC5;
        margin: 0 7px;
        padding: 2px; }
        .reviews_block .left .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
          width: 8px;
          height: 8px;
          position: relative; }
          .reviews_block .left .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
            content: '';
            width: 14px;
            height: 14px;
            border: 1px solid #00AAC5;
            position: absolute;
            left: -3px;
            top: -3px;
            border-radius: 50%; }
    .reviews_block .left .more {
      font-weight: 500;
      font-size: 14px;
      line-height: 20px;
      color: #00AAC5;
      margin-top: 20px;
      display: inline-block;
      text-decoration: underline; }
      .reviews_block .left .more span {
        display: none; }
      .reviews_block .left .more:hover {
        text-decoration: none; }
    .reviews_block .left .reviews_client-Item .title {
      font-weight: bold;
      font-size: 18px;
      line-height: 140%;
      color: #0D2133; }
      .reviews_block .left .reviews_client-Item .title span {
        font-size: 14px;
        line-height: 140%;
        font-weight: normal;
        color: #555555; }
    .reviews_block .left .reviews_client-Item .descr {
      font-size: 18px;
      line-height: 160%;
      color: #0D2133; }
      @media (max-width: 1024px) {
        .reviews_block .left .reviews_client-Item .descr {
          font-size: 16px; } }
    .reviews_block .left .quote {
      position: absolute;
      left: -50px;
      top: -50px; }
  .reviews_block .right {
    width: 100%;
    max-width: 738px;
    max-height: 492px;
    position: relative; }
    .reviews_block .right .mySwiper_btn.swiper-button-disabled {
      opacity: 1;
      border: 1px solid rgba(221, 231, 236, 0.35); }
      .reviews_block .right .mySwiper_btn.swiper-button-disabled svg {
        opacity: .35; }
    .reviews_block .right .swiper-container {
      width: 100%;
      height: 100%;
      margin-left: auto;
      margin-right: auto; }
    .reviews_block .right .mySwiper_btn {
      border: 1px solid #DDE7EC;
      background: #fff;
      transform: translateY(-50%); }
      .reviews_block .right .mySwiper_btn.review_next {
        transform: translateY(-50%) rotate(180deg); }
    .reviews_block .right .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      height: calc((100% - 30px) / 2);
      border: 1px solid #DDE7EC;
      display: flex;
      justify-content: center;
      align-items: center; }
  @media (max-width: 1200px) {
    .reviews_block {
      justify-content: center; }
      .reviews_block .swiper-button-next, .reviews_block .swiper-button-prev {
        display: none; }
      .reviews_block .left {
        margin-bottom: 20px; }
        .reviews_block .left .quote {
          left: 0; }
      .reviews_block .right {
        max-height: 262px; }
      .reviews_block .left, .reviews_block .right {
        max-width: initial; } }

.welcome {
  margin-top: 40px;
  margin-bottom: 40px; }
  .welcome_title {
    font-weight: bold;
    font-size: 22px;
    line-height: 120%;
    text-align: center;
    color: #0D2133;
    margin-bottom: 30px; }
  .welcome_text {
    columns: 2;
    column-gap: 30px;
    font-size: 16px;
    line-height: 140%; }
  .welcome_block {
    font-size: 14px;
    line-height: 140%;
    color: #0D2133;
    max-height: 192px;
    position: relative;
    overflow: hidden; }
    .welcome_block.less:after {
      display: none; }
    .welcome_block.show {
      overflow: visible;
      max-height: initial; }
      .welcome_block.show:after {
        display: none; }
    .welcome_block:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
      transform: matrix(1, 0, 0, -1, 0, 0);
      height: 98px;
      pointer-events: none; }
  .welcome .read_more {
    display: inline-block;
    margin-top: 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-decoration-line: underline;
    color: #00AAC5;
    border: none;
    background: none; }
    .welcome .read_more:hover {
      text-decoration: none; }
  @media (max-width: 768px) {
    .welcome .welcome_title {
      font-size: 24px;
      line-height: 120%; }
    .welcome .welcome_text {
      columns: 1;
      column-gap: 0;
      font-size: 14px;
      line-height: 140%; }
    .welcome .welcome_block {
      max-height: 460px; }
      .welcome .welcome_block.show {
        overflow: visible;
        max-height: initial; } }

.order {
  background-image: url("/catalog/view/theme/default/image/assets/formBg.png");
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 90px;
  border-radius: 50px;
  overflow: hidden;
  width: initial; }
  .order [type="number"]::-webkit-outer-spin-button, .order [type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .order [type="number"][type=number] {
    -moz-appearance: textfield; }
  .order .title {
    font-weight: bold;
    font-size: 28px;
    line-height: 120%;
    color: #FFFFFF;
    text-align: center;
    width: 100%;
    margin-bottom: 24px; }
  .order_form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 363px;
    flex-direction: column; }
    .order_form .wrapper {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -8px;
      max-width: 850px; }
      .order_form .wrapper .item {
        width: calc((100%/3) - 16px);
        margin: 0 8px 20px; }
        .order_form .wrapper .item.error input {
          border: 1px solid firebrick; }
          .order_form .wrapper .item.error input::-webkit-input-placeholder {
            /* Chrome/Opera/Safari */
            color: firebrick; }
          .order_form .wrapper .item.error input::-moz-placeholder {
            /* Firefox 19+ */
            color: firebrick; }
          .order_form .wrapper .item.error input:-ms-input-placeholder {
            /* IE 10+ */
            color: firebrick; }
          .order_form .wrapper .item.error input:-moz-placeholder {
            /* Firefox 18- */
            color: firebrick; }
        .order_form .wrapper .item input, .order_form .wrapper .item textarea {
          font-size: 14px;
          line-height: 140%;
          color: #555555;
          background: #F5F7F9;
          border: 1px solid #FFFFFF;
          box-sizing: border-box;
          border-radius: 10px;
          width: 100%;
          outline: none !important; }
        .order_form .wrapper .item input {
          height: 50px;
          width: 100%;
          box-sizing: border-box;
          padding: 0 15px; }
        .order_form .wrapper .item.description {
          width: calc(100% - 16px); }
          .order_form .wrapper .item.description textarea {
            height: 92px;
            padding: 15px; }
        @media (max-width: 768px) {
          .order_form .wrapper .item {
            width: 100%; } }
    .order_form .form_btn {
      border: 1px solid #FFFFFF;
      box-sizing: border-box;
      border-radius: 10px;
      background: none;
      width: 100%;
      max-width: 220px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: all .3s ease; }
      .order_form .form_btn:hover {
        background: #fff;
        color: #0D2133; }
    @media (max-width: 768px) {
      .order_form {
        height: initial;
        padding: 40px 0; } }
    .order_form .success {
      display: none; }
    .order_form.success .order_bottom {
      position: relative; }
      .order_form.success .order_bottom .success {
        display: block;
        position: absolute;
        bottom: -20px;
        width: 100%;
        text-align: center;
        color: lightgreen; }
  .order_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .order_bottom [type=file] {
      display: none; }
    .order_bottom .attach {
      display: flex;
      align-items: center;
      justify-content: center; }
      .order_bottom .attach_title p {
        font-weight: 600;
        font-size: 14px;
        line-height: 17px;
        color: #FFFFFF; }
      .order_bottom .attach_title span {
        font-size: 12px;
        line-height: 140%;
        color: #CCE7F5; }
      .order_bottom .attach .icon {
        margin-right: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        cursor: pointer; }
      .order_bottom .attach.error .attach_title span {
        color: firebrick; }
    @media (max-width: 768px) {
      .order_bottom {
        flex-direction: column; }
        .order_bottom .attach {
          margin-bottom: 24px; }
          .order_bottom .attachIcon {
            min-width: 50px; }
        .order_bottom .form_btn {
          max-width: initial;
          font-size: 14px;
          line-height: 17px; } }
  @media (max-width: 1366px) {
    .order {
      margin: 0 20px 90px; } }
  @media (max-width: 768px) {
    .order {
      background-size: cover;
      background: linear-gradient(90deg, #1975C1 0%, #00AAC5 100%);
      border-radius: 20px; }
      .order .title {
        font-size: 22px;
        line-height: 24px; }
      .order .description textarea {
        height: 220px !important; } }

footer {
  background: #F3F7F9;
  position: relative; }
  footer:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    background-image: url(/catalog/view/theme/default/image/instbg.png);
    background-position: center;
    top: 0;
    z-index: 1;
    pointer-events: none; }
  footer .footer_contact .address {
    margin-bottom: 15px; }
    footer .footer_contact .address p {
      font-weight: 600;
      font-size: 14px;
      line-height: 17px;
      color: #0D2133; }
    footer .footer_contact .address span {
      font-size: 12px;
      line-height: 15px;
      color: #0D2133; }
  footer .footer_contact .info .tel a {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #0D2133; }
  footer .footer_contact .info .mail {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-decoration-line: underline;
    color: #0D2133; }
  footer .social {
    display: flex;
    align-items: center;
    margin-top: 10px; }
    footer .social_icon {
      width: 48px;
      height: 48px;
      box-shadow: 10px 10px 20px #D1D9E6, -10px -10px 20px #FFFFFF;
      background: #FFFFFF;
      border-radius: 50%;
      margin-right: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .3s ease; }
      footer .social_icon:hover {
        transform: scale(1.2); }
  @media (max-width: 1024px) {
    footer .footer {
      height: initial;
      flex-wrap: wrap;
      padding-bottom: 45px; }
      footer .footer .footer_item:nth-of-type(1) {
        width: 100%; } }
  @media (max-width: 768px) {
    footer .footer .footer_item:nth-of-type(1) ~ .footer_item {
      width: 100%;
      padding-top: 30px; } }

.footer {
  display: flex;
  justify-content: space-between;
  height: 413px;
  position: relative;
  z-index: 1; }
  .footer .logo p {
    font-size: 12px;
    line-height: 140%;
    color: #0D2133;
    margin-top: 20px; }
  .footer_item {
    width: 25%;
    padding-right: 30px;
    padding-top: 90px; }
    .footer_item .title {
      font-weight: bold;
      font-size: 16px;
      line-height: 24px;
      color: #0D2133;
      margin-bottom: 30px;
      position: relative; }
      .footer_item .title:after {
        content: '';
        width: 30px;
        height: 1px;
        background: #00AAC5;
        position: absolute;
        bottom: -13px;
        left: 0; }
    .footer_item ul li {
      margin-bottom: 15px; }
      .footer_item ul li a {
        font-size: 14px;
        line-height: 140%;
        color: #0D2133; }
        .footer_item ul li a:hover {
          text-decoration: underline; }

.fake {
  position: relative; }
  .fake:before {
    content: '*';
    position: absolute;
    right: -5px;
    top: 5px;
    color: red; }

.menuMob {
  position: fixed;
  left: -364px;
  top: 0;
  bottom: 0;
  width: 316px;
  z-index: 30;
  background: #fff;
  transition: left .3s ease-in; }
  .menuMob.open {
    left: 0; }
  .menuMob .wrap {
    overflow-y: auto;
    max-height: calc(100% - 88px); }
  .menuMob_top {
    margin-top: 56px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative; }
    .menuMob_top .mob_cross {
      position: absolute;
      right: -44px;
      cursor: pointer; }
  .menuMob_body {
    margin-top: 35px; }
    .menuMob_body .accord {
      border-top: 1px solid #DDE7EC;
      border-bottom: 1px solid #DDE7EC;
      padding: 15px; }
      .menuMob_body .accord .title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        color: #0D2133; }
      .menuMob_body .accord .child {
        display: none; }
        .menuMob_body .accord .child_title {
          margin: 15px 0; }
          .menuMob_body .accord .child_title span, .menuMob_body .accord .child_title a {
            font-size: 14px;
            line-height: 120%;
            color: #00AAC5;
            font-weight: bold; }
        .menuMob_body .accord .child ul li {
          margin-bottom: 10px; }
          .menuMob_body .accord .child ul li a, .menuMob_body .accord .child ul li span {
            font-weight: 500;
            font-size: 14px;
            line-height: 120%;
            color: #0D2133; }
          .menuMob_body .accord .child ul li span {
            font-weight: 400;
            color: #00AAC5; }
      .menuMob_body .accord .icon svg {
        color: #0D2133;
        transition: all .3s ease; }
      .menuMob_body .accord ~ .accord {
        margin-top: -1px; }
      .menuMob_body .accord.open .child {
        display: block; }
      .menuMob_body .accord.open .icon svg {
        transform: rotate(180deg);
        color: #00AAC5; }
  .menuMob .mob_links {
    padding: 15px 15px 0; }
    .menuMob .mob_links li {
      margin-bottom: 10px; }
      .menuMob .mob_links li a, .menuMob .mob_links li span {
        font-size: 14px;
        line-height: 140%;
        color: #0D2133; }
  .menuMob_bottom {
    padding: 20px 15px; }
    .menuMob_bottom .infoBlock {
      flex-direction: column;
      border-bottom: none; }
      .menuMob_bottom .infoBlock_left {
        display: block;
        margin-bottom: 20px;
        padding: 0; }
      .menuMob_bottom .infoBlock_right {
        flex-direction: column;
        align-items: flex-start;
        padding: 0; }
    .menuMob_bottom .mobOrder_btn {
      width: 100%;
      max-width: 150px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 12px;
      line-height: 15px; }
  .menuMob .langMob {
    display: flex;
    align-items: center;
    padding: 3px 4px;
    background: #EAEFF2;
    border-radius: 5px; }
    .menuMob .langMob_btn {
      width: 50px;
      height: 26px;
      color: #555555;
      opacity: 0.9;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      line-height: 17px; }
      .menuMob .langMob_btn.active {
        background: #FFFFFF;
        color: #0D2133;
        border-radius: 5px;
        font-weight: 500; }
  @media (max-width: 365px) {
    .menuMob {
      width: 275px; }
      .menuMob .mob_cross {
        right: -35px; } }

.cback_modal .wrapper .item.error label {
  color: darkred; }

.modal-confirm {
  color: #636363;
  width: 100%;
  max-width: 320px;
  font-size: 14px;
  margin: 0 auto; }

.modal-confirm .modal-content {
  padding: 20px;
  border-radius: 5px;
  border: none; }

.modal-confirm .modal-header {
  border-bottom: none;
  position: relative; }

.modal-confirm .modal-title {
  text-align: center;
  font-size: 26px;
  margin: 30px 0 -15px; }

.modal-confirm .form-control, .modal-confirm .btn {
  min-height: 40px;
  border-radius: 3px; }

.modal-confirm .close {
  position: absolute;
  top: -5px;
  right: -5px; }

.modal-confirm .modal-footer {
  border: none;
  text-align: center;
  border-radius: 5px;
  font-size: 13px; }

.modal-confirm .icon-box {
  color: #fff;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -70px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  z-index: 9;
  background: #25ae88;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); }

.modal-confirm .icon-box {
  display: flex;
  align-items: center;
  justify-content: center; }

.modal-confirm.modal-dialog {
  margin-top: 80px; }

.modal-confirm .btn {
  color: #fff;
  border-radius: 4px;
  background: #82ce34;
  text-decoration: none;
  transition: all 0.4s;
  line-height: normal;
  border: none; }

.modal-confirm .btn:hover, .modal-confirm .btn:focus {
  background: #6fb32b;
  outline: none; }

.trigger-btn {
  display: inline-block;
  margin: 100px auto; }

@media (max-width: 1024px) {
  .resp_table {
    overflow-x: auto; }
    .resp_table .table {
      min-width: 640px; } }

/*# sourceMappingURL=main.css.map */
