@charset "UTF-8";

.fsb-original-select {
  display: inline-block;
  margin: 0;
  padding: 8px 22px 8px 8px;
  padding: 8px;
  padding-right: 23px;
  font-family: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.fsb-original-select[disabled] {
  color: rgba(0, 0, 0, 0.3);
  cursor: not-allowed;
}

.fsb-select {
  display: inline-block;
  position: relative;
  width: inherit;
}

select[disabled] + .fsb-select {
  cursor: not-allowed;
}

.fsb-select,
.fsb-original-select {
  min-width: 0;
  border-radius: 5px;
  border-radius: 5px;
  box-sizing: border-box;
  color: inherit;
  color: #10273a;
  background-color: #fff;
  background-color: #ededed;
  font-size: 1rem;
  font-size: 1rem;
  box-shadow: none;
}

.fsb-select svg {
  width: 1rem;
  height: 1rem;
  margin-right: 8px;
  margin-right: 8px;
  fill: currentColor;
  fill: currentColor;
  pointer-events: none;
}

.fsb-label {
  display: none;
}

/* While it's common sense to avoid using !important as much as possible, it is used
 * here to prevent inheriting style from other rules that may target buttons. */

.fsb-button {
  display: flex !important;
  align-items: center;
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  padding: 8px 22px 8px 8px !important;
  padding: 8px !important;
  padding-right: 23px !important;
  border: 0 !important;
  border-radius: inherit !important;
  color: inherit !important;
  background-color: inherit !important;
  font-size: 1rem !important;
  font-family: "Baloo2", tahoma, sans-serif !important;
  font-weight: 600;
  text-align: inherit !important;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-transform: uppercase;
}

.fsb-button > span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.fsb-button > span,
.fsb-option > span {
  pointer-events: none;
}

select[disabled] + .fsb-select .fsb-button {
  opacity: 0.4;
  pointer-events: none;
}

.fsb-button:after,
select[disabled] + .fsb-select .fsb-button[aria-expanded=true]:after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  width: 7px;
  height: 7px;
  height: 7px;
  right: 8px;
  right: 8px;
  top: 50%;
  transform: translateY(-65%) rotateZ(45deg);
  border: solid currentColor;
  border: solid currentColor;
  border-width: 0 1.5px 1.5px 0;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
  pointer-events: none;
}

.fsb-select:not(.fsb-top) .fsb-button[aria-expanded=true] {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.fsb-select:not(.fsb-top) .fsb-list {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.fsb-select.fsb-top .fsb-button[aria-expanded=true] {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.fsb-select.fsb-top .fsb-list {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.fsb-button[aria-expanded=true]:after {
  transform: translateY(-35%) rotateZ(225deg);
}

.fsb-list,
select[disabled] + .fsb-select .fsb-list {
  display: block;
  visibility: hidden;
  position: absolute;
  min-width: 100%;
  height: 0;
  margin: 0;
  left: 0;
  top: 100%;
  z-index: 2;
  padding: 0;
  border: inherit;
  border: 0;
  border-radius: inherit;
  border-radius: 3px;
  box-sizing: border-box;
  color: inherit;
  color: #10273a;
  background-color: inherit;
  background-color: #ededed;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  overflow: auto;
}

.fsb-top .fsb-list {
  top: auto;
  bottom: 100%;
}

.fsb-button[aria-expanded=true] + .fsb-list {
  height: auto;
  max-height: 300px;
  visibility: visible;
  opacity: 1;
}

.fsb-option {
  display: flex;
  align-items: center;
  padding: 8px;
  padding-left: 20px;
  font-family: "Baloo2", tahoma, sans-serif;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #10273a;
}

.fsb-option:focus {
  outline: none;
  color: #10273a;
  background-color: #ddd;
}

.fsb-resize {
  display: block;
  height: 0;
  padding-right: 14px;
  padding-right: 15px;
  box-sizing: border-box;
}

.fsb-resize > * {
  display: block;
}

.row {
  --bs-gutter-x: 16px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

/**
 * Swiper 9.3.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 8, 2023
 */

@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-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

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

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

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

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

/* Auto Height */

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

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

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

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

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

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

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

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

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

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

/* CSS Mode */

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

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

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

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

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

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

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

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

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

  100% {
    transform: rotate(360deg);
  }
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: 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.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.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;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

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

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

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

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

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

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

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

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */

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

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

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

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

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

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

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

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

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

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

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

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

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

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

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

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

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

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

/* Fraction */

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */

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

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

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

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

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

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

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

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

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

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

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:where(:root) {
  line-height: 1.15;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color-scheme: dark light;
}

:where(html) {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
}

:where(body) {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

:where(main) {
  display: block;
}

:where(a) {
  background-color: transparent;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(button, input, optgroup, select, textarea) {
  line-height: inherit;
  border: 1px solid currentColor;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

:where(button) {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  overflow: visible;
  text-transform: none;
  border-radius: 0;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  -webkit-appearance: button;
  padding: 1px 6px;
  cursor: pointer;
}

:where(label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(input) {
  overflow: visible;
  border-radius: 0;
}

:where(fieldset) {
  margin: 0;
  border: 0;
  padding: 0;
  border: 1px solid currentColor;
}

:where(legend) {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

:where(progress) {
  display: inline-block;
  vertical-align: baseline;
}

:where(select) {
  text-transform: none;
}

:where(textarea) {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

:where([type=checkbox], [type=radio]) {
  box-sizing: border-box;
  padding: 0;
}

:where([type=search]) {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

:where([type=color]) {
  background: inherit;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled),
label:has(+ input:disabled)) {
  cursor: not-allowed;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

::-webkit-search-decoration,
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

::-moz-focus-inner {
  border: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

:where(hr) {
  box-sizing: content-box;
  height: 0;
  color: inherit;
  overflow: visible;
}

:where(ol ol, ol ul, ol dl, ul ol, ul ul, ul dl, dl ol, dl ul, dl dl) {
  margin: 0;
}

:where(b, strong) {
  font-weight: bolder;
}

:where(audio, video) {
  display: inline-block;
}

:where(audio):not([controls]) {
  display: none;
  height: 0;
}

:where(img) {
  border: 0;
}

:where(svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(svg):not(:root) {
  overflow: hidden;
}

:where(table) {
  text-indent: 0;
  border-color: inherit;
}

:where(details) {
  display: block;
}

:where(dialog) {
  background-color: inherit;
  border: solid;
  color: inherit;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog):not([open]) {
  display: none;
}

:where(summary) {
  display: list-item;
}

:where(canvas) {
  display: inline-block;
}

:where(template) {
  display: none;
}

:where([hidden]) {
  display: none;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* stylelint-disable */

/* stylelint-enable */

/**
* Remove the unit of a length
*
* @param {Number} $number - Number to remove unit from
* @return {Number} - Unitless number
*/

/**
* Returns nth property from css property list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$bottom-margin: css-nth(10px 20px 30px 40px, 3); // 30px
*	$bottom-margin: css-nth(10px 20px, 3); // 10px
*/

/**
* Remove nth elements from the list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$list: remove-nth(10px 20px 30px 40px, 3); // 10px 20px 40px
*/

/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for one in $index position
*
* 'inherit' value when used with 'margins' or 'paddings' mixin will not produce any output
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-only: breakpointPickCssNth($spacer, 1);
* => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
*	@include margins($spacer-top-only);
*
*	$spacer-bottom-only: breakpointPickCssNth($spacer, 3);
* => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
*	@include paddings($spacer-bottom-only);
*/

/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for top (first) and bottom (third) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-bottom: breakpoint-pick-top-bottom($spacer);
* => (xs: 10px inherit 12px inherit, md: 20px inherit 20px inherit)
*	@include margins($spacer-top-bottom);
*/

/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for right (second) and left (fourth) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-left-right: breakpoint-pick-top-bottom($spacer);
* => (xs: inherit 11px inherit 13px, md: inherit 0 inherit 0)
*	@include margins($spacer-left-right);
*/

/**
* In each $list pair of $breakpoint: $value merges all values skipping 'inherit'
*
* @example
*	$list-a: (xs: 10px inherit 20px inherit, md: 30px inherit);
*	$list-b: (xs: 40px inherit inherit inherit, md: inherit 50px);
*
*	$list-result: breakpointMapMerge($list-a, $list-b);
*	// (xs: 40px inherit 20px inherit, md: 30px 50px);
*/

/**
* Returns deeply nested property from a map
*
* @function mapGetDeep Deep get for sass maps
* @author https://css-tricks.com/snippets/sass/deep-getset-maps/
* @param {Map} $map - Map
* @param {Arglist} $keys - Key chain
*
* @example
*	$paddings: mapGetDeep($grid-containers, default, paddings, xs);
*/

/**
* Mixin for object-fit plugin
*
* @see https://github.com/bfred-it/object-fit-images
* @see components/_background.scss
* @example
*	@include object-fit(contain);
*	@include object-fit(cover, top);
*/

/**
* Split string into a list
*
* @property {string} $string String
* @property {string} $separator Separator
*
* @example
*	$list: str-split("hello+world", "+"); // (hello, world)
*/

/**
* Converts SVG into data url so that this SVG could be used as a
* background image
*
* @example
*	background-image: svgtodataurl("<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>");
*/

/**
* Remove keys from the map
*
* @param {Map} $map - Map from which to remove items
* @param {List} $keys - List of keys which to remove
* @return {Map} - Map without the specified keys
*/

/**
* Качество рендеринга изображений
* В Chrome качество фонового изображения не самое лучшее при использовании background-size
*/

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baloo2";
  src: url("../fonts/baloo2.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

html {
  min-height: 100vh;
  height: 100%;
  min-width: 320px;
  font-family: "Montserrat", tahoma, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

html.is-lock-scroll,
html.is-lock-scroll body {
  overflow: hidden;
}

body {
  height: 100%;
}

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

a,
button {
  transition: 0.2s;
  cursor: pointer;
}

a {
  color: currentColor;
}

svg {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

img {
  vertical-align: top;
  height: auto;
  max-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

img[draggable=false] {
  pointer-events: none;
  -webkit-user-drag: none;
}

figure,
picture {
  display: inline-block;
  margin: 0;
  line-height: 0;
}

figure img,
picture img {
  width: 100%;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

video {
  outline: none;
  width: 100%;
  height: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  width: 8px;
  height: 8px;
  background: none;
  border: 0;
  margin-top: 0;
  padding: 0;
  transform: translate(0, -50%);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(45deg);
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-prev::after {
  border-left: 2px solid #10273a;
  border-bottom: 2px solid #10273a;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-next::after {
  border-top: 2px solid #10273a;
  border-right: 2px solid #10273a;
}

.background-default {
  background-color: #fff;
  color: #808080;
}

.background-muted {
  background-color: #ededed;
}

.background-primary {
  background-color: #124ED6;
  color: #fff;
}

.background-primary .swiper-button-prev::after,
.background-primary .swiper-button-next::after {
  border-color: #fff;
}

.background-primary .button--secondary:focus,
.background-primary .button--secondary:hover,
.background-primary .button--secondary:active {
  background-color: #000;
}

.background-primary input {
  color: #000;
}

.background-secondary {
  background-color: #10273a;
  color: #fff;
}

.text-primary {
  color: #124ED6;
}

.text-secondary {
  color: #10273a;
}

.text-default {
  color: #808080;
}

.text-white {
  color: #fff;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.full-width {
  width: 100%;
}

.clearfix {
  overflow: auto;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

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

.h1 {
  font-family: "Baloo2", tahoma, sans-serif;
  font-size: 65px;
  line-height: 65px;
}

.h2 {
  font-family: "Baloo2", tahoma, sans-serif;
  font-size: 30px;
  line-height: 48px;
  letter-spacing: -1.5px;
  color: #124ED6;
  margin-bottom: 20px;
}

.h2.text-white {
  color: #fff;
}

.h2.text-secondary {
  color: #10273a;
}

.h3 {
  font-family: "Baloo2", tahoma, sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.h4 {
  font-size: 14px;
  line-height: 22px;
}

.h5 {
  font-size: 10px;
}

.h6 {
  font-size: 8px;
}

li {
  list-style-position: outside;
}

p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 20px;
}

.button {
  position: relative;
  display: inline-block;
  min-height: 50px;
  font-family: "Baloo2", tahoma, sans-serif;
  font-size: 14px;
  padding: 12px 20px;
  outline: none;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #fff;
  background-color: #fff;
  color: #000;
}

.button:focus,
.button:hover,
.button:active {
  background-color: #10273a;
  border-color: #10273a;
  color: #fff;
}

.button:focus svg,
.button:hover svg,
.button:active svg {
  stroke: #fff;
}

.button[disabled] {
  opacity: 0.3;
  pointer-events: none;
}

.button svg {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  stroke: #10273a;
}

.button.icon-left svg {
  left: 18px;
  transform: translateY(-50%) rotate(180deg);
}

.button--inverse {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.button--inverse:focus,
.button--inverse:hover,
.button--inverse:active {
  background-color: #fff;
  border-color: #fff;
  color: #10273a;
}

.button--inverse:focus svg,
.button--inverse:hover svg,
.button--inverse:active svg {
  stroke: #10273a;
}

.button--inverse svg {
  stroke: #fff;
}

.button--primary {
  background-color: #124ED6;
  border-color: #124ED6;
  color: #fff;
}

.button--primary:focus,
.button--primary:hover,
.button--primary:active {
  background-color: #10273a;
  border-color: #10273a;
}

.background-secondary .button--primary:focus,
.background-secondary .button--primary:hover,
.background-secondary .button--primary:active {
  border-color: #fff;
}

.button--primary svg {
  stroke: #fff;
}

.button--secondary {
  border-color: #FD8624;
  background-color: #FD8624;
  color: #fff;
}

.button--secondary:focus,
.button--secondary:hover,
.button--secondary:active {
  background-color: #124ED6;
  border-color: #124ED6;
}

.button--secondary svg {
  stroke: #fff;
}

.card-job {
  border-radius: 10px;
  background-color: #fff;
  text-align: left;
  color: #808080;
}

.card-job__actions {
  margin-top: auto;
  text-align: center;
}

.card-job__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  padding: 30px 20px;
}

.card-job__logo {
  display: inline-block;
  height: 40px;
  margin-bottom: 6px;
}

.card-job__logo img {
  display: block;
  height: 100%;
}

.card-job h3 {
  margin-bottom: 22px;
}

.card-job__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 22px;
  margin-bottom: 16px;
}

.card-job__item {
  display: inline-block;
  vertical-align: top;
  margin: 0 11px 11px 0;
  font-size: 0;
}

.card-job__icon {
  display: inline-block;
  vertical-align: top;
  width: 21px;
  height: 21px;
  margin-right: 8px;
}

.card-job__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #808080;
  color: #808080;
}

.card-job__info {
  display: inline-block;
  max-width: calc(100% - 29px);
  font-size: 14px;
  line-height: 18px;
}

.card-job__info a,
.card-job__info span {
  text-decoration: underline;
}

.card-job p {
  margin-bottom: 16px;
}

.card-job .button {
  min-width: auto;
  margin-top: 20px;
}

.card-care {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.card-care__image {
  position: relative;
}

.card-care__background {
  height: 175px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card-care__logo {
  position: absolute;
  z-index: 10;
  margin: auto;
  width: 240px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.card-care__text h3 {
  font-family: "Baloo2", tahoma, sans-serif;
  font-size: 30px;
  line-height: 36px;
  color: #10273a;
  text-align: center;
  margin-bottom: 14px;
}

.card-care__text {
  padding: 20px;
}

.card-care__text p {
  margin-bottom: 20px;
  color: #808080;
}

.card-care__button {
  width: 100%;
  background-color: #10273a;
  color: #fff;
  font-size: 16px;
}

.card-care__button-wrap {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  gap: 8px;
}

.card-care__button-wrap .button {
  min-width: auto;
}

.card-care__image::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.card-care-list {
  row-gap: 20px;
}

.card-care-list > *:nth-child(3n+1) {
  animation: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.card-care-list > *:nth-child(3n+2) {
  animation: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.2s;
}

.card-care-list > *:nth-child(3n+3) {
  animation: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.4s;
}

.caring {
  text-align: center;
}

.caring p {
  margin-right: auto;
  margin-left: auto;
}

.caring .button {
  display: inline-block;
}

.caring .h2,
.caring .row {
  animation: fadeInUp;
  animation-duration: 2s;
  animation-fill-mode: both;
}

.checkbox {
  display: flex;
}

.checkbox-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.checkbox-input ~ .checkbox-box {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.checkbox-input ~ .checkbox-box:before {
  content: "";
  position: relative;
  top: 3px;
  left: 0;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-right: 18px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #10273A;
  border-radius: 5px;
}

.background-secondary .checkbox-input ~ .checkbox-box:before {
  background-color: #10273a;
  border: 1px solid #fff;
}

.background-secondary .checkbox-input ~ .checkbox-box .checkbox-box__label {
  color: #fff;
}

.checkbox-input ~ .checkbox-box svg {
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  fill: #10273A;
  color: #10273A;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 1;
}

.background-secondary .checkbox-input ~ .checkbox-box svg {
  fill: #fff;
  color: #fff;
}

.checkbox-input:checked ~ .checkbox-box svg {
  opacity: 1;
  visibility: visible;
}

.container {
  --bs-gutter-x: 72px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
  max-width: 1784px;
}

.container-md {
  --bs-gutter-x: 72px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
  max-width: 1510px;
}

.explore {
  padding: 36px 0 165px;
  text-align: center;
}

.explore h2 {
  margin-bottom: 40px;
}

.explore__actions {
  margin-top: 40px;
}

.explore__list {
  width: calc(100% + 40px);
  margin: 0 -20px;
  padding: 0 20px;
  position: relative;
}

.explore-slider .swiper-slide {
  height: auto;
}

.explore-slider .swiper-slide > * {
  height: 100%;
}

.footer__links a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}

.footer__links a:focus,
.footer__links a:hover,
.footer__links a:active {
  text-decoration: underline;
}

.footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer {
  padding: 40px 0;
  background-color: #10273A;
}

.footer__logo img {
  width: 260px;
}

.footer__logo {
  margin-bottom: 22px;
}

.footer__links a {
  font-size: 12px;
  text-align: center;
  font-weight: 600;
}

.footer__links a:not(:last-child) {
  margin-bottom: 25px;
}

.footer__links {
  display: flex;
  flex-direction: column;
}

.form-control {
  display: inline-block;
  position: relative;
}

.form-control.icon-left .form-icon {
  left: 0;
}

.form-control.icon-left .input {
  padding-left: 44px;
}

.form-control.icon-right .form-icon {
  right: 0;
}

.form-control.icon-right .input {
  padding-right: 44px;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

.form-group .label {
  display: block;
}

.form-icon {
  position: absolute;
  top: 0;
  width: 32px;
  height: 100%;
  background: none;
  border: 0;
}

.header {
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 16px 0;
  position: sticky;
  background-color: #124ED6;
  box-shadow: 0 0 4px #aaa;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-active .header__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header__menu .navbar__list {
  flex-direction: column;
}

.header__menu-toggle {
  width: 27px;
  height: 18px;
}

.input {
  font-size: 16px;
  line-height: 24px;
  padding: 12px 20px;
  border-width: 1px;
  border-style: solid;
  border-color: #ededed;
  border-radius: 5px;
  background-color: #fff;
}

.input:focus {
  border-color: #124ED6;
}

.input:hover {
  border-color: #124ED6;
}

.input:active {
  border-color: #124ED6;
}

.input:focus-visible {
  outline: none;
}

.input::-moz-placeholder {
  font-weight: 500;
  font-size: 16px;
  color: #808080;
}

.input::placeholder {
  font-weight: 500;
  font-size: 16px;
  color: #808080;
}

.input[disabled] {
  border-color: #10273a;
  opacity: 0.3;
  pointer-events: none;
}

.background-secondary .input {
  color: #000;
}

.input-hint {
  font-size: 14px;
}

.input.input-file {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 9px 32px;
  font-family: "Baloo2", tahoma, sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-color: #124ED6;
  text-transform: uppercase;
  background-color: transparent;
  color: #124ED6;
  transition-property: background-color color border-color;
  transition-duration: 0.2s;
}

.input.input-file:focus,
.input.input-file:hover,
.input.input-file:active {
  background-color: #10273a;
  color: #fff;
  border-color: #10273a;
  transition-property: background-color color border-color;
  transition-duration: 0.2s;
}

.background-secondary .input.input-file:focus,
.background-secondary .input.input-file:hover,
.background-secondary .input.input-file:active {
  background-color: #124ED6;
  color: #fff;
  border-color: #124ED6;
}

.input.input-file:focus svg,
.input.input-file:hover svg,
.input.input-file:active svg {
  fill: #fff;
}

.input.input-file svg {
  width: 24px;
  height: 30px;
  fill: #124ED6;
}

.background-secondary .input.input-file {
  border-color: #fff;
}

.job-info__header {
  border-radius: 12px 12px 0 0;
}

.job-info__image {
  height: 187px;
}

.job-info__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 10px 10px 0 0;
}

.job-info__wrap {
  padding: 40px 36px 20px;
}

.job-info__wrap h3 {
  margin-bottom: 22px;
}

.job-info__wrap .card-job__info {
  color: #fff;
}

.job-info__wrap .card-job__info a {
  color: #fff;
}

.job-info__wrap svg {
  fill: #124ED6;
  color: #124ED6;
}

.job-info__inner {
  margin-bottom: 29px;
}

.job-info__inner .card-job__list {
  max-width: 420px;
}

.job-info__callback {
  display: block;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  margin-top: 10px;
}

.job-info__callback button {
  display: inline;
  border: none;
  background-color: transparent;
  text-decoration: underline;
  transition: 0.2s;
  padding: 0;
  letter-spacing: 1px;
}

.job-info__checkbox {
  margin-top: 10px;
}

.job-info__content {
  max-height: 1954px;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 20px 36px;
  color: #808080;
}

.job-info__content h4 {
  line-height: 1.4;
  margin-bottom: 24px;
}

.job-info__content p {
  margin-bottom: 24px;
}

.job-info__content ul {
  margin-bottom: 24px;
  padding-left: 16px;
}

.job-info__footer {
  padding: 40px 36px;
}

.job-info__footer h2 {
  margin-bottom: 4px;
}

.job-info__footer p {
  margin-bottom: 26px;
}

.job-info .button {
  width: 100%;
  min-width: 0;
}

.job-info__form {
  border-bottom: 1px solid #fff;
  padding-bottom: 44px;
  animation: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.job-info__form:nth-child(2) {
  padding: 36px 0 44px;
}

.job-info__form:last-child {
  border-bottom: none;
  padding: 36px 0 0;
}

.job-info__form h2.h2 {
  margin-bottom: 0px;
  font-size: 25px;
}

.job-info__form .button {
  width: 100%;
}

.job-info__form--result p {
  margin-bottom: 0;
}

.job-info__form-wrap {
  font-size: 0;
}

.job-info__form-wrap input {
  width: 100%;
  margin-bottom: 10px;
}

.job-info__form-wrap input:last-child {
  margin-bottom: 20px;
}

.job-info .card-job__logo {
  height: 35px;
  margin-bottom: 10px;
}

.job-info .job-info__wrap h3 {
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-list__sort {
  margin-bottom: 20px;
}

.job-list__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #808080;
}

.job-list__text:nth-child(2) {
  margin-left: 8px;
}

.job-list__text span {
  font-weight: 700;
}

.job-list__wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.job-list .card-job__logo {
  margin-bottom: 16px;
}

.job-list .card-job h3 {
  margin-bottom: 15px;
}

.job-list .card-job p {
  margin-bottom: 0;
}

.job-list .card-job__list {
  margin-bottom: 6px;
}

.job-list .pagination {
  margin-top: 43px;
}

.jobs {
  padding: 20px 0 35px;
}

.jobs--selected .job-list {
  display: none;
}

.label {
  display: block;
  font-family: "Baloo2", tahoma, sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #000;
}

.label.text-white {
  color: #fff;
}

.logo {
  position: relative;
  flex-shrink: 0;
  width: 177px;
  height: 40px;
}

.logo:focus .logo__image,
.logo:hover .logo__image,
.logo:active .logo__image {
  transform: rotate(-90deg);
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}

.menu-toggle-close {
  width: inherit;
  height: inherit;
  display: none;
  padding: 0;
  background: none;
  border: 0;
  stroke: #10273a;
}

.mobile-menu-active .menu-toggle-close {
  display: block;
  margin-left: auto;
}

.menu-toggle-open {
  width: inherit;
  height: inherit;
  padding: 0;
  background: none;
  border: 0;
}

.mobile-menu-active .menu-toggle-open {
  display: none;
}

.navbar {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100vw;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  -webkit-overflow-scrolling: touch;
  z-index: -1;
}

.navbar__link {
  display: block;
  font-family: "Baloo2", tahoma, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 20px;
}

.navbar__link:focus,
.navbar__link:hover,
.navbar__link:active {
  color: #124ED6;
}

.navbar__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style-type: none;
}

.navbar__list li {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #10273a;
  border-bottom: 2px solid #808080;
}

.navbar__list li:last-child {
  border-bottom: none;
}

.mobile-menu-active .navbar {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.page-header {
  display: flex;
  align-items: center;
  font-family: "Baloo2", tahoma, sans-serif;
  color: #fff;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  padding-top: 70px;
  padding-bottom: 70px;
  min-height: 240px;
  background-color: #124ED6;
}

.page-header h1 {
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
  letter-spacing: -1.5px;
}

.page-header p {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 0;
}

.page-header img {
  height: 42px;
}

.page-header.page-header-secondary {
  padding-top: 70px;
  padding-bottom: 70px;
}

.page-header.page-header-secondary h1 {
  font-size: 65px;
  line-height: 1.3;
}

.page-header.page-header-secondary h2 {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 30px;
}

.page-header.page-header-secondary p {
  font-family: "Baloo2", tahoma, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: var(--vh);
  height: 100%;
  background-color: #fff;
}

.header,
.footer {
  flex-shrink: 0;
}

.main {
  flex-grow: 1;
}

.procare-about {
  padding: 40px 0;
}

.procare-benefits h2 {
  text-align: center;
  margin-bottom: 30px;
}

.procare-benefits ul {
  padding-left: 18px;
}

.procare-benefits li {
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
  color: #808080;
}

.procare-benefits li::marker {
  color: #10273a;
}

.procare-benefits li p {
  margin-bottom: 0;
}

.procare-explore {
  padding: 36px 0 40px;
  text-align: center;
}

.procare-explore h2 {
  margin-bottom: 40px;
}

.procare-explore__list {
  font-size: 0;
}

.procare-explore .button {
  margin-top: 40px;
}

.procare-reason {
  padding: 0;
  overflow: hidden;
}

.procare-reason .col-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.procare-reason .col-6:first-child {
  padding: 40px 36px;
}

.procare-reason .col-6:first-child h2 {
  line-height: 37px;
  text-align: right;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.procare-reason .col-6:nth-child(2) {
  padding: 40px 36px;
}

.procare-reason .col-6:nth-child(2) h2 {
  text-align: center;
}

.procare-reason .col-6:nth-child(2) p {
  text-align: center;
  margin-bottom: 24px;
}

.procare-reason .col-6:nth-child(2) p:last-of-type {
  margin-bottom: 0;
}

.procare-reason__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.procare-reason__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.procare-reason__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 39, 58, 0.58);
  z-index: 1;
}

.procare-services {
  padding: 40px 0;
  text-align: center;
  position: relative;
  color: #fff;
}

.procare-services .container {
  position: relative;
  z-index: 2;
}

.procare-services p {
  max-width: 788px;
  margin: 0 auto 40px;
}

.procare-services .row {
  max-width: 788px;
  margin: 0 auto;
}

.procare-services .col-6 {
  text-align: left;
}

.procare-services .col-6:first-child {
  margin-bottom: 40px;
}

.procare-services .col-6 h2 {
  text-align: center;
  margin-bottom: 0;
}

.procare-services .col-6 p {
  margin-bottom: 0;
}

.procare-services__caption {
  color: #fff;
}

.procare-services__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 223px;
  margin-bottom: 20px;
  padding: 16px;
  position: relative;
}

.procare-services__image img,
.procare-services__image::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.procare-services__image img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: 1;
}

.procare-services__image::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.procare-services__image h2 {
  margin-bottom: 0;
  position: relative;
  z-index: 3;
}

.progress__dividers {
  position: relative;
  top: -10px;
  display: flex;
  border-radius: 10px;
}

.progress__dividers > div {
  width: 100%;
  height: 10px;
  border-right: 2px solid #10273a;
}

.progress__dividers > div:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-right: 0;
}

.progress__line {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 100%;
  height: 10px;
  border-radius: 10px;
  background-color: #fff;
  border: none;
  border-radius: 10px;
  display: block;
  overflow: hidden;
  padding: 0;
}

.progress__line::-moz-progress-bar {
  border: none;
  background-color: #fff;
}

.progress__line::-webkit-progress-bar {
  border: none;
  background-color: #fff;
}

.progress__line::-webkit-progress-value {
  border-radius: 10px;
  background-color: #124ED6;
}

.progress__questions {
  display: none;
}

.progress__questions.active {
  display: block;
  margin-bottom: 16px;
}

.providers {
  padding: 40px 0 46px;
  text-align: center;
}

.providers p {
  margin-bottom: 36px;
}

.providers__list {
  width: calc(100% + 40px);
  margin: 0 -20px;
  padding: 0 20px;
  position: relative;
}

.providers__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vw;
  background-color: #fff;
  position: relative;
  padding: 20px;
}

.providers__item img {
  display: block;
}

.providers .button {
  margin-top: 40px;
}

.quiz-offer-wrap {
  padding-top: 40px;
  margin-top: -50px;
  overflow: hidden;
}

.quiz-offer__image-wrap {
  display: flex;
  align-items: flex-end;
  position: relative;
  height: 100%;
}

.quiz-offer__image-wrap:hover .quiz-offer__logo-spin {
  transform: scale(1.2) rotate(-165deg);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}

.quiz-offer__image {
  z-index: 3;
  position: relative;
  margin: 0 auto;
  max-height: 370px;
  width: auto;
}

.quiz-offer__logo-spin {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 98%;
  height: 98%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transform: scale(1.2);
}

.quiz-offer__text {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  margin-bottom: 32px;
}

.quiz-offer__text p {
  margin-bottom: 32px;
}

.quiz-offer__text .button {
  display: inline-block;
}

.quiz {
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  min-height: 386px;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #fff;
}

.quiz__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.quiz__controls {
  margin-bottom: 4px;
}

.quiz__result {
  display: none;
}

.quiz__result.active {
  display: block;
  animation: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.quiz__result h3 {
  margin-bottom: 24px;
}

.quiz__result-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.quiz__intro.hidden {
  display: none;
}

.quiz__intro h2 {
  line-height: 36px;
  margin-bottom: 10px;
}

.quiz__intro p {
  color: #fff;
}

.quiz__intro .button {
  display: block;
  margin: 0 auto 40px;
}

.quiz__progress {
  margin-top: auto;
  padding-top: 20px;
}

.quiz__question-wrap {
  display: none;
  list-style-type: none;
}

.quiz__question-wrap.active {
  display: block;
}

.quiz__question {
  display: none;
  opacity: 0;
}

.quiz__question.active {
  display: block;
  animation: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.quiz__question h3 {
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.quiz__question-form {
  position: relative;
  padding-top: 20px;
}

.quiz__question-form p {
  margin-bottom: 20px;
}

.quiz__question-form:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.quiz {
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  min-height: 386px;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #fff;
}

.quiz__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.quiz__controls {
  margin-bottom: 4px;
}

.quiz__result {
  display: none;
}

.quiz__result.active {
  display: block;
  animation: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.quiz__result h3 {
  margin-bottom: 24px;
}

.quiz__result-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.quiz__intro.hidden {
  display: none;
}

.quiz__intro h2 {
  line-height: 36px;
  margin-bottom: 10px;
}

.quiz__intro p {
  color: #fff;
}

.quiz__intro .button {
  display: block;
  margin: 0 auto 40px;
}

.quiz__progress {
  margin-top: auto;
  padding-top: 20px;
}

.quiz__question-wrap {
  display: none;
  list-style-type: none;
}

.quiz__question-wrap.active {
  display: block;
}

.quiz__question {
  display: none;
  opacity: 0;
}

.quiz__question.active {
  display: block;
  animation: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.quiz__question h3 {
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.quiz__question-form {
  position: relative;
  padding-top: 20px;
}

.quiz__question-form p {
  margin-bottom: 20px;
}

.quiz__question-form:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.radio {
  display: flex;
}

.radio-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.radio-input ~ .radio-box {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.radio-input ~ .radio-box::before {
  content: "";
  position: relative;
  top: 0;
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  margin-right: 16px;
  overflow: hidden;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #fff;
}

.radio-input ~ .radio-box__label {
  font-size: 14px;
  line-height: 22px;
}

.radio-input:focus + .radio-box::before {
  box-shadow: 0 0 0 1px #000;
}

.radio-input:checked ~ .radio-box::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #124ED6;
}

.role {
  padding: 40px 0;
  text-align: center;
}

.role__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.role__image {
  display: block;
  margin-bottom: 40px;
}

.role__image img {
  display: block;
}

.role__info h2 {
  margin-bottom: 0;
}

.role p {
  white-space: pre-line;
  margin-bottom: 40px;
}

.role__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.role .button {
  margin: 0 0 10px;
}

.role .button:last-child {
  margin: 0;
}

.search {
  padding-top: 20px;
  padding-bottom: 20px;
}

.search.show .search__select::after {
  transform: rotate(-180deg);
}

.search.show .search__form {
  opacity: 1;
  display: grid;
  z-index: 3;
}

.search.show .search__select {
  margin-bottom: 16px;
}

.search__form {
  display: none;
  gap: 16px;
  opacity: 0;
  display: none;
  z-index: -1;
}

.search.advanced {
  padding-top: 40px;
  padding-bottom: 40px;
}

.search.advanced .search__job-title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: title;
}

.search.advanced .search__area {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: area;
}

.search.advanced .search__submit {
  -ms-grid-row: 9;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: submit;
}

.search.advanced .search__location {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: location;
}

.search.advanced .search__job-type {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
  grid-area: type;
}

.search.advanced .search__company {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: company;
}

.search.advanced .search__quiz {
  -ms-grid-row: 11;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: quiz;
}

.search.advanced .search__form {
  opacity: 1;
  display: grid;
  grid-template-areas: "title title" "area area" "location type" "company company" "submit submit" "quiz quiz ";
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: end;
}

.search__select {
  width: 100%;
}

.search__select::after {
  content: "";
  position: absolute;
  top: 0;
  left: auto;
  right: 29px;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 8px 0;
  border-color: #fff transparent transparent transparent;
  margin: auto 0;
  transition: 0.2s;
  z-index: 1;
}

.section-faq {
  background-color: #10273a;
}

.section-faq__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  max-width: 1450px;
  margin-right: auto;
  margin-left: auto;
}

.section-faq__title h2 {
  color: #124ED6;
  font-family: "Baloo2", tahoma, sans-serif;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -1.5px;
  margin-bottom: 25px;
  text-align: center;
}

.section-faq__title p {
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}

.section-faq__title {
  width: 100%;
}

.section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section--procare-overview h2 {
  margin-bottom: 20px;
}

.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.select-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}

.select-area::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 136px;
  margin: auto 0;
  width: 2px;
  height: 36px;
  background-color: #ededed;
  z-index: 1;
}

.select-area input {
  width: 100%;
  border-radius: 5px 0 0 5px;
  border-right: none;
  margin: 0;
}

.select-area input::-moz-placeholder {
  color: #808080;
}

.select-area input::placeholder {
  color: #808080;
}

.select-area input:focus ~ .select ~ .fsb-select,
.select-area input:active ~ .select ~ .fsb-select {
  border-color: #124ED6;
}

.select-area .select ~ .fsb-select {
  min-width: 136px;
  background-color: #fff;
  border-radius: 0 5px 5px 0;
  border: 1px solid #ededed;
  border-left: none;
}

.select-area .select ~ .fsb-select .fsb-button {
  font-size: 16px !important;
  font-weight: 400;
  color: #808080 !important;
  padding-left: 24px !important;
  transition: 0s;
  text-transform: none;
}

.select-area .select ~ .fsb-select .fsb-button::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7.5px 0;
  border-color: #ededed transparent transparent transparent;
  transform: none;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.select-area .select ~ .fsb-select .fsb-list {
  background-color: #fff;
}

.select-area .select ~ .fsb-select .fsb-option {
  font-weight: 400;
  color: #808080;
}

.select-area:focus input,
.select-area:focus .select ~ .fsb-select,
.select-area:hover input,
.select-area:hover .select ~ .fsb-select,
.select-area:active input,
.select-area:active .select ~ .fsb-select {
  border-color: #124ED6;
}

.fsb-select,
.fsb-original-select {
  border-color: #ededed;
}

.fsb-button {
  font-size: 14px;
  line-height: 20px;
  color: #10273a !important;
  padding: 14px 40px 14px 20px !important;
}

.fsb-button::after {
  right: 20px;
  border-color: #10273a;
  border-width: 0 2px 2px 0;
}

.slider .swiper-slide h2,
.slider-thumbs .swiper-slide h2 {
  text-align: center;
}

.slider .swiper-slide img,
.slider-thumbs .swiper-slide img {
  margin-right: auto;
  margin-left: auto;
}

.slider-thumbs-nav .swiper-slide {
  opacity: 0.5;
  cursor: pointer;
}

.slider-thumbs-nav .swiper-slide-thumb-active {
  opacity: 1;
}

.textarea {
  padding: 12px 20px;
  border-color: #ededed;
  border-radius: 5px;
  resize: vertical;
}

.toggle {
  border: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  color: #fff;
  background: linear-gradient(270deg, rgb(102, 170, 175) 0%, rgb(31, 69, 96) 100%);
}

.toggle:focus,
.toggle:hover,
.toggle:active {
  background: linear-gradient(270deg, #124ED6 0%, #124ED6 100%);
}

.toggle.active svg {
  transform: rotate(180deg);
  transition-property: transform;
  transition-duration: 0.2s;
}

.toggle svg {
  top: 0;
  height: 100%;
  stroke: #fff;
  transform: rotate(0);
  transition-property: transform;
  transition-duration: 0.2s;
}

[data-collapse-target] span,
[data-collapse-target] svg {
  pointer-events: none;
}

[data-collapse-content] {
  display: none;
}

[data-collapse-content].active {
  display: block;
}

.video {
  position: relative;
  line-height: 0;
  height: 430px;
}

.video iframe {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
}

.video__play {
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  transform: translate(-50%, -50%);
  background: none;
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}

.video__play:focus,
.video__play:hover,
.video__play:active {
  color: #000;
}

.video__play svg {
  width: 78px;
  height: 80px;
}

.welcome {
  position: relative;
  padding: 0;
}

.welcome__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  animation: scaleOut;
  animation-duration: 1.5s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

.welcome__background img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.welcome__background::after {
  content: "";
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 540px;
  /*background: linear-gradient(to bottom, transparent, $color-black);*/
  opacity: 0.5;
  z-index: 1;
}

.welcome__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.welcome__mouse {
  position: absolute;
  display: block;
  top: auto;
  left: 0;
  right: 0;
  bottom: -25px;
  margin: 0 auto;
  width: 50px;
  height: 50px;
  border: none;
  background-color: #FD8624;
  padding: 0;
  z-index: 3;
  border-radius: 50%;
}

.welcome__mouse svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: #fff;
  color: #fff;
  margin: 0 auto 5px;
}

.welcome-slider {
  min-height: 470px;
  height: calc(70vh - 90px);
}

.welcome-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-slider .swiper-slide h1 {
  margin-bottom: 8px;
}

.welcome-slider .swiper-slide h1 span:nth-child(1) {
  display: block;
  font-size: 36px;
  line-height: 1;
}

.welcome-slider .swiper-slide h1 span:nth-child(2) {
  display: block;
  max-width: 520px;
  font-size: 27px;
  line-height: 36px;
  margin-bottom: 26px;
}

.welcome-slider .swiper-pagination {
  z-index: 3;
  justify-content: flex-end;
  right: 0;
  bottom: 50px;
  gap: 10px;
}

.welcome-slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.welcome-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.welcome-slider .swiper-pagination-bullet {
  border: 1px solid transparent;
  opacity: 1;
  transition-property: border-color;
  transition-duration: 0.2s;
}

.welcome-slider .swiper-pagination-bullet:focus,
.welcome-slider .swiper-pagination-bullet:hover,
.welcome-slider .swiper-pagination-bullet:active {
  border-color: #fff;
  transition-property: border-color;
  transition-duration: 0.2s;
}

.welcome-slider .swiper-pagination-bullet-active {
  opacity: 1;
  border: 1px solid #fff;
}

.page-loaded .welcome-slider h1 span:nth-child(1) {
  animation: fadeInUp;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-delay: 0.5s;
  margin-bottom: 20px;
}

.page-loaded .welcome-slider h1 span:nth-child(2) {
  animation: fadeIn;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-delay: 1s;
}

.page-loaded .welcome-slider .button {
  animation: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 2.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 75%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -25%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes scaleOut {
  from {
    transform: scale(1.3);
  }

  to {
    transform: scale(1);
  }
}

.scaleOut {
  animation-name: scaleOut;
}

@media (min-width: 332px) {
  .button {
    min-width: 260px;
  }
}

@media (min-width: 360px) {
  .providers__item {
    height: 40vw;
  }
}

@media (min-width: 404px) {
  .job-info .button {
    width: auto;
    min-width: 200px;
  }

  .job-info__form .button {
    width: 100%;
  }
}

@media (min-width: 430px) {
  .welcome-slider .swiper-slide h1 span:nth-child(1) {
    font-size: 50px;
  }

  .welcome-slider .swiper-slide h1 span:nth-child(2) {
    font-size: 30px;
  }
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }

  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }

  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 620px) {
  .providers__item {
    height: 25vw;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }

  .card-job__actions {
    text-align: left;
  }

  .card-job h3 {
    font-size: 20px;
    line-height: 1.2;
  }

  .container {
    padding-right: 72px;
    padding-left: 72px;
  }

  .container-md {
    padding-right: 72px;
    padding-left: 72px;
  }

  .explore {
    padding: 40px 0;
  }

  .explore .container {
    max-width: 910px;
    margin: 0 auto;
  }

  .explore__list {
    width: calc(100% + 64px);
    margin: 0 -32px;
    padding: 0 32px;
  }

  .explore__list .button {
    min-width: auto;
  }

  .header__menu {
    position: static;
    display: block;
    opacity: 1;
    margin-left: auto;
    width: auto;
    height: auto;
    visibility: visible;
    background-color: transparent;
    transform: translateX(0);
  }

  .header__menu .navbar__list {
    flex-direction: row;
  }

  .input {
    font-size: 14px;
  }

  .job-list__sort {
    margin-bottom: 23px;
  }

  .job-list__text:nth-child(2) {
    margin-right: 31px;
  }

  .job-list .pagination {
    margin-top: 34px;
  }

  .jobs {
    padding: 20px 0 40px;
  }

  .jobs__wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: calc(100% + 16px);
    margin-right: auto;
  }

  .jobs--selected .job-list {
    display: flex;
  }

  .procare-benefits ul {
    -moz-column-count: 2;
    column-count: 2;
    max-width: 788px;
    margin: 0 auto;
    padding-left: 0;
  }

  .procare-benefits li {
    margin: 0 18px;
  }

  .procare-explore__list {
    max-width: 860px;
    margin: 0 auto;
  }

  .procare-explore .card-job {
    display: inline-block;
    vertical-align: top;
    width: calc(33.3333333333% - 16px);
    margin: 0 8px 16px;
  }

  .procare-explore .button {
    margin-top: 24px;
  }

  .procare-reason .col-6:first-child {
    padding: 69px 36px;
    align-items: flex-end;
  }

  .procare-reason .col-6:first-child h2 {
    max-width: 333px;
  }

  .procare-reason .col-6:nth-child(2) {
    align-items: flex-start;
    background-color: #ededed;
    margin: 20px 0;
    padding: 20px 51px;
  }

  .procare-reason .col-6:nth-child(2) h2 {
    text-align: left;
  }

  .procare-reason .col-6:nth-child(2) p {
    max-width: 368px;
    text-align: left;
  }

  .procare-services {
    padding: 255px 0 40px;
  }

  .procare-services .col-6 {
    width: calc(50% - 30px);
  }

  .procare-services .col-6:first-child {
    margin-right: 30px;
    margin-bottom: 0;
  }

  .procare-services .col-6:nth-child(2) {
    margin-left: 30px;
  }

  .providers {
    padding: 40px 0;
  }

  .providers__item {
    height: 20vw;
  }

  .quiz-offer-wrap {
    padding-top: 100px;
  }

  .quiz-offer__image-wrap {
    max-width: 536px;
  }

  .quiz-offer__image-wrap:hover .quiz-offer__logo-spin {
    transform: scale(1.2) rotate(-165deg);
  }

  .quiz-offer__image {
    max-height: 100%;
    width: 94%;
  }

  .quiz-offer__text {
    margin-bottom: 0;
    padding-top: 60px;
    padding-right: 20px;
    padding-bottom: 60px;
    text-align: right;
  }

  .quiz-offer__text p {
    margin-bottom: 50px;
  }

  .quiz-offer__text .button {
    min-width: 185px;
  }

  .quiz__buttons {
    justify-content: flex-start;
  }

  .quiz__question-text {
    padding-right: 20px;
  }

  .quiz__question-form {
    padding-top: 0;
    padding-left: 20px;
  }

  .quiz__question-form:before {
    width: 2px;
    height: 100%;
    left: -8px;
  }

  .quiz__buttons {
    justify-content: flex-start;
  }

  .quiz__question-text {
    padding-right: 20px;
  }

  .quiz__question-form {
    padding-top: 0;
    padding-left: 20px;
  }

  .quiz__question-form:before {
    width: 2px;
    height: 100%;
    left: -8px;
  }

  .role {
    padding: 40px 0 80px;
  }

  .role {
    text-align: left;
  }

  .role__wrap {
    flex-direction: row;
    margin: 0 auto;
  }

  .role__image {
    width: 50%;
    margin-bottom: 0;
  }

  .role__info {
    width: 50%;
    padding-left: 24px;
  }

  .role__buttons {
    display: block;
  }

  .role .button {
    min-width: 185px;
    margin: 0 16px 16px 0;
  }

  .role .button:last-child {
    margin: 0 0 16px;
  }

  .search__form {
    opacity: 1;
    display: grid;
    z-index: 1;
    grid-template-columns: 2fr 3fr auto;
  }

  .search.advanced .search__form {
    grid-template-areas: "title title area area" "location type company company" "quiz quiz submit submit";
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .search.advanced .search__job-title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }

  .search.advanced .search__area {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
  }

  .search.advanced .search__submit {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
  }

  .search.advanced .search__location {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }

  .search.advanced .search__job-type {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }

  .search.advanced .search__company {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
  }

  .search.advanced .search__quiz {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }

  .search__select {
    display: none;
  }

  .welcome__background::after {
    height: 388px;
  }
}

@media (min-width: 960px) {
  .role__image {
    width: 358px;
  }

  .role__info {
    width: calc(100% - 358px);
    padding-left: 44px;
  }
}

@media (min-width: 1024px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1025px) {
  html {
    font-size: 16px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 16px;
    height: 16px;
  }

  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: 0.6;
  }

  .h1 {
    font-size: 120px;
    line-height: 120px;
  }

  .h2 {
    font-size: 40px;
    line-height: 64px;
    letter-spacing: -2px;
    margin-bottom: 30px;
  }

  .h3 {
    font-size: 30px;
    line-height: 44px;
  }

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

  .h5 {
    font-size: 12px;
  }

  .h6 {
    font-size: 10px;
  }

  p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
  }

  .button {
    font-size: 16px;
  }

  .card-job__item {
    margin: 0 28px 11px 0;
  }

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

  .card-job__info a:hover,
  .card-job__info span:hover {
    color: #124ED6;
  }

  .card-job .button {
    min-width: 260px;
  }

  .card-care__background {
    height: auto;
  }

  .card-care__text h3 {
    text-align: left;
  }

  .card-care__text {
    padding: 36px 16px 30px 16px;
  }

  .card-care__text p {
    margin-bottom: 30px;
  }

  .card-care__button {
    min-width: auto;
  }

  .card-care__button-wrap {
    flex-direction: row;
    gap: 16px;
  }

  .card-care-list {
    row-gap: 16px;
  }

  .caring .button {
    min-width: 500px;
  }

  .explore {
    padding: 80px 0 60px;
  }

  .explore .container {
    max-width: 1800px;
  }

  .explore h2 {
    margin-bottom: 50px;
  }

  .explore__actions {
    margin-top: 64px;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer {
    padding: 62px 0;
  }

  .footer__logo {
    margin-bottom: 0;
  }

  .footer__links a {
    text-align: left;
    margin-left: 30px;
    font-size: 16px;
  }

  .footer__links a {
    margin-left: 48px;
  }

  .footer__links a:not(:last-child) {
    margin-bottom: 0;
  }

  .footer__links {
    flex-direction: row;
  }

  .header {
    padding: 20px 0;
  }

  .header__menu-toggle {
    display: none;
  }

  .job-info__image {
    height: 175px;
  }

  .job-info__image img {
    -o-object-position: center -50px;
    object-position: center -50px;
  }

  .job-info__wrap .card-job__info a:hover {
    color: #124ED6;
  }

  .job-info__inner {
    margin-bottom: 0;
    padding: 10px 16px 0 0;
  }

  .job-info__inner .card-job__list {
    margin-bottom: 0;
  }

  .job-info__callback button:hover {
    color: #124ED6;
  }

  .job-info__content {
    max-height: 809px;
    padding: 40px 36px 20px;
  }

  .job-info__footer {
    border-radius: 0 0 10px 10px;
    padding: 40px;
  }

  .job-info__footer h2 {
    font-size: 30px;
    line-height: 55px;
  }

  .job-info .button {
    min-width: 260px;
  }

  .job-info__form {
    padding-bottom: 42px;
  }

  .job-info__form:nth-child(2) {
    padding: 32px 0 42px;
  }

  .job-info__form:last-child {
    padding: 32px 0 0;
  }

  .job-info__form h2.h2 {
    font-size: 30px;
  }

  .job-info__form .button {
    width: auto;
    min-width: 260px;
  }

  .job-info__form-wrap {
    width: calc(100% + 20px);
    margin: 0 -10px 10px;
  }

  .job-info__form-wrap input {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }

  .job-list__sort {
    display: none;
  }

  .job-list .pagination {
    margin-top: 40px;
  }

  .jobs {
    padding: 40px 0 163px;
  }

  .jobs__wrap {
    max-width: 1800px;
    margin: 0 auto;
  }

  .label {
    font-size: 30px;
  }

  .logo {
    width: auto;
    height: 40px;
  }

  .menu-toggle-close {
    display: none !important;
  }

  .menu-toggle-open {
    display: none;
  }

  .navbar {
    position: static;
    width: auto;
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }

  .navbar__link {
    font-size: 16px;
    line-height: 25px;
    color: #10273a;
    border-bottom: none;
    padding: 0;
  }

  .navbar__list {
    flex-direction: row;
    gap: 60px;
  }

  .navbar__list li {
    width: auto;
    background-color: transparent;
    border-bottom: none;
  }

  .page-header {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .page-header h1 {
    font-size: 70px;
    line-height: 55px;
    letter-spacing: -3.5px;
  }

  .page-header p {
    font-size: 30px;
    line-height: 55px;
  }

  .page-header img {
    height: 84px;
  }

  .page-header.page-header-secondary {
    min-height: 660px;
  }

  .page-header.page-header-secondary {
    min-height: auto;
  }

  .page-header.page-header-secondary h1 {
    font-size: 120px;
    line-height: 1.1;
  }

  .page-header.page-header-secondary h2 {
    margin-bottom: 20px;
  }

  .page-header.page-header-secondary p {
    font-size: 16px;
  }

  .procare-about {
    padding: 80px 0;
  }

  .procare-benefits {
    padding: 35px 0 90px;
  }

  .procare-benefits h2 {
    margin-bottom: 26px;
  }

  .procare-benefits ul {
    -moz-column-count: 3;
    column-count: 3;
    max-width: 1600px;
  }

  .procare-benefits li {
    margin: 0 24px;
  }

  .procare-benefits li {
    margin: 0 80px;
  }

  .procare-explore {
    padding: 80px 0 54px;
  }

  .procare-explore h2 {
    margin-bottom: 67px;
  }

  .procare-explore__list {
    max-width: 1660px;
  }

  .procare-explore .button {
    min-width: 292px;
    margin-top: 44px;
  }

  .procare-reason .col-6:first-child h2 {
    max-width: 755px;
    line-height: 55px;
  }

  .procare-reason .col-6:nth-child(2) p {
    max-width: 759px;
  }

  .procare-services {
    background-color: transparent;
    padding: 352px 0 40px;
  }

  .procare-services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 384px);
    background-color: #10273a;
    z-index: 1;
  }

  .procare-services p {
    max-width: 1088px;
    margin-bottom: 80px;
  }

  .procare-services .row {
    max-width: 1500px;
  }

  .procare-services .col-6 {
    width: calc(50% - 60px);
  }

  .procare-services .col-6:first-child {
    margin-right: 60px;
  }

  .procare-services .col-6:nth-child(2) {
    margin-left: 60px;
  }

  .procare-services__caption {
    color: #808080;
  }

  .procare-services__image {
    height: 420px;
    margin-bottom: 40px;
  }

  .providers {
    padding: 65px 8px 90px;
  }

  .providers {
    padding: 65px 0 90px;
  }

  .providers .h2 {
    margin-bottom: 10px;
  }

  .providers p {
    margin-bottom: 72px;
  }

  .providers__list {
    width: calc(100% + 64px);
    margin: 0 -32px;
    padding: 0 32px;
  }

  .providers__item {
    height: 15vw;
    max-height: 260px;
    padding: 22px;
  }

  .quiz-offer__image {
    position: absolute;
    bottom: 0;
    left: -16px;
    height: auto;
    max-height: initial;
  }

  .quiz-offer__logo-spin {
    width: 100%;
    bottom: 50px;
    left: -42px;
  }

  .quiz-offer__text {
    padding-top: 130px;
    padding-right: 72px;
    padding-bottom: 120px;
  }

  .quiz-offer__text .button {
    min-width: 260px;
  }

  .quiz__intro {
    text-align: center;
  }

  .quiz__intro h2 {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0;
    margin: 20px;
  }

  .quiz__intro .button {
    margin-bottom: 80px;
  }

  .quiz__progress {
    padding-top: 0;
  }

  .quiz__question h3 {
    margin-bottom: 5px;
  }

  .quiz__question-text {
    padding-right: 40px;
  }

  .quiz__question-form {
    padding-left: 40px;
  }

  .quiz__intro {
    text-align: center;
  }

  .quiz__intro h2 {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0;
    margin: 20px;
  }

  .quiz__intro .button {
    margin-bottom: 80px;
  }

  .quiz__progress {
    padding-top: 0;
  }

  .quiz__question h3 {
    margin-bottom: 5px;
  }

  .quiz__question-text {
    padding-right: 40px;
  }

  .quiz__question-form {
    padding-left: 40px;
  }

  .radio-input ~ .radio-box::before {
    width: 24px;
    height: 24px;
  }

  .radio-input ~ .radio-box__label {
    font-size: 16px;
    line-height: 24px;
  }

  .radio-input:checked ~ .radio-box::after {
    width: 16px;
    height: 16px;
  }

  .role__image {
    width: 420px;
  }

  .role__info {
    width: calc(100% - 420px);
  }

  .role .button {
    min-width: 260px;
  }

  .search__form {
    grid-template-columns: 3fr 2fr auto;
  }

  .section-faq__wrap {
    flex-direction: row;
    gap: 32px;
  }

  .section-faq__title h2 {
    text-align: left;
  }

  .section-faq__title p {
    text-align: left;
  }

  .section-faq__title {
    width: 42%;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section--procare-overview h2 {
    margin-bottom: 27px;
  }

  .fsb-button {
    font-size: 16px;
  }

  .video {
    height: 544px;
  }

  .video__play svg {
    width: 98px;
    height: 100px;
  }

  .welcome {
    padding: 0;
  }

  .welcome__background::after {
    height: 540px;
  }

  .welcome__mouse {
    display: block;
    bottom: -30px;
    width: 60px;
    height: 60px;
  }

  .welcome__mouse svg {
    width: 28px;
    height: 28px;
    margin-bottom: 5px;
  }

  .welcome-slider .swiper-slide h1 span:nth-child(1) {
    font-size: 65px;
  }

  .welcome-slider .swiper-slide h1 span:nth-child(2) {
    max-width: 980px;
    font-size: 40px;
    line-height: 48px;
    margin: 0 0 25px;
  }
}

@media (min-width: 1366px) {
  .card-job__content {
    padding: 40px;
  }

  .card-job__logo {
    margin-bottom: 40px;
  }

  .card-job h3 {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .card-job__list {
    margin-bottom: 24px;
  }

  .job-info__wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 40px 30px 40px;
  }

  .job-info__callback {
    text-align: right;
    margin-top: 20px;
  }

  .procare-reason .col-6:first-child {
    padding: 167px 80px 164px;
  }

  .procare-reason .col-6:nth-child(2) {
    margin: 52px 0;
    padding: 92px 61px 94px;
  }

  .quiz-offer__logo-spin {
    height: 100%;
    top: -50px;
  }

  .quiz__result-actions {
    justify-content: flex-end;
  }

  .quiz__question-form:before {
    left: 0;
  }

  .quiz__result-actions {
    justify-content: flex-end;
  }

  .quiz__question-form:before {
    left: 0;
  }

  .role__image {
    width: 53%;
  }

  .role__info {
    width: calc(100% - 500px);
    padding-left: 120px;
  }

  .search.advanced .search__form {
    grid-template-areas: "title title area area submit" "location type company quiz quiz";
    grid-template-columns: [title] calc(25% - 8px) [title] calc(25% - 8px) [area] 1fr [area] 1fr [submit] auto;
    gap: 40px 16px;
  }

  .search.advanced .search__job-title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }

  .search.advanced .search__area {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
    -ms-grid-column-span: 3;
  }

  .search.advanced .search__submit {
    -ms-grid-row: 1;
    -ms-grid-column: 9;
    -ms-grid-column-span: 1;
  }

  .search.advanced .search__location {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .search.advanced .search__job-type {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }

  .search.advanced .search__company {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
    -ms-grid-column-span: 1;
  }

  .search.advanced .search__quiz {
    -ms-grid-row: 3;
    -ms-grid-column: 7;
    -ms-grid-column-span: 3;
  }

  .section-faq__wrap {
    gap: 88px;
  }

  .section-faq__title h2 {
    font-size: 40px;
    line-height: 55px;
    letter-spacing: -2px;
    margin-bottom: 12px;
  }

  .section-faq__title p {
    font-size: 16px;
    line-height: 24px;
  }

  .section-faq__title {
    max-width: 443px;
  }
}

@media (min-width: 1440px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1500px) {
  .quiz-offer__image-wrap {
    max-width: 580px;
  }
}

@media (min-width: 1600px) {
  .procare-benefits li {
    margin: 0 136px;
  }
}

@media (max-width: 767px) {
  .procare-explore .card-job:nth-child(n+2) {
    display: none;
  }

  .procare-reason .col-6 {
    width: 100%;
  }

  .procare-services .col-6 {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}