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-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

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

.fancybox-bg {
  background: #1B162C;
  opacity: 0;
  -webkit-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: .3;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  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-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  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;
  /* Using without prefix would break IE11 */
  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--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  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;
}

@media (max-width: 550px) {
  .fancybox-content {
	padding: 20px 10px;
  }
  .fancybox-content .application__wrap {
	padding: 35px 10px;
  }
}


.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 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-swipe .fancybox-content,
.fancybox-can-pan .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--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .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-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.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;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.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:visited,
.fancybox-button:link {
  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;
}

/* Fix IE11 */
.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--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  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;
}

/* Close button on the top right corner of html content */
.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;
}

/* Navigation arrows */
.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);
}

/* Caption */
.fancybox-caption {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  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;
}

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
  animation: fancybox-rotate 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 fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

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

/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.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: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

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

/* transitionEffect: zoom-in-out */
.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(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
}

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

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

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

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

/* transitionEffect: circular */
.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: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

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

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

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

/* Styling for Small-Screen Devices */
@media all and (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));
    }
  }
}

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

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

.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 5px;
  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:visited,
.fancybox-share__button:link {
  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 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  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, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 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, 0.1);
  background-position: center center;
  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 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

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

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

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

/**
 * Swiper 6.1.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 31, 2020
 */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.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-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-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 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-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;
}

.persons__slider .swiper-container-autoheight,
.persons__slider .swiper-container-autoheight .swiper-slide {
  height: 100%;
}


.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  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: 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: 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: 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: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  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;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

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

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

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

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
}

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

.swiper-pagination-fraction {
  position: absolute;
  bottom: 25px;
  left: 0;
  z-index: 10;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: #FFFFFF;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Common Styles */
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  margin-top: 25px;
}

@media (min-width: 1200px) {
  .swiper-pagination-custom,
  .swiper-container-horizontal > .swiper-pagination-bullets {
    margin-top: 40px;
  }
}

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

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

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

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

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

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

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

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

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  background-color: #D3D9E0;
  border-radius: 50%;
}

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 {
  background-color: #1B162C;
}

.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%);
  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;
  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%);
  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;
  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;
  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: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-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-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #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: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  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 */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.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%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-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;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-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;
  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;
  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-button svg {
  stroke: #77808E;
}

.swiper-button--rounded {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  outline: none;
}

.swiper-button--rounded.swiper-button-prev {
  left: -15px;
}

.swiper-button--rounded.swiper-button-next {
  right: -15px;
}

.swiper-button--rounded::after {
  display: none;
}

.swiper-button--white {
  background: #FFFFFF;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color .25s ease;
  transition: background-color .25s ease;
}

.swiper-button--white:hover {
  background: #E6F0FF;
}

.swiper-button--gray {
  background: rgba(222, 227, 231, 0.5);
  opacity: 0.5;
  -webkit-transition: background-color .25s ease;
  transition: background-color .25s ease;
}

.swiper-button--gray:hover {
  opacity: 1;
  background: #DEE3E7;
}

.nativejs-select {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.nativejs-select__placeholder,
.nativejs-select__option {
  cursor: pointer;
  border: none;
  outline: none;
  text-align: left;
}

.nativejs-select__placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 42px;
  padding: 0 40px 0 0;
  font-size: 15px;
  line-height: 150%;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #C3BDD8;
  border-radius: 0;
  color: #000000;
}

.nativejs-select__placeholder:focus {
  border-color: #408AF3;
}

.nativejs-select__placeholder:after {
  content: '';
  position: absolute;
  width: 14px;
  height: 9px;
  right: 15px;
  top: calc(50% - 5px);
  background: url("../img/select-arrow.svg") no-repeat center center;
}

.select--grey + .nativejs-select .nativejs-select__placeholder {
  padding: 0 12px;
  background-color: #F2F4F5;
  border: none;
  border-radius: 4px;
}

.nativejs-select__placeholder img {
  margin-right: 5px;
}

.nativejs-select__placeholder-fixed {
  padding-right: 15px;
  color: #817E8B;
}

.nativejs-select__dropdown {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  z-index: 5;
  margin: 0;
  padding: 8px 0;
  width: 100%;
  max-height: 196px;
  overflow: auto;
  transform: translateY(100%);
  background: #FFFFFF;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.nativejs-select__dropdown::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  background-color: #EEF1F3;
}

.nativejs-select__dropdown::-webkit-scrollbar-thumb {
  background: #AEB2B4;
  border-radius: 4px;
}

.nativejs-select__option {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  font-family: inherit;
  color: #1B162C;
  background-color: #FFFFFF;
  border: 0;
}

.nativejs-select__option img {
  margin-right: 10px;
}

.nativejs-select__option:hover {
  background-color: #E6F0FF;
  color: #408AF3;
}

.nativejs-select_active {
  border-radius: 3px 3px 0 0;
}

.nativejs-select_active .nativejs-select__placeholder {
  border-color: #408AF3;
}

.nativejs-select_active .nativejs-select__placeholder:after {
  transform: rotate(180deg);
}

.nativejs-select_active .nativejs-select__dropdown {
  display: block;
}

.nativejs-select__search {
  padding: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@font-face {
  font-family: 'TT Firs Neue';
  src: local("TT Firs Neue Medium"), local("TT-Firs-Neue-Medium"), url("../fonts/TTFirsNeue-Regular.woff2") format("woff2"), url("../fonts/TTFirsNeue-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'TT Firs Neue';
  src: local("TT Firs Neue Medium"), local("TT-Firs-Neue-Medium"), url("../fonts/TTFirsNeue-Medium.woff2") format("woff2"), url("../fonts/TTFirsNeue-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'TT Firs Neue';
  src: local("TT Firs Neue DemiBold"), local("TTFirsNeue-DemiBold"), url("../fonts/TTFirsNeue-DemiBold.woff2") format("woff2"), url("../fonts/TTFirsNeue-DemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'SF UI Display';
  src: local("San Francisco(SF UI) Display Regular"), local("San-Francisco(SF-UI)-Display-Regular"), url("../fonts/SFUIDisplay-Regular.woff2") format("woff2"), url("../fonts/SFUIDisplay-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'SF UI Display';
  src: local("SF UI Display Medium"), local("SFUIDisplay-Medium"), url("../fonts/SFUIDisplay-Medium.woff2") format("woff2"), url("../fonts/SFUIDisplay-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'SF UI Display';
  src: local("SF UI Display Semibold"), local("SFUIDisplay-Semibold"), url("../fonts/SFUIDisplay-Semibold.woff2") format("woff2"), url("../fonts/SFUIDisplay-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

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

body {
  min-width: 320px;
  font-size: 16px;
  line-height: 1.5;
  font-family: "SF UI Display", sans-serif;
  color: #1B162C;
}

body.has-open-menu {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.page-heading {
  font-weight: 500;
  font-family: "TT Firs Neue", sans-serif;
  color: #1B162C;
}

h1, .h1 , .page-heading {
  font-size: 30px;
  line-height: 1.1;
}

@media (min-width: 992px) {
  h1, .h1 , .page-heading {
    font-size: 40px;
  }
}

h2, .h2 {
  font-size: 27px;
  line-height: 32px;
  margin-bottom: 10px;
}

@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 36px;
    line-height: 1.16667;
	margin-bottom: 10px;
  }
}

h3 {
  font-size: 23px;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  h3 {
    font-size: 30px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.16667;
}

h5 {

}

h6 {

}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.input {
  width: 100%;
  height: 46px;
  margin: 0;
  padding: 0 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 15px;
  background-color: #F2F4F5;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  color: #1B162C;
}

.input:focus {
  background-color: #FFFFFF;
  border-color: #408AF3;
}

.input::-webkit-input-placeholder {
  color: #C4CBCF;
}

.input::-moz-placeholder {
  color: #C4CBCF;
}

.input:-ms-input-placeholder {
  color: #C4CBCF;
}

.input::-ms-input-placeholder {
  color: #C4CBCF;
}

.input::placeholder {
  color: #C4CBCF;
}

.select {
  width: 100%;
  max-width: 100%;
  height: 46px;
  margin: 0 20px 0 0;
  padding: 0 12px;
  font-weight: 500;
  font-size: 14px;
  font-family: "SF UI Display", sans-serif;
  background-color: #F2F4F5;
  border: none;
  border-radius: 4px;
  color: #1B162C;
}

.checkbox {
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.checkbox__input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.checkbox__text {
  position: relative;
  display: inline-block;
  padding: 1px 0 1px 24px;
  cursor: pointer;
}

.checkbox__text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #FFFFFF;
  border: 1px solid #C3BDD8;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.checkbox__input:checked + .checkbox__text::before {
  background: #7BD658 url("../img/check.svg") no-repeat 50% 50%;
  border-color: #7BD658;
}

.checkbox__text a {
  text-decoration: none;
  color: #1B162C;
}

.checkbox__text a:hover {
  color: #6ABF49;
}

.radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #1B162C;
  font-size: 14px;
  line-height: 1.21429;
  cursor: pointer;
}

.radio__input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.radio__value {
  position: relative;
  display: block;
  height: 18px;
  width: 18px;
  margin-right: 8px;
  background-color: currentColor;
  border: 4px solid currentColor;
  border-radius: 9px;
  color: #DEE3E7;
  -webkit-transition: color .25s ease;
  transition: color .25s ease;
}

.radio__value::after {
  position: absolute;
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
}

.radio__input:checked + .radio__value {
  color: #408AF3;
}

.radio__input:checked + .radio__value::after {
  -webkit-transform: translate(0px, 0);
  transform: translate(0px, 0);
}

.switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #1B162C;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
}

.switch__input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.switch__value {
  position: relative;
  display: block;
  height: 20px;
  width: 38px;
  margin-right: 10px;
  background-color: currentColor;
  border: 2px solid currentColor;
  border-radius: 10px;
  color: #BECCD6;
  -webkit-transition: color .25s ease;
  transition: color .25s ease;
}

.switch__value::after {
  position: absolute;
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
}

.switch__input:checked + .switch__value {
  color: #7BD658;
}

.switch__input:checked + .switch__value::after {
  -webkit-transform: translate(18px, 0);
  transform: translate(18px, 0);
}

.page {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 990;
  padding-top: 15px;
  padding-bottom: 15px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 7px 39px rgba(0, 0, 0, 0.17);
  box-shadow: 0 7px 39px rgba(0, 0, 0, 0.17);
}

@media (min-width: 992px) {
  .page-header {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.page-header::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#FFFFFF)), #EAEAEA;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%), #EAEAEA;
  opacity: 0.5;
}

.page-header__wrap {
  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;
}

@media (min-width: 992px) {
  .page-header__wrap {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (min-width: 992px) {
  .page-header__hamburger {
    display: none;
  }
}

@media (min-width: 992px) {
  .page-header__logo {
    margin-right: 100px;
  }
}

@media (min-width: 1200px) {
  .page-header__logo {
    margin-right: 143px;
  }
}

.page-header__menu {
  display: none;
}

@media (min-width: 992px) {
  .page-header__menu {
    display: block;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  .page-header__contacts-block {
    margin-right: 20px;
  }
}

@media (min-width: 1200px) {
  .page-header__contacts-block {
    margin-right: 40px;
  }
}

.page-header__contacts-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: 30px;
  font-size: 0;
  font-family: "TT Firs Neue", sans-serif;
  text-decoration: none;
  color: #1B162C;
}

@media (min-width: 992px) {
  .page-header__contacts-phone {
    display: inline-block;
    width: auto;
    height: auto;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
  }
}

@media (min-width: 1200px) {
  .page-header__contacts-phone {
    font-size: 15px;
  }
}

.page-header__contacts-phone-icon {
  width: 16px;
  height: 16px;
  margin: auto;
  fill: #1B162C;
}

@media (min-width: 992px) {
  .page-header__contacts-phone-icon {
    display: none;
  }
}

.page-header__location {
  display: none;
}

@media (min-width: 992px) {
  .page-header__location {
    display: block;
  }
}

.page-header__start {
  display: none;
}

@media (min-width: 992px) {
  .page-header__start {
    display: block;
    margin-right: 20px;
  }
}

@media (min-width: 1200px) {
  .page-header__start {
    margin-right: 30px;
  }
}

.page-header__account {
  display: none;
}

@media (min-width: 992px) {
  .page-header__account {
    display: block;
  }
}

.page-content {
  overflow-x: hidden;
}

.page-footer {
  background-color: #1C1C1C;
  color: #FFFFFF;
}

.page-footer__top {
  display: grid;
  grid-template-columns: 100%;
  gap: 30px 20px;
  padding-top: 35px;
  padding-bottom: 35px;
}

@media (min-width: 576px) {
  .page-footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .page-footer__top {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .page-footer__top {
    grid-template-columns: 215px 255px 263px 247px;
    padding-top: 67px;
  }
}

.page-footer__heading {
  display: inline-block;
  margin-bottom: 17px;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  font-family: "TT Firs Neue", sans-serif;
  color: #EFEFEF;
}

@media (min-width: 1200px) {
  .page-footer__heading {
    font-size: 18px;
    line-height: 24px;
  }
}

.page-footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: self-start;
  -ms-flex-align: self-start;
  align-items: self-start;
  margin-bottom: 19px;
}

.page-footer__contacts-phone {
  display: inline-block;
  margin-bottom: 3px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
  color: #FFFFFF;
}

.page-footer__contacts-mode {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 13px;
  line-height: 13px;
  color: #929195;
}

.page-footer__contacts-email {
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  text-decoration: none;
  color: #7BD658;
}

.copyright {
    font-size: 13px;
}

.page-footer__bottom {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
  padding-top: 25px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(86, 81, 103, 0.3);
  color: #929195;
}

@media (min-width: 576px) {
  .page-footer__bottom {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .page-footer__bottom {
    grid-template-columns: 3fr 3fr auto;
  }
}

.page-wrapper {
  width: 100%;
  max-width: 540px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

@media (min-width: 768px) {
  .page-wrapper {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .page-wrapper {
    max-width: 960px;
  }
  .page-wrapper--sm {
    max-width: 800px;
  }
  .page-wrapper--lg {
    max-width: none;
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media (min-width: 1200px) {
  .page-wrapper {
    max-width: 1080px;
  }
  .page-wrapper--sm {
    max-width: 904px;
  }
  .page-wrapper--lg {
    max-width: none;
    padding-right: 50px;
    padding-left: 50px;
  }
}

.hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
}

.hamburger__icon {
  width: 19px;
  height: 14px;
  margin: auto;
  fill: #1B162C;
}

.breadcrumbs {
  padding: 25px 0;
  font-size: 13px;
  line-height: 1.2;
  color: #929195;
}

.breadcrumbs__list {
  margin: 0;
  padding: 0;
}

.breadcrumbs__item {
  display: inline-block;
}

.breadcrumbs__item:not(:last-child)::after {
  content: '|';
  margin: 0 3px;
}

.breadcrumbs__link {
  text-decoration: none;
  color: inherit;
}

.breadcrumbs__link:link:hover {
  text-decoration: underline;
}

.heading {
  margin: 0 0 1.1em;
  font-weight: 500;
  font-size: 27px;
  line-height: 32px;
  font-family: "TT Firs Neue", sans-serif;
  color: #1B162C;
}

@media (min-width: 1200px) {
  .heading {
    font-size: 36px;
    line-height: 1.16667;
  }
}

.heading2 {
  margin: 0 0 1em;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.2;
  font-family: "TT Firs Neue", sans-serif;
  color: #1B162C;
}

@media (min-width: 1200px) {
  .heading2 {
    font-size: 30px;
  }
}

.close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
}

.close__icon {
  width: 19px;
  height: 14px;
  margin: auto;
  fill: #1B162C;
}

.back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
}

.back__icon {
  width: 10px;
  height: 10px;
  margin: auto;
  fill: none;
  stroke: currentColor;
}

.logo,
.logo-image {
  width: 72px;
  height: 19.5px;
}

@media (min-width: 1200px) {
  .logo,
  .logo-image {
    width: 96px;
    height: 26px;
  }
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  font-family: "TT Firs Neue", sans-serif;
  list-style: none;
}

@media (min-width: 1200px) {
  .menu__list {
    font-size: 15px;
    line-height: 20px;
  }
}

.menu__item {
  margin-right: 20px;
  padding: 35px 0;
}

.menu__item:last-child {
  /*margin-right: 0;*/
}

@media (min-width: 1200px) {
  .menu__item {
    margin-right: 40px;
  }
}

.menu__item:hover .menu__link {
  color: #6ABF49;
}

.menu__item:hover .menu__arrow {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.menu__item:hover .menu-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.menu__link {
  display: inline-block;
  text-decoration: none;
  color: #000000;
}

.menu__link:hover {
  text-decoration: none;
  color: #6ABF49;
}

.menu__arrow {
  display: inline-block;
  width: 8px;
  height: 6px;
  margin-left: 3px;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.menu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding-top: 45px;
  padding-bottom: 35px;
  background-color: #F3F8FF;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

@media (min-width: 1200px) {
  .menu-dropdown {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}

.menu-dropdown__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 172px;
}

@media (min-width: 1200px) {
  .menu-dropdown__wrap {
    padding-right: 150px;
    padding-left: 240px;
  }
}

.menu-dropdown__main {
  width: 62%;
}

.menu-dropdown__secondary {
  width: 35%;
}

.sub-menu__list,
.sub-menu__list-lev2 {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sub-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
}

@media (min-width: 1200px) {
  .sub-menu__list {
    font-size: 16px;
    line-height: 21px;
  }
}

.sub-menu__list-lev2 {
  margin-top: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}

@media (min-width: 1200px) {
  .sub-menu__list-lev2 {
    font-size: 15px;
    line-height: 19px;
  }
}

.sub-menu__item {
  width: 100%;
  margin-bottom: 10px;
}

.sub-menu__item--col-1, .sub-menu__item--col-2 {
  margin-bottom: 22px;
}

.sub-menu__item--col-1 {
  width: 50%;
  margin-right: 10%;
}

.sub-menu__item--col-2 {
  width: 40%;
}

.sub-menu__link {
  display: inline-block;
  font-family: "TT Firs Neue", sans-serif;
  text-decoration: none;
  color: #1B162C;
}

.sub-menu__link:hover {
  color: #6ABF49;
}

.sub-menu__item-lev2 {
  margin-bottom: 11px;
}

.sub-menu__link-lev2 {
  display: inline-block;
  text-decoration: none;
  color: #77808E;
}

.sub-menu__link-lev2:hover {
  color: #408AF3;
}

.secondary-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
}

@media (min-width: 1200px) {
  .secondary-menu__list {
    font-size: 16px;
    line-height: 21px;
  }
}

.secondary-menu__item {
  margin-bottom: -1px;
  border-top: 1px solid #1B162C;
  border-bottom: 1px solid #1B162C;
}

.secondary-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  padding: 8px 10px;
  font-family: "TT Firs Neue", sans-serif;
  text-decoration: none;
  color: #1B162C;
}

@media (min-width: 1200px) {
  .secondary-menu__link {
    height: 63px;
  }
}

.secondary-menu__link:hover {
  color: #6ABF49;
}

.secondary-menu__icon {
  margin-right: 10px;
}

.secondary-menu__arrow {
  width: 15px;
  height: 15px;
  margin-left: auto;
  fill: none;
  stroke: currentColor;
}

@media (min-width: 1200px) {
  .secondary-menu__arrow {
    font-size: 16px;
    line-height: 21px;
  }
}

.location {
  font-size: 13px;
  line-height: 100%;
}

@media (min-width: 1200px) {
  .location {
    font-size: 14px;
  }
}

.location__link {
  position: relative;
  display: inline-block;
  padding-right: 12px;
  font-style: normal;
  font-weight: normal;
  font-family: "TT Firs Neue", sans-serif;
  color: #929195;
}

.location__arrow {
  position: absolute;
  top: 50%;
  right: 0;
  fill: none;
  width: 8px;
  height: 6px;
  margin-top: -3px;
  stroke: #929195;
  stroke-width: 1.5px;
}

.change-location {
  display: none;
  width: 100%;
  max-width: 422px;
  padding: 23px 20px 10px;
  background: #FFFFFF;
  border-radius: 4px;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  color: #1B162C;
}

.change-location__heading {
  margin: 0 0 15px;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  font-family: "SF UI Display", sans-serif;
  color: #1B162C;
}

.change-location__search {
  margin-bottom: 14px;
}

.change-location__list {
  max-width: 295px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  line-height: 15px;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.change-location__list li {
  margin: 0 0 16px;
  padding: 0;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}

.change-location__list a {
  text-decoration: none;
  color: currentColor;
}

.change-location__list a:hover {
  text-decoration: none;
  color: #408AF3;
}

.button {
  display: inline-block;
  padding: 8px 15px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  font-family: "TT Firs Neue", sans-serif;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  background-color: #7BD658;
  border: 1px solid transparent;
  border-radius: 6px;
  outline: none;
  color: #FFFFFF;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (min-width: 1200px) {
  .button {
    padding: 10px 25px;
    font-size: 15px;
  }
}

.button:hover {
  background-color: #6ABF49;
}

.button--secondary {
  background: #408AF3;
  color: #FFFFFF;
}

.button--link {
  padding: 0;
  background-color: transparent;
  border: none;
  color: #1B162C;
}

.button--link:hover {
  background-color: transparent;
  border-color: transparent;
  text-decoration: none;
  color: #6ABF49;
}

.button--outline {
  background-color: transparent;
  border: 1px solid #DEE3E7;
  color: #1B162C;
}

.button--outline-white {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.button--outline-green {
  border-color: #7BD658;
  color: #7BD658;
}

.button--outline:hover {
  background-color: #6ABF49;
  border-color: #6ABF49;
  color: #FFFFFF;
}

.button--pay {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(239, 245, 254, 0.3);
  border-color: #408AF3;
  color: #408AF3;
}

.button--pay:hover {
  background: #eff5fe;
  border-color: #408AF3;
  color: #408AF3;
}

.button--pay__icon {
  width: 24px;
  height: 24px;
  margin-right: 9px;
  fill: none;
  stroke: #408AF3;
}

.button--round {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 107px;
  height: 107px;
  padding: 0;
  background-color: #F87345;
  border: none;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 15px rgba(248, 115, 69, 0.5);
  box-shadow: 0 4px 15px rgba(248, 115, 69, 0.5);
  color: #FFFFFF;
}

.button--round:hover {
  background-color: #F06636;
}

.button--round__icon {
  position: absolute;
  bottom: 5px;
  right: -3px;
}

.button--round__text {
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.button--round:hover .button--round__text {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.button--disabled,
.button:disabled {
  background-color: #77808E;
  border-color: #77808E;
  opacity: 0.7;
  cursor: default;
}

.button--block {
  display: block;
  width: 100%;
}

.button--sm {
  padding: 7px 15px;
}

@media (min-width: 1200px) {
  .button--sm {
    font-size: 15px;
  }
}

.button--md {
  padding: 12px 30px;
  font-size: 19px;
}

@media (max-width: 768px) {
  .button--md {
    font-size: 16px;
    padding: 10px 25px;
  }
}

.button--lg {
  font-size: 16px;
  padding: 10px 25px;
}

@media (min-width: 768px) {
  .button--lg {
    padding: 15px 30px;
    font-size: 19px;
    line-height: 25px;
  }
}

.auth-link {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  font-family: "TT Firs Neue", sans-serif;
  text-decoration: none;
  color: #1B162C;
}

@media (min-width: 1200px) {
  .auth-link {
    font-size: 15px;
    line-height: 19px;
  }
}

.auth-link:hover {
  color: #6ABF49;
}

.auth-link__arrow {
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-left: 5px;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
}

.slider {
  margin-bottom: 60px;
}

@media (min-width: 1200px) {
  .slider {
    margin-bottom: 80px;
  }
}

.slider__item {
  height: 280px;
  background: no-repeat 50% 50% / cover;
  color: #FFFFFF;  
}

@media (min-width: 576px) {
  .slider__item {
    height: 315px;    
  }
}

@media (min-width: 768px) {
  .slider__item {
    height: 475px;
  }
}

@media (min-width: 1200px) {
  .slider__item {
    height: 633px;
  }
}

.slider__text {
  max-width: 500px;
  margin-left: 5%;
  padding-top: 120px;
  padding-bottom: 120px;
  -webkit-transform: scale(0.4);
  transform: scale(0.4);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

@media (min-width: 576px) {
  .slider__text {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

@media (min-width: 768px) {
  .slider__text {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@media (min-width: 1200px) {
  .slider__text {
    margin-left: 88px;
    -webkit-transform: none;
    transform: none;
  }
}

.slider__text-top {
  margin-bottom: 22px;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
}

.slider__text-bottom {
  margin-bottom: 41px;
  font-weight: 500;
  font-size: 60px;
  line-height: 56px;
  font-family: "TT Firs Neue", sans-serif;
}

:root {
  --label-color: #F87345;
}

.label-icon {
  display: inline-block;
  min-width: 119px;
  padding: 6px 15px;
  font-family: "TT Firs Neue", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  border: 1px solid var(--label-color);
  border-radius: 50%;
  color: var(--label-color);
}

.label-icon--filled {
  background-color: var(--label-color);
  color: #fff;
}

.services {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
  margin-bottom: 60px;
}

@media (min-width: 576px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .services {
    margin-bottom: 117px;
  }
}

.services__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 280px;
  padding: 25px 25px;
  background-color: #F3F8FF;
  border: 1px solid #C9DBF5;
  border-radius: 20px;
  color: #757183;
}

.services__item--test {
  background-color: transparent;
}

@media (min-width: 576px) {
  .services__item {
    min-height: 240px;
  }
}

@media (min-width: 992px) {
  .services__item {
    min-height: 295px;
  }
}

@media (min-width: 1200px) {
  .services__item {
    min-height: 337px;
    padding: 30px 30px 26px;
  }
}

.services__label {
  margin-bottom: 12px;
}

.services__icon {
  display: none;
}

@media (min-width: 768px) {
  .services__icon {
    position: absolute;
    top: 30px;
    right: 30px;
    display: block;
    width: 40px;
    text-align: center;
  }
}

.services__text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .services__icon ~ .services__text {
    padding-right: 65px;
  }
}

.services__title {
  margin: 0 0 5px;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  font-family: "TT Firs Neue", sans-serif;
  color: #1B162C;
}

@media (min-width: 1200px) {
  .services__title {
    margin-bottom: 9px;
    font-size: 24px;
    line-height: 26px;
  }
}

.services__description {
  margin-bottom: 1em;
  font-size: 16px;
  line-height: 18px;
  color: #757183;
}
.services__description.short{
    max-height: 54px;
}

@media (min-width: 576px) {
  .services__description {
    font-size: 15px;
    line-height: 16px;
  }
  .services__description.short{
    max-height: 48px;
  }
}

@media (min-width: 1200px) {
  .services__description {
    margin-bottom: 2em;
    font-size: 20px;
    line-height: 22px;
  }
  .services__description.short{
    max-height: 46px;
  }
}

.services__buttons {
  text-align: center;
}

.services__buttons .button + .button {
  margin-top: 11px;
}

.services__take-test {
  position: absolute;
  right: 40px;
  bottom: 40px;
}

@media (min-width: 576px) and (max-width: 991px) {
  .services__take-test {
    right: 20px;
    bottom: 20px;
  }
}

.formats {
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .formats {
    margin-bottom: 100px;
  }
}

@media (min-width: 1200px) {
  .formats {
    margin-bottom: 130px;
  }
}

.formats__wrap {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
}

@media (min-width: 768px) {
  .formats__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

.formats__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
}

.formats__heading span {
  position: relative;
  display: inline-block;
  margin-top: 13px;
  padding: 14px 68px 17px 29px;
  background: #4D8DE8 url("../img/icons/wink-icon.png") no-repeat top 16px right 24px;
  border-radius: 37px;
  color: #FFFFFF;
}

.formats__heading span::before {
  content: url("../img/corner.svg");
  position: absolute;
  top: -0.35em;
  left: 4px;
}

.formats__list {
  display: grid;
  grid-template-columns: 100%;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.formats__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.formats__title {
  -ms-flex-item-align: center;
  align-self: center;
  margin: 0 10px 8px 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  font-family: "TT Firs Neue", sans-serif;
  color: #1B162C;
}

@media (min-width: 1200px) {
  .formats__title {
    font-size: 24px;
  }
}

.formats__label {
  position: relative;
  top: -3px;
  margin-bottom: 8px;
  -webkit-transform: rotate(-8.86deg);
  transform: rotate(-8.86deg);
}

@media (min-width: 1200px) {
  .formats__label {
    top: -3px;
  }
}

.formats__rating {
  display: inline-block;
  min-width: 32px;
  margin-bottom: 8px;
  padding: 8px 4px;
  font-family: "TT Firs Neue", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  border: 1px solid #1B162C;
  border-radius: 50%;
  color: #1B162C;
}

@media (min-width: 1200px) {
  .formats__rating {
    position: relative;
    top: -3px;
  }
}

.formats__description {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  font-size: 15px;
  line-height: 18px;
  color: #77808E;
}

@media (min-width: 1200px) {
  .formats__description {
    font-size: 16px;
    line-height: 19px;
  }
}

.about-methods {
  position: relative;
  margin-bottom: 60px;
  padding: 35px 30px 150px;
  background-color: #EFF5FF;
  border-radius: 20px;
  color: #77808E;
}

@media (min-width: 768px) {
  .about-methods {
    z-index: 1;
    display: grid;
    grid-template-columns: 50%;
    padding: 50px 40px 110px;
  }
}

@media (min-width: 1200px) {
  .about-methods {
    margin-bottom: 70px;
    padding: 100px 70px 116px;
  }
}

@media (min-width: 768px) {
  .about-methods::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 30px;
    z-index: -1;
    width: 320px;
    height: 382px;
    background: url("../img/about-methods-image.png") no-repeat 50% 50%/contain;
    pointer-events: none;
  }
}

@media (min-width: 1200px) {
  .about-methods::before {
    right: 37px;
    width: 401px;
    height: 480px;
  }
}

.about-methods__heading {
  margin: 0 0 24px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.15em;
  font-family: "SF UI Display", sans-serif;
  text-align: left;
  text-transform: uppercase;
  color: #77808E;
}

.about-methods__description {
  font-size: 15px;
  line-height: 18px;
}

@media (min-width: 1200px) {
  .about-methods__description {
    font-size: 16px;
    line-height: 19px;
  }
}

.about-methods__description p {
  margin: 0 0 15px;
}

@media (min-width: 1200px) {
  .about-methods__description p {
    margin-bottom: 18px;
  }
}

.about-methods__description p:first-child {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  font-family: "TT Firs Neue", sans-serif;
  color: #1B162C;
}

@media (min-width: 1200px) {
  .about-methods__description p:first-child {
    font-size: 24px;
    line-height: 29px;
  }
}

.about-methods__description p:last-child {
  margin-bottom: 0;
}

.about-methods__watch {
  position: absolute;
  left: 50%;
  bottom: 27px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (min-width: 1200px) {
  .about-methods__watch {
    -webkit-transform: translateX(-73%);
    transform: translateX(-73%);
  }
}

.features {
  margin-bottom: 60px;
}

@media (min-width: 1200px) {
  .features {
    margin-bottom: 80px;
  }
}

.features__heading {
  text-align: center;
}

@media (min-width: 1200px) {
  .features__heading {
    margin-bottom: 50px;
  }
}

.features__list {
  display: grid;
  grid-template-columns: 100%;
  gap: 30px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 576px) {
  .features__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .features__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.features__item {
  text-align: center;
}

.features__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: #F6FAFF;
  border: 1px solid #D7E5FA;
  border-radius: 50%;
}

@media (min-width: 1200px) {
  .features__icon {
    width: 130px;
    height: 130px;
    margin-bottom: 25px;
  }
}

.features__icon-image {
  max-width: 33px;
  margin: auto;
}

@media (min-width: 1200px) {
  .features__icon-image {
    max-width: 44px;
  }
}

.features__title {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "TT Firs Neue", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 22px;
  color: #1B162C;
}

@media (min-width: 1200px) {
  .features__title {
    font-size: 22px;
    line-height: 28px;
  }
}

.features__description {
  margin: 0;
  font-size: 15px;
  line-height: 18px;
  color: #77808E;
}

@media (min-width: 1200px) {
  .features__description {
    font-size: 16px;
    line-height: 19px;
  }
}

.application {
  margin-bottom: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #E6F0FF;
}
.fancybox-content .application
{
  margin-bottom:  0px;
  padding-top:  0px;
  padding-bottom: 0px;
  background-color: #FFF;
}
.fancybox-content .application.inner_course
{
	margin-bottom: 0;
}


@media (min-width: 1200px) {
  .application {
    margin-bottom: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.application:last-child {
  margin-bottom: 0;
}

.application__wrap {
  display: grid;
  grid-template-columns: 100%;
  gap: 30px 20px;
  padding: 35px 30px;
  background-color: #FFFFFF;
  color: #77808E;
}

@media (min-width: 768px) {
  .application__wrap {
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

@media (min-width: 1200px) {
  .application__wrap {
    gap: 40px;
    padding: 50px 88px 50px 68px;
  }
}

.application__text {
  text-align: center;
}

@media (min-width: 768px) {
  .application__text {
    position: relative;
    padding-top: 135px;
    text-align: left;
  }
  .application__text::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 110px;
    height: 110px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
  }
  .lets-go-green .application__text::before {
    background-image: url("../img/application-lets-go-green.svg");
  }
  .lets-speak-blue .application__text::before {
    background-image: url("../img/application-lets-speak-blue.svg");
  }
  .lets-speak-orange .application__text::before {
    background-image: url("../img/application-lets-speak-orange.svg");
  }
  .tell-me-blue .application__text::before {
    background-image: url("../img/application-tell-me-blue.svg");
  }
  .tell-me-orange .application__text::before {
    background-image: url("../img/application-tell-me-orange.svg");
  }
  .we-teach-blue .application__text::before {
    background-image: url("../img/application-we-teach-blue.svg");
    -webkit-transform: rotate(-38deg);
    transform: rotate(-38deg);
  }
}

@media (min-width: 992px) {
  .application__text {
    padding-right: 50px;
  }
}

@media (min-width: 1200px) {
  .application__text {
    padding-top: 172px;
  }
  .lets-go-green .application__text::before {
    top: -1px;
    left: -1px;
    width: 138px;
    height: 138px;
  }
  .lets-speak-blue .application__text::before,
  .lets-speak-orange .application__text::before {
    top: 7px;
    left: 6px;
    width: 135px;
    height: 132px;
  }
  .tell-me-blue .application__text::before,
  .tell-me-orange .application__text::before {
    top: 4px;
    left: 3px;
    width: 145px;
    height: 130px;
  }
  .we-teach-blue .application__text::before {
    top: -2px;
    left: 24px;
    width: 140px;
    height: 140px;
  }
}

.application__heading {
  font-weight: 500;
  font-size: 23px;
  line-height: 1.2;
  font-family: "TT Firs Neue", sans-serif;
  color: #1B162C;
  margin-bottom: 10px;
  text-align: inherit;
}

@media (min-width: 1200px) {
  .application__heading {
    font-size: 30px;
  }
}

.application__description {
  font-size: 16px;
  line-height: 21px;
}

@media (min-width: 1200px) {
  .application__description {
    font-size: 18px;
    line-height: 24px;
  }
}

.application__form {
  display: grid;
  grid-template-columns: 100%;
  gap: 34px;
}

.application__fields {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
}

@media (min-width: 768px) {
  .application__fields {
    grid-template-columns: repeat(2, 1fr);
  }
}
.application__field_textarea{
    border: none;
    width: 100%;
    border-bottom: 1px solid #c3bdd8;
    padding: 10px 0;
    outline: none;
}
.application__item {
  position: relative;
}
.application__item .application_text{
	margin-right:20px;
}
.application__item.application_flex .application__field {
	margin-bottom:10px;
}
.application__item.application_flex {
	display:flex;
	flex-wrap:nowrap;
}

@media (min-width: 768px) {
  .application__item--w100 {
    grid-column: 1 / -1;
  }
}

.application__caption {
  margin-bottom: 13px;
}

.application__input, .inputtext {
  width: 100%;
  height: 42px;
  padding: 0;
  font-size: 15px;
  line-height: 150%;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #C3BDD8;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #000000;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
.is-error .application__input, .inputtext,
.is-none .application__input, .inputtext {
  border-bottom-color: #ed752c;
}

.application__input, .inputtext::placeholder {
  color: #817E8B;
  opacity: 1;
}

.application__input, .inputtext::-ms-input-placeholder {
  color: #817E8B;
}

.application__input, .inputtext:-ms-input-placeholder {
  color: #817E8B;
}


.application__input, .inputtext:focus {
  border-color: #408AF3;
}

@media (min-width: 1200px) {
  .application__input, .inputtext {
    height: 53px;
    font-size: 16px;
  }
}

.application__select {
  width: 100%;
  height: 42px;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  border: none;
  outline: none;
  border-bottom: 1px solid #C3BDD8;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #817E8B;
  -webkit-transition: border 0.3s ease, color 0.3s ease;
  transition: border 0.3s ease, color 0.3s ease;
}

.application__select:focus {
  border-color: #408AF3;
}

.form__item--active .application__select {
  color: #000000;
}

@media (min-width: 1200px) {
  .application__select {
    height: 53px;
  }
}

.application__submit {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
}

@media (min-width: 992px) {
  .application__submit {
    grid-template-columns: 1fr 200px;
  }
}

.reviews {
  margin-bottom: 50px;
}

.reviews__heading {
  text-align: center;
}

.reviews__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
  padding: 35px 30px;
  background: #F4F9FF;
  border-radius: 20px;
  color: #77808E;
}

@media (min-width: 1200px) {
  .reviews__item {
    padding: 50px 40px;
  }
}

.reviews__description {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 150%;
}

.reviews__description p {
  margin: 0 0 24px;
}

.reviews__description p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .reviews__description {
    font-size: 16px;
  }
}

.reviews__author {
  position: relative;
  margin-bottom: 2px;
  padding-left: 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  font-family: "TT Firs Neue", sans-serif;
  color: #000000;
}

@media (min-width: 1200px) {
  .reviews__author {
    padding-left: 35px;
    font-size: 18px;
    line-height: 24px;
  }
}

.reviews__author::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 12px;
  background: url("../img/quotation-mark.svg") no-repeat 50% 50%/contain;
}

@media (min-width: 1200px) {
  .reviews__author::before {
    width: 21px;
    height: 16px;
  }
}

.reviews__school {
  padding-left: 30px;
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  font-family: "TT Firs Neue", sans-serif;
  color: #929195;
}

@media (min-width: 1200px) {
  .reviews__school {
    padding-left: 35px;
  }
}

.review-card {
  padding: 30px 36px;
  background: #F5F5F5;
  border-radius: 20px;
  color: #77808E;
}

.review-card__description {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 11px;
  font-size: 15px;
  line-height: 22px;
}

.review-card__description p {
  margin: 0 0 22px;
}

.review-card__description p:last-child {
  margin-bottom: 0;
}

.review-card__author {
  position: relative;
  margin-bottom: 3px;
  padding-left: 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  font-family: "TT Firs Neue", sans-serif;
  color: #000000;
}

.review-card__author::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 13px;
  background: url("../img/quotation-mark.svg") no-repeat 50% 50%/contain;
}

.review-card__school {
  padding-left: 30px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  font-family: "TT Firs Neue", sans-serif;
  color: #929195;
}

.add-review {
  padding: 27px 45px 39px;
  background: rgba(230, 240, 255, 0.5);
  border-radius: 20px;
  color: #1B162C;
}

.add-review__label {
  display: inline-block;
  margin-bottom: 12px;
  -webkit-transform: rotate(-6.05deg);
  transform: rotate(-6.05deg);
}

.add-review__heading {
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 24px;
  line-height: 26px;
  font-family: "TT Firs Neue", sans-serif;
}

.add-review__description {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 21px;
  color: #77808E;
}

.add-review__add {
  width: 173px;
}

.schools-map--shaded {
  position: relative;
  z-index: 1;
  height: 680px;
  margin-top: -40px;
}

.schools-map--shaded [class$='-ground-pane']::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100vw;
  height: 340px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.schools-map--shaded .schools-map__heading {
  position: absolute;
  top: 120px;
  left: 50%;
  text-align: center;
  pointer-events: none;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .schools-map--shaded .schools-map__heading {
    top: 50px;
  }
}

.schools-map--shaded .schools-map__map {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.schools-map__map {
  width: 100%;
  height: 538px;
}

.schools-map__map [class$='-balloon-overlay'] {
  width: 317px !important;
}

.schools-map__balloon {
  position: absolute;
  left: 0;
  width: 317px;
  padding: 36px 40px 28px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 10px 24px rgba(110, 123, 142, 0.18);
  box-shadow: 0 10px 24px rgba(110, 123, 142, 0.18);
  border-radius: 20px;
  color: #1B162C;
}
@media (max-width: 400px) {
  .schools-map__balloon {
    width: 245px;
    padding: 36px 10px 10px;
  }
}
/*.popover-inner ymaps {*/
/*  max-width: 100%;*/
/*}*/
.schools-map__close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.schools-map__title {
  margin: 0 0 10px;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  font-family: "TT Firs Neue", sans-serif;
}

.schools-map__address {
  font-size: 16px;
  line-height: 24px;
}

.schools-map__phone {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  font-family: "TT Firs Neue", sans-serif;
}

.schools-map__email {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 18px;
  color: #929195;
}

.schools-map__button {
  padding-right: 47px;
  padding-left: 47px;
}

.bottom-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
}

@media (min-width: 1200px) {
  .bottom-menu__list {
    font-size: 15px;
  }
}

.bottom-menu__item {
  margin: 0 0 9px;
}

.bottom-menu__item:last-child {
  margin-bottom: 0;
}

.bottom-menu__link {
  display: inline-block;
  font-family: "TT Firs Neue", sans-serif;
  text-decoration: none;
  color: #929195;
}

.bottom-menu__link:hover {
  color: #7BD658;
}

.policy__link {
  display: inline-block;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  font-family: "TT Firs Neue", sans-serif;
  text-decoration: none;
  color: #929195;
}

.policy__link:hover {
  color: #7BD658;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.social__heading {
  margin-right: 28px;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  font-family: "TT Firs Neue", sans-serif;
}

.social__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.social__link {
  margin-right: 21px;
  font-size: 0;
  color: #FFFFFF;
}

.social__link:last-child {
  margin-right: 0;
}

.social__link:hover {
  color: #7BD658;
}

.social__icon {
  fill: currentColor;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 990;
  width: 100vw;
  height: 100vh;
  padding-top: 60px;
  background: #FFFFFF;
  color: #1B162C;
  overflow-y: auto;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.mobile-menu.opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.mobile-menu__location {
  display: block;
  padding: 15px 20px 16px;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  font-size: 14px;
  line-height: 19px;
}

.mobile-menu__list {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 19px;
  font-family: "TT Firs Neue", sans-serif;
  list-style: none;
}

.mobile-menu__list--inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  color: #1B162C;
  overflow-y: auto;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.mobile-menu__list--inner.opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.mobile-menu__item {
  border-bottom: 1px solid #ededed;
  margin: 0;
  padding: 0;
}

.mobile-menu__item--head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 60px;
  padding: 0 60px;
}

.mobile-menu__item--head .mobile-menu__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: auto;
  padding: 0;
}

.mobile-menu__back {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.mobile-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  padding: 8px 20px;
  text-decoration: none;
  color: #1B162C;
}

.mobile-menu__link:hover {
  color: #6ABF49;
}

.mobile-menu__arrow {
  width: 10px;
  height: 10px;
  margin-left: auto;
  fill: none;
  stroke: currentColor;
}

.mobile-menu__start {
  padding: 17px 20px;
}

.visually-hidden {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  overflow: hidden;
}

.courses {
  margin-bottom: 60px;
}

.courses__title {
  margin: 0 0 35px;
  font-family: "TT Firs Neue", sans-serif;
  font-weight: 600;
  font-size: 54px;
  line-height: 54px;
  color: #1B162C;
}

.courses__title-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin: 0 0 2px 6px;
  vertical-align: middle;
}

.courses__filter {
  display: grid;
  grid-gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 30px;
}

@media (min-width: 768px) {
  .courses__filter {
    grid-auto-flow: row;
    grid-template-columns: 1fr auto;
  }
}

.courses__filter--filled {
  padding: 22px 20px;
  background-color: #EFF5F9;
  border-radius: 20px;
}

@media (min-width: 768px) {
  .courses__filter--filled {
    padding: 22px 30px;
  }
}

.courses__filter-toggles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px;
}

.courses__filter-toggles > * {
  margin: 5px;
}

.courses__filter-toggle {
  display: inline-block;
  padding: 11px 20px;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  font-family: "TT Firs Neue", sans-serif;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid #C9DBF5;
  border-radius: 50px;
  outline: none;
  color: #1B162C;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .courses__filter-toggle {
    padding: 13px 23px;
  }
}

.courses__filter-toggle:hover {
  border: 1px solid #C9DBF5;
  background-color: #C9DBF5;
  color: #1B162C;
}

.courses__filter-toggle--active {
  background-color: #7BD658;
  border: 1px solid #7BD658;
  color: #FFFFFF;
  pointer-events: none;
}

.courses__tabs {
  margin-bottom: 40px;
}

.courses__list {
  display: grid;
  grid-gap: 20px;
}

@media (min-width: 768px) {
  .courses__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .courses__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.course-card {
  --course-card-color: 237, 124, 85;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 25px 20px 20px;
  border: 1px solid #DEE3E7;
  border-radius: 20px;
  -webkit-transition: border-color .25s ease;
  transition: border-color .25s ease;
}

.course-card--blue {
  --course-card-color: 64, 138, 243;
}

@media (min-width: 768px) {
  .course-card {
    padding: 35px 40px 76px;
  }
}

.course-card:hover {
  border: 1px solid rgb(var(--course-card-color));
}

.course-card__sale {
  position: absolute;
  top: -10px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 50%;
  background-color: #95de79;
  color: #fff;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

.course-card__tags {
  position: absolute;
  top: -12.5px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .course-card__tags {
    left: 40px;
  }
}

.course-card__tag {
  display: inline-block;
  margin-right: 6px;
  padding: 5px 6px;
  font-size: 11px;
  line-height: 13px;
  border-radius: 4px;
  background-color: rgb(var(--course-card-color));
  color: #fff;
}

.course-card__title {
  margin: 0 0 18px;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  font-family: "TT Firs Neue", sans-serif;
}

.course-card__basis {
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 1.28571;
  color: #929195;
}

.course-card__basis-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.course-card__basis-item:last-child {
  margin-bottom: 0;
}

.course-card__basis-item svg {
  margin-right: 8px;
}
.course-card__description
{
    font-size: 14px;
    line-height: 1.28571;
    margin-bottom: 20px;
}


.course-card__price {
  margin-top: auto;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 19px;
  line-height: 23px;
}

.course-card__price b {
  font-weight: inherit;
  font-size: 22px;
}

.course-card__button {
  display: block;
  padding: 11px 24px;
  border: 1px solid rgba(var(--course-card-color), .3);
  border-radius: 6px;
  color: rgb(var(--course-card-color));
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  -webkit-transition: border-color .25s ease, color .25s ease, background-color .25s ease;
  transition: border-color .25s ease, color .25s ease, background-color .25s ease;
}

.course-card__button.order_btn {
  border: none;
  background: rgb(var(--course-card-color));
  color:#fff;
  position:absolute;
  width: calc(100% - 80px);
  bottom: 22px;
}
@media (max-width: 768px) {
  .course-card {
    padding: 25px 20px 76px;
  }
  .course-card__button.order_btn {
		width: calc(100% - 40px);
  }
}

.course-card__button:hover {
  background-color: rgb(var(--course-card-color));
  border-color: rgb(var(--course-card-color));
  color: #fff;
}

.course-info {
  display: grid;
  grid-gap: 24px;
  padding: 20px 20px;
}

@media (min-width: 768px) {
  .course-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 40px;
  }
}

@media (min-width: 992px) {
  .course-info {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.course-info__basis {
  display: grid;
  grid-gap: 24px;
  font-size: 14px;
  line-height: 1.28571;
  color: #929195;
}

@media (min-width: 768px) {
  .course-info__basis {
    grid-auto-flow: column;
  }
}

@media (min-width: 992px) {
  .course-info__basis {
    max-width: 45%;
  }
}

.course-info__basis-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.course-info__basis-item svg {
  margin-right: 8px;
}

.course-info__price {
  font-size: 19px;
  font-weight: 600;
  white-space: nowrap;
}

.course-info__button {
  -webkit-box-shadow: 0 10px 15px rgba(52, 96, 36, 0.1);
  box-shadow: 0 10px 15px rgba(52, 96, 36, 0.1);
  white-space: nowrap;
}

.course-goals {
  display: grid;
  grid-gap: 40px;
  --label-color: rgba(255, 115, 36, 0.9);
}

@media (min-width: 768px) {
  .course-goals {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}

@media (min-width: 992px) {
  .course-goals {
    grid-template-columns: repeat(4, 1fr);
  }
}

.course-goals__item {
  line-height: 1.1875;
}

.course-goals__item-icon {
  height: 50px;
}

.course-goals__item-heading {
  margin-bottom: 10px;
  font-family: "TT Firs Neue", sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.course-goals__item-text {
  color: #77808E;
}

.course-goals__item:nth-child(1) .label-icon {
  -webkit-transform: rotate(8.36deg);
  transform: rotate(8.36deg);
}

.course-goals__item:nth-child(2) .label-icon {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.course-goals__item:nth-child(3) .label-icon {
  -webkit-transform: rotate(8.65deg);
  transform: rotate(8.65deg);
}

.course-goals__item:nth-child(4) .label-icon {
  -webkit-transform: rotate(-10.46deg);
  transform: rotate(-10.46deg);
}

.course-goals--blue {
  --label-color: #408AF3;
}

.test-your-level {
  position: relative;
  padding: 32px 30px 34px;
  border: 1px solid #C9DBF5;
  border-radius: 20px;
  background-color: #F9F9F9;
}

.test-your-level__label {
  margin-bottom: 12px;
}

.test-your-level__icon {
  display: none;
}

@media (min-width: 768px) {
  .test-your-level__icon {
    position: absolute;
    top: 30px;
    right: 30px;
    display: block;
    width: 40px;
    text-align: center;
  }
}

.test-your-level__text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .test-your-level__text__icon ~ .test-your-level__text {
    padding-right: 65px;
  }
}

.test-your-level__title {
  margin: 0 0 5px;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  font-family: "TT Firs Neue", sans-serif;
  color: #1B162C;
}

@media (min-width: 1200px) {
  .test-your-level__title {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 26px;
  }
}

.test-your-level__description {
  margin-bottom: 1em;
  font-size: 16px;
  line-height: 120%;
  color: #757183;
}

@media (min-width: 576px) {
  .test-your-level__description {
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  .test-your-level__description {
    margin-bottom: 2em;
    font-size: 20px;
  }
}

.test-your-level__buttons {
  text-align: center;
}

.test-your-level__buttons .button + .button {
  margin-top: 10px;
}

.test-your-level__take-test .button {
  margin-left: auto;
}

@media (min-width: 768px) {
  .test-your-level__take-test {
    position: absolute;
    right: 20px;
    bottom: 20px;
  }
}

.tabs .courses__tabs, .tabs .school__tabs, .tabs .tabs_redirect, .hero-header__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 14px;
}

.tabs {
  --active-color: #1B162C;
  --disable-color: #929195;
  --border-color: #DEE3E7;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -12px;
  margin-left: -12px;
  padding-bottom: 14px;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  font-family: "TT Firs Neue", sans-serif;
  color: var(--disable-color);
}

.tabs--light {
  --active-color: #fff;
  --disable-color: rgba(255, 255, 255, 0.7);
  --border-color: rgba(255, 255, 255, 0.7);
}

.tabs--light::after {
  opacity: .3;
}

.tabs--small {
  padding-bottom: 0;
  font-size: 14px;
}

.tabs--large {
  font-size: 18px;
}

.tabs.hero-header__tabs::after {
  bottom: 11px;
}
.tabs::after {
  position: absolute;
  content: '';
  display: block;
  right: 12px;
  bottom: 1px;
  left: 12px;
  height: 1px;
  background-color: var(--border-color);
}

.hero-header__tabs {
  position: relative;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .hero-header__tabs {
    display: none;
  }
}
.hero-header__tabs .hidden_block_tabs {
	display:none;
    position: absolute;
    right: 0;
    top: 25px;
	padding-top:15px;
}
.hero-header__tabs .hidden_block_tabs .container_hidden_block_tabs {
    background: #F3F8FF;
    padding: 20px 15px;
    box-shadow: 0 7px 39px rgba(0, 0, 0, 0.27);
	border-top-left-radius:10px;
	border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;
}

.hero-header__tabs .hidden_block_tabs .tabs__item.tabs__item--active {
	color:#7bd658;
}

.hero-header__tabs .hidden_block_tabs .tabs__item a:hover {
	color:#000000;
}

.hero-header__tabs .hidden_block_tabs .tabs__item {
    font-size: 14px;
    color: #344d71;
    padding: 5px 10px;
}

.tabs__item.dotted_tabs_item:hover > .hidden_block_tabs {
	display:block;
}

.hidden_block_tabs .tabs__item::after {
	display:none;
}

.tabs__item.dotted_tabs_item {
	font-size: 20px;
    line-height: 10px;
}

.tabs__item {
  position: relative;
  padding: 12px 5px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: color .25s ease;
  transition: color .25s ease;
}

.tabs__item::after {
  content: '';
  position: absolute;
  left: 12px;
  bottom: -14px;
  z-index: 1;
  display: block;
  max-width: 0;
  height: 2px;
  background-color: var(--active-color);
  -webkit-transition: max-width .25s ease;
  transition: max-width .25s ease;
}

.tabs__item a {
  color: currentColor;
}

.tabs--small .tabs__item::after {
  bottom: 0;
}

.tabs__item:hover, .tabs__item--active {
  color: var(--active-color);
}

.tabs__item:hover::after, .tabs__item--active::after {
  right: 12px;
  max-width: 100%;
}

.tab-content {
  display: block;
  height: 0;
  overflow: hidden;
}

.tab-content--active {
  height: auto;
}

.hero-header {
  margin-bottom: 60px;
  background-repeat: no-repeat;
  background-position: 80% 50%;
  background-size: 200%;
  color: #FFFFFF;
}

@media (min-width: 450px) {
  .hero-header {
    background-size: cover;
  }
}

@media (min-width: 768px) {
  .hero-header {
    margin-bottom: 80px;
    background-position: 50% 50%;
  }
}

.hero-header--with-info {
  margin-bottom: 115px;
}

.hero-header__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  min-height: 300px;
}

.hero-header__wrap--centered {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-header__wrap {
    min-height: 400px;
  }
}

@media (min-width: 992px) {
  .hero-header__wrap {
    min-height: 442px;
  }

  .hero-header__wrap {
    min-height: 500px;
  }
}

.hero-header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 13px;
}


@media (min-width: 768px) {
  .hero-header__top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    align-items: baseline;
  }
}

.hero-header__back-link {
  color: inherit;
  text-decoration: none;
}

.hero-header__back-link:hover {
  text-decoration: underline;
}

.hero-header__body {
  max-width: 280px;
}

@media (min-width: 768px) {
  .hero-header__body {
    max-width: 340px;
  }
}

@media (min-width: 992px) {
  .hero-header__body {
    max-width: 450px;
  }
}

.hero-header__small-slogan {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.23077;
}

.hero-header__tags {
  margin: 0 0 17px;
}

.hero-header__heading {
  margin: 0 0 12px;
  color: currentColor;
}

.hero-header__description {
  font-size: 16px;
  line-height: 21px;
  opacity: 0.7;
}

@media (min-width: 992px) {
  .hero-header__description {
    font-size: 18px;
    line-height: 24px;
  }
}

.hero-header__description--large {
  font-size: 20px;
}

.hero-header__button {
  margin-top: 20px;
}

@media (min-width: 992px) {
  .hero-header__button {
    margin-top: 38px;
  }
}

.hero-header__info {
  background-color: #fff;
  border-radius: 20px;
  border-top-left-radius: 0;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #1B162C;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

@media (min-width: 768px) {
  .hero-header__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
}

.hero-header .breadcrumbs {
  color: #DEE3E7;
}

.tag {
  display: inline-block;
  padding: 4px 9px;
  margin-left: .3em;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 11px;
  line-height: 13px;
  color: #fff;
  text-decoration: none;
}

.tag:hover {
  color: #1B162C;
}

.page-preview {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  margin-bottom: 75px;
}

@media (min-width: 992px) {
  .page-preview {
    grid-template-columns: repeat(12, 1fr);
  }
}

.page-preview__heading {
  margin: 0;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
  font-family: "TT Firs Neue", sans-serif;
}

@media (min-width: 992px) {
  .page-preview__heading {
    grid-column: span 4;
  }
}

.page-preview__text {
  font-size: 16px;
  line-height: 27px;
  color: #77808E;
}

@media (min-width: 992px) {
  .page-preview__text {
    grid-column: span 7;
  }
}

.persons {
  margin-top: 80px;
  margin-bottom: 80px;
}

.persons__top-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.persons__heading {
  margin: 0 23px 0 0;
  font-weight: 500;
  font-size: 26px;
  line-height: 30px;
}

.persons__all {
  font-weight: 500;
  font-size: 15px;
  line-height: 19px;
  font-family: "TT Firs Neue", sans-serif;
  text-decoration: underline;
  color: inherit;
}

.persons__slider {
  position: relative;
}

.persons__slider .person-card:hover {
  -webkit-filter: none;
  filter: none;
}

.persons__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}

@media (min-width: 480px) {
  .persons__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .persons__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .persons__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.persons__more {
  max-width: 197px;
  margin: 40px auto 0;
}

.persons-filter {
  position: relative;
  display: grid;
  grid-gap: 20px;
  margin: 20px 0;
}

@media (min-width: 480px) {
  .persons-filter {
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .persons-filter {
    grid-template-columns: repeat(12, 1fr);
  }
}

@media (min-width: 992px) {
  .persons-filter__school {
    grid-column: span 4;
  }
}

@media (min-width: 992px) {
  .persons-filter__native {
    grid-column: span 8;
  }
}

.person-card {
  position: relative;
  padding: 10px 10px 25px;
  background: #FFFFFF;
  border: 1px solid #E6F0FF;
  border-radius: 30px;
  text-align: center;
  color: #1B162C;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.person-card:hover {
  -webkit-filter: drop-shadow(0px 4px 16px rgba(15, 38, 72, 0.1));
  filter: drop-shadow(0px 4px 16px rgba(15, 38, 72, 0.1));
}

.person-card__photo {
  position: relative;
  height: 260px;
  margin: 0 0 16px;
}

.person-card__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.person-card__greeting {
  position: absolute;
  left: 50%;
  bottom: -12px;
  z-index: 2;
  -webkit-transform: translateX(-47%);
  transform: translateX(-47%);
}

.person-card__name {
  font-family: "TT Firs Neue", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
}

.person-card__role {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.42857;
  color: #408AF3;
}

.person-card__skills {
  font-size: 13px;
}

.person-card__skill-dt {
  color: #929195;
}

.person-card__skill-dd {
  color: #1B162C;
}

.person-card__to-detail {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  font-size: 0;
}

.person {
  margin-bottom: 40px;
}

.person__wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}

@media (min-width: 768px) {
  .person__wrap {
    grid-template-columns: repeat(12, 1fr);
  }
}

@media (min-width: 768px) {
  .person__photo-wrap {
    grid-column: span 5;
  }
}

@media (min-width: 992px) {
  .person__photo-wrap {
    grid-column: span 4;
  }
}

@media (min-width: 1200px) {
  .person__photo-wrap {
    margin-right: 20px;
  }
}

.person__photo {
  position: relative;
  border: 1px solid #E6F0FF;
  border-radius: 10px;
  margin-bottom: 16px;
}

.person__greeting {
  position: absolute;
  right: 22px;
  bottom: 25px;
}

.person__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

.person__info {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 34px;
}

@media (min-width: 768px) {
  .person__info {
    grid-column: span 7;
  }
}

@media (min-width: 992px) {
  .person__info {
    grid-column: span 8;
  }
}

.person__name {
  margin: 0 0 11px;
  font-family: "TT Firs Neue", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 44px;
}

.person__role {
  margin-bottom: 18px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  color: #408AF3;
}

.person__skills {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 24px;
}

.person__skill-dt {
  color: #929195;
}

.person__skill-dd {
  color: #1B162C;
}

.person__block-heading {
  margin: 0 0 12px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.66667;
  font-family: "TT Firs Neue", sans-serif;
}

.person__block-description {
  font-size: 16px;
  line-height: 24px;
}

.person__block-description--highlight {
  font-weight: 500;
}

.person__block-description p {
  margin: 0 0 24px;
}

.person__block-description p:last-child {
  margin-bottom: 0;
}

.person__reviews {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 12px;
}

.person__reviews-more {
  margin-top: 24px;
}

.video-greeting {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 107px;
  height: 107px;
  font-weight: 500;
  font-size: 12px;
  line-height: 13px;
  font-family: "TT Firs Neue", sans-serif;
  text-align: center;
  text-decoration: none;
  background: rgba(123, 214, 88, 0.85);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  color: #FFFFFF;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.video-greeting:hover {
  background-color: #F06636;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.video-greeting__icon {
  margin-bottom: 3px;
  -webkit-transform: translate(-3px, -3px);
  transform: translate(-3px, -3px);
}

.block-heading {
  margin: 0 0 30px;
  font-family: "TT Firs Neue", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.tiles {
  margin: 30px 0;
  display: grid;
  grid-gap: 20px;
}

@media (min-width: 768px) {
  .tiles {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 70px;
  }
}

.tiles__item {
  padding: 20px;
  border: 1px solid #C9DBF5;
  border-radius: 20px;
  background-color: #F3F8FF;
  font-size: 16px;
  color: #77808E;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .tiles__item {
    padding: 30px 32px;
  }
}

.tiles__item img:not(:last-child) {
  margin-bottom: 15px;
}

.tiles__item-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 13px;
  font-family: "TT Firs Neue", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: #1B162C;
}

.tiles__item-icon {
  margin-left: 10px;
}

.tiles .label-icon {
  -webkit-transform: rotate(-8.86deg);
  transform: rotate(-8.86deg);
}

.bg-wrapper {
  margin: 50px 0;
  padding: 50px 0;
}

@media (min-width: 768px) {
  .bg-wrapper {
    margin: 70px 0;
    padding: 80px 0 50px;
  }
}

.bg-wrapper--blue {
  background-color: #F7FAFF;
}

.nearest-school {
  display: grid;
  grid-gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 40px 0 50px;
  padding: 20px;
  border: 1px solid #DEE3E7;
  border-radius: 20px;
}

@media (min-width: 768px) {
  .nearest-school {
    padding: 28px 46px;
  }
}

@media (min-width: 992px) {
  .nearest-school {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 58px 0 70px;
    padding: 22px 86px;
  }
}

.nearest-school__logo {
  margin: auto;
}

@media (min-width: 992px) {
  .nearest-school__logo {
    margin-right: 55px;
  }
}

.nearest-school__heading {
  font-size: 28px;
  line-height: 1.1;
  font-family: "TT Firs Neue", sans-serif;
  font-weight: 500;
}

@media (min-width: 768px) {
  .nearest-school__button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
  }
}

.media-container {
  position: relative;
}

.media-container::after {
  content: '';
  display: block;
  padding-bottom: 56.25%;
}

.media-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-slider {
  position: relative;
}

.video-slider .swiper-button-prev,
.video-slider .swiper-button-next {
  top: 40%;
}

.video-slider .swiper-button-prev {
  left: -10px;
}

@media (min-width: 768px) {
  .video-slider .swiper-button-prev {
    left: -55px;
  }
}

@media (min-width: 992px) {
  .video-slider .swiper-button-prev {
    left: -88px;
  }
}

.video-slider .swiper-button-next {
  right: -10px;
}

@media (min-width: 768px) {
  .video-slider .swiper-button-next {
    right: -55px;
  }
}

@media (min-width: 992px) {
  .video-slider .swiper-button-next {
    right: -88px;
  }
}

.video-block__frame {
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
}

.video-block__icon {
  position: absolute;
  left: 0;
  top: 0;
}

.video-block__desc {
  position: relative;
  padding-left: 32px;
}

.video-block__title {
  font-family: "TT Firs Neue", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #1B162C;
  text-decoration:none;
}

.video-block__anons {
  color: #929195;
  font-size: 14px;
}

.photo-block__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.schools {
  margin-bottom: 80px;
}

.schools__filter {
  position: relative;
  display: grid;
  grid-gap: 20px;
  margin: 40px 0;
}

@media (min-width: 768px) {
  .schools__filter {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 992px) {
  .schools__filter {
    grid-template-columns: repeat(12, 1fr);
  }
}

@media (min-width: 768px) {
  .schools__filter-region {
    grid-column: 1 / span 2;
  }
}

@media (min-width: 992px) {
  .schools__filter-region {
    grid-column: 1 / span 4;
    grid-row-start: 1;
  }
}

.schools__filter-name {
  width: 100%;
  height: 46px;
  padding: 0 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-weight: 500;
  font-size: 14px;
  font-family: "SF UI Display", sans-serif;
  background: #FFFFFF;
  border: 1px solid #DEE3E7;
  border-radius: 6px;
  color: #1B162C;
}

@media (min-width: 768px) {
  .schools__filter-name {
    grid-column: 1 / span 4;
    grid-row-start: 2;
    padding-right: 50%;
  }

}

@media (min-width: 992px) {
  .schools__filter-name {
    grid-column: 5 / span 8;
    grid-row-start: 1;
    padding-right: 25%;
  }
  .search-page .schools__filter-name {
	 grid-column: 1 / span 12;
     grid-row-start: 2;
  }
  .search-page .schools__filter-button {
	 grid-column: 12 / span 6;
  }
}

@media (min-width: 768px) {
  .schools__filter-button {
    grid-column: 3 / span 2;
    grid-row-start: 2;
	border-radius:3px;
  }
   .search-page .schools__filter-button {
      grid-column: 12 / span 9;
     grid-row-start: 2;
   }
  .search-page  .schools__filter-name {
    grid-column: 1 / span 12;
  }

}

@media (max-width: 992px) {
  .schools__filter-button {
    grid-column: 11 / span 2;
    grid-row-start: 1;
    margin-left: -10px;
	border-radius:3px;
  }
}

@media (max-width: 768px) {
	.schools__filter {
		display:block;
	}
   .schools__filter-name {
		grid-column: 1 / span 12;
		grid-row-start: 2;
   }
   .schools__filter-region {
		grid-column: 1 / span 12;
		grid-row-start: 1;
		margin-bottom: 20px;
   }
   .schools__filter-button {
		grid-column: 12 / span 7;
		grid-row-start: 2;
   }
   .search-page .schools__filter-button {
      grid-column: 12 / span 9;
      grid-row-start: 2;
   }
    .search-page  .schools__filter-name {
		grid-column: 1 / span 20;
		grid-row-start: 2;
	}

}

@media (max-width: 992px) {
  .school__tabs {
    padding-top:30px;
  }
}

.schools__item {
  display: grid;
  grid-gap: 20px;
  padding: 27px 0;
  border-top: 1px solid #DEE3E7;
  border-bottom: 1px solid #DEE3E7;
}

.schools__item:not(:first-child) {
  margin-top: -1px;
}

@media (min-width: 768px) {
  .schools__item {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .schools__item {
    grid-template-columns: repeat(12, 1fr);
  }
}

.schools__name-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .schools__name-wrap {
    grid-column: span 4;
  }
}

.schools__picture {
  width: 24px;
  height: 24px;
  margin-right: 14px;
}

.schools__name {
  width: calc(100% - 48px);
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  font-family: "TT Firs Neue", sans-serif;
}

.schools__info {
  font-size: 16px;
  line-height: 19px;
}

@media (min-width: 992px) {
  .schools__info {
    grid-column: span 4;
  }
}

.schools__address {
  margin-bottom: 6px;
}

.schools__email a {
  text-decoration: underline;
  color: #1B162C;
}

.schools__email a:hover {
  color: #6ABF49;
}

.schools__phone {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
}

.schools__phone a {
  text-decoration: none;
  color: #1B162C;
}

.schools__phone a:hover {
  color: #6ABF49;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .schools__phone {
    font-size: 15px;
  }
}

@media (min-width: 992px) {
  .schools__phone {
    grid-column: span 2;
  }
}

@media (min-width: 992px) {
  .schools__more {
    grid-column: span 2;
  }
}

.school {
  margin-bottom: 90px;
}

.school__preview {
  margin: 60px 0 0;
}

.school__persons {
  margin: 75px 0 0;
}

.school__map {
  margin: 80px 0 0;
}

.school__video {
  margin: 50px 0 0;
}

.school__photos {
  margin: 80px 0 0;
}

.school__licenses {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  margin: 50px 0 0;
}

@media (min-width: 480px) {
  .school__licenses {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .school__licenses {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .school__licenses {
    grid-template-columns: repeat(4, 1fr);
  }
}

.school__licenses img {
  border-radius: 15px;
}

.school__reviews {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  margin: 50px 0 0;
}

@media (min-width: 992px) {
  .school__reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}

.school__reviews-more {
  margin-top: 24px;
  text-align: center;
}

.school__filter {
  margin: 30px 0 55px;
}

.school-info {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 24px;
  padding: 20px 20px;
}

@media (min-width: 768px) {
  .school-info {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 40px;
  }
}

@media (min-width: 992px) {
  .school-info {
    grid-template-columns: 1fr auto auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.school-info__address {
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 17px;
  line-height: 21px;
}

.school-info__mode {
  font-size: 14px;
  line-height: 17px;
  color: #77808E;
}

.school-info__phone {
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
}

.school-info__phone a {
  text-decoration: none;
  color: inherit;
}

.school-info__email {
  font-size: 14px;
  line-height: 17px;
}

.school-info__email a {
  text-decoration: underline;
  color: inherit;
}

.school-info__buttons {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px;
}

@media (min-width: 768px) {
  .school-info__buttons {
    grid-template-columns: repeat(2, 1fr);
    grid-column: span 2;
  }
}

@media (min-width: 992px) {
  .school-info__buttons {
    grid-template-columns: 162px 204px;
    grid-column: span 1;
  }
}

.how-reach {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}

@media (min-width: 992px) {
  .how-reach {
    grid-template-columns: repeat(12, 1fr);
  }
}

@media (min-width: 992px) {
  .how-reach__text {
    grid-column: span 4;
  }
}

.how-reach__heading {
  margin: 0 0 16px;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15385;
  font-family: "TT Firs Neue", sans-serif;
}

.how-reach__description {
  font-size: 16px;
  line-height: 1.1875;
  color: #929195;
}

.how-reach__map {
  height: 375px;
}

@media (min-width: 992px) {
  .how-reach__map {
    grid-column: span 8;
  }
}

.image-block {
  display: block;
  width: 100%;
  height: auto;
}

.schedule__filter {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 40px 0;
}

@media (min-width: 992px) {
  .schedule__filter {
    grid-template-columns: repeat(12, 1fr);
  }
}

@media (min-width: 992px) {
  .schedule__filter-school {
    grid-column: span 4;
  }
}

@media (min-width: 1200px) {
  .schedule__filter-school {
    grid-column: span 3;
  }
}

@media (min-width: 992px) {
  .schedule__filter-teacher {
    grid-column: span 4;
  }
}

@media (min-width: 1200px) {
  .schedule__filter-teacher {
    grid-column: span 3;
  }
}

@media (min-width: 992px) {
  .schedule__filter-level {
    grid-column: span 4;
  }
}

@media (min-width: 1200px) {
  .schedule__filter-level {
    grid-column: span 2;
    margin-right: -20px;
  }
}

.schedule__filter-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

@media (min-width: 992px) {
  .schedule__filter-category {
    grid-column: span 12;
  }
}

@media (min-width: 1200px) {
  .schedule__filter-category {
    grid-column: span 4;
    margin-left: 20px;
  }
}

.schedule__item {
  display: grid;
  grid-gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 25px 0;
  font-size: 14px;
  line-height: 20px;
  border-top: 1px solid #DEE3E7;
  border-bottom: 1px solid #DEE3E7;
}

.schedule__item:not(:first-child) {
  margin-top: -1px;
}

@media (min-width: 576px) {
  .schedule__item {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .schedule__item {
    grid-template-columns: repeat(12, 1fr);
  }
}

.schedule__info {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}

@media (min-width: 576px) {
  .schedule__info {
    grid-column: span 2;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .schedule__info {
    grid-column: span 6;
    grid-template-columns: 92px 1fr;
  }
}

@media (min-width: 992px) {
  .schedule__info {
    grid-column: span 5;
  }
}

.schedule__date {
  color: #77808E;
}

.schedule__title {
  margin: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  font-family: "TT Firs Neue", sans-serif;
}

.schedule__category {
  font-size: 12px;
  line-height: 18px;
  color: #929195;
}

.schedule__level {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #929195;
}

@media (min-width: 768px) {
  .schedule__level {
    grid-column: span 3;
  }
}

@media (min-width: 992px) {
  .schedule__level {
    grid-column: span 2;
  }
}

.schedule__level-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.schedule__timetable {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .schedule__timetable {
    grid-column: span 3;
  }
}

@media (min-width: 992px) {
  .schedule__timetable {
    grid-column: span 3;
  }
}

@media (min-width: 576px) {
  .schedule__sign-up {
    grid-column: span 2;
  }
}

@media (min-width: 768px) {
  .schedule__sign-up {
    grid-column: span 12;
  }
}

@media (min-width: 992px) {
  .schedule__sign-up {
    grid-column: span 2;
  }
}

.schedule__more {
  margin-top: 24px;
  text-align: center;
}

.payment-online {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  margin-bottom: 80px;
}

@media (min-width: 992px) {
  .payment-online {
    grid-template-columns: repeat(12, 1fr);
  }
}

.payment-online__form {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 24px;
}

@media (min-width: 992px) {
  .payment-online__form {
    grid-column: span 8;
  }
}

.payment-online__group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

@media (min-width: 992px) {
  .payment-online__group {
    grid-template-columns: repeat(8, 1fr);
  }
}

.payment-online__title {
  margin: 0;
  font-weight: 500;
  font-family: "TT Firs Neue", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #1B162C;
}

@media (min-width: 992px) {
  .payment-online__title {
    grid-column: span 2;
    padding: 11px 0;
  }
}

.payment-online__controls {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px 20px;
}

.payment-online__controls.inherit_parent {
	padding-top: 15px;
}

@media (min-width: 768px) {
  .payment-online__controls {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 992px) {
  .payment-online__controls {
    grid-template-columns: repeat(6, 1fr);
    grid-column: span 6;
  }
}

.payment-online__field--summ {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.payment-online__field--summ .input {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .payment-online__field {
    grid-column: span 3;
  }
  .payment-online__field--wide {
    grid-column: span 6;
  }
}

.payment-online__currency {
  font-weight: 500;
  font-size: 18px;
  line-height: 15px;
  color: #1B162C;
}

.payment-online__send {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .payment-online__send {
    grid-column: span 3;
  }
}

.prices {
  margin-bottom: 60px;
}

.prices__filter {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

@media (min-width: 480px) {
  .prices__filter {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .prices__filter {
    grid-template-columns: repeat(4, 1fr);
  }
}

.prices__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}

@media (min-width: 480px) {
  .prices__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .prices__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .prices__list {
    grid-template-columns: repeat(12, 1fr);
  }
}

@media (min-width: 992px) {
  .prices__item {
    grid-column: span 3;
  }
}

.price-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 23px 23px 34px;
  background: #F9FBFF;
  border: 1px solid #DEE3E7;
  border-radius: 20px;
  color: #77808E;
}

.price-card__icon, .price-card__icon-image {
  width: 36px;
  height: 36px;
}

.price-card__icon {
  margin-bottom: 16px;
}

.price-card__title {
  margin: 0 0 16px;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  font-family: "TT Firs Neue", sans-serif;
  color: #1B162C;
}

.price-card__basis {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 13px;
  font-size: 15px;
  line-height: 18px;
}

.price-card__basis-item {
  margin-bottom: 12px;
}

.price-card__basis-item--highlight {
  color: #408AF3;
}

.price-card__price {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  color: #1B162C;
}

.sales {
  margin-bottom: 60px;
}

.sales__title {
  margin: 0 0 30px;
}

.sales__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}

@media (min-width: 992px) {
  .sales__list {
    grid-template-columns: repeat(12, 1fr);
  }
}

@media (min-width: 992px) {
  .sales__item {
    grid-column: span 6;
  }
}

.sale-card {
  position: relative;
  z-index: 10;
  padding: 35px 43px 54px;
  background: #408AF3;
  border-radius: 20px;
  color: #FFFFFF;
  overflow: hidden;
}

.sale-card__picture {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.sale-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sale-card__text {
  max-width: 225px;
}

.sale-card__tag {
  display: inline-block;
  margin: 0 0 24px;
  padding: 5px 10px;
  font-size: 11px;
  line-height: 13px;
  background: #ED7C55;
  border-radius: 4px;
  color: #FFFFFF;
}

.sale-card__title {
  margin: 0 0 13px;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.2;
  font-family: "TT Firs Neue", sans-serif;
  color: #1B162C;
  line-height: 1;
  color: currentColor;
}
.sale-order-detail-payment-options-methods-template input[type=submit] {
	display: inline-block;
    padding: 8px 45px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    font-family: "TT Firs Neue", sans-serif;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    background-color: #7BD658;
    border: 1px solid transparent;
    border-radius: 6px;
    outline: none;
    color: #FFFFFF;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.sale-order-detail-sum-number {
	font-weight: bold;
    font-size: 18px;
}
.sale-order-detail-payment-options-methods-info {
	margin-bottom:30px;
}
.sale-order-detail-about-order-inner-container-repeat a{
	color:#1c1c1c;
}
.sale-order-detail-about-order-inner-container-repeat {
	display:inline-block;
}
.sale-order-detail-payment-options-methods-template {
	display:inline-block;
	margin-right:30px;
    margin-bottom: 60px;
}

@media (min-width: 1200px) {
  .sale-card__title {
    font-size: 30px;
  }
}

.sale-card__description {
  font-size: 20px;
  line-height: 24px;
  opacity: 0.6;
}

.price-card_block_prices {
	display:flex;
}

.price-card__old_price {
    margin-right: 10px;
    line-height: 32px;
    text-decoration: line-through;
}
.sitemap a:hover {
	text-decoration:underline;
}
.sitemap a{
    color: #1B162C;
	text-decoration:none;
}
.contact_printer:hover{
	cursor:pointer;
	text-decoration:none;
}
.contact_printer span{
	padding-left:30px;
	background:url(/local/templates/langwe/assets/img/printer.png) no-repeat left center;
    background-size: 20px 20px;
}
.contact_printer{
    margin-bottom: 20px;
    text-align: right;
    display: block;
    width: 100%;
    color: #1b162c;
    font-size: 18px;

}

.school__tabs {
	overflow-x:scroll;
	padding-top: 60px;
}
.courses__tabs, .tabs-info-block .tabs_redirect {
	overflow-x:scroll;
}
.school__tabs::-webkit-scrollbar-button,
.courses__tabs::-webkit-scrollbar-button,
.tabs_redirect::-webkit-scrollbar-button {
	background-image:url('');
	background-repeat:no-repeat;
	width:2px;
	height:0px;
}

.school__tabs::-webkit-scrollbar-track,
.courses__tabs::-webkit-scrollbar-track,
.tabs_redirect::-webkit-scrollbar-track {
	background-color:#ecedee;
	height:0px;
}

.school__tabs::-webkit-scrollbar-thumb,
.courses__tabs::-webkit-scrollbar-thumb,
.tabs_redirect::-webkit-scrollbar-thumb {
	-webkit-border-radius: 0px;
	border-radius: 0px;
	background-color:#929195;
}

.school__tabs::-webkit-scrollbar-thumb:hover,
.courses__tabs::-webkit-scrollbar-thumb:hover,
.tabs_redirect::-webkit-scrollbar-thumb:hover{
	background-color:#1B162C;
}

.school__tabs::-webkit-resizer,
.courses__tabs::-webkit-resizer,
.tabs_redirect::-webkit-resizer{
	background-image:url('');
	background-repeat:no-repeat;
	width:2px;
	height:0px;
}

.school__tabs::-webkit-scrollbar,
.tabs-info-block .tabs_redirect::-webkit-scrollbar,
.courses__tabs::-webkit-scrollbar{
	width: 2px;
	height: 0px;
}

@media print {
   .page-header, .breadcrumbs, .application.we-teach-blue, footer, .schools__filter, .schools__more, #panel, .contact_printer {
		display:none;
   }

}
font {display:none;}
/*# sourceMappingURL=style.css.map */

