html {
  min-height: 100%;
  height: 100%; }

body {
  font-size: 12px;
  font-family: 'Suisse Intl', Arial, sans-serif;
  text-align: left;
  color: #000;
  background: #F8F9FE;
  /*min-height: 100%;
  height: 100%;*/
  overflow-y: overlay;
  position: relative; }
  body.overflow {
    overflow: hidden; }
  body::-webkit-scrollbar-button {
    background-image: url("");
    background-repeat: no-repeat;
    width: 4px;
    height: 0px; }
  body::-webkit-scrollbar-track {
    background-color: transparent;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    border-radius: 2px; }
  body::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background-color: rgba(0, 0, 0, 0.3);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px; }
  body::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.6); }
  body::-webkit-resizer {
    background-image: url("");
    background-repeat: no-repeat;
    width: 0px;
    height: 0px; }
  body::-webkit-scrollbar {
    width: 4px; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

a.full_link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute !important;
  left: 0;
  top: 0; }

a {
  color: #1B69DE;
  text-decoration: underline; }
  a:hover {
    text-decoration: none; }

input, select, textarea {
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  font-family: 'Suisse Intl'; }

input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
  -webkit-appearance: none;
  border-radius: 0; }

video::-webkit-media-controls-panel {
  display: none;
  -webkit-appearance: none; }

video::-webkit-media-controls-play-button {
  display: none;
  -webkit-appearance: none; }

video::-webkit-media-controls-start-playback-button {
  display: none;
  -webkit-appearance: none; }

video::-webkit-media-controls {
  display: none;
  -webkit-appearance: none; }

#header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 240px;
  width: 100%; }
  #header > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    padding: 0 40px;
    position: relative; }

.logo {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
  .logo a {
    display: inline-block;
    width: 168px;
    height: 160px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-image: url(../img/logo.png?v=2); }

.header_contacts p {
  margin: 0 0 16px;
  padding: 0 0 0 40px;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  position: relative; }
  .header_contacts p.phone::before {
    background-image: url(../img/phone_blue_icon.svg); }
  .header_contacts p.email::before {
    background-image: url(../img/email_blue_icon.svg); }
  .header_contacts p::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: 50%;
    position: absolute;
    left: 0;
    top: calc(50% - 12px); }
  .header_contacts p:last-child {
    margin: 0; }

.header_contacts a {
  color: #000;
  text-decoration: underline; }
  .header_contacts a:hover {
    text-decoration: none; }

.lang {
  font-size: 0; }
  .lang a {
    display: inline-block;
    width: 52px;
    height: 52px;
    margin: 0 0 0 12px;
    font-size: 14px;
    line-height: 52px;
    text-align: center;
    color: #000;
    text-decoration: none;
    -webkit-box-shadow: inset 0 0 0 1px rgba(74, 121, 189, 0.3);
    box-shadow: inset 0 0 0 1px rgba(74, 121, 189, 0.3);
    border-radius: 50%;
    -webkit-transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
    -o-transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1); }
    .lang a.active {
      color: #4A79BD;
      -webkit-box-shadow: inset 0 0 0 1px #4a79bd;
      box-shadow: inset 0 0 0 1px #4a79bd; }
    .lang a:hover {
      -webkit-box-shadow: inset 0 0 0 1px #4a79bd;
      box-shadow: inset 0 0 0 1px #4a79bd; }

.contant_wrapper {
  padding: 70px 0 40px; }
  .contant_wrapper > div {
    max-width: 980px;
    padding: 0 20px;
    margin: 0 auto; }
  .contant_wrapper header {
    padding: 0 0 48px;
    text-align: center; }
    .contant_wrapper header p {
      padding: 0 0 40px;
      font-size: 18px;
      line-height: 1.33;
      text-align: center;
      color: #000; }
  .contant_wrapper h1 {
    padding: 0 0 24px;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.17;
    text-align: center;
    letter-spacing: -0.03em;
    color: #4A79BD; }

.two_link {
  font-size: 0; }
  .two_link.only_mobile {
    display: none;
    padding: 0 0 24px; }
  .two_link ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .two_link li {
    padding: 0 12px;
    text-align: center; }
  .two_link a {
    display: inline-block;
    min-width: 280px;
    height: 60px;
    padding: 0 24px;
    font-size: 16px;
    line-height: 60px;
    text-align: center;
    color: #4A79BD;
    text-decoration: none;
    -webkit-box-shadow: inset 0 0 0 1px #4A79BD;
    box-shadow: inset 0 0 0 1px #4A79BD;
    border-radius: 30px;
    -webkit-transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
    -o-transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1); }
    .two_link a:hover {
      color: #fff;
      background-color: #4A79BD; }
    .two_link a.orange {
      color: #fff;
      background-color: #FC891F;
      -webkit-box-shadow: inset 0 0 0 1px #FC891F;
      box-shadow: inset 0 0 0 1px #FC891F; }
      .two_link a.orange:hover {
        color: #FC891F;
        background-color: #fff; }

.text {
  padding: 0 0 16px;
  font-size: 18px;
  line-height: 1.33;
  text-align: center;
  color: #000; }
  .text p {
    padding: 0 0 24px; }

.two_image {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(-webkit-min-content, -webkit-max-content);
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 24px 24px;
  padding: 0 0 40px; }
  .two_image figure {
    margin: 0; }
  .two_image img {
    display: block;
    width: 100%; }

.single_slider {
  margin: 0 0 40px;
  position: relative; }
  .single_slider figure {
    width: 100%;
    margin: 0; }
  .single_slider img {
    display: block;
    width: 100%; }
  .single_slider .flickity-viewport {
    position: relative;
    overflow: hidden; }
  .single_slider .flickity-button {
    display: block;
    width: 48px;
    height: 48px;
    border: none;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 50%;
    background-image: url(../img/slider_blue_icon.svg);
    position: absolute;
    bottom: 24px;
    border-radius: 50%;
    cursor: pointer; }
    .single_slider .flickity-button svg {
      display: none; }
    .single_slider .flickity-button.previous {
      left: calc(50% - 52px); }
    .single_slider .flickity-button.next {
      left: calc(50% + 8px);
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg); }
  .single_slider .flickity-page-dots {
    display: none;
    width: 100%;
    height: 6px;
    position: absolute;
    left: 0;
    bottom: 16px;
    text-align: center; }
  .single_slider .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
    -o-transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1); }
    .single_slider .dot.is-selected {
      background-color: white;
      -webkit-box-shadow: 0 0 0 1px #fff;
      box-shadow: 0 0 0 1px #fff; }

.last_block {
  padding: 40px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.07); }
  .last_block h3 {
    padding: 0 0 36px;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.33;
    text-align: center;
    color: #4A79BD; }

.footer_contacts {
  text-align: center; }
  .footer_contacts p {
    display: inline-block;
    margin: 0 20px;
    padding: 0 0 0 40px;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    position: relative; }
    .footer_contacts p.phone::before {
      background-image: url(../img/phone_blue_icon.svg); }
    .footer_contacts p.email::before {
      background-image: url(../img/email_blue_icon.svg); }
    .footer_contacts p::before {
      content: "";
      display: block;
      width: 24px;
      height: 24px;
      background-repeat: no-repeat;
      background-position: 50%;
      position: absolute;
      left: 0;
      top: calc(50% - 12px); }
  .footer_contacts a {
    color: #000;
    text-decoration: underline; }
    .footer_contacts a:hover {
      text-decoration: none; }

.jis {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 32px 0 0; }
  .jis p {
    padding: 0 10px 0 0;
    font-size: 12px;
    line-height: 2.67;
    color: rgba(0, 0, 0, 0.8); }
  .jis a {
    display: inline-block;
    padding: 0 0 0 30px;
    font-weight: 500;
    font-size: 12px;
    line-height: 2.67;
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    position: relative; }
    .jis a:hover {
      color: #000;
      text-decoration: underline; }
    .jis a::before {
      content: "";
      display: block;
      width: 20px;
      height: 20px;
      background: url(../img/jis_logo.svg) no-repeat 0 0;
      position: absolute;
      left: 0;
      top: calc(50% - 10px); }

.youtube_video {
  padding: 0 0 24px; }

.flying_social {
  font-size: 0;
  position: fixed;
  left: 20px;
  bottom: calc(50% - 104px); }
  .flying_social a {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 0 8px;
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-box-shadow: inset 0 0 0 1px rgba(74, 121, 189, 0.3);
    box-shadow: inset 0 0 0 1px rgba(74, 121, 189, 0.3);
    border-radius: 50%;
    -webkit-transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
    -o-transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1); }
    .flying_social a:hover {
      -webkit-box-shadow: inset 0 0 0 1px rgba(74, 121, 189, 0.6);
      box-shadow: inset 0 0 0 1px rgba(74, 121, 189, 0.6); }
    .flying_social a.instagram {
      background-image: url(../img/instagram_blue_icon.svg); }
    .flying_social a.facebook {
      background-image: url(../img/facebook_blue_icon.svg); }
    .flying_social a.youtube {
      background-image: url(../img/youtube_blue_icon.svg); }

.photo_info {
  display: inline-block;
  padding: 6px 12px 5px;
  font-size: 13px;
  line-height: 1.1;
  color: #333;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 0;
  bottom: 0; }
