/**
 * Swiper 4.5.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 13, 2019
 */

.swiper-container {
  margin-left: auto;
  margin-right: 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 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

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

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

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

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

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

/* Auto Height */

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

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

/* 3D Effects */

.swiper-container-3d {
  -webkit-perspective: 1200px;
  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 {
  -webkit-transform-style: preserve-3d;
  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: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  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: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  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: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  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: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  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 {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  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;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  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 {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

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

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

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

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

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

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  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;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-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%;
  -webkit-transform: translate3d(0px, -50%, 0);
  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%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

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

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

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

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

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

/* 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%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: 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;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  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");
}

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

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    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 {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  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;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  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 {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  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;
  -webkit-filter: blur(50px);
  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;
}.container-fluid,
.container {
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media only screen and (min-width: 48em) {
  .container {
    width: 49rem;
  }

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 64em) {
  .container {
    width: 65rem;
  }

  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 75em) {
  .container {
    width: 76rem;
  }

  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute!important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(.47,0,.74,.71);
          transition-timing-function: cubic-bezier(.47,0,.74,.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  -webkit-transition-timing-function: cubic-bezier(.22,.61,.36,1);
          transition-timing-function: cubic-bezier(.22,.61,.36,1);
}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity .25s ease,visibility 0s ease .25s;
  transition: opacity .25s ease,visibility 0s ease .25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  -webkit-transition: opacity .25s ease 0s,visibility 0s ease 0s;
  transition: opacity .25s ease 0s,visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(.5,0,.14,1);
          animation-timing-function: cubic-bezier(.5,0,.14,1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-iframe,
.fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30,30,30,.6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color .2s;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:first-child,
.fancybox-button--pause svg:first-child,
.fancybox-button--play svg:nth-child(2) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 99998;
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

.fancybox-caption {
  background: -webkit-gradient(linear,left bottom, left top,color-stop(0, rgba(0,0,0,.85)),color-stop(50%, rgba(0,0,0,.3)),color-stop(65%, rgba(0,0,0,.15)),color-stop(75.5%, rgba(0,0,0,.075)),color-stop(82.85%, rgba(0,0,0,.037)),color-stop(88%, rgba(0,0,0,.019)),to(transparent));
  background: linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding:max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left));
  }
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  -webkit-animation: a 1s linear infinite;
          animation: a 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes a {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes a {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0,0,.25,1);
          transition-timing-function: cubic-bezier(0,0,.25,1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%,0,0);
          transform: translate3d(-100%,0,0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%,0,0);
          transform: translate3d(100%,0,0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(.19,1,.22,1);
          transition-timing-function: cubic-bezier(.19,1,.22,1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5,1.5,1.5);
          transform: scale3d(1.5,1.5,1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(.5,.5,.5);
          transform: scale3d(.5,.5,.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-1turn);
          transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(1turn);
          transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0,0,0) translate3d(-100%,0,0);
          transform: scale3d(0,0,0) translate3d(-100%,0,0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0,0,0) translate3d(100%,0,0);
          transform: scale3d(0,0,0) translate3d(100%,0,0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scaleX(1) translateZ(0);
          transform: scaleX(1) translateZ(0);
}

.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%,0,0) scale(.1) skew(-10deg);
          transform: translate3d(-100%,0,0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%,0,0) scale(.1) skew(10deg);
          transform: translate3d(100%,0,0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translateZ(0) scale(1);
          transform: translateZ(0) scale(1);
}

@media (max-height:576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

@supports (padding:max(0px)) {
    .fancybox-caption {
      padding-left: max(12px,env(safe-area-inset-left));
      padding-right: max(12px,env(safe-area-inset-right));
    }
}
}

.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:link,
.fancybox-share__button:visited {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
          box-shadow: inset 0 0 6px rgba(0,0,0,.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0,0,0,.1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all .2s cubic-bezier(.25,.46,.45,.94);
  transition: all .2s cubic-bezier(.25,.46,.45,.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus:before {
  opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width:576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}.iti {
  position: relative;
  display: inline-block;
}

.iti * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti input,
.iti input[type=text],
.iti input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}

.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555;
}

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #CCC;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}

.iti__flag-box {
  display: inline-block;
  width: 20px;
}

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #CCC;
}

.iti__country {
  padding: 5px 10px;
  outline: none;
}

.iti__dial-code {
  color: #999;
}

.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti__flag-box,
.iti__country-name,
.iti__dial-code {
  vertical-align: middle;
}

.iti__flag-box,
.iti__country-name {
  margin-right: 6px;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
}

.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  width: 20px;
}

.iti__flag.iti__be {
  width: 18px;
}

.iti__flag.iti__ch {
  width: 15px;
}

.iti__flag.iti__mc {
  width: 19px;
}

.iti__flag.iti__ne {
  width: 18px;
}

.iti__flag.iti__np {
  width: 13px;
}

.iti__flag.iti__va {
  width: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-size: 5652px 15px;
  }
}

.iti__flag.iti__ac {
  height: 10px;
  background-position: 0px 0px;
}

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0px;
}

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0px;
}

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0px;
}

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0px;
}

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0px;
}

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0px;
}

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0px;
}

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0px;
}

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0px;
}

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0px;
}

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0px;
}

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0px;
}

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0px;
}

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0px;
}

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0px;
}

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0px;
}

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0px;
}

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0px;
}

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0px;
}

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0px;
}

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0px;
}

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0px;
}

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0px;
}

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0px;
}

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0px;
}

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0px;
}

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0px;
}

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0px;
}

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0px;
}

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0px;
}

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0px;
}

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0px;
}

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0px;
}

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0px;
}

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0px;
}

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0px;
}

.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0px;
}

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0px;
}

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0px;
}

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0px;
}

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0px;
}

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0px;
}

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0px;
}

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0px;
}

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0px;
}

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0px;
}

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0px;
}

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0px;
}

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0px;
}

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0px;
}

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0px;
}

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0px;
}

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0px;
}

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0px;
}

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0px;
}

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0px;
}

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0px;
}

.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0px;
}

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0px;
}

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0px;
}

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0px;
}

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0px;
}

.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0px;
}

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0px;
}

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0px;
}

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0px;
}

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0px;
}

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0px;
}

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0px;
}

.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0px;
}

.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0px;
}

.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0px;
}

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0px;
}

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0px;
}

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0px;
}

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0px;
}

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0px;
}

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0px;
}

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0px;
}

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0px;
}

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0px;
}

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0px;
}

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0px;
}

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0px;
}

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0px;
}

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0px;
}

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0px;
}

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0px;
}

.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0px;
}

.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0px;
}

.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0px;
}

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0px;
}

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0px;
}

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0px;
}

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0px;
}

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0px;
}

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0px;
}

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0px;
}

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0px;
}

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0px;
}

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0px;
}

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0px;
}

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0px;
}

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0px;
}

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0px;
}

.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0px;
}

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0px;
}

.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0px;
}

.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0px;
}

.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0px;
}

.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0px;
}

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0px;
}

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0px;
}

.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0px;
}

.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0px;
}

.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0px;
}

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0px;
}

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0px;
}

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0px;
}

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0px;
}

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0px;
}

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0px;
}

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0px;
}

.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0px;
}

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0px;
}

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0px;
}

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0px;
}

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0px;
}

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0px;
}

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0px;
}

.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0px;
}

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0px;
}

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0px;
}

.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0px;
}

.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0px;
}

.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0px;
}

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0px;
}

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0px;
}

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0px;
}

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0px;
}

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0px;
}

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0px;
}

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0px;
}

.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0px;
}

.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0px;
}

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0px;
}

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0px;
}

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0px;
}

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0px;
}

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0px;
}

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0px;
}

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0px;
}

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0px;
}

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0px;
}

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0px;
}

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0px;
}

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0px;
}

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0px;
}

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0px;
}

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0px;
}

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0px;
}

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0px;
}

.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0px;
}

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0px;
}

.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0px;
}

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0px;
}

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0px;
}

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0px;
}

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0px;
}

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0px;
}

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0px;
}

.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0px;
}

.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0px;
}

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0px;
}

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0px;
}

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0px;
}

.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0px;
}

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0px;
}

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0px;
}

.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0px;
}

.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0px;
}

.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0px;
}

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0px;
}

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0px;
}

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0px;
}

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0px;
}

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0px;
}

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0px;
}

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0px;
}

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0px;
}

.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0px;
}

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0px;
}

.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0px;
}

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0px;
}

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0px;
}

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0px;
}

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0px;
}

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0px;
}

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0px;
}

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0px;
}

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0px;
}

.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0px;
}

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0px;
}

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0px;
}

.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0px;
}

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0px;
}

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0px;
}

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0px;
}

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0px;
}

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0px;
}

.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0px;
}

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0px;
}

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0px;
}

.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0px;
}

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0px;
}

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0px;
}

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0px;
}

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0px;
}

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0px;
}

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0px;
}

.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0px;
}

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0px;
}

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0px;
}

.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0px;
}

.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0px;
}

.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0px;
}

.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0px;
}

.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0px;
}

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0px;
}

.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0px;
}

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0px;
}

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0px;
}

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0px;
}

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0px;
}

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0px;
}

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0px;
}

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0px;
}

.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0px;
}

.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0px;
}

.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0px;
}

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0px;
}

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0px;
}

.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0px;
}

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0px;
}

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0px;
}

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0px;
}

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0px;
}

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0px;
}

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0px;
}

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0px;
}

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0px;
}

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0px;
}

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0px;
}

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0px;
}

.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0px;
}

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0px;
}

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0px;
}

.iti__flag {
  height: 15px;
  -webkit-box-shadow: 0px 0px 1px 0px #888;
          box-shadow: 0px 0px 1px 0px #888;
  background-image: url(/images/vendor/intl-tel-input/build/flags.png?416250f60d785a2e02f17e054d2e4e44);
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url(/images/vendor/intl-tel-input/build/flags@2x.png?d429a5777afaf2fc349652e812e9bb11);
  }
}

.iti__flag.iti__np {
  background-color: transparent;
}/*Variables*/

/*COLORS*/

/*ANIMATIONS*/

/*FONTS*/

/*@mixin fbl {
  font-family: 'Gilroy-Black', sans-serif;
}*/

/*@mixin fh {
  font-family: 'Gilroy-Heavy', sans-serif;
}*/

/*@mixin ful {
  font-family: 'Gilroy-UltraLight', sans-serif;
}*/

/*@mixin ft {
  font-family: 'Gilroy-Thin', sans-serif;
}*/

/*@mixin amp {
  font-family: 'Roboto', sans-serif;
}*/

/*=======================START-MEDIA=====================*/

/*=======================END-MEDIA=====================*/

@font-face {
  font-family: iconfont;
  src: url("/assets/frontend/fonts/iconfont/iconfont.eot");
  src: url("/assets/frontend/fonts/iconfont/iconfont.eot?#iefix") format("embedded-opentype"), url("/assets/frontend/fonts/iconfont/iconfont.woff2") format("woff2"), url("/assets/frontend/fonts/iconfont/iconfont.woff") format("woff"), url("/assets/frontend/fonts/iconfont/iconfont.ttf") format("truetype"), url("/assets/frontend/fonts/iconfont/iconfont.svg#iconfont") format("svg");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

.icon {
  display: inline-block;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  text-rendering: auto;
  font: normal normal 400 14px/1 iconfont;
  font-size: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.icon-lg {
  vertical-align: -15%;
  line-height: 0.75em;
  font-size: 1.33333333em;
}

.icon-2x {
  font-size: 2em;
}

.icon-3x {
  font-size: 3em;
}

.icon-4x {
  font-size: 4em;
}

.icon-5x {
  font-size: 5em;
}

.icon-fw {
  width: 1.28571429em;
  text-align: center;
}

.icon-arr-r::before {
  content: "\ea01";
}

.icon-arrback::before {
  content: "\ea02";
}

.icon-ask::before {
  content: "\ea03";
}

.icon-bag::before {
  content: "\ea04";
}

.icon-bonus::before {
  content: "\ea05";
}

.icon-calendar::before {
  content: "\ea06";
}

.icon-calendar2::before {
  content: "\ea07";
}

.icon-cancel::before {
  content: "\ea08";
}

.icon-card::before {
  content: "\ea09";
}

.icon-caret::before {
  content: "\ea0a";
}

.icon-check::before {
  content: "\ea0b";
}

.icon-clock::before {
  content: "\ea0c";
}

.icon-download2::before {
  content: "\ea0d";
}

.icon-eddit::before {
  content: "\ea0e";
}

.icon-eddit1::before {
  content: "\ea0f";
}

.icon-envelope::before {
  content: "\ea10";
}

.icon-fb::before {
  content: "\ea11";
}

.icon-gps::before {
  content: "\ea12";
}

.icon-insta::before {
  content: "\ea13";
}

.icon-linkedin::before {
  content: "\ea14";
}

.icon-list::before {
  content: "\ea15";
}

.icon-map::before {
  content: "\ea16";
}

.icon-mobile::before {
  content: "\ea17";
}

.icon-money::before {
  content: "\ea18";
}

.icon-money1::before {
  content: "\ea19";
}

.icon-photo::before {
  content: "\ea1a";
}

.icon-play::before {
  content: "\ea1b";
}

.icon-plus::before {
  content: "\ea1c";
}

.icon-profile::before {
  content: "\ea1d";
}

.icon-rev-arr::before {
  content: "\ea1e";
}

.icon-search::before {
  content: "\ea1f";
}

.icon-star::before {
  content: "\ea20";
}

.icon-telegram::before {
  content: "\ea21";
}

.icon-tiktok::before {
  content: "\ea22";
}

.icon-trash::before {
  content: "\ea23";
}

.icon-twitter::before {
  content: "\ea24";
}

.icon-up-arrow::before {
  content: "\ea25";
}

.icon-viber::before {
  content: "\ea26";
}

.icon-youtube::before {
  content: "\ea27";
}

.icon-yphone::before {
  content: "\ea28";
}

.icon-zip::before {
  content: "\ea29";
}

/*--------- font-face ---------*/

@font-face {
  font-family: 'Gilroy-ExtraBold';
  src: url("/assets/frontend/fonts/Gilroy-ExtraBold.eot");
  src: url("/assets/frontend/fonts/Gilroy-ExtraBold.eot?#iefix") format("embedded-opentype"), url("/assets/frontend/fonts/Gilroy-ExtraBold.woff2") format("woff2"), url("/assets/frontend/fonts/Gilroy-ExtraBold.woff") format("woff"), url("/assets/frontend/fonts/Gilroy-ExtraBold.ttf") format("truetype"), url("/assets/frontend/fonts/Gilroy-ExtraBold.svg#Gilroy-ExtraBold") format("svg");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy-Regular';
  src: url("/assets/frontend/fonts/Gilroy-Regular.eot");
  src: url("/assets/frontend/fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("/assets/frontend/fonts/Gilroy-Regular.woff2") format("woff2"), url("/assets/frontend/fonts/Gilroy-Regular.woff") format("woff"), url("/assets/frontend/fonts/Gilroy-Regular.ttf") format("truetype"), url("/assets/frontend/fonts/Gilroy-Regular.svg#Gilroy-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/*@font-face {
    font-family: 'Gilroy-UltraLight';
    src: url('/assets/frontend/fonts/Gilroy-UltraLight.eot');
    src: url('/assets/frontend/fonts/Gilroy-UltraLight.eot?#iefix') format('embedded-opentype'),
    url('/assets/frontend/fonts/Gilroy-UltraLight.woff2') format('woff2'),
    url('/assets/frontend/fonts/Gilroy-UltraLight.woff') format('woff'),
    url('/assets/frontend/fonts/Gilroy-UltraLight.ttf') format('truetype'),
    url('/assets/frontend/fonts/Gilroy-UltraLight.svg#Gilroy-UltraLight') format('svg');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}*/

/*@font-face {
    font-family: 'Gilroy-Black';
    src: url('/assets/frontend/fonts/Gilroy-Black.eot');
    src: url('/assets/frontend/fonts/Gilroy-Black.eot?#iefix') format('embedded-opentype'),
    url('/assets/frontend/fonts/Gilroy-Black.woff2') format('woff2'),
    url('/assets/frontend/fonts/Gilroy-Black.woff') format('woff'),
    url('/assets/frontend/fonts/Gilroy-Black.ttf') format('truetype'),
    url('/assets/frontend/fonts/Gilroy-Black.svg#Gilroy-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}*/

/*@font-face {
    font-family: 'Gilroy-Heavy';
    src: url('/assets/frontend/fonts/Gilroy-Heavy.eot');
    src: url('/assets/frontend/fonts/Gilroy-Heavy.eot?#iefix') format('embedded-opentype'),
    url('/assets/frontend/fonts/Gilroy-Heavy.woff2') format('woff2'),
    url('/assets/frontend/fonts/Gilroy-Heavy.woff') format('woff'),
    url('/assets/frontend/fonts/Gilroy-Heavy.ttf') format('truetype'),
    url('/assets/frontend/fonts/Gilroy-Heavy.svg#Gilroy-Heavy') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}*/

/*@font-face {
    font-family: 'Gilroy-Thin';
    src: url('/assets/frontend/fonts/Gilroy-Thin.eot');
    src: url('/assets/frontend/fonts/Gilroy-Thin.eot?#iefix') format('embedded-opentype'),
    url('/assets/frontend/fonts/Gilroy-Thin.woff2') format('woff2'),
    url('/assets/frontend/fonts/Gilroy-Thin.woff') format('woff'),
    url('/assets/frontend/fonts/Gilroy-Thin.ttf') format('truetype'),
    url('/assets/frontend/fonts/Gilroy-Thin.svg#Gilroy-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}*/

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  padding: 0;
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img,
iframe {
  border: 0;
}

ul,
nav {
  list-style: none;
}

input:focus,
button:focus,
a:focus,
textarea:focus,
select:focus {
  outline: none !important;
}

textarea {
  resize: none;
}

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

section {
  max-width: 100%;
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
  color: #000000;
}

a img {
  border: none;
}

img {
  max-width: 100%;
  display: block;
  border-style: none;
}

noscript div {
  position: relative;
  top: 0;
  background: #fff;
  z-index: 77777;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  padding: 50px;
  border: 3px solid red;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  color: #707070;
}

noscript div a {
  text-decoration: underline;
  color: blue;
}

input,
textarea,
select {
  vertical-align: middle;
  color: #000000;
}

form,
fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
}

input[type="text"],
input[type="file"],
input[type="password"],
input[type="submit"],
input[type="email"],
input[type="tel"],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

input[type="email"] {
  box-shadow: none;
  -webkit-box-shadow: none;
}

input[type="image"] {
  padding: 0;
  border: none;
}

input[type="submit"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type="submit"],
input[type="button"] {
  cursor: pointer;
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

button:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

button {
  cursor: pointer;
}

p {
  max-width: 100%;
  margin: 0 0 10px;
}

p,
span,
label,
h1,
h2,
h3,
h4,
h5,
h6,
b,
strong,
i,
em {
  max-width: 100%;
  word-wrap: break-word;
}

div {
  word-wrap: break-word;
}

.fancybox-bg {
  background: rgba(35, 35, 44, 0.4);
}

.fancybox-active {
  height: 100%;
}

.fancybox-active .select2-container {
  z-index: 99999;
}

.fancybox-active .driver-form .select2-container {
  z-index: 1;
}

.fancybox-active .registr-wrap .select2-container {
  z-index: 1;
}

.fancybox-active .create-task__form .select2-container {
  z-index: 9;
}

.fancybox-active .add-profile-fields .select2-container {
  z-index: 1;
}

.modal {
  display: none;
  max-width: 880px;
  width: 100%;
  border-radius: 0;
  background-color: #ffffff;
  color: #000000;
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 16px;
  line-height: 24px;
  cursor: default !important;
  padding: 30px;
  outline: none;
}

@media only screen and (max-width: 570px) {
  .modal {
    padding: 30px 20px;
  }
}

.modal.close-order-modal {
  padding: 45px 30px;
}

@media only screen and (max-width: 570px) {
  .modal.close-order-modal {
    padding: 30px 20px;
  }
}

.modal.close-order-modal .modal-btn {
  margin: 38px 0 0px;
}

.modal-header {
  padding-bottom: 50px;
}

@media only screen and (max-width: 600px) {
  .modal-header {
    padding-bottom: 30px;
  }
}

.modal-header img {
  margin: auto;
}

.modal-title {
  font-family: 'Gilroy-ExtraBold', sans-serif;
  font-size: 30px;
  line-height: normal;
  padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  .modal-title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 480px) {
  .modal-title {
    font-size: 19px;
  }
}

.modal__top-text {
  font-family: 'Gilroy-ExtraBold', sans-serif;
  font-size: 20px;
  line-height: 20px;
}

@media only screen and (max-width: 600px) {
  .modal__top-text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 480px) {
  .modal__top-text {
    font-size: 15px;
  }
}

.modal form {
  padding: 30px 0 50px;
  max-width: 418px;
  margin: auto;
}

@media only screen and (max-width: 480px) {
  .modal form {
    padding: 0;
  }
}

.modal-btn {
  margin: 38px 0 105px;
}

@media only screen and (max-width: 480px) {
  .modal-btn {
    margin: 38px 0;
  }
}

.modal-btn .btn {
  margin: 0 12px;
  min-width: 186px;
  padding: 15px 20px;
}

@media only screen and (max-width: 480px) {
  .modal-btn .btn {
    margin: 0 5px;
    min-width: 129px;
  }
}

.fancybox-is-open .fancybox-bg {
  opacity: 1;
}

@media only screen and (max-width: 480px) {
  .fancybox-slide--html .fancybox-slide {
    padding: 0;
  }
}

.fancybox-slide--html .fancybox-close-small {
  padding: 0;
  width: 32px;
  height: 32px;
  right: 20px;
  top: 20px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: #ADCB00;
}

.fancybox-slide--html .fancybox-close-small:hover {
  color: #90B529;
}

.all-cities {
  padding-top: 62px;
}

.modal__city-choose {
  max-height: 800px;
  overflow: auto;
}

@media only screen and (max-width: 570px) {
  .modal__city-choose {
    height: 100%;
    max-height: 100%;
  }
}

.modal__city-choose form {
  margin: 0;
  max-width: 100%;
  padding: 0;
}

.modal__city-choose .popular-city {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  cursor: pointer;
}

.modal__city-choose .popular-city:hover {
  color: #ADCB00;
}

.city-choose {
  padding: 5px 0;
  font-size: 16px;
  line-height: 26px;
  font-family: 'Gilroy-Regular', sans-serif;
  display: block;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: #000000;
}

.city-choose:hover {
  color: #ADCB00;
}

.cities__list {
  display: none;
  padding: 9px 0;
}

.cities__list-btn {
  padding: 14px 0;
  border-bottom: 1px solid #EDEFF1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}

.cities__list-btn.open .icon {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.cities__list-btn .icon {
  color: #ADCB00;
  font-size: 12px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.country__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 20px;
  line-height: 24px;
}

.country__flag {
  margin-right: 16px;
}

.country__flag img {
  width: 16px;
}

.navbar-search {
  position: relative;
}

.navbar-search input {
  background: #EDEFF1;
  padding: 0 52px 0 16px;
}

.navbar-search.input-field {
  margin-bottom: 0;
}

.navbar-search.input-field.error:before {
  display: none;
}

.macintosh .search-btn {
  line-height: 39px;
}

.search-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 4px;
  height: 42px;
  width: 42px;
  color: #000000;
  font-size: 16px;
  line-height: 42px;
  background: #ADCB00;
  border-radius: 50%;
  text-align: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-btn:hover {
  background: #90B529;
}

.search-btn.disable {
  cursor: default;
  opacity: .7;
}

.search-btn.disable:hover {
  background: #ADCB00;
}

.input-bottom-text {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.25px;
  color: #8E9093;
  padding-top: 24px;
}

.city-info {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 24px;
  line-height: 38px;
  color: #8E9093;
}

.modal__confirm .modal-header {
  padding-bottom: 100px;
}

@media only screen and (max-width: 480px) {
  .modal__confirm .modal-header {
    padding-bottom: 65px;
  }
}

@media only screen and (max-width: 480px) {
  .modal__confirm {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px 10px 0 0;
  }
}

.input-field.pass:before {
  content: "\ea0b" !important;
  opacity: 1;
  visibility: visible;
}

.input-field.error:before {
  content: "\ea09" !important;
  font-size: 10px  !important;
  color: white  !important;
}

.registr-wrap .input-field::before {
  color: #ADCB00;
  background-color: transparent;
  font-size: 14px;
  left: calc(100% + -37px);
}

.modal-driver-one .modal-driver__body {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.modal-driver {
  padding: 40px 50px;
  margin-top: 125px;
}

@media only screen and (max-width: 480px) {
  .modal-driver {
    margin-top: 155px;
    padding: 0;
  }

  .modal-driver .modal-driver__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 800px) {
  .modal-driver .modal-driver__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.modal-driver__body {
  margin: 10px;
  width: 630px;
}

.modal-driver__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal-driver__content {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 700px;
}

.modal-driver__card {
  max-width: 300px;
  height: 100%;
  margin: 0 0;
}

.modal-driver__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 10px;
}

.modal-driver__top-text {
  font-family: 'Gilroy-ExtraBold', sans-serif;
  font-size: 20px;
  line-height: 30px;
}

.modal-driver__subtitle {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 14px;
  line-height: 30px;
}

.modal-driver__image {
  position: relative;
  border: #000000 solid 2px;
  min-width: 275px;
  max-height: 400px;
  border-radius: 5px;
  padding: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.modal-driver__image img {
  max-height: 385px;
  width: 100%;
}

.modal-driver__image:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.301);
}

.modal-driver__image.add:after {
  content: none;
  background-color: transparent;
}

.modal-driver .modal-driver__btn {
  margin-top: 20px;
  width: 100%;
  cursor: pointer;
  background: none;
}

.modal-driver .modal-driver__image-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #000000;
  font-size: 22px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.modal-driver .modal-driver__image-btn:hover {
  color: #ADCB00;
  border-color: #ADCB00;
}

.modal-driver .modal-driver__image-btn-del {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #000000;
  font-size: 22px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.modal-driver .modal-driver__image-btn-del:hover {
  color: #ADCB00;
  border-color: #ADCB00;
}

.modal-driver.modal {
  min-width: 100%;
  min-height: 100%;
}

.modal-warning-email {
  padding: 40px 50px;
  margin-top: 100px;
}

@media only screen and (max-width: 480px) {
  .modal-warning-email {
    padding: 20px 5px;
    margin-top: 100px;
  }

  .modal-warning-email .modal-btn-change {
    margin: 10px 0 30px !important;
  }

  .modal-warning-email .modal-subtitle {
    font-size: 10px !important;
  }
}

.modal-warning-email .modal-title {
  font-family: 'Gilroy-Regular', sans-serif;
  color: #ADCB00;
  font-size: 60px;
}

@media only screen and (max-width: 480px) {
  .modal-warning-email .modal-title {
    font-size: 30px;
  }
}

.modal-warning-email .modal-title:hover {
  cursor: pointer;
}

.modal-warning-email .modal-subtitle {
  font-family: 'Gilroy-Regular', sans-serif;
  color: #A0A5AB;
  font-size: 20px;
}

.modal-warning-email .modal-btn-change {
  margin: 20px 0 80px;
}

.modal-warning-email .modal-btn-change .btn {
  margin: 10px 12px;
  min-width: 100px;
  padding: 5px 15px;
  text-transform: lowercase;
}

.modal-warning-email .btn:hover {
  cursor: pointer;
}

.modal-warning-email input {
  font-size: 60px;
  height: 61px;
  color: #ADCB00;
  border: none;
  text-align: center;
}

.modal-info-contact {
  padding: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  -webkit-tap-highlight-color: transparent;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

html {
  width: 100vw;
  overflow-x: hidden;
}

body.compensate-for-scrollbar {
  margin-right: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:focus,
button:focus {
  outline: none;
}

em,
i {
  font-style: italic;
}

.icon {
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  font-size: inherit;
}

a {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: #ADCB00;
}

a:hover,
a:active,
a:focus {
  color: #90B529;
}

b,
strong {
  font-weight: normal;
  font-family: 'Gilroy-ExtraBold', sans-serif;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}

input[type="text"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="text"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'Gilroy-Regular', sans-serif;
  line-height: 16px;
  font-size: 16px;
  color: #8e9093;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 16px;
  color: #8e9093;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'Gilroy-Regular', sans-serif;
  line-height: 26px;
  font-size: 16px;
  color: #8e9093;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'Gilroy-Regular', sans-serif;
  line-height: 26px;
  font-size: 16px;
  color: #8e9093;
}

input::-moz-placeholder,
input:-moz-placeholder,
input::-webkit-input-placeholder,
input:-ms-input-placeholder {
  line-height: 44px;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.clearfix:before,
.container:before,
.clearfix:after,
.container:after {
  display: block;
  content: " ";
}

.clearfix:after,
.container:after {
  clear: both;
}

.desktop ::-webkit-scrollbar {
  width: 10px;
}

.desktop ::-webkit-scrollbar:horizontal {
  height: 10px;
}

.desktop ::-webkit-scrollbar-thumb {
  width: 10px;
  border-color: #000000;
  background-color: #000000;
}

.desktop ::-webkit-scrollbar-thumb:hover {
  border-width: 1px 1px 1px 2px;
  border-color: #ADCB00;
  background-color: #ADCB00;
}

.desktop ::-webkit-scrollbar-track {
  border-width: 0;
}

.desktop ::-webkit-scrollbar-track-piece {
  background: #a4a9ae;
}

input[type="checkbox"],
input[type="radio"] {
  visibility: hidden;
  width: 17px;
  height: 17px;
  position: absolute;
  margin: 0 !important;
}

[type="file"] {
  position: absolute;
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
  display: block;
}

body {
  margin: 0;
  color: #000000;
  height: 100%;
  min-height: 100%;
  max-width: 100%;
  background: #ffffff;
  font-size: 18px;
  line-height: 24px;
  font-family: 'Gilroy-Regular', sans-serif;
}

.page-wrapper {
  position: relative;
  display: table;
  height: 100%;
  width: 100%;
  max-width: 100%;
  margin: auto;
  table-layout: fixed;
}

@media only screen and (max-width: 570px) {
  .page-wrapper {
    padding-right: 0;
    display: table;
  }
}

body.noscroll {
  overflow: hidden;
}

noscript {
  position: fixed;
  top: 0;
  background: #fff;
  font-size: 14px;
  width: 100%;
  z-index: 9999999;
  text-align: center;
}

noscript a {
  color: red;
  text-decoration: underline;
}

noscript a:hover {
  text-decoration: none;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

.off-js,
.oldBrowser {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: #ffffff;
  padding: 45px 0;
}

img {
  max-width: 100%;
}

p,
div,
.title,
a {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

p {
  padding-bottom: 10px;
}

@media only screen and (max-width: 1030px) {
  .hidden-tablet {
    display: none !important;
  }
}

.full-height {
  height: 100vh;
}

@media only screen and (max-width: 570px) {
  .full-xs {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin: auto;
  }
}

@media only screen and (max-width: 768px) {
  .full-sm {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin: auto;
  }
}

.clear {
  clear: both;
}

.reset-list {
  list-style: none;
  padding: 0;
  margin: 0;
  letter-spacing: -0.3em;
}

.reset-list > * {
  letter-spacing: 0;
}

section {
  width: auto;
  min-height: 1px;
  position: relative;
}

.hide {
  opacity: 0;
}

.table {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
}

.table .table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

.wrapper {
  min-height: 100%;
  position: relative;
  max-width: 100%;
}

.bg-grey {
  background: #dadbdc;
  height: 100%;
}

.container {
  max-width: 1560px;
  width: 100%;
  padding: 0 15px;
}

@media only screen and (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.container--min {
  max-width: 785px;
}

.container--mid {
  max-width: 1300px;
}

.container--content {
  max-width: 1040px;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

[class*="col-"] {
  padding-right: 15px;
  padding-left: 15px;
}

.button-reset {
  border: 0;
  background: 0;
  padding: 0;
}

.input-flag-field .flag-field {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 24px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.input-flag-field .flag-field:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: calc(100% - 16px);
  width: 1px;
  background: #cdd2d8;
}

.input-flag-field .flag-field img {
  max-width: 24px;
}

.input-flag-field input {
  padding: 0 145px 0 86px;
  font-family: 'Gilroy-Regular', sans-serif;
  line-height: 26px;
  font-size: 16px;
  color: #8e9093;
}

.floating-label {
  position: absolute;
  pointer-events: none;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
  font-family: 'Gilroy-Regular', sans-serif;
  line-height: 26px;
  font-size: 16px;
  color: #8e9093;
}

.floating-label--top {
  top: 12px;
  -webkit-transform: none;
          transform: none;
}

textarea + .floating-label {
  top: 25px;
}

input:focus ~ .floating-label,
.floating-label.totop,
textarea:focus ~ .floating-label {
  top: -9px;
  font-size: 12px;
}

input:focus ~ .floating-label--top,
.floating-label--top.totop,
textarea:focus ~ .floating-label--top {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.date-field .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #8e9093;
  right: 15px;
  font-size: 21px;
}

.input-field {
  position: relative;
  margin-bottom: 20px;
}

.input-field:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(100% + 15px);
  color: #ffffff;
  font-size: 10px;
  opacity: 0;
  visibility: hidden;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: #ADCB00;
  font-family: iconfont;
  z-index: 1;
}

@media only screen and (max-width: 600px) {
  .input-field:before {
    left: calc(100% + -70px);
  }
}

.input-field.pass:before {
  content: "\ea0c";
  opacity: 1;
  visibility: visible;
}

.input-field.error input,
.input-field.error textarea,
.input-field.error select,
.input-field.error .select-wrapper input.select-dropdown,
.input-field.error .select-list .btn,
.input-field.error .select2-selection__rendered,
.input-field.error label:before {
  border: 1px solid #E94040 !important;
}

.input-field.error .check-box label,
.input-field.error .check-box a {
  color: #E94040;
}

.input-field.error .check-box label:before,
.input-field.error .check-box a:before {
  border-color: #E94040;
}

.input-field.error:before {
  content: "\ea09";
  opacity: 1;
  visibility: visible;
  background: #E94040;
}

.input-field.warning input,
.input-field.warning textarea,
.input-field.warning select,
.input-field.warning .select-wrapper input.select-dropdown,
.input-field.warning .select-list .btn,
.input-field.warning .select2-selection__rendered,
.input-field.warning label:before {
  border: 1px solid #D99B0E !important;
}

.input-field.warning .check-box label,
.input-field.warning .check-box a {
  color: #D99B0E;
}

.input-field.warning .check-box label:before,
.input-field.warning .check-box a:before {
  border-color: #D99B0E;
}

.input-field.warning:before {
  content: "\ea09";
  opacity: 1;
  visibility: visible;
  background: #D99B0E;
}

input,
textarea,
select,
.select-list__wrap .select2-container {
  font-family: 'Gilroy-Regular', sans-serif;
  margin: 0;
  padding: 0 16px;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  height: 48px;
  font-size: 14px;
  color: #000000;
  background: #ffffff;
  border: 1px solid #e6e9eb;
  border-radius: 29px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 570px) {
  input,
  textarea,
  select,
  .select-list__wrap .select2-container {
    padding-right: 45px;
  }
}

input:focus,
textarea:focus,
select:focus,
.select-list__wrap .select2-container:focus {
  border-color: #ADCB00;
}

.label {
  display: block;
  padding-bottom: 27px;
  font-family: 'Gilroy-ExtraBold', sans-serif;
  font-size: 20px;
  line-height: 20px;
  color: #000000;
  text-align: left;
}

.label--white {
  color: #ffffff;
}

.label-inline {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
}

textarea {
  line-height: 1.2;
  padding: 15px !important;
  height: 158px;
}

.hidden {
  display: none;
}

.flex-wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-nowrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

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

.mobile .animated {
  -webkit-animation: none !important;
          animation: none !important;
  visibility: visible !important;
  -webkit-transform: none !important;
          transform: none !important;
  opacity: 1 !important;
}

h1,
h2,
h3,
h4,
h5 {
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
  font-family: 'Gilroy-ExtraBold', sans-serif;
}

h1 {
  font-size: 30px;
  line-height: 38px;
}

h2 {
  font-size: 28px;
  line-height: 36px;
}

h3 {
  font-size: 26px;
  line-height: 34px;
}

h4 {
  font-size: 24px;
  line-height: 32px;
}

h5 {
  font-size: 20px;
  line-height: 28px;
}

.content {
  font-family: 'Gilroy-Regular', sans-serif;
  line-height: 25px;
  font-size: 16px;
  color: #000000;
}

@media only screen and (max-width: 1200px) {
  .content {
    font-size: 18px;
    line-height: 36px;
  }
}

@media only screen and (max-width: 768px) {
  .content {
    font-size: 14px;
    line-height: 24px;
  }
}

.content img {
  margin: 30px 0 26px;
  height: auto;
}

@media only screen and (max-width: 600px) {
  .content img {
    margin: 20px 0;
    float: none !important;
  }
}

.content p {
  font-family: 'Gilroy-Regular', sans-serif;
  line-height: 25px;
  font-size: 16px;
  margin-bottom: 10px;
  padding-bottom: 0;
  line-height: 100%;
}

@media only screen and (max-width: 768px) {
  .content p {
    font-size: 14px;
    line-height: 24px;
  }
}

.content .content-title {
  font-family: 'Gilroy-Regular', sans-serif;
  line-height: 30px;
  font-size: 24px;
  color: #000000;
  margin: 10px 0 10px;
}

@media only screen and (max-width: 570px) {
  .content .content-title {
    font-size: 22px;
    line-height: 32px;
    margin: 15px 0;
  }
}

.content .content-title--min {
  font-size: 18px;
  line-height: 23px;
}

.content ul {
  margin: 0 0 20px;
}

.content ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

@media only screen and (max-width: 1200px) {
  .content ul li {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .content ul li {
    line-height: 24px;
  }
}

.content ul li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ADCB00;
}

.content ol {
  list-style: none;
  counter-reset: my-awesome-counter;
  margin: 0 0 20px;
}

.content ol li {
  counter-increment: my-awesome-counter;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

@media only screen and (max-width: 1200px) {
  .content ol li {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .content ol li {
    line-height: 24px;
  }
}

.content ol li:before {
  content: counter(my-awesome-counter) ".";
  font-family: 'Gilroy-Regular', sans-serif;
  margin-right: 0;
  line-height: normal;
  position: absolute;
  left: 0;
  top: 4px;
}

@media only screen and (max-width: 1200px) {
  .content ol li:before {
    line-height: 20px;
  }
}

.radio-item {
  display: block;
  position: relative;
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .radio-item {
    margin-bottom: 10px;
  }
}

.radio-item label {
  cursor: pointer;
  padding-left: 33px;
  font-family: 'Gilroy-Regular', sans-serif;
  line-height: 21px;
  font-size: 14px;
  color: #000000;
}

.radio-item label:before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #ececec;
  position: absolute;
  left: 0;
  top: -2px;
}

.radio-item label:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #E94040;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 7px;
  height: 7px;
  top: 7px;
  left: 9px;
}

.radio-item input[type="radio"]:checked + label {
  opacity: 1;
}

.radio-item input[type="radio"]:checked + label:after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

[type="checkbox"]:checked + label:after {
  opacity: 1;
}

[type="checkbox"]:checked + label:before {
  border-color: #ADCB00;
}

.link-line {
  position: relative;
}

.link-line:after {
  content: "";
  position: absolute;
  opacity: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform: scalex(0);
          transform: scalex(0);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.link-line:hover {
  color: #fff;
}

.link-line:hover:after {
  -webkit-transform: scalex(1);
          transform: scalex(1);
  opacity: 1;
}

.active .link-line {
  color: #fff;
}

.active .link-line:after {
  -webkit-transform: scalex(1);
          transform: scalex(1);
  opacity: 1;
}

.go-to-top {
  position: fixed;
  bottom: 40px;
  right: 120px;
  color: #000000;
  opacity: 0;
  z-index: 9999;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  text-align: center;
  border-radius: 50%;
  border: solid 1px #ADCB00;
  background: #ADCB00;
  width: 49px;
  height: 49px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 1560px) {
  .go-to-top {
    right: 15px;
  }
}

@media only screen and (max-width: 600px) {
  .go-to-top {
    bottom: 30px;
  }
}

.go-to-top.act {
  opacity: 1;
  cursor: pointer;
}

.go-to-top.act:hover {
  background: #90B529;
}

.swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet {
  background: #DADBDC;
  opacity: 0.5;
  width: 6px;
  height: 6px;
  margin: 0 7px;
  vertical-align: middle;
  bottom: 20px;
}

.swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
  background: #DADBDC;
  opacity: 1;
}

.page-title {
  font-family: 'Gilroy-ExtraBold', sans-serif;
  font-size: 45px;
  line-height: 55px;
  color: #000000;
  padding-bottom: 21px;
}

@media only screen and (max-width: 768px) {
  .page-title {
    font-size: 32px;
    line-height: 40px;
    padding-bottom: 16px;
  }
}

.page-title--bg {
  font-family: 'Gilroy-ExtraBold', sans-serif;
  color: #000000;
  font-size: 60px;
  line-height: 60px;
  padding-bottom: 45px;
}

@media only screen and (max-width: 570px) {
  .page-title--bg {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .page-title--bg {
    font-size: 32px;
    line-height: 36px;
    padding-bottom: 16px;
  }
}

.page-title--sm {
  font-family: 'Gilroy-ExtraBold', sans-serif;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 0.25px;
  color: #000000;
  padding-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .page-title--sm {
    font-size: 25px;
    line-height: 25px;
    padding-bottom: 16px;
  }
}

.page-title--xs {
  font-family: 'Gilroy-ExtraBold', sans-serif;
  font-size: 24px;
  line-height: 24px;
  color: #000000;
}

@media only screen and (max-width: 767px) {
  .page-title--xs {
    font-size: 20px;
    line-height: 20px;
  }
}

.sub-title {
  font-family: 'Gilroy-Regular', sans-serif;
  line-height: 21px;
  font-size: 18px;
  color: #000000;
}

.height-auto {
  height: auto !important;
}

.btn {
  font-family: 'Gilroy-ExtraBold', sans-serif;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0.9px;
  text-align: center;
  color: #000000;
  border-radius: 29px;
  border: solid 2px #90B529;
  background: #90B529;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  text-transform: uppercase;
  padding: 13px 20px;
  min-width: 202px;
  display: inline-block;
}

@media only screen and (max-width: 570px) {
  .btn {
    font-size: 12px;
  }
}

.btn:hover,
.btn:active,
.btn:focus {
  background: #C9EB09;
  color: #000000;
  border: solid 2px #C9EB09;
}

.btn--light {
  background: #ADCB00;
  border-color: #ADCB00;
}

.btn--light.disable:hover {
  background: #ADCB00;
  border-color: #ADCB00;
}

.btn--ico .icon {
  padding-right: 12px;
}

.btn--brd {
  background: transparent;
  border: 2px solid #ffffff;
}

.btn--green-brd {
  background: transparent;
  border: 2px solid #ADCB00;
}

.btn--grey-brd {
  background: #ffffff;
  border: 2px solid #e6e9eb;
}

.btn--grey-brd.btn--ico .icon {
  color: #90B529;
}

.btn--black-brd {
  background: black;
  border: 2px solid black;
}

.btn--full-w {
  width: 100% !important;
}

.btn.disable {
  cursor: default;
  opacity: 0.7;
}

.dark-btn {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-family: 'Gilroy-ExtraBold', sans-serif;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0.9px;
  text-align: center;
  border-radius: 29px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  text-transform: uppercase;
  padding: 13px 20px;
  min-width: 202px;
  display: inline-block;
}

.dark-btn:hover,
.dark-btn:active,
.dark-btn:focus {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-color: #4c4c4c;
}

.dark-btn--no-border {
  border: none;
}

.dark-btn--green-btn {
  background: #ADCB00;
  border: 2px solid #ADCB00;
  color: black;
}

.dark-btn--green-btn:hover,
.dark-btn--green-btn:active,
.dark-btn--green-btn:focus {
  background: #90B529;
  color: white;
  border-color: #90B529;
}

.dark-btn--green-brd {
  background: transparent;
  border: 2px solid #ADCB00;
}

.dark-btn--green-brd:hover,
.dark-btn--green-brd:active,
.dark-btn--green-brd:focus {
  background: #ADCB00;
  color: #ffffff;
  border-color: #ADCB00;
}

.dark-btn--sm {
  min-width: auto;
  padding: 9px 15px;
}

.dark-btn--black-brd {
  background: black;
  border: 2px solid black;
}

.dark-btn .icon {
  color: #ADCB00;
  font-size: 24px;
}

.dark-btn-active {
  background: transparent;
  border: 2px solid #ADCB00;
}

.dark-btn-active:hover,
.dark-btn-active:active,
.dark-btn-active:focus {
  background: #ADCB00;
  color: #ffffff;
  border-color: #ADCB00;
  cursor: pointer;
}

.tab-box {
  display: none;
}

.link-underline {
  text-decoration: underline;
}

.link-underline:hover,
.link-underline:focus,
.link-underline:active {
  text-decoration: underline;
}

.no-arrow .swiper-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.dashed-underline {
  position: relative;
}

.dashed-underline:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 80%;
  left: 0;
  margin: auto;
  height: 1px;
  border-bottom: 1px dashed #90B529;
  right: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.check-field.error:before {
  display: none;
}

.check-box {
  text-align: left;
  margin: 4px 0;
}

.check-box [type="checkbox"] {
  display: none;
}

.check-box label,
.check-box a {
  position: relative;
  cursor: pointer;
  color: #000000;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 480px) {
  .check-box label,
  .check-box a {
    font-size: 14px;
  }
}

.check-box label:before,
.check-box a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  min-width: 24px;
  height: 24px;
  border: 1.5px solid #ADCB00;
  background: #fff;
  border-radius: 2px;
  margin-right: 13px;
}

.check-box label:after,
.check-box a:after {
  content: "\ea0c";
  font-family: iconfont;
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #ADCB00;
  border: 1.5px solid #ADCB00;
  border-radius: 2px;
  color: #ffffff;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  line-height: 20px;
  text-align: center;
  font-size: 16px;
}

.check-box input[disabled] + label,
.check-box a[disabled] {
  color: #f7f0ea;
}

.check-box input:checked + label:after,
.check-box a.active:after {
  opacity: 1;
}

.check-box input[disabled]:checked + label,
.check-box a[disabled].active {
  color: #f7f0ea;
}

.check-box input[disabled]:checked + label:after,
.check-box a[disabled].active:after {
  opacity: 0;
}

.caret {
  border-width: 6px;
  border-style: solid;
  border-right: 6px solid transparent;
  border-color: #000000 transparent transparent;
  width: 0;
  height: 0;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown {
  position: relative;
}

.dropdown__list {
  position: absolute;
  top: 100%;
  left: 50%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  background: #ffffff;
  padding: 8px 10px;
  line-height: normal;
  width: 100%;
  overflow: hidden;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  min-width: 239px;
  text-align: left;
  -webkit-box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  z-index: 1000;
}

.dropdown__list.visible {
  visibility: visible;
  opacity: 1;
  min-width: 239px;
}

.dropdown__current {
  font-family: 'Gilroy-ExtraBold', sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  color: #ffffff;
  display: block;
  cursor: pointer;
}

.dropdown__current .icon {
  vertical-align: middle;
  padding-left: 13px;
  font-size: 21px;
  color: #799fff;
}

@media only screen and (max-width: 1366px) {
  .dropdown__current .icon {
    padding-left: 7px;
  }
}

.dropdown__item {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
  color: #000000;
  padding: 8px 5px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: block;
  cursor: pointer;
  border-radius: 4px;
}

.dropdown__item:hover {
  background: #edeff1;
  color: #000000;
}

.left-text {
  text-align: left;
}

.radio {
  display: block;
  position: relative;
  margin-left: 24px;
}

.radio label {
  cursor: pointer;
  padding-left: 32px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
  color: #000000;
  font-family: 'Gilroy-Regular', sans-serif;
  display: inline-block;
}

.radio label:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1.5px solid #ADCB00;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  left: 0;
  top: 0;
}

.radio label:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #ADCB00;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 12px;
  height: 12px;
  top: 6px;
  left: 6px;
}

.radio input[type="radio"]:checked + label {
  opacity: 1;
}

.radio input[type="radio"]:checked + label:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.radio input[type="radio"]:checked + label:before {
  border: 1.5px solid #ADCB00;
  background: #ffffff;
}

.to-right {
  float: right;
}

.line--rtl {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 16px;
  line-height: 22px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.line--rtl:after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #90B529;
  content: "";
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.11, 0.7, 0, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.11, 0.7, 0, 1);
  transition: transform 0.3s cubic-bezier(0.11, 0.7, 0, 1);
  transition: transform 0.3s cubic-bezier(0.11, 0.7, 0, 1), -webkit-transform 0.3s cubic-bezier(0.11, 0.7, 0, 1);
}

.line--rtl:hover:after {
  -webkit-transform: translate3d(101%, 0, 0);
          transform: translate3d(101%, 0, 0);
}

.line--ltr {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 16px;
  line-height: 22px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.line--ltr:after {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #90B529;
  content: "";
  -webkit-transform: translate3d(-101%, 0, 0);
          transform: translate3d(-101%, 0, 0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.11, 0.7, 0, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.11, 0.7, 0, 1);
  transition: transform 0.3s cubic-bezier(0.11, 0.7, 0, 1);
  transition: transform 0.3s cubic-bezier(0.11, 0.7, 0, 1), -webkit-transform 0.3s cubic-bezier(0.11, 0.7, 0, 1);
}

.line--ltr:hover:after {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.line--ltr-wrap:hover,
.line--ltr-wrap:focus,
.line--ltr-wrap:active {
  color: #90B529;
}

.mx-140 {
  margin: 60px 0;
}

@media only screen and (max-width: 1030px) {
  .mx-140 {
    margin: 64px 0;
  }
}

.mx-30 {
  margin: 30px 0;
}

@media only screen and (max-width: 1030px) {
  .mx-30 {
    margin: 30px 0;
  }
}

.pd-140 {
  padding: 140px 0;
}

@media only screen and (max-width: 1030px) {
  .pd-140 {
    padding: 100px 0;
  }
}

@media only screen and (max-width: 570px) {
  .pd-140 {
    padding: 48px 0;
  }
}

.more-btn {
  font-family: 'Gilroy-ExtraBold', sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  color: #000000;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.more-btn:hover,
.more-btn:focus,
.more-btn:active {
  color: #ADCB00;
}

@media only screen and (max-width: 768px) {
  .more-btn {
    font-size: 12px;
    line-height: 16px;
  }
}

.more-btn .icon {
  font-size: 11px;
  padding-left: 5px;
  color: #ADCB00;
}

.more-btn span {
  display: inline-block;
  vertical-align: middle;
}

.visible-mob {
  display: none;
}

@media only screen and (max-width: 570px) {
  .visible-mob {
    display: block;
  }
}

.hidden-mob {
  display: block;
}

@media only screen and (max-width: 570px) {
  .hidden-mob {
    display: none;
  }
}

@media (min-width: 1030px) {
  .visible-tablet {
    display: none !important;
  }
}

@media only screen and (max-width: 1030px) {
  .hidden-tablet {
    display: none;
  }
}

.color--white {
  color: #ffffff;
}

.color--green {
  color: #ADCB00;
}

.anim-img {
  position: relative;
}

.anim-img:after,
.anim-img:before {
  background: rgba(255, 255, 255, 0.1);
  content: "";
  height: 0;
  position: absolute;
  width: 0;
}

.anim-img:before {
  left: 0;
  top: 0;
  -webkit-transition: all 0.5s ease-in 0s;
  transition: all 0.5s ease-in 0s;
}

.anim-img:after {
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.5s ease-in 0s;
  transition: all 0.5s ease-in 0s;
}

.anim-img:hover:after,
.anim-img:hover:before {
  width: 100%;
  height: 100%;
}

/*Intel mask start*/

.iti {
  width: 100%;
}

.iti__flag-container,
.iti__selected-flag {
  outline: none;
}

.iti__country-list {
  position: relative;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.iti__country {
  font-size: 14px;
}

.iti__country span,
.iti__country div {
  display: inline-block;
  font-size: 14px;
}

.iti__selected-dial-code {
  font-size: 14px;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
  border-right: 1px solid #bdbdbd;
}

.iti--allow-dropdown .iti__selected-flag {
  width: 90px;
  padding: 0 6px 0 15px;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  width: 100%;
}

/*Intel mask end*/

.visually-hidden {
  opacity: 0;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  margin: 0;
  width: 0;
}

main {
  position: relative;
  padding-top: 0px;
}

.error-text {
  position: absolute;
  bottom: -18px;
  left: 20px;
  font-size: 14px;
  line-height: 18px;
  width: 100%;
  font-family: 'Gilroy-Regular', sans-serif;
  color: red;
}

@media only screen and (max-width: 570px) {
  .error-text {
    font-size: 10px;
  }
}

.error-phone {
  display: none;
  position: absolute;
  left: 0;
  top: 52px;
  font-size: 14px;
  line-height: 18px;
  width: 100%;
  text-align: center;
  font-family: 'Gilroy-Regular', sans-serif;
  color: red;
}

@media only screen and (max-width: 570px) {
  .error-phone {
    font-size: 10px;
  }
}

.advantages-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

img:not([src]):not([srcset]) {
  visibility: hidden;
}

.px-100 {
  padding: 100px 0;
}

@media only screen and (max-width: 1030px) {
  .px-100 {
    padding: 64px 0;
  }
}

@media only screen and (max-width: 570px) {
  .px-100 {
    padding: 40px 0;
  }
}

.px-120 {
  padding: 120px 0;
}

@media only screen and (max-width: 1030px) {
  .px-120 {
    padding: 64px 0;
  }
}

@media only screen and (max-width: 570px) {
  .px-120 {
    padding: 40px 0;
  }
}

.bg-white {
  background-color: white;
}

.bg-grey {
  background-color: #f5f5f5;
}

.bg-black {
  background-color: black;
}

.autocomplete-one-item {
  cursor: pointer;
  padding: 3px 0;
  font-size: 15px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.autocomplete-one-item:hover {
  color: #ADCB00;
}

.autocomplete-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  -webkit-box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.16);
  max-height: 180px;
  background: #fff;
  overflow: auto;
  z-index: 2;
}

.autocomplete-items::-webkit-scrollbar {
  width: 2px;
}

.autocomplete-items::-webkit-scrollbar:horizontal {
  height: 10px;
}

.autocomplete-items::-webkit-scrollbar-thumb {
  width: 2px;
  border-color: #000000;
  background-color: #000000;
}

.autocomplete-items::-webkit-scrollbar-thumb:hover {
  border-width: 1px 1px 1px 2px;
  border-color: #ADCB00;
  background-color: #ADCB00;
}

.autocomplete-items::-webkit-scrollbar-track {
  border-width: 0;
}

.autocomplete-items::-webkit-scrollbar-track-piece {
  background: #a4a9ae;
}

.autocomplete-items a {
  color: #000000;
  text-decoration: none;
  font-size: 15px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.autocomplete-items a:hover {
  color: #ADCB00;
}

.autocomplete-field-error:after {
  content: attr(data-error);
  position: absolute;
  right: 15px;
  top: 100%;
  font-size: 13px;
  line-height: 13px;
  color: #E94040;
}

.autocomplete-field-error.pass:before {
  content: "\ea09";
  background: #E94040;
}

.autocomplete-field-error input {
  border: 1px solid #E94040;
}

@media only screen and (max-width: 600px) {
  .display-none-xs {
    display: none !important;
  }
}

.header {
  padding-bottom: 20px;
  background-color: #000000;
}

@media only screen and (max-width: 1030px) {
  .header {
    position: relative;
  }
}

@media only screen and (max-width: 570px) {
  .header {
    padding-right: 0px;
  }
}

@media only screen and (max-width: 600px) {
  .header {
    padding: 16px 0 14px;
    z-index: 2;
  }
}

@media only screen and (max-width: 991px) {
  .header .header__submenu-text {
    font-size: 10px;
    margin-right: 10px;
  }
}

.header__submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 20%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__submenu-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Gilroy-ExtraBold', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 100%;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-right: 50px;
}

.header__submenu-text-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Gilroy-ExtraBold', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 100%;
  color: #ADCB00;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-right: 25px;
}

.header__submenu-text-active:hover {
  cursor: default;
}

.header__submenu-border {
  position: absolute;
  left: 0%;
  right: 0%;
  top: 33.08%;
  bottom: 66.92%;
  opacity: 0.3;
  border: 1px solid #FFFFFF;
}

.header__top-item {
  margin-right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

@media only screen and (max-width: 1560px) {
  .header__top-item {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 1366px) {
  .header__top-item {
    margin-right: 0;
  }
}

.header__top-item:last-child {
  margin-right: 0;
}

.header__left {
  width: 30%;
  margin-top: 16px;
}

@media only screen and (max-width: 1366px) {
  .header__left {
    width: 30%;
  }
}

@media only screen and (max-width: 1030px) {
  .header__left {
    width: 30%;
  }
}

@media only screen and (max-width: 991px) {
  .header__left {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  .header__left {
    margin-top: 0;
  }
}

@media only screen and (max-width: 570px) {
  .header__left {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media only screen and (max-width: 350px) {
  .header__left {
    margin-top: 0;
  }
}

.header__right {
  width: 70%;
  margin-top: 16px;
}

@media only screen and (max-width: 1366px) {
  .header__right {
    width: 70%;
  }
}

@media only screen and (max-width: 1030px) {
  .header__right {
    width: 70%;
  }
}

@media only screen and (max-width: 991px) {
  .header__right {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  .header__right {
    margin-top: 0;
  }
}

@media only screen and (max-width: 570px) {
  .header__right {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 16px;
  }
}

@media only screen and (max-width: 570px) {
  .header__right {
    display: none;
    margin-top: 16px;
  }
}

.header__logo {
  padding-right: 60px;
}

@media only screen and (max-width: 1366px) {
  .header__logo {
    padding-right: 30px;
  }
}

@media only screen and (max-width: 1200px) {
  .header__logo {
    padding-right: 20px;
  }
}

.header__city {
  color: #ffffff;
  font-size: 15px;
  line-height: 26px;
  font-family: 'Gilroy-Regular', sans-serif;
  text-transform: none;
}

.header__call-error {
  color: #000000;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.25px;
  padding: 8px 15px 7px 17px;
  text-transform: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 1px black;
}

.header__call-error span {
  margin-left: 20px;
}

.header__call-error:hover {
  color: #000;
  border-color: #90b529;
}

.header__call-error:focus {
  color: #000;
  border-color: #90b529;
}

.header__support {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: 'Gilroy-Regular', sans-serif;
  padding: 8px 15px 7px 17px;
  border: none;
}

@media only screen and (max-width: 768px) {
  .header__support {
    padding: 0;
  }
}

.header__support-text {
  font-size: 12px;
  color: #ffffff;
  text-transform: none;
}

@media only screen and (max-width: 768px) {
  .header__support-text {
    font-size: 10px;
  }
}

.header__support-phone {
  color: #ADCB00;
  font-size: 19px;
  padding-top: 2px;
}

@media only screen and (max-width: 768px) {
  .header__support-phone {
    font-size: 16px;
  }
}

.header__support-email {
  color: #ADCB00;
  font-size: 19px;
  padding-top: 2px;
  text-transform: lowercase;
}

@media only screen and (max-width: 768px) {
  .header__support-email {
    font-size: 12px;
  }
}

.header__call {
  font-family: 'Gilroy-Regular', sans-serif;
  color: #ffffff;
  font-size: 26px;
  line-height: 26px;
  letter-spacing: 0.25px;
  padding: 8px 15px 7px 17px;
}

@media only screen and (max-width: 1560px) {
  .header__call {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1030px) {
  .header__call {
    border: none;
  }

  .header__call:hover,
  .header__call:focus,
  .header__call:active {
    background: transparent;
    border-color: transparent;
  }
}

@media only screen and (max-width: 1030px) {
  .header__call span {
    border-bottom: 1px dashed #ffffff;
    line-height: 30px;
  }
}

.header__call .icon {
  font-size: 17px;
}

@media only screen and (max-width: 1030px) {
  .header__call .icon {
    font-size: 20px;
  }
}

.header__call-text {
  font-size: 14px;
  text-transform: uppercase;
  padding-left: 10px;
}

@media only screen and (max-width: 1560px) {
  .header__call-text {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1200px) {
  .header__call-text {
    display: none;
  }
}

.header__call-subtext {
  font-size: 14px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1560px) {
  .header__call-subtext {
    font-size: 12px;
  }
}

.header__online {
  min-width: 180px;
  width: auto;
  border: 2px solid #ADCB00;
}

@media only screen and (max-width: 1200px) {
  .header__online {
    padding: 15px 5px;
    min-width: 150px;
    width: auto;
    font-size: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .header__online {
    padding: 10px 5px;
    min-width: 150px;
    width: auto;
    font-size: 10px;
  }
}

@media only screen and (max-width: 350px) {
  .header__online {
    min-width: 100px;
    font-size: 7px;
  }
}

.header__menu {
  font-family: 'Gilroy-Regular', sans-serif;
  color: #ffffff;
  line-height: 26px;
  letter-spacing: 0.25px;
  padding: 8px 15px 7px 17px;
  min-width: 120px;
}

.header__menu-active {
  min-width: 120px;
  border-color: #ADCB00;
  background: #ADCB00;
  cursor: default;
}

.header__menu-active:hover,
.header__menu-active:focus,
.header__menu-active:active {
  background: #ADCB00;
  border-color: #ADCB00;
}

@media only screen and (max-width: 991px) {
  .header__menu-active {
    display: none;
  }
}

.header__menu:hover,
.header__menu:focus,
.header__menu:active {
  background: #ADCB00;
  border-color: #ADCB00;
}

@media only screen and (max-width: 991px) {
  .header__menu {
    display: none;
  }
}

.header__auth .dropdown__list {
  min-width: 212px;
  text-align: center;
  padding: 8px 4px;
}

.header__auth .dropdown__item {
  color: #000000;
}

.header__lang {
  cursor: pointer;
}

.header__lang:hover .dropdown__current {
  color: #ADCB00;
}

.header__lang:hover .caret {
  border-color: #ADCB00 transparent transparent;
}

.header__lang:hover .dropdown {
  border-color: #ADCB00;
}

.header__lang .dropdown {
  background: transparent;
  border: 2px solid #FFFFFF;
  border-radius: 100px;
  padding: 12px 22px 12px 17px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.header__lang .dropdown__list {
  min-width: 100%;
  padding: 0;
}

.header__lang .dropdown__item {
  padding: 10px 5px;
  text-align: center;
}

.header__lang .dropdown__current {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.header__lang .caret {
  border-color: #ffffff transparent transparent;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.header__login {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  color: #ADCB00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__login:hover,
.header__login:focus,
.header__login:active {
  background: rgba(255, 255, 255, 0.3);
  border-color: #4c4c4c;
  color: #ADCB00;
}

.header__login img {
  border-radius: 50%;
}

.header .header__login-text {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}

@media only screen and (max-width: 350px) {
  .header .header__login-text {
    font-size: 10px;
  }
}

.mob-menu {
  display: inline-block;
  border: 2px solid white;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.mob-menu:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #4c4c4c;
  color: #ADCB00;
}

.mob-menu:focus,
.mob-menu:active {
  border: 1px solid #ADCB00;
  color: #ADCB00;
}

@media only screen and (max-width: 1030px) {
  .mob-menu {
    border: none;
  }

  .mob-menu:hover,
  .mob-menu:focus,
  .mob-menu:active {
    background: transparent;
    border-color: transparent;
    color: #ADCB00;
  }
}

.lines {
  position: relative;
  border-radius: 1px;
  -webkit-transition: height .1s;
  transition: height .1s;
  width: 22px;
  height: 1px;
  background: #ADCB00;
  margin-bottom: 1px;
  display: inline-block;
  vertical-align: middle;
}

@media only screen and (max-width: 600px) {
  .lines {
    height: 1.1px;
  }
}

.lines:after,
.lines:before {
  content: '';
  position: absolute;
  border-radius: 1px;
  left: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
  height: 1px;
  background: #ADCB00;
}

@media only screen and (max-width: 600px) {
  .lines:after,
  .lines:before {
    height: 1.1px;
  }
}

.lines:after {
  top: -7px;
}

.lines:before {
  bottom: -7px;
}

.stock .main-navigation-mobile {
  background: #ffffff !important;
}

.main-navigation-mobile {
  width: 100%;
  max-width: 426px;
  overflow: scroll;
  visibility: hidden;
  z-index: 8000;
  height: 100%;
  position: fixed;
  -webkit-transition: all 0.4s cubic-bezier(0.77, 0.06, 0.28, 0.85);
  transition: all 0.4s cubic-bezier(0.77, 0.06, 0.28, 0.85);
  text-align: left;
  top: 76px;
  right: -100%;
  background: #ffffff;
}

@media only screen and (max-width: 1030px) {
  .main-navigation-mobile {
    display: block;
    background: #000000;
    padding-bottom: 86px;
  }
}

@media only screen and (max-width: 600px) {
  .main-navigation-mobile {
    padding-bottom: 85px;
    height: calc(100vh - 0px) !important;
  }
}

.main-navigation-mobile.is-active {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.main-navigation-mobile .active .navbar-mob__item {
  color: #ADCB00;
}

.main-navigation-mobile .active .navbar-mob__item:before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.main-navigation-mobile .navbar-mob {
  padding: 23px 0;
}

.main-navigation-mobile .menu-drop-down {
  display: none;
  padding: 10px 0;
}

.main-navigation-mobile .menu-drop-down li {
  padding: 22px 0 0;
}

@media only screen and (max-width: 600px) {
  .main-navigation-mobile .menu-drop-down li {
    padding: 15px 0 0;
  }
}

.main-navigation-mobile .menu-drop-down .navbar-mob__item {
  border-bottom: 0;
  padding: 0 10px 0 67px;
  font-size: 20px;
  line-height: 24px;
  color: #8E9093;
  text-transform: none;
}

@media only screen and (max-width: 991px) {
  .main-navigation-mobile .menu-drop-down .navbar-mob__item {
    font-size: 18px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .main-navigation-mobile .menu-drop-down .navbar-mob__item {
    font-size: 16px;
    line-height: 18px;
  }
}

.main-navigation-mobile li {
  padding: 17px 0;
}

@media only screen and (max-width: 1030px) {
  .main-navigation-mobile li {
    padding: 10px 0;
  }
}

.main-navigation-mobile li .icon-caret {
  cursor: pointer;
  font-size: 7px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (max-width: 1030px) {
  .main-navigation-mobile li .icon-caret {
    color: #fff;
    font-size: 5px;
  }
}

.main-navigation-mobile li .icon-caret.active-arr {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.main-navigation-mobile .navbar-mob__item {
  display: inline-block;
  position: relative;
  padding: 0 14px 0 47px;
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 24px;
  line-height: 38px;
  color: #000000;
  cursor: pointer;
}

@media only screen and (max-width: 1030px) {
  .main-navigation-mobile .navbar-mob__item {
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
  }
}

@media only screen and (max-width: 600px) {
  .main-navigation-mobile .navbar-mob__item {
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
  }
}

.main-navigation-mobile .navbar-mob__item:before {
  content: '';
  position: absolute;
  left: 0;
  width: 11px;
  height: 100%;
  top: 0;
  background: #ADCB00;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.main-navigation-mobile .navbar-mob__item:hover,
.main-navigation-mobile .navbar-mob__item:focus,
.main-navigation-mobile .navbar-mob__item:active {
  color: #ADCB00;
}

.main-navigation-mobile .navbar-mob__item:hover:before,
.main-navigation-mobile .navbar-mob__item:focus:before,
.main-navigation-mobile .navbar-mob__item:active:before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.main-navigation-mobile .menu-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #838383;
  font-size: 20px;
  z-index: 9999;
  cursor: pointer;
}

.main-navigation-mobile .menu-close:hover {
  opacity: .5;
}

.main-navigation-mobile .second-level {
  border: none;
  padding: 0;
}

.main-navigation-mobile .second-level .second-level .navbar-mob__item {
  padding-left: 40px;
}

.main-navigation-mobile .second-level .second-level .navbar-mob__link {
  border: none;
}

.main-navigation-mobile .header__login-text {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
  text-transform: uppercase;
  padding-left: 16px;
}

@media only screen and (max-width: 350px) {
  .main-navigation-mobile .header__login-text {
    font-size: 10px;
    padding-left: 10px;
  }
}

.main-navigation-mobile__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 24px 36px;
  border-bottom: 1px solid rgba(142, 144, 147, 0.3);
}

@media only screen and (max-width: 350px) {
  .main-navigation-mobile__top {
    padding: 15px;
  }
}

.main-navigation-mobile__bottom {
  padding: 36px 24px 36px;
  border-top: 1px solid rgba(142, 144, 147, 0.3);
}

@media only screen and (max-width: 350px) {
  .main-navigation-mobile__bottom {
    padding: 15px;
  }
}

.main-navigation-mobile__bottom .lang-item {
  font-family: 'Gilroy-ExtraBold', sans-serif;
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  border: 2px solid #FFFFFF;
  padding: 10px 16px;
  margin: 0 8px 5px 0;
  border-radius: 100px;
  background: transparent;
  min-width: 61px;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
}

@media only screen and (max-width: 350px) {
  .main-navigation-mobile__bottom .lang-item {
    margin: 0 5px 5px 0;
  }
}

.main-navigation-mobile__bottom .lang-item.active {
  background: #ADCB00;
  border-color: #ADCB00;
}

.main-navigation-mobile .header__city {
  border: none;
  font-size: 14px;
  line-height: 20px;
  padding: 0;
  font-family: 'Gilroy-Regular', sans-serif;
}

.main-navigation-mobile .header__city:hover,
.main-navigation-mobile .header__city:focus,
.main-navigation-mobile .header__city:active {
  background: transparent;
  border: none;
}

.main-navigation-mobile .header__city span {
  border-bottom: 1px dashed #ffffff;
}

@media only screen and (max-width: 350px) {
  .main-navigation-mobile .header__city {
    font-size: 12px;
    line-height: 15px;
  }
}

.stock-sticker-is-open .header {
  position: relative;
  z-index: 8001;
  width: 100vw;
}

.stock-sticker-is-open .page-overlay:before {
  opacity: 1;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.stock-sticker-is-open body {
  overflow: hidden;
  padding-right: 10px;
}

.main-navigation-mobile-is-open .header {
  position: relative;
  z-index: 8001;
  width: 100vw;
}

@media only screen and (max-width: 1030px) {
  .main-navigation-mobile-is-open .header {
    padding-right: 0;
  }
}

.main-navigation-mobile-is-open .page-overlay:before {
  opacity: 1;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

@media only screen and (max-width: 570px) {
  .main-navigation-mobile-is-open body {
    padding-right: 0;
  }
}

.main-navigation-mobile-is-open .lines {
  background: transparent;
}

.main-navigation-mobile-is-open .lines:before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media only screen and (max-width: 1030px) {
  .main-navigation-mobile-is-open .lines:before {
    background: #ADCB00;
  }
}

.main-navigation-mobile-is-open .lines:after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media only screen and (max-width: 1030px) {
  .main-navigation-mobile-is-open .lines:after {
    background: #ADCB00;
  }
}

.page-overlay:before {
  content: "";
  opacity: 0;
  -webkit-transition: all 0.75s cubic-bezier(0.77, 0.06, 0.28, 0.85);
  transition: all 0.75s cubic-bezier(0.77, 0.06, 0.28, 0.85);
}

@media only screen and (max-width: 600px) {
  .temporary-styles {
    display: block;
    text-align: left;
  }
}

.temporary-styles .mob-menu {
  display: none;
}

@media only screen and (max-width: 1030px) {
  .temporary-styles .mob-menu {
    display: inline-block;
  }
}

.temporary-styles .header__top-item:nth-child(3n) {
  margin-right: 0;
}

@media only screen and (max-width: 600px) {
  .temporary-styles .header__top-item:last-child {
    float: right;
  }
}

@media only screen and (max-width: 600px) {
  .temporary-styles .header__top-item {
    display: inline-block;
  }
}

.header.sticky {
  position: sticky !important;
  top: 0px;
  width: 100%;
  z-index: 9999999;
}

@media only screen and (max-width: 600px) {
@-moz-document url-prefix()  {
    .main-navigation-mobile__bottom {
      padding-bottom: 80px !important;
    }
}

  .header {
    width: 100%;
  }
}

.stock-popup-close {
  padding: 20px;
  margin-left: 9px;
  width: 100%;
}

.stock-popup-close svg {
  width: 30px;
  height: 30px;
  background-color: white;
}

.stock-popup-close:hover {
  cursor: pointer;
}

.stock-popup-card {
  position: relative;
  width: 335px;
  height: 268px;
  margin-bottom: 10px;
  border: 1px solid #edeff1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.stock-popup-card__status-icon {
  max-width: 26px;
  padding-right: 10px;
}

.stock-popup-card__status {
  position: absolute;
  top: 14px;
  right: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Gilroy-Regular", sans-serif;
  width: 215px;
  height: 34px;
  color: black;
  background: #ffffff;
  border: 1px solid #e6e9eb;
  border-radius: 100px;
  font-size: 10px;
  padding-left: 15px;
}

.stock-popup-card__status strong {
  margin-left: 5px;
}

.stock-popup-card__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  color: black;
}

.stock-popup-card__title {
  font-family: "Gilroy-Regular", sans-serif;
  line-height: 180%;
  font-size: 14px;
  overflow: hidden;
  white-space: pre-wrap;
  padding: 9px;
  height: 60px;
  width: 280px;
  color: black;
}

.stock-popup-card__img {
  width: 100%;
}

.stock-popup-card__img img {
  height: 180px;
}

.help-sticker__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  margin-top: 30px;
  right: 0;
  z-index: 1;
  height: 61px;
  width: 170px;
  color: #000;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
}

.help-sticker__wrap img {
  height: 35px;
  margin-left: 22px;
}

.help-sticker__label {
  font-family: "Gilroy-ExtraBold", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  margin-left: 14px;
}

.help-sticker__btn {
  background: #FCE621;
  cursor: pointer;
}

.help-sticker__btn:hover {
  color: white;
}

.stock-sticker__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 574px;
  right: 0;
  z-index: 1;
  height: 50px;
  width: 124px;
  border-bottom-left-radius: 23px;
  border-top-left-radius: 23px;
}

.stock-sticker__label {
  font-family: "Gilroy-ExtraBold", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  -webkit-animation: blink 2s infinite;
          animation: blink 2s infinite;
}

.stock-sticker__btn {
  background: #adcb00;
  cursor: pointer;
}

.stock-sticker__btn:hover {
  background-color: #90b529;
  color: white;
}

@-webkit-keyframes blink {
  0% {
    color: #000;
  }

  50% {
    color: #ffffff;
  }

  100% {
    color: #000;
  }
}

@keyframes blink {
  0% {
    color: #000;
  }

  50% {
    color: #ffffff;
  }

  100% {
    color: #000;
  }
}

.support-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.support-phone__lable {
  font-size: 14px;
}

.support-phone__wraper {
  margin-top: 24px;
}

.support-phone__title {
  color: black;
  font-weight: 800;
  font-size: 20px;
  line-height: 100%;
}

.support-phone__tel {
  color: black;
  font-weight: 800;
  font-size: 20px;
  line-height: 100%;
}

.support-phone__manager {
  color: black;
  font-weight: 800;
  font-size: 20px;
  line-height: 100%;
  padding: 8px 15px 7px 17px;
  margin-top: 16px;
  margin-bottom: 16px;
  text-transform: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 1px black;
}

.support-phone__manager .icon {
  color: black;
}

.support-phone__manager span {
  margin-left: 20px;
}

.support-phone__manager:hover,
.support-phone__manager:focus {
  color: #ADCB00;
  border-color: #ADCB00;
}

.support-phone__manager:hover .icon,
.support-phone__manager:focus .icon {
  color: #ADCB00;
}

.support-phone__label {
  font-size: 16px;
  text-transform: none;
  padding-top: 20px;
}

.support-phone__global {
  color: black;
  font-size: 20px;
  line-height: 100%;
  padding: 8px 5px 8px 5px;
  margin-top: 16px;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.support-phone__global:hover,
.support-phone__global:focus {
  color: #ADCB00;
  border-color: #ADCB00;
}

.support-phone__global:hover .icon,
.support-phone__global:focus .icon {
  color: #ADCB00;
}

.support-phone__descr {
  margin-top: 16px;
  margin-bottom: 16px;
}

.breadcrumbs {
  padding: 28px 0 54px;
}

@media only screen and (max-width: 570px) {
  .breadcrumbs {
    padding: 24px 0 24px;
  }
}

@media only screen and (max-width: 350px) {
  .breadcrumbs {
    padding: 15px 0 0;
  }
}

.breadcrumbs .white {
  color: white !important;
}

.breadcrumbs .breadcrumb-item {
  display: inline-block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.breadcrumbs .breadcrumb-item:after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ADCB00;
  vertical-align: middle;
  margin: 0 10px;
}

.breadcrumbs .breadcrumb-item:hover a,
.breadcrumbs .breadcrumb-item:hover span {
  color: #ADCB00;
}

.breadcrumbs .breadcrumb-item.active a,
.breadcrumbs .breadcrumb-item.active span {
  color: #000000;
}

.breadcrumbs .breadcrumb-item.active:after {
  display: none;
}

.breadcrumbs .breadcrumb-item a,
.breadcrumbs .breadcrumb-item span {
  font-family: 'Gilroy-ExtraBold', sans-serif;
  color: #000000;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.04em;
}

.footer {
  display: table-footer-group;
  margin-top: 45px;
  background: #000000;
}

.footer-wrap {
  position: relative;
  background: #000000;
  padding: 22px 0 40px;
}

@media only screen and (max-width: 768px) {
  .footer-wrap {
    padding: 22px 0;
  }
}

@media only screen and (max-width: 600px) {
  .footer-wrap {
    padding: 64px 0 22px;
  }
}

.footer__top {
  position: relative;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 34px;
}

@media only screen and (max-width: 768px) {
  .footer__top {
    margin-bottom: 48px;
    padding-bottom: 48px;
  }
}

.footer__logo {
  background: #000000;
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 23%;
}

.footer__dog {
  width: 44%;
}

.footer__dog img {
  margin: auto;
}

@media only screen and (max-width: 570px) {
  .footer__dog img {
    margin: 0 0 0 auto;
  }
}

.footer__soc {
  width: 33%;
}

@media only screen and (max-width: 991px) {
  .footer__soc {
    width: 100%;
    padding-top: 48px;
  }
}

.footer__info {
  width: 20%;
  padding-right: 60px;
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
  color: #FFFFFF;
  opacity: 0.6;
  padding-bottom: 36px;
}

@media only screen and (max-width: 1200px) {
  .footer__info span {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 768px) {
  .footer__info span {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 1560px) {
  .footer__info {
    padding-right: 50px;
  }
}

@media only screen and (max-width: 1366px) {
  .footer__info {
    padding-right: 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .footer__info {
    width: 100%;
    padding-right: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .footer__info {
    width: 100%;
    padding-right: 0;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 48px;
    margin-top: 48px;
  }
}

.footer__nav {
  width: 45%;
}

@media only screen and (max-width: 1366px) {
  .footer__nav {
    width: 45%;
  }
}

@media only screen and (max-width: 1200px) {
  .footer__nav {
    width: 35%;
  }
}

@media only screen and (max-width: 768px) {
  .footer__nav {
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .footer__nav {
    width: 100%;
  }
}

.footer__subscribe {
  width: 35%;
  padding-left: 10px;
}

@media only screen and (max-width: 1366px) {
  .footer__subscribe {
    width: 35%;
  }
}

@media only screen and (max-width: 1030px) {
  .footer__subscribe {
    padding-left: 10px;
  }
}

@media only screen and (max-width: 1200px) {
  .footer__subscribe {
    width: 35%;
  }
}

@media only screen and (max-width: 768px) {
  .footer__subscribe {
    margin-top: 20px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media only screen and (max-width: 600px) {
  .footer__subscribe {
    width: 100%;
    padding-left: 0;
  }
}

.footer__chatbots {
  width: 100%;
  margin-top: 40px;
}

@media only screen and (max-width: 1366px) {
  .footer__chatbots {
    width: 100%;
  }
}

@media only screen and (max-width: 1030px) {
  .footer__chatbots {
    margin-top: 20px;
    width: 100%;
  }
}

@media only screen and (max-width: 1200px) {
  .footer__chatbots {
    margin-top: 20px;
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .footer__chatbots {
    margin-top: 20px;
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .footer__chatbots {
    width: 100%;
    margin-bottom: 20px;
  }
}

.footer__chatbots .soc__list-chat {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__title {
  font-family: 'Gilroy-ExtraBold', sans-serif;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 18px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.footer__nav-list {
  width: 40%;
  padding: 0 15px 0 10px;
  display: inline-block;
  vertical-align: top;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__nav-list:last-child {
  border-right: 0;
}

@media only screen and (max-width: 1200px) {
  .footer__nav-list {
    width: 49%;
    padding: 0 15px 0 30px;
  }
}

@media only screen and (max-width: 991px) {
  .footer__nav-list {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 768px) {
  .footer__nav-list {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 600px) {
  .footer__nav-list {
    width: 100%;
    margin: 0 0 48px;
    padding: 0 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 0;
  }
}

.footer__nav-list .active .footer__nav-item {
  color: #ADCB00;
}

.footer__nav-item-header {
  font-family: 'Gilroy-Regular', sans-serif;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  padding: 5px 0;
  text-transform: uppercase;
}

.footer__nav-item {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  margin: 0 0 5px 0;
  display: inline-block;
}

.footer__nav-item:hover,
.footer__nav-item:focus,
.footer__nav-item:active {
  color: #ADCB00;
}

@media only screen and (max-width: 600px) {
  .footer__nav-item {
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
  }
}

.footer__nav-item.active {
  font-family: 'Gilroy-Regular', sans-serif;
  color: #ADCB00;
}

.footer__bottom {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: -16px;
}

@media only screen and (max-width: 768px) {
  .footer__bottom {
    margin-top: 48px;
  }
}

.footer__copy {
  width: 100%;
  text-align: left;
}

.footer-soc {
  text-align: center;
}

.soc__list {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media only screen and (max-width: 991px) {
  .soc__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.soc__list li:last-child .soc__item {
  margin-right: 0;
}

.soc__list-chat {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

@media only screen and (max-width: 991px) {
  .soc__list-chat {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.soc__list-chat li:last-child .soc__item {
  margin-right: 0;
}

.soc__item {
  color: #ffffff;
  text-align: center;
  display: block;
  margin-right: 42px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (max-width: 1560px) {
  .soc__item {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .soc__item {
    margin-right: 30px;
    margin-top: 20px;
  }
}

.soc__item:hover {
  color: #ADCB00;
}

.soc__item .icon {
  font-size: 24px;
}

@media only screen and (max-width: 991px) {
  .soc__item .icon {
    font-size: 30px;
  }
}

.subscribe-form {
  position: relative;
  margin-top: 5px;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
}

@media only screen and (max-width: 600px) {
  .subscribe-form {
    margin: 0 auto 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .subscribe-form {
    max-width: 100%;
  }
}

.subscribe-form .input-field {
  position: relative;
  margin: 0;
}

.subscribe-form .input-field:before {
  display: none;
}

.subscribe-form input {
  padding: 0 55px 0 16px;
}

.subscribe-form input:focus ~ .floating-label,
.subscribe-form input .floating-label.totop {
  color: #ffffff;
}

.subscribe-form .subscribe-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 4px;
  height: 42px;
  width: 42px;
  color: #000000;
  font-size: 15px;
  line-height: 42px;
  background: #ADCB00;
  border-radius: 50%;
  text-align: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.subscribe-form .subscribe-btn:hover {
  background: #90B529;
}

.apps__wrap {
  width: 100%;
  max-width: 360px;
  margin: 40px 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media only screen and (max-width: 600px) {
  .apps__wrap {
    max-width: 100%;
    margin: 48px auto 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 768px) {
  .apps__wrap {
    max-width: 100%;
    margin: 48px auto 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 365px) {
  .apps__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.apps__wrap .app__down {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (max-width: 1030px) {
  .apps__wrap .app__down {
    margin-right: 5px;
  }
}

.apps__wrap .app__down:last-child {
  padding-right: 0;
}

.apps__wrap .app__down img {
  width: auto;
  height: auto;
}

.store-app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  color: #FFFFFF;
  padding: 5px 5px 5px 5px;
  border: solid 1px white;
  border-radius: 4px;
}

@media only screen and (max-width: 365px) {
  .store-app {
    margin-top: 5px;
    padding: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 600px) {
  .store-app {
    height: 100%;
  }
}

.store-app__img {
  height: 25px;
}

.store-app__tittle {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25px;
  padding-left: 5px;
}

.store-app:hover {
  border-color: #ADCB00;
  color: #ADCB00;
}

.store-app:hover svg {
  fill: #ADCB00;
}

/*icon-chat-bot*/

.icon-chat-bot-viber::before {
  content: "\ea26";
}

.icon-facebook-messenger::before {
  content: "\ea11";
}

.icon-facebook::before {
  content: "\ea11";
}

.icon-chat-bot-fb::before {
  content: "\ea11";
}

.services-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 20%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 1200px) {
  .services-menu {
    width: 30%;
  }
}

@media only screen and (max-width: 768px) {
  .services-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0 15px;
    margin-bottom: 40px;
  }

  .services-menu div {
    padding: 12px 0;
  }
}

.tagline__item {
  max-width: 1011px;
  margin: 0 auto 50px;
  border-bottom: 1px solid rgba(205, 210, 216, 0.3);
  padding-bottom: 50px;
}

@media only screen and (max-width: 768px) {
  .tagline__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 48px;
  }
}

.tagline__item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.tagline__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.tagline__item:nth-child(even) .tagline__info {
  padding: 11px 0 0;
}

@media only screen and (max-width: 768px) {
  .tagline__item:nth-child(even) .tagline__info {
    padding: 0;
  }
}

.tagline__item:nth-child(even) .tagline__img img {
  margin-left: auto;
  margin-right: 0;
}

@media only screen and (max-width: 768px) {
  .tagline__item:nth-child(even) .tagline__img img {
    margin: 0 0 44px;
  }
}

.tagline__img {
  width: 50%;
}

@media only screen and (max-width: 768px) {
  .tagline__img {
    width: 100%;
  }
}

.tagline__img img {
  margin-right: auto;
  width: auto;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .tagline__img img {
    margin: 0 0 44px;
  }
}

.tagline__info {
  width: 50%;
  padding: 11px 0 0 13px;
}

@media only screen and (max-width: 768px) {
  .tagline__info {
    width: 100%;
    padding: 0;
  }
}

.tagline__title {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 25px;
  line-height: 25px;
  color: #000000;
  padding-bottom: 16px;
}

@media only screen and (max-width: 570px) {
  .tagline__title {
    font-size: 22px;
    line-height: 24px;
  }
}

.tagline__descr {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 16px;
  line-height: 26px;
}

@media only screen and (max-width: 570px) {
  .tagline__descr {
    font-size: 14px;
    line-height: 20px;
  }
}

.tagline__descr h3 {
  font-size: 18px !important;
  font-family: 'Gilroy-Regular', sans-serif !important;
}

.main-tagline--seo {
  background: #fff;
  margin: 0;
  padding: 140px 0;
}

@media screen and (max-width: 1030px) {
  .main-tagline--seo {
    padding: 64px 0;
  }
}

.for-drivers {
  background: #EDEFF1;
}

.for-drivers .descr {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  max-width: 680px;
}

.for-drivers__wrap {
  position: relative;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.16);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 570px) {
  .for-drivers__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.for-drivers__info {
  width: 50%;
  padding: 105px 60px;
}

@media only screen and (max-width: 1366px) {
  .for-drivers__info {
    padding: 66px 20px 66px 40px;
  }
}

@media only screen and (max-width: 991px) {
  .for-drivers__info {
    width: 50%;
    padding: 36px 16px;
  }
}

@media only screen and (max-width: 570px) {
  .for-drivers__info {
    padding: 24px 16px;
    width: 100%;
  }
}

.for-drivers__info .img_mob {
  display: none;
}

.for-drivers__info .img_mob img {
  margin: -46px auto -25px;
  height: auto;
}

@media only screen and (max-width: 1560px) {
  .for-drivers__info .img_mob img {
    margin: auto;
  }
}

@media only screen and (max-width: 570px) {
  .for-drivers__info .img_mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 26px;
  }
}

.for-drivers__info .btn {
  margin-top: 44px;
  min-width: 179px;
}

@media only screen and (max-width: 1366px) {
  .for-drivers__info .btn {
    margin-top: 24px;
  }
}

@media only screen and (max-width: 570px) {
  .for-drivers__info .btn {
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .for-drivers__info .page-title {
    padding-right: 135px;
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 570px) {
  .for-drivers__info .page-title {
    padding-right: unset;
    padding-bottom: 24px;
  }
}

.for-drivers__img {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1560px) {
  .for-drivers__img {
    padding: 0 40px;
  }
}

@media only screen and (max-width: 1200px) {
  .for-drivers__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media only screen and (max-width: 991px) {
  .for-drivers__img {
    position: unset;
    max-width: unset;
    top: unset;
    right: unset;
    left: unset;
    bottom: unset;
    width: 50%;
  }
}

@media only screen and (max-width: 570px) {
  .for-drivers__img {
    display: none;
  }
}

.for-drivers__img img {
  margin: -46px auto -25px;
  height: auto;
}

@media only screen and (max-width: 1560px) {
  .for-drivers__img img {
    margin: auto;
  }
}

.for-drivers .payments-box {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 50px;
}

.for-drivers .descr.terminals {
  margin-top: 63px;
}

.for-drivers .terminals-box {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 50px;
}

@media only screen and (max-width: 768px) {
  .news__item {
    margin-bottom: 40px;
  }
}

.news__item:hover .anim-img:after,
.news__item:hover .anim-img:before {
  width: 100%;
  height: 100%;
}

.news__item:hover .more-btn {
  color: #ADCB00;
}

.news__item--short {
  display: block;
  padding: 37px 50px;
  border-bottom: 1px solid #E6E9EB;
  height: 100%;
  margin: 0;
}

@media only screen and (max-width: 570px) {
  .news__item--short {
    padding: 25px 0;
  }
}

.news__item--short .news__title {
  font-size: 20px;
  line-height: 24px;
}

@media only screen and (max-width: 991px) {
  .news__item--short .news__title {
    font-size: 18px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 800px) {
  .news__item--short .news__title {
    font-size: 16px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .news__item--short .news__title {
    font-size: 18px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 480px) {
  .news__item--short .news__title {
    font-size: 16px;
    line-height: 22px;
  }
}

.news__item--short .news__descr {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.news__item--short .more-btn {
  font-size: 12px;
  margin-top: 16px;
  margin-bottom: 16px;
  display: block;
}

.news__img {
  width: 50%;
  padding-right: 15px;
}

@media only screen and (max-width: 480px) {
  .news__img {
    width: 100%;
    padding: 0;
  }
}

.news__img img {
  width: 100%;
  height: auto;
}

.news__info {
  width: 50%;
  padding: 17px 0 0 15px;
}

@media only screen and (max-width: 1366px) {
  .news__info {
    padding: 0 0 0 15px;
  }
}

@media only screen and (max-width: 991px) {
  .news__info {
    padding: 0;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 480px) {
  .news__info {
    width: 100%;
    padding-top: 20px;
    margin-bottom: 40px;
  }
}

.news__info .more-btn {
  margin-top: 29px;
  display: block;
}

@media only screen and (max-width: 1366px) {
  .news__info .more-btn {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 800px) {
  .news__info .more-btn {
    font-size: 12px;
    padding-bottom: 20px;
  }
}

.news__title {
  display: block;
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 24px;
  line-height: 34px;
  color: #000000;
}

@media only screen and (max-width: 1366px) {
  .news__title {
    font-size: 20px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 991px) {
  .news__title {
    font-size: 18px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 800px) {
  .news__title {
    font-size: 16px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .news__title {
    font-size: 18px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 480px) {
  .news__title {
    font-size: 16px;
    line-height: 22px;
  }
}

.news__descr {
  display: block;
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #8E9093;
  padding-top: 16px;
}

@media only screen and (max-width: 1366px) {
  .news__descr {
    padding-top: 10px;
  }
}

@media only screen and (max-width: 800px) {
  .news__descr {
    font-size: 14px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .news__descr {
    font-size: 15px;
  }
}

.news__status {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  padding-bottom: 28px;
}

@media only screen and (max-width: 991px) {
  .news__status {
    font-size: 13px;
    padding-bottom: 10px;
  }
}

.news__status-icon {
  display: inline-block;
  vertical-align: middle;
  max-width: 32px;
  padding-right: 10px;
}

@media only screen and (max-width: 991px) {
  .news__status-icon {
    max-width: 25px;
    padding-right: 5px;
  }
}

.news__status strong {
  padding-left: 3px;
}

.news-page {
  margin-bottom: 80px;
}

.news-main {
  padding: 0px 50px 100px 50px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E6E9EB;
}

@media only screen and (max-width: 1200px) {
  .news-main {
    padding-bottom: 100px;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 768px) {
  .news-main {
    padding: 0 0 40px 0px;
  }
}

.news-all {
  position: relative;
  margin-bottom: 20px;
}

.news-all:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
}

/*last news end*/

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 18px;
}

.swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  margin: 5px 15px;
}

.swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet-active {
  width: 25px;
  height: 25px;
  background: #ADCB00;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev,
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: none;
  position: absolute;
  top: 35%;
  width: 35px;
  height: 55px;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
}

.swiper-slide {
  padding-left: 40px;
  padding-right: 40px;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-container-rtl .swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  fill: #ADCB00;
}

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

@media only screen and (max-width: 768px) {
  .swiper-button {
    display: none;
  }

  .swiper-slide {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.about-first__info {
  position: relative;
  padding: 140px 14% 180px 10%;
  color: #000000;
  width: 50.7%;
}

@media only screen and (max-width: 1700px) {
  .about-first__info {
    padding: 140px 60px 180px;
  }
}

@media only screen and (max-width: 1560px) {
  .about-first__info {
    padding: 140px 60px 180px 15px;
  }
}

@media only screen and (max-width: 1366px) {
  .about-first__info {
    padding: 100px 60px 100px 15px;
  }
}

@media only screen and (max-width: 991px) {
  .about-first__info {
    padding: 104px 15px 50px;
    width: 100%;
  }
}

@media only screen and (max-width: 570px) {
  .about-first__info {
    padding: 84px 15px 30px;
  }
}

.about-first__info .breadcrumbs {
  position: absolute;
  top: 0;
  left: 19%;
  padding-bottom: 0;
}

@media only screen and (max-width: 1700px) {
  .about-first__info .breadcrumbs {
    left: 60px;
  }
}

@media only screen and (max-width: 1560px) {
  .about-first__info .breadcrumbs {
    left: 15px;
  }
}

.about-first__video {
  width: 49.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover !important;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .about-first__video {
    width: 100%;
    min-height: 300px;
  }
}

.about-first__video:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}

.about-first__title {
  font-family: 'Gilroy-ExtraBold', sans-serif;
  font-size: 60px;
  line-height: 60px;
  padding-bottom: 24px;
}

@media only screen and (max-width: 1366px) {
  .about-first__title {
    font-size: 50px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 800px) {
  .about-first__title {
    font-size: 40px;
    line-height: 40px;
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 570px) {
  .about-first__title {
    font-size: 35px;
    line-height: 35px;
    padding-bottom: 15px;
  }
}

.about-first__descr {
  font-family: 'Gilroy-ExtraBold', sans-serif;
  font-size: 20px;
  line-height: 28px;
  opacity: 0.8;
}

@media only screen and (max-width: 1366px) {
  .about-first__descr {
    font-size: 18px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 800px) {
  .about-first__descr {
    font-size: 16px;
    line-height: 24px;
  }
}

.about-info {
  background: #EDEFF1;
  color: #000000;
}

.about-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .about-info__item {
    margin-bottom: 30px;
  }

  .about-info__item:last-child {
    margin-bottom: 0;
  }
}

.about-info__title {
  font-family: 'Gilroy-ExtraBold', sans-serif;
  font-size: 40px;
  line-height: 45px;
  padding-bottom: 24px;
  margin: 0;
}

@media only screen and (max-width: 1560px) {
  .about-info__title {
    font-size: 35px;
    line-height: 40px;
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 1200px) {
  .about-info__title {
    font-size: 25px;
    line-height: 30px;
    padding-bottom: 5px;
  }
}

@media only screen and (max-width: 800px) {
  .about-info__title {
    font-size: 25px;
    line-height: 25px;
    padding-bottom: 15px;
  }
}

.about-info__descr {
  font-family: 'Gilroy-Regular', sans-serif;
  font-size: 16px;
  line-height: 26px;
  max-width: 80%;
  padding-left: 30px;
}

@media only screen and (max-width: 1560px) {
  .about-info__descr {
    padding-left: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .about-info__descr {
    font-size: 15px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 480px) {
  .about-info__descr {
    max-width: 100%;
    padding-left: 0;
  }
}

.about-info__img {
  max-width: 20%;
}

@media only screen and (max-width: 480px) {
  .about-info__img {
    max-width: 100%;
    padding-bottom: 20px;
  }
}

.about-page .for-drivers__img {
  padding-left: 18px;
}

@media only screen and (max-width: 991px) {
  .about-page .for-drivers__img {
    padding: 0;
  }
}

.about-page .for-drivers__img img {
  margin: -33px auto -34px auto;
}

@media only screen and (max-width: 1560px) {
  .about-page .for-drivers__img img {
    margin: auto;
  }
}

@media only screen and (max-width: 991px) {
  .about-page .for-drivers__img img {
    max-height: 120px;
  }
}

@media only screen and (max-width: 570px) {
  .about-page .for-drivers__img img {
    max-height: 83px;
  }
}

.about-page .for-drivers__info .btn {
  margin-top: 41px;
  min-width: 209px;
}

.play__wrap {
  text-align: center;
  position: relative;
  z-index: 1;
}

.play-btn {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.play-btn:hover:before {
  background: rgba(173, 203, 0, 0.3);
}

.play-btn:before {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  top: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
          animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
}

@media only screen and (max-width: 991px) {
  .play-btn:before {
    width: 120px;
    height: 120px;
  }
}

@media only screen and (max-width: 570px) {
  .play-btn:before {
    width: 80px;
    height: 80px;
    top: -10px;
    left: -10px;
    -webkit-animation: none;
            animation: none;
  }
}

.play-btn .icon {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 30px;
  color: #000000;
}

@media only screen and (max-width: 991px) {
  .play-btn .icon {
    width: 80px;
    height: 80px;
  }
}

@media only screen and (max-width: 570px) {
  .play-btn .icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

.play__text {
  font-family: 'Gilroy-ExtraBold', sans-serif;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 1.25px;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 60px;
  display: block;
}

@media only screen and (max-width: 991px) {
  .play__text {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 570px) {
  .play__text {
    font-size: 14px;
  }
}

@media only screen and (max-width: 360px) {
  .play__text {
    font-size: 12px;
    line-height: 16px;
  }
}

@-webkit-keyframes cbh-circle-fill-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(0.8) skew(1deg);
            transform: rotate(0deg) scale(0.8) skew(1deg);
    opacity: .5;
  }

  50% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
            transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: rotate(0deg) scale(0.8) skew(1deg);
            transform: rotate(0deg) scale(0.8) skew(1deg);
    opacity: .5;
  }
}

@keyframes cbh-circle-fill-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(0.8) skew(1deg);
            transform: rotate(0deg) scale(0.8) skew(1deg);
    opacity: .5;
  }

  50% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
            transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: rotate(0deg) scale(0.8) skew(1deg);
            transform: rotate(0deg) scale(0.8) skew(1deg);
    opacity: .5;
  }
}

/*partners start*/

.partners__items {
  padding-top: 25px;
}

.partners__item {
  width: 20%;
  padding: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #CDD2D8;
  margin: 0 -1px -1px 0;
}

@media only screen and (max-width: 991px) {
  .partners__item {
    padding: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .partners__item {
    width: 50%;
  }
}

@media only screen and (max-width: 350px) {
  .partners__item {
    width: 100%;
  }
}

.partners__item:hover img {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
  -webkit-filter: none;
          filter: none;
  /* IE 6-9 */
}

.partners__item img {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  height: auto;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-filter: gray;
          filter: gray;
  /* IE 6-9 */
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .partners__item img {
    max-height: 40px;
  }
}

/*partners end*/

.news-main {
  border: none;
}

