.datepicker--cells {
  display: flex;
  flex-wrap: wrap; }

.datepicker--cell {
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 32px;
  z-index: 1; }

.datepicker--cell.-focus- {
  background: #f0f0f0; }

.datepicker--cell.-current- {
  color: #4EB5E6; }

.datepicker--cell.-current-.-focus- {
  color: #4a4a4a; }

.datepicker--cell.-current-.-in-range- {
  color: #4EB5E6; }

.datepicker--cell.-in-range- {
  background: rgba(92, 196, 239, 0.1);
  color: #4a4a4a;
  border-radius: 0; }

.datepicker--cell.-in-range-.-focus- {
  background-color: rgba(92, 196, 239, 0.2); }

.datepicker--cell.-disabled- {
  cursor: default;
  color: #aeaeae; }

.datepicker--cell.-disabled-.-focus- {
  color: #aeaeae; }

.datepicker--cell.-disabled-.-in-range- {
  color: #a1a1a1; }

.datepicker--cell.-disabled-.-current-.-focus- {
  color: #aeaeae; }

.datepicker--cell.-range-from- {
  border: 1px solid rgba(92, 196, 239, 0.5);
  background-color: rgba(92, 196, 239, 0.1);
  border-radius: 4px 0 0 4px; }

.datepicker--cell.-range-to- {
  border: 1px solid rgba(92, 196, 239, 0.5);
  background-color: rgba(92, 196, 239, 0.1);
  border-radius: 0 4px 4px 0; }

.datepicker--cell.-selected-, .datepicker--cell.-selected-.-current- {
  color: #fff;
  background: #5cc4ef; }

.datepicker--cell.-range-from-.-range-to- {
  border-radius: 4px; }

.datepicker--cell.-selected- {
  border: none; }

.datepicker--cell.-selected-.-focus- {
  background: #45bced; }

.datepicker--cell:empty {
  cursor: default; }

.datepicker--days-names {
  display: flex;
  flex-wrap: wrap;
  margin: 8px 0 3px; }

.datepicker--day-name {
  color: #FF9A19;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: .8em; }

.-only-timepicker- .datepicker--content, .datepicker--body, .datepicker-inline .datepicker--pointer {
  display: none; }

.datepicker--cell-day {
  width: 14.28571%; }

.datepicker--cells-months {
  height: 170px; }

.datepicker--cell-month {
  width: 33.33%;
  height: 25%; }

.datepicker--cells-years, .datepicker--years {
  height: 170px; }

.datepicker--cell-year {
  width: 25%;
  height: 33.33%; }

.datepickers-container {
  position: absolute;
  left: 0;
  top: 0; }

@media print {
  .datepickers-container {
    display: none; } }

.datepicker {
  background: #fff;
  border: 1px solid #dbdbdb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-sizing: content-box;
  font-family: Tahoma,sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  width: 250px;
  position: absolute;
  left: -100000px;
  opacity: 0;
  transition: opacity .3s ease,transform .3s ease,left 0s .3s;
  z-index: 100; }

.datepicker.-from-top- {
  transform: translateY(-8px); }

.datepicker.-from-right- {
  transform: translateX(8px); }

.datepicker.-from-bottom- {
  transform: translateY(8px); }

.datepicker.-from-left- {
  transform: translateX(-8px); }

.datepicker.active {
  opacity: 1;
  transform: translate(0);
  transition: opacity .3s ease,transform .3s ease,left 0s 0s; }

.datepicker-inline .datepicker {
  border-color: #d7d7d7;
  box-shadow: none;
  position: static;
  left: auto;
  right: auto;
  opacity: 1;
  transform: none; }

.datepicker--content {
  box-sizing: content-box;
  padding: 4px; }

.datepicker--pointer {
  position: absolute;
  background: #fff;
  border-top: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
  width: 10px;
  height: 10px;
  z-index: -1; }

.datepicker--nav-action:hover, .datepicker--nav-title:hover {
  background: #f0f0f0; }

.-top-center- .datepicker--pointer, .-top-left- .datepicker--pointer, .-top-right- .datepicker--pointer {
  top: calc(100% - 4px);
  transform: rotate(135deg); }

.-right-bottom- .datepicker--pointer, .-right-center- .datepicker--pointer, .-right-top- .datepicker--pointer {
  right: calc(100% - 4px);
  transform: rotate(225deg); }

.-bottom-center- .datepicker--pointer, .-bottom-left- .datepicker--pointer, .-bottom-right- .datepicker--pointer {
  bottom: calc(100% - 4px);
  transform: rotate(315deg); }

.-left-bottom- .datepicker--pointer, .-left-center- .datepicker--pointer, .-left-top- .datepicker--pointer {
  left: calc(100% - 4px);
  transform: rotate(45deg); }

.-bottom-left- .datepicker--pointer, .-top-left- .datepicker--pointer {
  left: 10px; }

.-bottom-right- .datepicker--pointer, .-top-right- .datepicker--pointer {
  right: 10px; }

.-bottom-center- .datepicker--pointer, .-top-center- .datepicker--pointer {
  left: calc(50% - 10px / 2); }

.-left-top- .datepicker--pointer, .-right-top- .datepicker--pointer {
  top: 10px; }

.-left-bottom- .datepicker--pointer, .-right-bottom- .datepicker--pointer {
  bottom: 10px; }

.-left-center- .datepicker--pointer, .-right-center- .datepicker--pointer {
  top: calc(50% - 10px / 2); }

.datepicker--body.active {
  display: block; }

.datepicker--nav {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #efefef;
  min-height: 32px;
  padding: 4px; }

.-only-timepicker- .datepicker--nav {
  display: none; }

.datepicker--nav-action, .datepicker--nav-title {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center; }

.datepicker--nav-action {
  width: 32px;
  border-radius: 4px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.datepicker--nav-action.-disabled- {
  visibility: hidden; }

.datepicker--nav-action svg {
  width: 32px;
  height: 32px; }

.datepicker--nav-action path {
  fill: none;
  stroke: #9c9c9c;
  stroke-width: 2px; }

.datepicker--nav-title {
  border-radius: 4px;
  padding: 0 8px; }

.datepicker--buttons, .datepicker--time {
  border-top: 1px solid #efefef;
  padding: 4px; }

.datepicker--nav-title i {
  font-style: normal;
  color: #9c9c9c;
  margin-left: 5px; }

.datepicker--nav-title.-disabled- {
  cursor: default;
  background: 0 0; }

.datepicker--buttons {
  display: flex; }

.datepicker--button {
  color: #4EB5E6;
  cursor: pointer;
  border-radius: 4px;
  flex: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 32px; }

.datepicker--button:hover {
  color: #4a4a4a;
  background: #f0f0f0; }

.datepicker--time {
  display: flex;
  align-items: center;
  position: relative; }

.datepicker--time.-am-pm- .datepicker--time-sliders {
  flex: 0 1 138px;
  max-width: 138px; }

.-only-timepicker- .datepicker--time {
  border-top: none; }

.datepicker--time-sliders {
  flex: 0 1 153px;
  margin-right: 10px;
  max-width: 153px; }

.datepicker--time-label {
  display: none;
  font-size: 12px; }

.datepicker--time-current {
  display: flex;
  align-items: center;
  flex: 1;
  font-size: 14px;
  text-align: center;
  margin: 0 0 0 10px; }

.datepicker--time-current-colon {
  margin: 0 2px 3px;
  line-height: 1; }

.datepicker--time-current-hours, .datepicker--time-current-minutes {
  line-height: 1;
  font-size: 19px;
  font-family: "Century Gothic",CenturyGothic,AppleGothic,sans-serif;
  position: relative;
  z-index: 1; }

.datepicker--time-current-hours:after, .datepicker--time-current-minutes:after {
  content: '';
  background: #f0f0f0;
  border-radius: 4px;
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0; }

.datepicker--time-current-hours.-focus-:after, .datepicker--time-current-minutes.-focus-:after {
  opacity: 1; }

.datepicker--time-current-ampm {
  text-transform: uppercase;
  align-self: flex-end;
  color: #9c9c9c;
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px; }

.datepicker--time-row {
  display: flex;
  align-items: center;
  font-size: 11px;
  height: 17px;
  background: linear-gradient(to right, #dedede, #dedede) left 50%/100% 1px no-repeat; }

.datepicker--time-row:first-child {
  margin-bottom: 4px; }

.datepicker--time-row input[type=range] {
  background: 0 0;
  cursor: pointer;
  flex: 1;
  height: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none; }

.datepicker--time-row input[type=range]::-ms-tooltip {
  display: none; }

.datepicker--time-row input[type=range]:hover::-webkit-slider-thumb {
  border-color: #b8b8b8; }

.datepicker--time-row input[type=range]:hover::-moz-range-thumb {
  border-color: #b8b8b8; }

.datepicker--time-row input[type=range]:hover::-ms-thumb {
  border-color: #b8b8b8; }

.datepicker--time-row input[type=range]:focus {
  outline: 0; }

.datepicker--time-row input[type=range]:focus::-webkit-slider-thumb {
  background: #5cc4ef;
  border-color: #5cc4ef; }

.datepicker--time-row input[type=range]:focus::-moz-range-thumb {
  background: #5cc4ef;
  border-color: #5cc4ef; }

.datepicker--time-row input[type=range]:focus::-ms-thumb {
  background: #5cc4ef;
  border-color: #5cc4ef; }

.datepicker--time-row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -webkit-transition: background .2s;
  transition: background .2s;
  margin-top: -6px; }

.datepicker--time-row input[type=range]::-moz-range-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -moz-transition: background .2s;
  transition: background .2s; }

.datepicker--time-row input[type=range]::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -ms-transition: background .2s;
  transition: background .2s; }

.datepicker--time-row input[type=range]::-webkit-slider-runnable-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: 0 0; }

.datepicker--time-row input[type=range]::-moz-range-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: 0 0; }

.datepicker--time-row input[type=range]::-ms-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: 0 0; }

.datepicker--time-row input[type=range]::-ms-fill-lower {
  background: 0 0; }

.datepicker--time-row input[type=range]::-ms-fill-upper {
  background: 0 0; }

.datepicker--time-row span {
  padding: 0 12px; }

.datepicker--time-icon {
  color: #9c9c9c;
  border: 1px solid;
  border-radius: 50%;
  font-size: 16px;
  position: relative;
  margin: 0 5px -1px 0;
  width: 1em;
  height: 1em; }

.datepicker--time-icon:after, .datepicker--time-icon:before {
  content: '';
  background: currentColor;
  position: absolute; }

.datepicker--time-icon:after {
  height: .4em;
  width: 1px;
  left: calc(50% - 1px);
  top: calc(50% + 1px);
  transform: translateY(-100%); }

.datepicker--time-icon:before {
  width: .4em;
  height: 1px;
  top: calc(50% + 1px);
  left: calc(50% - 1px); }

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
  color: #dedede; }

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5; }

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede; }

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6; }

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4; }

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #ccc; }

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2); }

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
  background: 0 0;
  border: none; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*`Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */ }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%; }

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none; }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/**
 * Swiper 4.4.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 19, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height; }

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px; }

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  touch-action: pan-y; }

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  touch-action: pan-x; }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat; }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto; }

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto; }

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-lock {
  display: none; }

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33); }

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left; }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right; }

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

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

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff; }

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

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000; }

.swiper-pagination-lock {
  display: none; }

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg); } }

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube {
  overflow: visible; }

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0; }

.swiper-container-flip {
  overflow: visible; }

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px; }

.swiper-button-prev {
  background-color: rgba(115, 178, 238, 0.5) !important; }

.swiper-button-next {
  background-color: rgba(115, 178, 238, 0.5) !important; }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/main-site/Montserrat-Bold.woff2") format("woff2"), url("../fonts/main-site/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/main-site/Montserrat-Medium.woff2") format("woff2"), url("../fonts/main-site/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/main-site/Montserrat-Regular.woff2") format("woff2"), url("../fonts/main-site/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/main-site/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/main-site/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal; }

html {
  box-sizing: border-box;
  font-size: 16px; }

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

h1, h2, h3, h4, h5, h6, p {
  margin: 0; }

ul, ol {
  margin: 0;
  padding-left: 0;
  list-style-type: none; }

html,
body {
  width: 100%;
  height: 100%;
  min-height: 100%; }

body {
  min-width: 20rem;
  color: #fff;
  font-size: 1rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  font-stretch: normal;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #2191fc; }

.container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 68.875rem;
  padding: 0 0.9375rem; }

.container--footer {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 81.25rem;
  padding: 0 0.9375rem; }

.main-page {
 
   
}

.info-page {
  background: url("../assets/images/main-site/img2.png") no-repeat center center;
  background-size: cover;
  background-attachment: fixed; }

.about-page {
  background-color: white; }

.result-page {
  background-color: #ffff;}

.tab-form__line {
  position: relative; }

.popup-form__line {
  position: relative; }

.f-alert {
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 12px;
  line-height: 1.15; }

.f-alert--error {
  color: #c20707; }

.loaderArea {
  background-color: #fff;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100000; }

.loader {
  background: url("../assets/images/main-site/Spinner.gif") no-repeat center center;
  width: 300px;
  height: 300px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -150px;
  margin-left: -150px; }

.humburger {
  display: block;
  position: relative;
  width: 1.625rem;
  height: 1.125rem;
  padding: 0;
  border: 1px solid transparent;
  background-color: transparent;
  cursor: pointer; }
  .humburger:focus {
    outline: none; }
  .humburger__line {
    position: absolute;
    left: 0;
    top: 50%;
    margin-left: -0.0625rem;
    display: inline-block;
    width: 100%;
    height: 0.125rem;
    background-color: #fff; }
    .humburger__line::before, .humburger__line::after {
      content: '';
      position: absolute;
      left: 0;
      width: 100%;
      height: 0.125rem;
      background-color: #fff; }
    .humburger__line::before {
      top: -0.4375rem; }
    .humburger__line::after {
      top: 0.4375rem; }

.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px; }

.select {
  position: relative;
  display: block;
  width: 100%;
  height: 2.875rem;
  line-height: 1.875rem;
  color: rgba(0,0,0,0.1599999964237213);
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.1599999964237213);
  border-radius: 5px; 
  padding: 25px;
}


.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.5rem 0.9375rem;
  text-overflow: ellipsis;
  background-color: #fff;

}
  .select-styled:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 1.25rem;
    height: 0.75rem;
    margin-top: -0.375rem;
    background: url("../assets/images/main-site/chev.svg") no-repeat center center;
    transform-origin: center;
    transition: transform 0.15s linear;
    background-size:cover ;
    color: rgba(0,0,0,0.1599999964237213) !important;

  }
  .select-styled:hover {
    background-color: rgba(255, 255, 255, 0.95); }
  .select-styled:active, .select-styled.active {
    background-color: rgba(255, 255, 255, 0.95); }
    .select-styled:active:after, .select-styled.active:after {
      transform: rotate(180deg); }

.select-options {
  display: none;
  z-index: 10;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  margin: 0;
  padding: 0;
  max-height: 11.625rem;
  list-style: none;
  background-color: rgba(255, 255, 255, 0.95);
  overflow-y: auto; }
  .select-options::-webkit-scrollbar {
    width: 0.375rem; }
  .select-options::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0.1875rem rgba(0, 0, 0, 0.3); }
  .select-options::-webkit-scrollbar-thumb {
    background-color: #858585;
    outline: none; }
  .select-options li {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
    padding: 0.5rem 0.3125rem;
    text-overflow: ellipsis;
    overflow: hidden;
    border-top: 1px solid rgba(33, 145, 252, 0.5); }
    .select-options li:hover {
      color: #858585; }
    .select-options li[rel="hide"] {
      display: none; }
    .select-options li:first-of-type {
      overflow: hidden;
      height: 0;
      padding: 0;
      border: none; }

.sidebar .select {
  height: 2rem;
  line-height: 1.25; }

.sidebar .select-styled {
  font-size: 0.875rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  overflow: hidden; }
  .sidebar .select-styled.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  .sidebar .select-styled::after {
    width: 1.125rem;
    background-size: cover; }

.sidebar .select-options {
  border: 1px solid #ced4da;
  border-top: none;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  background-color: #f0f0f0; }
  .sidebar .select-options li {
    padding: 0.4375rem 0.625rem;
    color: #42c4ef;
    font-size: 0.875rem; }
    .sidebar .select-options li:not(:first-child) {
      border-top: 1px solid #ced4da; }
    .sidebar .select-options li:hover {
      color: #989898; }
    .sidebar .select-options li:first-of-type {
      overflow: hidden;
      height: 0;
      padding: 0;
      border: none; }

[dir="ltr"] .select-styled {
  padding-right: 1.125rem; }
  [dir="ltr"] .select-styled::after {
    right: 0; }

[dir="ltr"] .sidebar .select-styled {
  padding: 0.4375rem 1.75rem 0.4375rem 0.625rem; }
  [dir="ltr"] .sidebar .select-styled::after {
    right: 0.5625rem; }

[dir="rtl"] .select-styled {
  padding-left: 1.125rem; }
  [dir="rtl"] .select-styled::after {
    left: 0; }

[dir="rtl"] .clear-select {
  right: inherit;
  left: 0; }

[dir="rtl"] .sidebar .select-styled {
  padding: 0.4375rem 0.625rem 0.4375rem 1.75rem; }
  [dir="rtl"] .sidebar .select-styled::after {
    left: 0.5625rem; }

[dir="rtl"] .sidebar .main-form__piece-second-page .clear-select {
  right: inherit;
  left: 7px; }

@media screen and (max-width: 760px) {
  [dir="ltr"] .select-styled {
    padding-right: 2rem; }
    [dir="ltr"] .select-styled::after {
      right: 0.625rem; }
  [dir="rtl"] .select-styled {
    padding-left: 2rem; }
    [dir="rtl"] .select-styled::after {
      left: 0.625rem; } }

.popup-wr {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.875rem 0.625rem;
  background-color: rgba(33, 145, 252, 0.45);
  overflow-y: auto;
  text-align: center; }
  .popup-wr:after {
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 100%;
    content: ''; }
  .popup-wr--hide {
    display: none; }

.popup-inner {
  display: inline-block;
  vertical-align: middle;
  width: 96%;
  max-width: 30rem;
  padding: 1.25rem 1.875rem;
  text-align: left;
  color: #2191fc;
  border-radius: 0.625rem;
  background-color: #fff;
  box-shadow: 0 0.25rem 1.5625rem 2px rgba(133, 133, 133, 0.75); }

.popup-inner--mini {
  max-width: 16.875rem;
  padding: 1.25rem 0.9375rem; }

.popup-form__line--center {
  text-align: center; }

.popup-form__line:not(:last-of-type) {
  margin-bottom: 0.625rem; }

.popup-form__line label {
  display: inline-block;
  margin-bottom: 0.1875rem;
  padding: 0 0.8125rem;
  color: #2e2e2e;
  font-size: 0.875rem; }

.popup-form__line input {
  width: 100%;
  padding: 0.375rem 0.625rem 0.4375rem;
  color: #2191fc;
  font-size: 0.9375rem;
  line-height: 1;
  border: 1px solid #e2e2e2;
  border-radius: 0.5rem;
  transition: box-shadow 0.2s linear; }
  .popup-form__line input:focus {
    box-shadow: 0 0.0625rem 0.3125rem 0 rgba(33, 145, 252, 0.5);
    outline: none; }
  .popup-form__line input:-ms-input-placeholder {
    color: #2191fc;
    opacity: 0.75; }
  .popup-form__line input::placeholder {
    color: #2191fc;
    opacity: 0.75; }
  .popup-form__line input.inp-error {
    border-color: transparent;
    box-shadow: 0 1px 0.3125rem 0 rgba(168, 10, 10, 0.5); }

.popup-form__line input[type="checkbox"] {
  width: auto; }
  .popup-form__line input[type="checkbox"]:focus {
    box-shadow: none; }
  .popup-form__line input[type="checkbox"] + label {
    display: inline;
    padding: 0; }

.popup-form__line a {
  margin-bottom: 0.625rem;
  color: #2191fc;
  font-size: 0.8125rem; }

.popup-form__title {
  margin-bottom: 0.3125rem;
  color: #2e2e2e;
  font-size: 1.125rem; }

.popup-btn-cl {
  z-index: 1;
  position: absolute;
  top: 0.4375rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: transparent;
  text-indent: -9999px;
  border: none;
  cursor: pointer; }
  .popup-btn-cl::before, .popup-btn-cl::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    background-color: #fff;
    transform-origin: center;
    transition: background-color 0.2s linear; }
  .popup-btn-cl::before {
    transform: rotate(-45deg); }
  .popup-btn-cl::after {
    transform: rotate(45deg); }
  .popup-btn-cl:hover::before, .popup-btn-cl:hover::after {
    background-color: #858585; }
  .popup-btn-cl:focus {
    outline: none; }

.popup-form__btn {
  padding: 0.625rem 2.1875rem;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: bold;
  border: 1px solid #2191fc;
  background-color: #2191fc;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: box-shadow 0.2s linear; }
  .popup-form__btn:hover {
    box-shadow: 0 0.125rem 0.25rem 0 rgba(33, 145, 252, 0.5); }
  .popup-form__btn:focus {
    outline: none; }
  .popup-form__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed; }

.popup-btn-cl-verify {
  z-index: 1;
  position: absolute;
  top: 0.4375rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: transparent;
  text-indent: -9999px;
  border: none;
  cursor: pointer; }
  .popup-btn-cl-verify::before, .popup-btn-cl-verify::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    background-color: #fff;
    transform-origin: center;
    transition: background-color 0.2s linear; }
  .popup-btn-cl-verify::before {
    transform: rotate(-45deg); }
  .popup-btn-cl-verify::after {
    transform: rotate(45deg); }
  .popup-btn-cl-verify:hover::before, .popup-btn-cl-verify:hover::after {
    background-color: #858585; }
  .popup-btn-cl-verify:focus {
    outline: none; }

.invalid-feedback {
  width: 100%;
  margin-bottom: .5rem;
  font-size: 80%;
  color: #e3342f; }

.contact-message {
  width: 100%;
  padding: 0.375rem 0.625rem 0.4375rem;
  color: #2191fc;
  font-size: 0.9375rem;
  line-height: 1;
  border: 1px solid #e2e2e2;
  border-radius: 0.5rem;
  transition: box-shadow 0.2s linear; }
  .contact-message:focus {
    box-shadow: 0 0.0625rem 0.3125rem 0 rgba(33, 145, 252, 0.5);
    outline: none; }
  .contact-message:-ms-input-placeholder {
    color: #2191fc;
    opacity: 0.75; }
  .contact-message::placeholder {
    color: #2191fc;
    opacity: 0.75; }
  .contact-message.inp-error {
    border-color: transparent;
    box-shadow: 0 1px 0.3125rem 0 rgba(168, 10, 10, 0.5); }

.p-btn {
  padding: 0.25rem 0.9375rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 600;
  background-color: #2191fc;
  border: 1px solid #2191fc;
  border-radius: 0.25rem;
  cursor: pointer; }
  .p-btn:hover {
    outline: none;
    background-color: #0378e7; }
  .p-btn:focus {
    outline: none;
    background-color: #0885fc; }

[dir="ltr"] .popup-btn-cl {
  right: 0.4375rem; }

[dir="rtl"] .popup-btn-cl {
  left: 0.4375rem; }

@media screen and (max-width: 480px) {
  .popup-inner {
    padding: 0.9375rem; } }

[dir="rtl"] .popup-form__line.form-lang-right {
  text-align: right; }

[dir="rtl"] .form-lang-right {
  text-align: right; }

.tabs-wrapper {
  margin-bottom: 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%; }

.tabs-top-wrapper {
  display: none;
  overflow: hidden; }

.tabs-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #73b2ee;
  border-radius: 5px 5px 0 0; }

.tabs-top-btn {
  position: absolute;
  right: 0.375rem;
  top: 50%;
  margin-top: -0.875rem; }
  .tabs-top-btn button {
    width: 1.625rem;
    height: 1.625rem;
    background: transparent url("../assets/images/main-site/icon-arrow-circle.svg") no-repeat center center;
    text-indent: -9999px;
    border: none;
    transition: transform 0.25s linear;
    cursor: pointer; }
    .tabs-top-btn button:focus {
      outline: none; }
    .tabs-top-btn button.toggle {
      transform: rotate(180deg); }

.tabs-top-part {
  position: relative;
  flex-grow: 1;
  padding: 0 0.625rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  max-height: 49.5%; }
  .tabs-top-part a {
    display: block;
    color: inherit;
    text-decoration: none; }
    .tabs-top-part a[href^="mailto:"], .tabs-top-part a[href^="http"] {
      text-decoration: underline; }
  .tabs-top-part p:not(:last-of-type),
  .tabs-top-part a:not(:last-of-type) {
    margin-bottom: 0.25rem; }
  .tabs-top-part.tabs-logo a {
    max-width: 5.875rem;
    text-align: center; }
    .tabs-top-part.tabs-logo a img {
      display: inline-block;
      vertical-align: middle;
      max-width: 100%; }
  .tabs-top-part.tabs-works {
    text-align: center; }

.tabs-part-logo {
  width: 11.5625rem;
  text-align: center; }
  .tabs-part-logo img {
    max-width: 100%;
    display: block;
    border-radius: 5px 0 0 0; }

.tabs-part-info {
  position: relative;
  flex-grow: 1;
  display: flex;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  text-align: center;
  width: calc(100% - 11.5625rem - 100px); }
  .tabs-part-info::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 1px;
    background-color: #fff; }
  .tabs-part-info > div {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%; }
    .tabs-part-info > div::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 0.625rem;
      right: 0.625rem;
      height: 1px;
      background-color: #fff; }
    .tabs-part-info > div .tabs-top-part {
      flex-grow: 1;
      padding: 0.625rem 0; }

.tabs-part-place {
  width: 5.875rem;
  height: 2.5rem; }
  .tabs-part-place a {
    display: block;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
    min-height: 35px;
    background: transparent url("../assets/images/main-site/oval.svg") no-repeat center center; }

.tabs__wrapper {
  display: flex; }

.tabs__header {
  min-height: 100px;
  min-width: 11.5625rem;
  width: 11.5625rem;
  background-color: #73b2ee;
  border-bottom-left-radius: 0.3125rem; }

.tabs__container {
  min-height: 100px;
  width: calc(100% - 185px);
  padding: 0.75rem;
  background-color: #f5f9ff;
  border-bottom-right-radius: 0.3125rem; }

.tabs__list {
  padding-bottom: 0.625rem;
  border-bottom-left-radius: 0.3125rem; }

.tabs__item {
  padding: 0.625rem 0.5rem 0.625rem 0.8125rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer; }
  .tabs__item--active {
    background-color: #5198db;
    cursor: not-allowed; }
  .tabs__item img {
    display: none; }

.tabs__cont-item {
  color: #606060;
  color: rgba(96, 96, 96, 0.93);
  font-size: 0.9375rem; }
  .tabs__cont-item--hide {
    display: none; }
  .tabs__cont-item .swiper-container {
    margin: -0.75rem; }
  .tabs__cont-item .swiper-container img {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    border-radius: 0 0 0.375rem 0; }
  .tabs__cont-item .swiper-button-prev,
  .tabs__cont-item .swiper-button-next {
    background-size: contain; }
  .tabs__cont-item .swiper-button-next,
  .tabs__cont-item .swiper-container-rtl .swiper-button-prev {
    background-image: url("../assets/images/main-site/slider-arrow.svg");
    transform: rotate(180deg); }
  .tabs__cont-item .swiper-button-prev,
  .tabs__cont-item .swiper-container-rtl .swiper-button-next {
    background-image: url("../assets/images/main-site/slider-arrow.svg"); }

.swiper-container-slider {
  margin: -0.75rem;
  width: calc(100% + 1.5rem);
  height: calc(100% + 1.5rem); }

/* Tabs form */
.tab-form label {
  color: #606060;
  color: rgba(96, 96, 96, 0.93);
  font-size: 0.8125rem;
  font-weight: 600; }

.tab-form input,
.tab-form textarea {
  width: 100%;
  padding: 0.375rem 0.625rem;
  font-size: 0.875rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  background-color: #fff;
  transition: border-color 0.2s linear; }
  .tab-form input:focus,
  .tab-form textarea:focus {
    outline: none;
    border-color: #2191fc; }

.tab-form textarea {
  resize: none; }

.tab-form__line {
  margin-bottom: 0.75rem; }
  .tab-form__line--center {
    text-align: center; }

.tab-form__btn {
  min-width: 8.75rem;
  padding: 0.4375rem 0.75rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
  background-color: #000;
  border: 1px solid #2191fc;
  border-radius: 0.1875rem;
  transition: box-shadow 0.2s linear;
  cursor: pointer; }
  .tab-form__btn:hover {
    box-shadow: 0 0.125rem 1rem 0.0625rem rgba(115, 178, 238, 0.8); }
  .tab-form__btn:focus {
    outline: none;
    box-shadow: 0 0.125rem 0.625rem 0.0625rem rgba(115, 178, 238, 0.8); }

[dir="rtl"] .s-form__label {
  padding-right: 0;
  padding-left: 0.3125rem; }

[dir="rtl"] .s-form__full input[type="search"] {
  padding: 0.375rem 0.625rem 0.375rem 1.75rem;
  background-position: left 10px center; }

[dir="rtl"] .tabs__list {
  padding-right: 0; }

[dir="rtl"] .tabs__cont-item .swiper-container-rtl .swiper-button-next {
  transform: rotate(0); }

@media screen and (max-width: 1025px) {
  .tabs-top-part {
    font-size: 0.75rem; } }

@media screen and (max-width: 970px) {
  .tabs-top {
    flex-wrap: wrap;
    align-items: unset; }
  .tabs-part-logo,
  .tabs-part-place {
    position: relative;
    margin-bottom: 0.625rem;
    padding-bottom: 0.625rem;
    width: 50%; }
    .tabs-part-logo::after,
    .tabs-part-place::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0.625rem;
      right: 0.625rem;
      height: 1px;
      background-color: #fff; }
  .tabs-part-logo::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0.625rem;
    width: 1px;
    background-color: #fff; }
  .tabs-part-place {
    height: auto; }
  .tabs-part-info {
    order: 1;
    width: 100%;
    border-color: transparent; } }

@media screen and (max-width: 560px) {
  .tabs__wrapper {
    display: block; }
  .tabs__header {
    width: 100%;
    min-height: auto;
    border-top: 1px solid #fff; }
  .tabs__container {
    width: 100%; }
  .tabs__list {
    display: flex;
    padding-bottom: 0; }
  .tabs__item {
    flex-grow: 1;
    padding: 0.8125rem 0.3125rem; }
    .tabs__item img {
      display: block;
      margin: auto; }
    .tabs__item span {
      display: none; } }

@media screen and (max-width: 480px) {
  .tabs-top {
    padding-bottom: 0; }
  .tabs-part-logo,
  .tabs-part-place {
    width: 100%; }
    .tabs-part-logo::after,
    .tabs-part-place::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0.625rem;
      right: 0.625rem;
      height: 1px;
      background-color: #fff; }
  .tabs-part-logo::before {
    content: none; }
  .tabs-part-place a {
    height: 2.75rem; }
  .tabs-part-info {
    flex-wrap: wrap;
    padding: 0 0.625rem; }
    .tabs-part-info::after {
      content: none; }
  .tabs-part-info > div {
    width: 100%; }
    .tabs-part-info > div::after {
      content: none; }
  .tabs-top-part {
    border-bottom: 1px solid #fff; } }

.detail-capture {
  display: inline-block;
  width: 100%;
  height: 16px;
  background-color: #fff;
  margin-left: 0px;
  border-radius: 50%;
  color: #a9100a;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  cursor: help; }

.detail-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  background-color: #ffff;
  width: 100%; }

.detail-title {
  cursor: help; }

.schedule-item {
  padding-top: 5px;
   
  padding-bottom: 5px; }

.pagination {
  margin: 1.875rem 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 0; }
  .pagination .page-item {
    display: inline-block;
    font-size: 0.875rem; }
  .pagination .page-link {
    display: block;
    min-width: 5.625rem;
    padding: 0.375rem 0.3125rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    background-color: #73b2ee;
    border: 1px solid #73b2ee;
    border-radius: 0.25rem; }

.header-main {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.9375rem 0;
  transition: padding 0.15s linear, background-color 0.15s linear; }
  .header-main--scrolled {
    padding: 0.625rem 0;
    background-color: rgba(115, 178, 238, 0.8); }
  .header-main--search {
    background-color: #73b2ee; }

.header-mob {
  display: none; }

.header-inner {
  display: flex;
  justify-content: space-between; }

.h-logo {
  width: 23.25rem;
  height: 5.25rem; }
  .h-logo a,
  .h-logo span {
    display: block;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
    background: transparent url("../assets/images/main-site/logo.png") no-repeat center center;
    background-size: contain; }

.h-content,
.h-links {
  display: flex;
  align-items: center;
  font-weight: 600; }

.h-lang {
  position: relative; }
  .h-lang span {
    display: block;
    padding: 0.625rem 0.125rem;
    font-size: 1rem;
    cursor: pointer; }

.lang-list {
  display: none;
  z-index: 1;
  position: absolute;
  top: 100%;
  width: 8.5rem;
  padding: 0.625rem 0.625rem;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0.375rem; }
  .lang-list::before {
    content: '';
    position: absolute;
    bottom: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0.25rem 0.5rem 0.25rem;
    border-color: transparent transparent #fff transparent; }
  .lang-list--open {
    display: block; }
  .lang-list a {
    color: #858585;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: -0.5px; }
    .lang-list a.lang-active {
      color: #2191fc; }

.h-account a {
  display: block;
  padding: 0.1875rem 0.875rem;
  color: #fff;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 1rem; }

.h-log a {
  display: block;
  padding: 0.625rem 0.125rem;
  color: #fff;
  text-decoration: none;
  font-size: 1rem; }

.h-pages-wr {
  display: none; }

.h-btn-wr {
  position: relative; }

.h-main-pages {
  display: none;
  position: absolute;
  top: 180%;
  min-width: 12.5rem;
  padding: 0.625rem;
  background-color: #fff;
  border-radius: 0.375rem; }
  .h-main-pages::before {
    content: '';
    position: absolute;
    bottom: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0.25rem 0.5rem 0.25rem;
    border-color: transparent transparent #fff transparent; }
  .h-main-pages--open {
    display: block; }
  .h-main-pages li {
    margin-bottom: 0.4375rem; }
  .h-main-pages a {
    color: #858585;
    font-size: 1rem;
    text-decoration: none; }
    .h-main-pages a:hover {
      color: #2191fc; }

[dir="ltr"] .h-btn-wr {
  margin-left: 2.125rem; }

[dir="ltr"] .h-account,
[dir="ltr"] .h-log {
  margin-left: 3.75rem; }

[dir="ltr"] .lang-list {
  right: 0; }
  [dir="ltr"] .lang-list::before {
    right: 0.625rem; }

[dir="ltr"] .h-main-pages {
  right: 0; }

[dir="ltr"] .h-main-pages::before {
  right: 0.625rem; }

[dir="rtl"] .h-btn-wr {
  margin-right: 2.125rem; }

[dir="rtl"] .h-account,
[dir="rtl"] .h-log {
  margin-right: 3.75rem; }

[dir="rtl"] .lang-list {
  left: 0; }
  [dir="rtl"] .lang-list::before {
    left: 0.625rem; }

[dir="rtl"] .h-main-pages {
  left: 0; }

[dir="rtl"] .h-main-pages::before {
  left: 0.625rem; }

@media screen and (max-height: 500px) {
  .h-content {
    max-height: 300px;
    overflow: auto; } }

@media screen and (max-height: 400px) {
  .h-content {
    max-height: 250px;
    overflow: auto; } }

@media screen and (max-height: 300px) {
  .h-content {
    max-height: 200px;
    overflow: auto; } }

@media screen and (max-width: 760px) {
  .header-main {
    padding: 0.625rem 0; }
  .header-content {
    display: none; }
  .header-mob {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.625rem; }
  .h-logo,
  .h-btn-wr {
    display: none; }
  .h-content,
  .h-links {
    display: block;
    text-align: center; }
  .h-content {
    padding-top: 0.5rem;
    background-color: #2e2e2e;
    background-color: rgba(46, 46, 46, 0.55); }
  [dir="ltr"] .h-account,
  [dir="ltr"] .h-log {
    margin-left: 0; }
  [dir="rtl"] .h-account,
  [dir="rtl"] .h-log {
    margin-right: 0; }
  [dir="ltr"] .lang-list,
  [dir="rtl"] .lang-list {
    left: 50%;
    right: auto;
    transform: translateX(-50%); }
    [dir="ltr"] .lang-list::before, [dir="ltr"] .lang-list::after,
    [dir="rtl"] .lang-list::before,
    [dir="rtl"] .lang-list::after {
      left: 50%;
      right: auto;
      transform: translateX(-50%); }
  .h-lang span,
  .h-log a,
  .h-account a {
    display: inline-block; }
  .mob-logo {
    width: 4.375rem;
    height: 1.875rem; }
    .mob-logo a,
    .mob-logo span {
      display: block;
      height: 138%;
      white-space: nowrap;
      text-indent: -9999px;
      background: transparent url("../assets/images/main-site/logo.svg") no-repeat center center;
      background-size: contain; }
  .mob-btn {
    position: relative;
    width: 1.875rem;
    height: 1.875rem;
    padding: 0;
    background-color: transparent;
    border: none; }
    .mob-btn:focus {
      outline: none; }
    .mob-btn--active .mob-btn__line::before {
      width: 45%; }
    .mob-btn--active .mob-btn__line::after {
      width: 45%; }
  .mob-btn__line {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    background-color: #fff; }
    .mob-btn__line::before, .mob-btn__line::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: #fff;
      transition: width 0.15s linear; }
    .mob-btn__line::before {
      right: 0;
      top: -0.5625rem; }
    .mob-btn__line::after {
      left: 0;
      top: 0.5625rem; }
  .h-log a {
    padding-top: 0; }
  .h-pages-wr {
    display: block;
    padding: 0.625rem 0; }
    .h-pages-wr__title {
      position: relative;
      display: inline-block;
      margin-bottom: 0.5rem;
      padding-right: 1.75rem;
      cursor: pointer; }
      .h-pages-wr__title::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        width: 1.25rem;
        height: 0.75rem;
        margin-top: -0.375rem;
        background: transparent url("../assets/images/main-site/chevron-down-wh.svg") no-repeat center center;
        transition: transform 0.15s linear; }
      .h-pages-wr__title.pages-show::after {
        transform: rotate(-180deg); }
    .h-pages-wr ul {
      display: none;
      padding-right: 0; }
    .h-pages-wr li {
      margin-bottom: 0.4375rem; }
    .h-pages-wr a {
      color: #fff; } }

.h-main-pages button.paypal {
  color: #858585;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  background: none;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  outline: none; }

.h-main-pages button.paypal:hover {
  color: #2191fc; }

.h-account button.paypal {
  padding: 0.1875rem 0.875rem;
  color: #fff;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 1rem;
  background: none;
  font-weight: 600;
  cursor: pointer;
  outline: none; }

@media screen and (max-width: 760px) {
  .h-pages-wr button.paypal {
    background: none;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    border: none;
    color: #fff;
    text-decoration: underline; }
  .h-account button.paypal {
    margin-top: 10px; } }

.main-page {
  background: url("../assets/images/main-site/img2.png") no-repeat center center;
  background-size: cover;
}
.main-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding-top: 6.375rem; 
  background: url("../assets/images/main-site/v37_245.png") no-repeat center center;
  background-size: cover;
}
.custom-container{
  background: url("../assets/images/main-site/v37_245.png") no-repeat center center;
  background-size: cover;
}
.main-content {
  width: 100%;
  max-width: 53.125rem; }

.main-form {
  padding: 0 0.9375rem; }

.m-title {
  margin-bottom: 3.125rem;
  color: #0c0904;
  font-size: 4.125rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  text-align: left; 
}
  .m-title--content {
    margin-bottom: 1.5625rem; }

.m-title-cyan {
  margin-bottom: 3.125rem;
  color: #2191fc;
  font-size: 4.125rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  text-align: center; }
  .m-title-cyan--content {
    margin-bottom: 1.5625rem; }

.main-form__line {
  display: flex;
  margin-bottom: 3.125rem;
  background-color: #fff;
  border-radius: 1.625rem; }

.main-form__search {
  position: relative;
  min-width: 4.5rem;
  width: 4.5rem;
  background-color: #fff; }
  .main-form__search input {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 3rem 0 0.9375rem;
    color: transparent;
    font-size: 1rem;
    font-weight: 600;
    background: #fff url("../assets/images/main-site/aperture.svg") no-repeat top 50% right 24px;
    border: 1px solid #fff;
    border-radius: 1.625rem;
    transition: width 0.2s linear; }
    .main-form__search input::-webkit-input-placeholder {
      color: transparent; }
    .main-form__search input::-moz-placeholder {
      color: transparent; }
    .main-form__search input:-ms-input-placeholder {
      color: transparent; }
    .main-form__search input:-moz-placeholder {
      color: transparent; }
    .main-form__search input[type="search"]::-ms-clear {
      display: none;
      width: 0;
      height: 0; }
    .main-form__search input[type="search"]::-ms-reveal {
      display: none;
      width: 0;
      height: 0; }
    .main-form__search input::-webkit-search-decoration, .main-form__search input::-webkit-search-cancel-button, .main-form__search input::-webkit-search-results-button, .main-form__search input::-webkit-search-results-decoration {
      display: none; }
    .main-form__search input:focus {
      outline: none;
      color: #2191fc; }
      .main-form__search input:focus::-webkit-input-placeholder {
        color: #2191fc;
        font-weight: normal; }
      .main-form__search input:focus::-moz-placeholder {
        color: #2191fc;
        font-weight: normal; }
      .main-form__search input:focus:-ms-input-placeholder {
        color: #2191fc;
        font-weight: normal; }
      .main-form__search input:focus:-moz-placeholder {
        color: #2191fc;
        font-weight: normal; }

.main-form__selects {
  display: flex;
  width: calc(100% - 72px); }

.main-form__piece {
  flex-grow: 1;
  flex-shrink: 1;
  position: relative; }

.main-form__sbm {
  text-align: center; }
  .main-form__sbm-clear {
    margin-bottom: 2.125rem;
    margin-top: -1rem; }
  .main-form__sbm input[type="submit"],
  .main-form__sbm button[type="submit"],
  .main-form__sbm .clear-button {
    padding: 1.25rem 4.0625rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Open Sans';
    line-height: 1;
    text-transform: uppercase;
    border: 1px solid #2191fc;
    border-radius: 1.875rem;
    background-color: #2191fc;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s linear; }
    .main-form__sbm input[type="submit"]:hover,
    .main-form__sbm button[type="submit"]:hover,
    .main-form__sbm .clear-button:hover {
      background-color: rgba(33, 145, 252, 0.85); }
  .main-form__sbm .clear-button {
    padding: 0.55rem 1.2625rem;
    font-size: 0.675rem; }

[dir="ltr"] .main-form__piece:first-of-type .select-styled {
  /* transition: border-radius 0.1s linear;
  border-top-left-radius: 1.625rem;
  border-bottom-left-radius: 1.625rem; */
  border: 1px solid rgba(0, 0, 0, 0.1599999964237213);
  border-radius: 5px;
}

[dir="ltr"] .main-form__search {
  border-top-right-radius: 1.625rem;
  border-bottom-right-radius: 1.625rem; }
  [dir="ltr"] .main-form__search input {
    right: 0; }

[dir="rtl"] .main-form__piece:first-of-type .select-styled {
  transition: border-radius 0.1s linear;
  border-top-right-radius: 1.625rem;
  border-bottom-right-radius: 1.625rem; }

[dir="rtl"] .main-form__search {
  border-top-left-radius: 1.625rem;
  border-bottom-left-radius: 1.625rem; }
  [dir="rtl"] .main-form__search input {
    left: 0;
    padding: 0 0.9375rem 0 3rem;
    background: #fff url("../assets/images/main-site/aperture.svg") no-repeat top 50% left 24px; }

@media screen and (max-width: 760px) {
  .main-wrapper {
    padding-top: 4.0625rem; }
  .m-title,
  .main-content .m-title {
    margin-bottom: 1.5625rem;
    font-size: 3rem; }
  .main-form__line {
    margin-bottom: 1.875rem;
    flex-direction: column; }
  .main-form__selects {
    flex-direction: column;
    width: 100%; }
  .main-form__piece {
    border-bottom: 1px solid #eee; }
  .main-form__piece:first-of-type .select-styled {
    border-top-left-radius: 1.625rem;
    border-top-right-radius: 1.625rem; }
  .main-form__search {
    height: 2.875rem;
    width: 100%; }
    .main-form__search input {
      color: #2191fc;
      background-position: top 50% right 10px; }
      .main-form__search input::-webkit-input-placeholder {
        font-weight: 100;
        color: rgba(33, 145, 252, 0.65); }
      .main-form__search input::-moz-placeholder {
        font-weight: 100;
        color: rgba(33, 145, 252, 0.65); }
      .main-form__search input:-ms-input-placeholder {
        font-weight: 100;
        color: rgba(33, 145, 252, 0.65); }
      .main-form__search input:-moz-placeholder {
        font-weight: 100;
        color: rgba(33, 145, 252, 0.65); }
  [dir="ltr"] .main-form__search,
  [dir="rtl"] .main-form__search {
    border-radius: 0;
    border-bottom-left-radius: 1.625rem;
    border-bottom-right-radius: 1.625rem; }
    [dir="ltr"] .main-form__search input,
    [dir="rtl"] .main-form__search input {
      transition: border-radius 0.15s linear; }
  [dir="rtl"] .main-form__search input {
    background-position: top 50% left 7px; }
  .main-form__sbm input[type="submit"],
  .main-form__sbm button[type="submit"] {
    padding: 0.8125rem 2.8125rem; } }

.shadow {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000; }

.modal-window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 80%;
  min-height: 250px;
  z-index: 100000; }

.tabs-top.mobile {
  display: none; }

@media screen and (max-width: 480px) {
  .tabs-top {
    display: none !important; }
  .tabs-top.mobile {
    display: block !important; }
  #lightbox {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important; }
  .tabs-top.mobile .tabs-part-logo {
    margin-bottom: 0;
    padding-bottom: 0; }
  .tabs__list .tabs__item {
    border-right: solid 1px #fff;
    font-size: 0.750rem; }
  .tabs__list .tabs__item:last-child {
    border-right: none; }
  html[dir=rtl] .tabs__list .tabs__item {
    border: none;
    border-left: solid 1px #fff; }
  html[dir=rtl] .tabs__list .tabs__item:last-child {
    border-left: none; }
  .tabs__list .tabs__item span {
    display: block;
    text-align: center; }
  .tabs__item img {
    display: none; }
  .content-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 175px;
    text-align: center;
    color: #000; }
  .content-info .one_str {
    white-space: unset; }
  .content-info .schedule-item {
    color: #000; }
  .tabs-part-logo a {
    display: inline-block;
    width: 30%;
    vertical-align: middle;
    border-right: solid 1px #fff;
    margin-left: -4px; }
  .tabs-part-logo .tabs-part-name {
    display: inline-block;
    width: 68%;
    vertical-align: middle;
    font-size: 14px; }
  .tabs-part-logo::after {
    left: 0;
    right: unset;
    width: 100%; }
  .info-buttons {
    display: flex;
    justify-content: space-around;
    height: 51px;
    padding: 0; }
  .info-buttons .info-button {
    display: inline-block;
    width: 20%; }
  .info-buttons .info-button:last-child {
    border-right: none; }
  html[dir=rtl] .info-buttons .info-button {
    border: none;
    border-left: solid 1px #fff; }
  html[dir=rtl] .info-buttons .info-button:last-child {
    border-left: none; }
  .info-buttons .info-button .button {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative; }
  .info-buttons .info-button .button img {
    width: 38%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .info-buttons .info-button .content {
    display: none; } }

@media screen and (max-width: 480px) {
  .main-page {
    background-size: inherit; }
  .main-wrapper {
    padding-bottom: 1.875rem; }
  .m-title,
  .main-content .m-title {
    font-size: 2rem; } }

@media screen and (max-width: 350px) {
  .m-title,
  .main-content .m-title {
    font-size: 1.5rem; } }

@media screen and (max-width: 850px) and (orientation: landscape) {
  .main-page {
    background-size: inherit; }
  .main-wrapper {
    padding-bottom: 5rem; } }

.main-form__piece-second-page {
  flex-grow: 1;
  flex-shrink: 1;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.main-form__piece .select-styled {
color:#0c0904;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline;
  line-height: 1.7; }

.clear-select {
  background: none;
  border: none;
  position: absolute;
  top: 27%;
  right: 0;
  outline: none;
  cursor: pointer;
  display: none; }
  .clear-select svg {
    width: 10px;
    height: 10px;
    fill: #2191fc; }
    .clear-select svg:hover {
      opacity: .8; }

.hide-dropdown .select-styled:after {
  display: none; }

@media screen and (max-width: 760px) {
  [dir="ltr"] .clear-select {
    right: 0.625rem; } }

.p-info {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5625rem;
  max-width: 42.5rem;
  padding: 0 0.625rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5; }
  .p-info-cyan {
    color: #2191fc; }

.autohide {
  max-height: 198px;
  overflow-y: hidden;
  position: relative;
  padding-right: 17px; }

.autohide:hover {
  padding-right: 0; }

.autohide .autohide-container {
  overflow-y: hidden;
  max-height: 198px; }

.autohide:hover .autohide-container {
  overflow-y: auto; }

.autohide:hover:before {
  display: none; }

.autohide:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(transparent 150px, white); }

.shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000; }

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  z-index: 100000;
  transform: translate(-50%, -50%); }

.modal img {
  width: 100%; }

.modal .close {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 25px;
  cursor: pointer; }

.enlarge img {
  cursor: zoom-in; }

.c-wrapper {
  padding: 5rem 0;
  background-color: #fff; }

.c-flex {
  display: flex;
  justify-content: space-between; }

.c-content {
  width: 49%;
  color: #675e60; }
  .c-content h4 {
    margin-bottom: 0.9375rem;
    font-size: 1.375rem;
    font-weight: 500; }
  .c-content p {
    font-weight: 100;
    line-height: 1.4;
    font-size: 0.9375rem; }
    .c-content p:not(:last-of-type) {
      margin-bottom: 2.1875rem; }
  .c-content .c-content__txt {
    font-weight: 600;
    line-height: 1.4; }
    .c-content .c-content__txt:not(:last-of-type) {
      margin-bottom: 2.5rem; }

.c-content__title {
  margin: 0;
  color: #5198bd;
  font-size: 4.375rem;
  font-weight: 500;
  text-align: center; }

.c-statistick {
  display: flex;
  align-items: center;
  padding: 3.4375rem 1.25rem;
  background-color: #73b2ee; }

.c-statistick__bl {
  flex-grow: 1;
  text-align: center; }

.c-statistick__title {
  font-size: 2.25rem;
  font-weight: 600; }
  .c-statistick__title sub {
    bottom: 0;
    font-size: 55%; }

.c-statistick__txt {
  font-size: 1.125rem;
  font-weight: 100; }

@media screen and (max-width: 1080px) {
  .c-statistick {
    flex-wrap: wrap;
    padding: 1.875rem 0.9375rem 0.9375rem; }
  .c-statistick__bl {
    margin-bottom: 1.25rem;
    width: 50%; } }

@media screen and (max-width: 800px) {
  .c-content__title {
    font-size: 3.125rem; } }

@media screen and (max-width: 580px) {
  .c-flex {
    flex-wrap: wrap; }
  .c-wrapper {
    padding: 2.5rem 0; }
  .c-content {
    width: 100%; }
  .c-content__title {
    margin-bottom: 1.25rem; }
  .c-content .c-content__txt:not(:last-of-type),
  .c-content p:not(:last-of-type) {
    margin-bottom: 1.25rem; }
  .c-statistick__bl {
    width: 100%; } }

.footer {
  padding: 2.625rem 0;
  background-color: #73b2ee; }

.footer__inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem; }

.footer__inner-bl {
  width: 30%;
  margin-bottom: 20px; }
  .footer__inner-bl--flex {
    width: 20%;
    display: flex; }

.footer__list-wr {
  width: 100%; }

.footer__list-title {
  margin-bottom: 1.875rem;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600; }

.footer__list {
  padding: 0; }

.footer__l-item {
  margin-bottom: 0.625rem; }

.footer__l-link {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.2s linear; }
  .footer__l-link:hover {
    border-bottom-color: #fff; }

.footer__title-info {
  margin-bottom: 1.875rem;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1; }

.footer__txt {
  line-height: 1.8; }

.social__list {
  padding: 1.5625rem 0;
  font-size: 0;
  margin-left: -1.875rem; }

.social__item {
  display: inline-block;
  font-size: 1rem;
  margin-left: 1.875rem;
  margin-bottom: 10px; }

.social__link {
  display: block;
  width: 3rem;
  height: 3rem;
  text-indent: -9999px;
  border-radius: 50%;
  background: transparent no-repeat center center;
  background-size: contain;
  overflow: hidden;
  transition: all 0.25s linear; }
  .social__link:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 0 -2px rgba(33, 145, 252, 0.5); }
  .social__link--facebook {
    background-image: url("../assets/images/main-site/icon-fb.svg"); }
  .social__link--twitter {
    background-image: url("../assets/images/main-site/icon-tw.svg"); }
  .social__link--youtube {
    background-image: url("../assets/images/main-site/icon-ytb.svg"); }
  .social__link--google_plus {
    background-image: url("../assets/images/main-site/google-plus-icon.png"); }
  .social__link--linkedin {
    background-image: url("../assets/images/main-site/linkedin-icon.png"); }
  .social__link--instagram {
    background-image: url("../assets/images/main-site/instagram-icon.png"); }

@media screen and (max-width: 680px) {
  .footer {
    padding: 1.5625rem 0; }
  .footer__inner {
    flex-wrap: wrap; }
  .footer__inner-bl,
  .footer__inner-bl.footer__inner-bl--flex {
    width: 100%; }
  .footer__inner-bl.footer__inner-bl--flex {
    margin-bottom: 1.25rem; }
  .footer__list-title,
  .footer__title-info {
    margin-bottom: 0.9375rem; }
  .social__list {
    padding: 0.9375rem 0; } }

@media screen and (max-width: 480px) {
  .social__list {
    margin-left: -1.25rem; }
  .social__item {
    margin-left: 1.25rem; }
  .social__link {
    width: 2rem;
    height: 2rem; } }

.search-page {
  width: 100%;
  overflow-x: hidden;
  background-color: #fff; }

.one_str {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.lb-dataContainer {
  display: none !important; }

.main-search-cont {
  padding-top: 8.1875rem; }

.search-container {
  position: relative; }
  .search-container::after {
    content: '';
    display: table;
    clear: both; }

.sidebar {
  width: 18.75rem;
  transition: top 0.4s linear 0.1s; }
  .sidebar--sticky {
    z-index: 1;
    position: absolute; }

.s-search-wrapper {
  margin-bottom: 1.25rem; }

.s-sidebar-ads {
  padding: 0;
  width: 100%; }
  .s-sidebar-ads a {
    display: block; }
  .s-sidebar-ads img {
    display: inline-block;
    max-width: 100%;
    vertical-align: middle; }

.s-search-top {
  position: relative;
  height: 9.75rem;
  background: #73b2ee url("../assets/images/main-site/sidebar-header.jpg") no-repeat center center;
  background-size: cover;
  border-radius: 0.375rem 0.375rem 0 0; }
  .s-search-top__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0.625rem;
    color: #fff;
    font-size: 1.9375rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    text-align: center; }

.search-form {
  padding: 1.25rem 0.9375rem;
  background-color: #f5f9ff;
  border-radius: 0 0 0.3125rem 0.3125rem; }

.s-form__wr {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem; }

.s-form__label {
  min-width: 5rem;
  width: 6.25rem;
  padding-right: 0.3125rem; }
  .s-form__label label {
    display: inline-block;
    margin-top: -1px;
    color: #606060;
    color: rgba(96, 96, 96, 0.93);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1; }

.s-form__inp {
  flex-grow: 1; }
  .s-form__inp input {
    width: 100%;
    padding: 0.375rem 0.625rem;
    font-size: 0.875rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    background-color: #fff;
    transition: border-color 0.2s linear; }
    .s-form__inp input:focus {
      outline: none;
      border-color: #2191fc; }

.s-form__full:not(:last-of-type) {
  margin-bottom: 0.75rem; }

.s-form__full input[type="search"] {
  width: 100%;
  padding: 0.375rem 1.75rem 0.375rem 0.625rem;
  font-size: 0.875rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  background: #fff url("../assets/images/main-site/aperture-min.svg") no-repeat right 10px center; }
  .s-form__full input[type="search"]::-ms-clear {
    display: none;
    width: 0;
    height: 0; }
  .s-form__full input[type="search"]::-ms-reveal {
    display: none;
    width: 0;
    height: 0; }
  .s-form__full input[type="search"]::-webkit-search-decoration, .s-form__full input[type="search"]::-webkit-search-cancel-button, .s-form__full input[type="search"]::-webkit-search-results-button, .s-form__full input[type="search"]::-webkit-search-results-decoration {
    display: none; }
  .s-form__full input[type="search"]:focus {
    outline: none;
    border-color: #2191fc; }

.s-form__full button[type="submit"],
.s-form__full input[type="submit"],
.s-form__full .clear-inner {
  width: 100%;
  padding: 0.4375rem 0.75rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid #2191fc;
  border-radius: 0.1875rem;
  background-color: #2191fc;
  cursor: pointer;
  transition: box-shadow 0.2s linear; }
  .s-form__full button[type="submit"]:hover,
  .s-form__full input[type="submit"]:hover,
  .s-form__full .clear-inner:hover {
    box-shadow: 0 2px 0.625rem 1px rgba(115, 178, 238, 0.5); }
  .s-form__full button[type="submit"]:focus,
  .s-form__full input[type="submit"]:focus,
  .s-form__full .clear-inner:focus {
    outline: none;
    box-shadow: 0 2px 0.625rem 1px rgba(115, 178, 238, 0.8); }

.s-form__full .clear-inner {
  background-color: #73b1ee;
  border: 1px solid #2b97ff; }

.s-top-ads {
  margin-bottom: 1.25rem;
  border-radius: 0.5rem;
  overflow: hidden; }
  .s-top-ads img {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    vertical-align: middle; }
  .s-top-ads .swiper-slide {
    position: relative; }
  .s-top-ads .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0.5rem 0; }
  .s-top-ads .swiper-pagination-bullet {
    background-color: #2c2d35; }
  .s-top-ads .swiper-pagination-bullet-active {
    background-color: #fff; }
  .s-top-ads .slide-content-wr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; }

[dir="ltr"] .sidebar {
  float: left; }
  [dir="ltr"] .sidebar--sticky {
    left: 0.9375rem; }

[dir="ltr"] .s-main-wr {
  padding-left: 20rem; }

[dir="rtl"] .sidebar {
  float: right; }
  [dir="rtl"] .sidebar--sticky {
    right: 0.9375rem; }

[dir="rtl"] .s-main-wr {
  padding-right: 20rem; }

/* Top slider */
#top-banner .owl-dots,
.swiper-container-slider .owl-dots {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%); }
  #top-banner .owl-dots .owl-dot,
  .swiper-container-slider .owl-dots .owl-dot {
    display: block;
    margin: 0.375rem 0;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #2c2d35;
    background-color: rgba(44, 45, 53, 0.6); }
    #top-banner .owl-dots .owl-dot.active,
    .swiper-container-slider .owl-dots .owl-dot.active {
      background-color: #fff; }

@media screen and (max-width: 860px) {
  .sidebar {
    display: flex;
    justify-content: space-around;
    width: 100%; }
  [dir="ltr"] .sidebar,
  [dir="rtl"] .sidebar {
    float: none; }
  [dir="ltr"] .s-main-wr,
  [dir="rtl"] .s-main-wr {
    padding-left: 0;
    padding-right: 0; }
  [dir="ltr"] .s-search-wrapper {
    min-width: 45%;
    max-width: 45%;
    margin-right: 5%; }
  [dir="rtl"] .s-search-wrapper {
    min-width: 45%;
    max-width: 45%;
    margin-left: 5%; } }

@media screen and (max-width: 760px) {
  .main-search-cont {
    padding-top: 4.6875rem; } }

@media screen and (max-width: 560px) {
  .sidebar {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.25rem; }
  [dir="ltr"] .s-search-wrapper {
    min-width: 100%;
    max-width: 100%;
    margin-right: 0; }
  [dir="rtl"] .s-search-wrapper {
    min-width: 100%;
    max-width: 100%;
    margin-left: 0; } }

.left-ad-image {
  width: 100%; }

#search {
  color: #2191fc; }

.sidebar .select-styled {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline;
  line-height: 1.7; }

.main-form__piece-second-page {
  position: relative; }
  .main-form__piece-second-page .clear-select {
    top: 23%;
    right: 6px; }
    .index-paragraph{
      margin: 20px;
      color: #03718E;

    }

    .v37_261 {
      /* width: 902px; */
      color: #931b0d;
      /* position: absolute; */
      /* top: 312px; */
      /* left: 120px; */
      font-weight: Medium;
      font-size: 20px;
      opacity: 1;
      text-align: left;
      margin-top: 40px;
      margin-bottom: 30px;
  }
  .header-main--search{
    background-color: #fff;
    color:#000 !important;
  }

  .h-lang span ,.h-account a , .h-log a , .h-account button.paypal{
    color: #000;
  }

  .h-account a{
    padding: 10px 30px ;
    border-radius: 3px;
    border-color: #73b2ee;
    background: #73b2ee;
    color: #fff;
  }