@charset "UTF-8";
:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75 ;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-zoomInUp {
  animation: 0.2s ease-out 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  animation: 0.2s ease-out both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-throwOutUp {
  animation: 0.175s ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: 0.175s ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, 150px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: 0.2s ease both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: 0.2s ease both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: 0.5s ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: 0.5s ease both f-fadeSlowOut;
  z-index: 1;
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  animation: 0.2s ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  animation: 0.2s ease-out both f-fadeFastOut;
  z-index: 2;
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: 0.2s ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: 0.1s linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65 ;
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg);
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

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

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content,
.is-zooming-out .fancybox__slide:not(.is-selected) .fancybox__content {
  visibility: hidden;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  filter: blur(0px);
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  animation: 0.25s ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: 0.35s ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  animation: 0.15s ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: 0.35s ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.fancybox__container:not(.is-compact) .has-iframe .fancybox__content,
.fancybox__container:not(.is-compact) .has-map .fancybox__content,
.fancybox__container:not(.is-compact) .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0 ;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1 ;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 20px;
  --f-thumb-clip-width: 46px ;
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.f-thumbs__track {
  display: flex;
  will-change: transform;
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  min-width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: -moz-max-content;
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--left, 0) * 1px);
  width: calc(100% - var(--width, 0) * 1px);
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  --clip-path: inset(0 calc((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0))) round var(--f-thumb-border-radius, 0));
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern .f-thumbs__slide:focus-within:not(.is-selected) {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.is-modern .f-thumbs__slide > * {
  clip-path: var(--clip-path);
}

.is-modern.in-touch .f-thumbs__slide {
  filter: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: all 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide > * {
  transition: all 0.33s ease;
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
  object-fit: cover;
}

.f-thumbs.is-horizontal .f-thumbs__track {
  margin: 0 auto;
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  margin: auto 0;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1 ;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 20px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1 ;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px ;
}

.fancybox__thumbs.is-hidden {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}

:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgb(0 0 0 / 10%);
  --f-spinner-color-2: rgb(17 24 28 / 80%);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
  margin: auto;
  padding: 0;
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  fill: none;
  stroke-width: var(--f-spinner-stroke);
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-panzoom {
  position: relative;
  transform: translate3d(0, 0, 0);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.f-panzoom.is-draggable {
  cursor: move;
  cursor: grab;
}

.f-panzoom.can-zoom_in {
  cursor: zoom-in;
}

.f-panzoom.can-zoom_out {
  cursor: zoom-out;
}

.f-panzoom.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.f-panzoom.in-fullscreen {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  aspect-ratio: unset !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  max-height: none !important;
  margin: 0 !important;
}

.f-panzoom__content {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  transform-origin: center center;
  transform: translate3d(0, 0, 0) scale(1) rotate(0) skew(0);
  display: block;
  max-width: 100%;
  min-height: 0;
  max-height: 100%;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: none;
}

.is-loading .f-panzoom__content {
  display: none;
}

.is-scaling .f-panzoom__content {
  will-change: transform, width, height;
  backface-visibility: hidden;
  filter: blur(0);
}

picture.f-panzoom__content > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.f-panzoom__content:not(:last-child) {
  margin-bottom: 0;
}

.f-panzoom__viewport {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 1px;
  margin: auto;
}

.f-panzoom__viewport:not(:last-child) {
  margin-bottom: 0;
}

.f-panzoom__caption:not(:first-child) {
  margin-bottom: auto;
}

html.with-panzoom-in-fullscreen {
  overflow: hidden;
}

:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

.f-button {
  pointer-events: all;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: content-box;
  width: var(--f-button-width);
  height: var(--f-button-height);
  margin: 0;
  padding: 0;
  color: var(--f-button-color);
  background: var(--f-button-bg);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  box-shadow: var(--f-button-shadow);
  transition: var(--f-button-transition);
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button svg {
  pointer-events: none;
  transform: var(--f-button-transform);
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  filter: var(--f-button-svg-filter);
  fill: var(--f-button-svg-fill);
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: var(--f-button-svg-stroke-width);
  transition: opacity 0.15s ease;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-panzoom__toolbar {
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 4px;
  padding: 0;
  opacity: 1;
  transition: opacity 0.15s ease;
}

.is-idle .panzoom__toolbar {
  opacity: 0;
}

[data-panzoom-action=toggleFS] g:first-child {
  display: flex;
}

[data-panzoom-action=toggleFS] g:last-child {
  display: none;
}

.in-fullscreen [data-panzoom-action=toggleFS] g:first-child {
  display: none;
}

.in-fullscreen [data-panzoom-action=toggleFS] g:last-child {
  display: flex;
}

/*!
  Theme: GitHub
  Description: Light theme as seen on github.com
  Author: github.com
  Maintainer: @Hirse
  Updated: 2021-05-15

  Outdated base version: https://github.com/primer/github-syntax-light
  Current colors taken from GitHub's CSS
*/
pre code.hljs {
  overflow-x: auto;
  display: block;
  padding: 1em;
}

code.hljs {
  padding: 3px 5px;
}

.hljs {
  color: #24292e;
  background: #fff;
}

.hljs-doctag,
.hljs-keyword,
.hljs-meta .hljs-keyword,
.hljs-template-tag,
.hljs-template-variable,
.hljs-type,
.hljs-variable.language_ {
  color: #d73a49;
}

.hljs-title,
.hljs-title.class_,
.hljs-title.class_.inherited__,
.hljs-title.function_ {
  color: #6f42c1;
}

.hljs-attr,
.hljs-attribute,
.hljs-literal,
.hljs-meta,
.hljs-number,
.hljs-operator,
.hljs-selector-attr,
.hljs-selector-class,
.hljs-selector-id,
.hljs-variable {
  color: #005cc5;
}

.hljs-meta .hljs-string,
.hljs-regexp,
.hljs-string {
  color: #032f62;
}

.hljs-built_in,
.hljs-symbol {
  color: #e36209;
}

.hljs-code,
.hljs-comment,
.hljs-formula {
  color: #6a737d;
}

.hljs-name,
.hljs-quote,
.hljs-selector-pseudo,
.hljs-selector-tag {
  color: #22863a;
}

.hljs-subst {
  color: #24292e;
}

.hljs-section {
  font-weight: 700;
  color: #005cc5;
}

.hljs-bullet {
  color: #735c0f;
}

.hljs-emphasis {
  font-style: italic;
  color: #24292e;
}

.hljs-strong {
  font-weight: 700;
  color: #24292e;
}

.hljs-addition {
  color: #22863a;
  background-color: #f0fff4;
}

.hljs-deletion {
  color: #b31d28;
  background-color: #ffeef0;
}

.nice-select {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  float: left;
  clear: both;
  display: block;
  box-sizing: border-box;
  width: auto;
  height: 38px;
  padding-right: 30px;
  padding-left: 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  line-height: 36px;
  text-align: left !important;
  white-space: nowrap;
  background-color: #fff;
  border: solid 1px #e8e8e8;
  border-radius: 5px;
  outline: none;
  transition: all 0.2s ease-in-out;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999;
}

.nice-select::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  display: block;
  width: 5px;
  height: 5px;
  margin-top: -4px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transition: all 0.15s ease-in-out;
}

.nice-select.open::after {
  transform: rotate(-135deg);
}

.nice-select .nice-select-dropdown {
  pointer-events: none;
  position: absolute;
  z-index: 9;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(19px);
  margin-top: 4px;
  opacity: 0;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
}

.nice-select .option {
  cursor: pointer;
  padding-right: 29px;
  padding-left: 18px;
  font-weight: 400;
  line-height: 40px;
  text-align: left;
  list-style: none;
  outline: none;
  transition: all 0.2s;
}

.nice-select.open .nice-select-dropdown {
  pointer-events: auto;
  transform: scale(1) translateY(0);
  opacity: 1;
}

.nice-select.small .option {
  min-height: 34px;
  line-height: 34px;
}

.nice-select.disabled {
  pointer-events: none;
  color: #999;
  border-color: #ededed;
}

.nice-select.disabled::after {
  border-color: #ccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .nice-select-dropdown {
  right: 0 !important;
  left: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .nice-select-dropdown {
  right: 0;
  left: auto;
}

.nice-select.small {
  height: 36px;
  font-size: 12px;
  line-height: 34px;
}

.nice-select.small::after {
  width: 4px;
  height: 4px;
}

.nice-select .list {
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  max-height: 210px;
  padding: 0;
  border-radius: 5px;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: rgba(0, 0, 0, 0) !important;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  cursor: default;
  color: #999;
  background-color: rgba(0, 0, 0, 0);
}

.nice-select .optgroup {
  font-weight: bold;
}

.no-csspointerevents .nice-select .nice-select-dropdown {
  display: none;
}

.no-csspointerevents .nice-select.open .nice-select-dropdown {
  display: block;
}

.nice-select .list::-webkit-scrollbar {
  width: 0;
}

.nice-select .has-multiple {
  height: auto;
  min-height: 36px;
  padding: 7px 12px;
  line-height: 22px;
  white-space: inherit;
}

.nice-select .has-multiple span.current {
  display: inline-block;
  margin-right: 3px;
  margin-bottom: 3px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 24px;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.nice-select .has-multiple .multiple-options {
  display: block;
  padding: 0;
  line-height: 24px;
}

.nice-select .nice-select-search-box {
  pointer-events: none;
  box-sizing: border-box;
  width: 100%;
  padding: 5px;
  border-radius: 5px 5px 0 0;
}

.nice-select .nice-select-search {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  min-height: 36px;
  margin: 0 10px 0 0;
  padding: 7px 12px;
  font-size: 14px;
  line-height: 22px;
  color: #444;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  outline: 0 !important;
}

:root {
  --black: #000000;
  --primary-font: Helvetica, Arial, sans-serif;
  --secondary-font: Verdana;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

*::before,
*::after {
  display: block;
}

img,
picture,
video,
iframe,
figure {
  max-width: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  background-color: transparent;
}

p a,
label a {
  display: inline;
}

li {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em {
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}

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

::-moz-selection {
  background-color: var(--black, black);
  color: var(--white, white);
  text-shadow: none;
}

::selection {
  background-color: var(--black, black);
  color: var(--white, white);
  text-shadow: none;
}

form,
input,
textarea,
select,
button,
label {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  background-color: transparent;
  color: inherit;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

table,
tr,
td {
  border-collapse: collapse;
  border-spacing: 0;
}

svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
  overflow: visible;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

[hidden] {
  display: none !important;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  margin: 0;
}

main {
  display: block;
  overflow-x: hidden;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 50%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.8em;
}

img {
  border-style: none;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  font-size: 100%;
  font-family: var(--primary-font);
  color: var(--black);
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input {
  overflow: visible;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -moz-appearance: button;
  appearance: button;
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

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

/* stylelint-disable scss/no-global-function-names */
/* We declare colors in a map as key: value
with the color name as the key and the hex
as the value

And we are goint to use it in _utils.scss */
/* Project colors */
/* Boilerplate Colors */
/* Gradients */
/* Fonts */
/* Custom Fonts */
*,
*::before,
*::after {
  font-family: "DM Sans", sans-serif;
}

/*
  This mixin will build the prefix values for the property and value passed in.
  It will also add the property and value without the prefix.
  Example:
    @include build-prefix-values('transition', 'all 1s linear');
*/
/* 
  Example usage:
    .my-class {
      // Default usage
      @include transition();
      // Custom usage
      @include transition('all', 1s, linear);
    }
*/
:root {
  --wrapper-margin: 20px;
  --wrapper-margin-forms: 16.5px;
  --wrapper-max-width: calc((100% - (var(--wrapper-margin) * 2)));
  --wrapper-max-width-forms: calc((100% - (var(--wrapper-margin-forms) * 2)));
}
@media screen and (min-width: 768px) {
  :root {
    --wrapper-margin: 32px;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --wrapper-max-width-forms: 844px;
  }
}
@media screen and (min-width: 1300px) {
  :root {
    --wrapper-max-width: 1240px;
    --wrapper-margin: calc((100vw - var(--wrapper-max-width)) / 2);
  }
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: var(--wrapper-max-width);
  margin: 0 auto;
}

.wrapper-forms {
  position: relative;
  width: 100%;
  max-width: var(--wrapper-max-width-forms);
  margin: 0 auto;
}

html.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  color: #000;
  letter-spacing: normal;
}

h1 {
  font-size: 30px;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-size: 24px;
  line-height: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 18px;
  }
}

label {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

label a,
p a {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #4b6dfb;
  text-decoration: underline;
}

small {
  font-size: 10px;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  small {
    font-size: 12px;
  }
}

ul {
  margin-left: 16px;
}

ul li {
  list-style-type: none;
}

ul li::marker {
  display: none;
}

main ul li {
  list-style-type: disc;
}
main ul li::marker {
  color: #000;
}

sup.symbol-sup {
  top: initial;
  font-size: inherit;
  line-height: 0;
}

swiper-container {
  /* Change the default color of the all swiper elements */
  --swiper-theme-color: #000;
  z-index: 0;
  /* Width and height of slider */
  width: 100%;
  height: auto;
}

.myswiper-custum-text {
  padding: 3rem;
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
}

[data-fullpage-loader] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

[data-fullpage-loader]::before {
  content: "";
  width: 50px;
  height: 50px;
  border: 5px solid #3498db;
  border-top: 5px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.skeleton {
  padding: 20px;
  width: max(20%, 270px);
}

.skeleton-element {
  background-color: #e0e0e0;
  margin-bottom: 10px;
}

.skeleton-header {
  width: 100%;
  min-height: 24px;
}

.skeleton-paragraph {
  width: 100%;
  height: 16px;
}

.skeleton.agency {
  border: 1px solid #e0e0e0;
  padding: 0 12px;
  padding-block-start: 150px;
  border-radius: 8px;
  position: relative;
  min-height: 242px;
}
.skeleton.agency .skeleton-element {
  width: 100%;
}
.skeleton.agency .skeleton-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 140px;
  border-radius: 8px 8px 0 0;
}
.skeleton.agency .skeleton-title {
  width: 40%;
  height: 24px;
  margin-inline-start: 16px;
}
.skeleton.agency .skeleton-pill {
  width: 70%;
  height: 16px;
  border-radius: 50vw;
}
.skeleton.agency .skeleton-paragraph {
  height: 24px;
}

.skeleton.blog {
  min-height: 191px;
  position: relative;
  padding-block-start: 132px;
  padding-inline: 6px;
  overflow-x: hidden;
  border-radius: 5px;
  padding-block-end: 18px;
}
.skeleton.blog .skeleton-header {
  height: 125px;
  position: absolute;
  top: 0;
  left: 0;
}
.skeleton.blog .skeleton-title {
  margin: 0;
  width: 115px;
  height: 24px;
  margin-bottom: 10px;
}
.skeleton.blog .skeleton-paragraph {
  height: 69px;
  margin: 0;
}

.skeleton-element::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.skeleton-container {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Using @each we create a CSS class for
color and background using the name in the class
and the value as the property value that we need

Ex: .color--white { color: #FFFFFFF; } and
.bg-color--white { background-color: #FFFFFF; } */
.color--main-primary {
  color: #0e1d3a;
}

.bg-color--main-primary {
  background-color: #0e1d3a;
}

.color--main-primary-variant-1 {
  color: #3e4a61;
}

.bg-color--main-primary-variant-1 {
  background-color: #3e4a61;
}

.color--main-primary-variant-2 {
  color: #6e7789;
}

.bg-color--main-primary-variant-2 {
  background-color: #6e7789;
}

.color--main-primary-variant-3 {
  color: #9fa5b0;
}

.bg-color--main-primary-variant-3 {
  background-color: #9fa5b0;
}

.color--main-primary-variant-4 {
  color: #cfd2d8;
}

.bg-color--main-primary-variant-4 {
  background-color: #cfd2d8;
}

.color--main-primary-opacity-50 {
  color: rgba(14, 29, 58, 0.5);
}

.bg-color--main-primary-opacity-50 {
  background-color: rgba(14, 29, 58, 0.5);
}

.color--main-primary-opacity-35 {
  color: rgba(14, 29, 58, 0.35);
}

.bg-color--main-primary-opacity-35 {
  background-color: rgba(14, 29, 58, 0.35);
}

.color--main-secondary {
  color: #4b6dfb;
}

.bg-color--main-secondary {
  background-color: #4b6dfb;
}

.color--main-secondary-variant-3 {
  color: #b7c5fd;
}

.bg-color--main-secondary-variant-3 {
  background-color: #b7c5fd;
}

.color--main-secondary-variant-4 {
  color: #dbe2fe;
}

.bg-color--main-secondary-variant-4 {
  background-color: #dbe2fe;
}

.color--main-tertiary {
  color: #fac016;
}

.bg-color--main-tertiary {
  background-color: #fac016;
}

.color--main-tertiary-variant-1 {
  color: #fcd973;
}

.bg-color--main-tertiary-variant-1 {
  background-color: #fcd973;
}

.color--main-tertiary-variant-2 {
  color: #fef2d0;
}

.bg-color--main-tertiary-variant-2 {
  background-color: #fef2d0;
}

.color--main-tertiary-opacity-80 {
  color: rgba(250, 192, 22, 0.8);
}

.bg-color--main-tertiary-opacity-80 {
  background-color: rgba(250, 192, 22, 0.8);
}

.color--main-tertiary-opacity-60 {
  color: rgba(250, 192, 22, 0.6);
}

.bg-color--main-tertiary-opacity-60 {
  background-color: rgba(250, 192, 22, 0.6);
}

.color--main-tertiary-opacity-50 {
  color: rgba(250, 192, 22, 0.5);
}

.bg-color--main-tertiary-opacity-50 {
  background-color: rgba(250, 192, 22, 0.5);
}

.color--main-tertiary-opacity-10 {
  color: rgba(250, 192, 22, 0.1);
}

.bg-color--main-tertiary-opacity-10 {
  background-color: rgba(250, 192, 22, 0.1);
}

.color--main-quaternary {
  color: #eef2f3;
}

.bg-color--main-quaternary {
  background-color: #eef2f3;
}

.color--main-quaternary-variant-1 {
  color: #f5f7f8;
}

.bg-color--main-quaternary-variant-1 {
  background-color: #f5f7f8;
}

.color--main-quaternary-variant-2 {
  color: #fcfcfd;
}

.bg-color--main-quaternary-variant-2 {
  background-color: #fcfcfd;
}

.color--variants-primary {
  color: #0d6efd;
}

.bg-color--variants-primary {
  background-color: #0d6efd;
}

.color--variants-danger {
  color: #ff3246;
}

.bg-color--variants-danger {
  background-color: #ff3246;
}

.color--variants-success {
  color: #198754;
}

.bg-color--variants-success {
  background-color: #198754;
}

.color--secondary {
  color: #001746;
}

.bg-color--secondary {
  background-color: #001746;
}

.color--neutral-5 {
  color: #d9d9d9;
}

.bg-color--neutral-5 {
  background-color: #d9d9d9;
}

.color--police-blue {
  color: #3e4a61;
}

.bg-color--police-blue {
  background-color: #3e4a61;
}

.color--black {
  color: #000;
}

.bg-color--black {
  background-color: #000;
}

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

.bg-color--white {
  background-color: #fff;
}

.color--malachite {
  color: #00d472;
}

.bg-color--malachite {
  background-color: #00d472;
}

.color--sunglow {
  color: #fcc43e;
}

.bg-color--sunglow {
  background-color: #fcc43e;
}

.color--cultured {
  color: #f3f5f7;
}

.bg-color--cultured {
  background-color: #f3f5f7;
}

.color--anti-flash-white {
  color: #eef2f3;
}

.bg-color--anti-flash-white {
  background-color: #eef2f3;
}

.color--character-disabled-placeholder-25 {
  color: rgba(0, 0, 0, 0.25);
}

.bg-color--character-disabled-placeholder-25 {
  background-color: rgba(0, 0, 0, 0.25);
}

.color--character-title-85 {
  color: rgba(0, 0, 0, 0.85);
}

.bg-color--character-title-85 {
  background-color: rgba(0, 0, 0, 0.85);
}

.color--dark-blue-gray {
  color: #666ca3;
}

.bg-color--dark-blue-gray {
  background-color: #666ca3;
}

.color--dark-blue {
  color: #13183f;
}

.bg-color--dark-blue {
  background-color: #13183f;
}

.color--waterloo {
  color: #83869a;
}

.bg-color--waterloo {
  background-color: #83869a;
}

.color--violet-red {
  color: #f74780;
}

.bg-color--violet-red {
  background-color: #f74780;
}

.color--pink {
  color: #ffa7c3;
}

.bg-color--pink {
  background-color: #ffa7c3;
}

.color--red {
  color: #f00;
}

.bg-color--red {
  background-color: #f00;
}

.font--roboto {
  font-family: "Roboto", sans-serif;
}

.font--dm-sans {
  font-family: "DM Sans", sans-serif;
}

.font--inter {
  font-family: "Inter", sans-serif;
}

.scroll-y {
  overflow-y: auto;
  display: flex;
}

[aria-hidden=true] {
  display: none;
}

[aria-hidden=false] {
  display: block;
}

.row {
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}

.row.reverse {
  flex-direction: row-reverse;
}

.row.natural-height {
  align-items: flex-start;
}

.row.flex-column {
  flex-direction: column;
}

.col {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

.col.reverse {
  flex-direction: column-reverse;
}

.first {
  order: -1;
}

.last {
  order: 1;
}

.align-start {
  align-self: flex-start;
}

.align-end {
  align-self: flex-end;
}

.align-center {
  align-self: center;
}

.align-baseline {
  align-self: baseline;
}

.align-stretch {
  align-self: stretch;
}

.col-xs {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-1 {
  box-sizing: border-box;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
  padding: 1rem;
}

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

.col-xs-2 {
  box-sizing: border-box;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
  padding: 1rem;
}

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

.col-xs-3 {
  box-sizing: border-box;
  flex-basis: 25%;
  max-width: 25%;
  padding: 1rem;
}

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

.col-xs-4 {
  box-sizing: border-box;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 1rem;
}

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

.col-xs-5 {
  box-sizing: border-box;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
  padding: 1rem;
}

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

.col-xs-6 {
  box-sizing: border-box;
  flex-basis: 50%;
  max-width: 50%;
  padding: 1rem;
}

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

.col-xs-7 {
  box-sizing: border-box;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
  padding: 1rem;
}

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

.col-xs-8 {
  box-sizing: border-box;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
  padding: 1rem;
}

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

.col-xs-9 {
  box-sizing: border-box;
  flex-basis: 75%;
  max-width: 75%;
  padding: 1rem;
}

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

.col-xs-10 {
  box-sizing: border-box;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
  padding: 1rem;
}

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

.col-xs-11 {
  box-sizing: border-box;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
  padding: 1rem;
}

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

.col-xs-12 {
  box-sizing: border-box;
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.row.start-xs {
  justify-content: flex-start;
}

.row.center-xs {
  justify-content: center;
}

.row.end-xs {
  justify-content: flex-end;
}

.row.top-xs {
  align-items: flex-start;
}

.row.middle-xs {
  align-items: center;
}

.row.bottom-xs {
  align-items: flex-end;
}

.row.around-xs {
  justify-content: space-around;
}

.row.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 41rem) {
  .col-sm {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .row.start-sm {
    justify-content: flex-start;
  }
  .row.center-sm {
    justify-content: center;
  }
  .row.end-sm {
    justify-content: flex-end;
  }
  .row.top-sm {
    align-items: flex-start;
  }
  .row.middle-sm {
    align-items: center;
  }
  .row.bottom-sm {
    align-items: flex-end;
  }
  .row.around-sm {
    justify-content: space-around;
  }
  .row.between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 65rem) {
  .col-md {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .row.start-md {
    justify-content: flex-start;
  }
  .row.center-md {
    justify-content: center;
  }
  .row.end-md {
    justify-content: flex-end;
  }
  .row.top-md {
    align-items: flex-start;
  }
  .row.middle-md {
    align-items: center;
  }
  .row.bottom-md {
    align-items: flex-end;
  }
  .row.around-md {
    justify-content: space-around;
  }
  .row.between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 91rem) {
  .col-lg {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .row.start-lg {
    justify-content: flex-start;
  }
  .row.center-lg {
    justify-content: center;
  }
  .row.end-lg {
    justify-content: flex-end;
  }
  .row.top-lg {
    align-items: flex-start;
  }
  .row.middle-lg {
    align-items: center;
  }
  .row.bottom-lg {
    align-items: flex-end;
  }
  .row.around-lg {
    justify-content: space-around;
  }
  .row.between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
@media only screen and (min-width: 121rem) {
  .col-xl {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
  .row.start-xl {
    justify-content: flex-start;
  }
  .row.center-xl {
    justify-content: center;
  }
  .row.end-xl {
    justify-content: flex-end;
  }
  .row.top-xl {
    align-items: flex-start;
  }
  .row.middle-xl {
    align-items: center;
  }
  .row.bottom-xl {
    align-items: flex-end;
  }
  .row.around-xl {
    justify-content: space-around;
  }
  .row.between-xl {
    justify-content: space-between;
  }
  .first-xl {
    order: -1;
  }
  .last-xl {
    order: 1;
  }
}
.col-gutter-lr {
  padding: 0 1rem;
}

.col-no-gutter {
  padding: 0;
}

.show {
  display: block !important;
}

.row.show {
  display: flex !important;
}

.hide {
  display: none !important;
}

.show-xs {
  display: block !important;
}

.row.show-xs {
  display: flex !important;
}

.hide-xs {
  display: none !important;
}

@media only screen and (max-width: 40rem) {
  .show-xs-only {
    display: block !important;
  }
  .row.show-xs-only {
    display: flex !important;
  }
  .hide-xs-only {
    display: none !important;
  }
}
@media only screen and (min-width: 41rem) {
  .show-sm {
    display: block !important;
  }
  .row.show-sm {
    display: flex !important;
  }
  .hide-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 41rem) and (max-width: 64rem) {
  .show-sm-only {
    display: block !important;
  }
  .row.show-sm-only {
    display: flex !important;
  }
  .hide-sm-only {
    display: none !important;
  }
}
@media only screen and (min-width: 65rem) {
  .show-md {
    display: block !important;
  }
  .row.show-md {
    display: flex !important;
  }
  .hide-md {
    display: none !important;
  }
}
@media only screen and (min-width: 65rem) and (max-width: 90rem) {
  .show-md-only {
    display: block !important;
  }
  .row.show-md-only {
    display: flex !important;
  }
  .hide-md-only {
    display: none !important;
  }
}
@media only screen and (min-width: 91rem) {
  .show-lg {
    display: block !important;
  }
  .row.show-lg {
    display: flex !important;
  }
  .hide-lg {
    display: none !important;
  }
}
@media only screen and (min-width: 91rem) and (max-width: 120rem) {
  .show-lg-only {
    display: block !important;
  }
  .row.show-lg-only {
    display: flex !important;
  }
  .hide-lg-only {
    display: none !important;
  }
}
@media only screen and (min-width: 121rem) {
  .show-xl {
    display: block !important;
  }
  .row.show-xl {
    display: flex !important;
  }
  .hide-xl {
    display: none !important;
  }
}
:root {
  --button-text-color: #fff;
  --button-background-color: #0e1d3a;
  --button-border-color: transparent;
  --button-hover-text-color: #fff;
  --button-hover-background-color: #3e4a61;
  --button-hover-border-color: transparent;
}

.button {
  transition: all, 0.3s, ease-in-out 1s ease-in-out;
  gap: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  align-self: stretch;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 12px 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  color: var(--button-text-color);
  text-decoration: none;
  background-color: var(--button-background-color);
  border: 1px solid var(--button-border-color);
  border-radius: 5px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .button > * {
    margin: calc(8px / 2);
  }
}
.button:hover {
  color: var(--button-hover-text-color);
  background-color: var(--button-hover-background-color);
  border-color: var(--button-hover-border-color);
}
.button:focus, .button:focus-within {
  color: var(--button-hover-text-color);
  background-color: var(--button-hover-background-color);
  border-color: var(--button-hover-border-color);
}
.button.disabled, .button:disabled {
  --button-hover-text-color: var(--button-text-color);
  --button-hover-background-color: var(--button-background-color);
  --button-hover-border-color: var(--button-border-color);
  cursor: not-allowed;
  opacity: 0.3;
}
.button--secondary {
  --button-background-color: #fff;
  --button-text-color: #0e1d3a;
  --button-border-color: #0e1d3a;
  --button-hover-background-color: #fff;
  --button-hover-text-color: #3e4a61;
  --button-hover-border-color: #3e4a61;
  padding: 8px;
  font-size: 12px;
  font-weight: 700;
}
.button--tertiary {
  --button-background-color: #fac016;
  --button-text-color: #0e1d3a;
  --button-hover-background-color: #fcd973;
  --button-hover-text-color: #0e1d3a;
  padding: 12px 16px;
}
.button--quaternary {
  --button-background-color: #fff;
  --button-text-color: #0e1d3a;
  --button-border-color: #fff;
  --button-hover-background-color: var(--button-background-color);
  --button-hover-text-color: var(--button-text-color);
  --button-hover-border-color: var(--button-border-color);
  padding: 12px 0;
}
.button--icon-left {
  flex-direction: row-reverse;
}
.button .button-icon {
  width: 16px;
  height: 16px;
}

.site__header {
  /* Styles for Header Main Container */
  position: sticky;
  z-index: 3;
  top: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #cfd2d8;
}
.site__header .header__inner {
  /* Styles for Header Content Container */
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .site__header .header__inner {
    position: relative;
    display: grid;
    grid-template-columns: 126px 8fr;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .site__header .header__inner {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    padding: 26px 48px;
  }
}
@media screen and (min-width: 1412px) {
  .site__header .header__inner {
    grid-template-columns: 179px 8fr;
    gap: 137px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1024px) {
  .site__header .header__inner-form {
    width: unset;
  }
}
.site__header .header__top {
  /* Styles for Header Top Mobile Content & Logo Container */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 20px;
  /* &::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 10px;

    background-color: purple;

    @media screen and (min-width: 1024px) {
      display: none;
    }
  } */
}
@media screen and (min-width: 1024px) {
  .site__header .header__top {
    display: inline-block;
    width: 90%;
    height: auto;
    padding: 0;
  }
}
.site__header .header__button {
  /* Styles for Header Buttons */
  width: 40px;
  height: 40px;
  color: #000;
}
.site__header .header__toggle {
  position: relative;
  /* &__desktop{
    @media screen and (min-width: 1024px) {
      display: flex!important;
    }
  } */
  display: flex;
  align-items: center;
  /* Styles for Header Mobile Toggle */
  width: 104px;
  height: 48px;
  padding: 0;
  line-height: 1;
}
.site__header .header__toggle--opened::before {
  top: 8px;
  transform: rotate(45deg);
}
.site__header .header__toggle--opened::after {
  transform: rotate(-45deg);
}
.site__header .header__toggle .person-light {
  width: 24px;
  height: 24px;
}
.site__header .header__toggle .menu-light {
  width: 24px;
  height: 24px;
}
.site__header .header__toggle.button--quaternary {
  width: 42px;
  height: 42px;
}
@media screen and (min-width: 1024px) {
  .site__header .header__toggle {
    display: flex;
    align-items: center;
  }
}
.site__header .header__logo .logo {
  /* Styles for link HTML Tag with Logo */
}
.site__header .header__logo .logo__image {
  width: 109px;
  height: 29px;
  /* Styles for Logo Image Container */
}
@media screen and (min-width: 360px) {
  .site__header .header__logo .logo__image {
    width: 154px;
    /* Styles for Logo Image */
    height: 41px;
  }
}
@media screen and (min-width: 1024px) {
  .site__header .header__logo .logo__image {
    width: 117px;
    max-width: 196px;
    height: 31px;
    max-height: 48px;
  }
}
@media screen and (min-width: 1412px) {
  .site__header .header__logo .logo__image {
    width: 179px;
    height: -moz-fit-content;
    height: fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}
.site__header .header__icon {
  /* Styles for Icons in Header */
  position: relative;
  display: inline-block;
}
.site__header .header__icon.icon__toggler {
  /* Styles for icon with this class */
  border-bottom-width: 0;
}
.site__header .header__icon.icon__arrow {
  width: 20px;
  height: 11px;
}
.site__header .header__icon.icon__arrow--down::before {
  top: 0;
  left: 6px;
  transform: rotate(140deg);
}
.site__header .header__icon.icon__arrow--down::after {
  top: 0;
  left: 12px;
  transform: rotate(-140deg);
}
.site__header .header__icon.icon__arrow--up::before {
  top: 0;
  left: 6px;
  transform: rotate(45deg);
}
.site__header .header__icon.icon__arrow--up::after {
  top: 0;
  left: 12px;
  transform: rotate(-45deg);
}
.site__header .header__buttons {
  display: flex;
  align-items: center;
}
.site__header .header__buttons .second__button {
  display: flex;
  max-width: 42px;
  height: auto;
  margin-left: 8px;
}
@media screen and (min-width: 1024px) {
  .site__header .header__buttons {
    display: none;
  }
}
.site__header .main-button {
  height: -moz-fit-content;
  height: fit-content;
  background-color: #0e1d3a;
  border: 1px solid #0e1d3a;
  border-radius: 5px;
}
.site__header .main-button button {
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 12px;
}
.site__header .main-button img {
  width: 24px;
  height: 24px;
}

:root {
  --height-submenu-animation: 200px;
}

.site__navigation {
  /* Styles for Main Nav Container */
  position: absolute;
  left: 0;
  overflow: hidden;
  width: 100vw;
  padding: 0;
  background-color: #fff;
}
.site__navigation--hidden {
  height: 0;
  background-color: #0e1d3a;
}
.site__navigation--hiding {
  padding-top: 61px;
  padding-bottom: 30px;
  animation: hide-navigation 0.35s;
}
.site__navigation--show {
  box-sizing: border-box;
  height: 100dvh;
  padding-top: 61px;
  padding-bottom: 30px;
  background-color: #0e1d3a;
  animation: show-navigation 0.35s;
}
@media screen and (max-height: 700px) and (max-width: 1023px) {
  .site__navigation--show {
    overflow-y: scroll;
  }
}
@media screen and (min-width: 1024px) {
  .site__navigation {
    position: relative;
    left: unset;
    overflow: unset;
    display: inline-block;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
    background-color: transparent;
  }
}

.main__navigation {
  /* Styles for List in Main Nav */
}

.desktop__submenu {
  position: absolute;
  top: 59px;
  right: 0;
  overflow: hidden;
  width: 153px;
  height: 0;
  padding-block: 0;
  background-color: #fff;
}
.desktop__submenu img {
  max-width: 12px;
}
.desktop__submenu .row {
  padding: 5px 12px;
}
.desktop__submenu .row a {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 22px; /* 157.143% */
}
.desktop__submenu .row:hover {
  background-color: #f5f5f5;
}
.desktop__submenu .row.row-last {
  border-top: 1px solid #000;
}
.desktop__submenu--show, .desktop__submenu--hiding {
  padding-block: 4px;
  border-radius: 2px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.desktop__submenu--show {
  height: 107px;
  animation: show-submenu-desktop 0.35s;
}
.desktop__submenu--show::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: transparent;
}
.desktop__submenu--hiding {
  animation: hide-submenu-desktop 0.35s;
}

.nav__menu {
  /* Styles for List in Main Nav */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 0;
}
.nav__menu__item {
  /* Styles for List Item in Main Nav */
  gap: 10px;
  display: flex;
  row-gap: 0;
  align-items: center;
  width: 100%;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .nav__menu__item > * {
    margin: calc(10px / 2);
  }
}
.nav__menu__item:first-child {
  border-top: none;
}
.nav__menu__item .menu-item__link {
  /* Styles for Links in Main List */
  width: 100%;
  margin-bottom: 10px;
  padding: 0;
  padding: 12px 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #fcfcfd;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .nav__menu__item .menu-item__link {
    display: block;
    height: -moz-fit-content;
    height: fit-content;
    margin: 0;
    margin-bottom: 0;
    font-size: 13px;
    color: #0e1d3a;
  }
}
@media screen and (min-width: 1200px) {
  .nav__menu__item .menu-item__link {
    width: -moz-max-content;
    width: max-content;
    font-size: 14px;
  }
}
.nav__menu__item .header__button {
  /* Styles for buttons */
}
.nav__menu__item .header__button img {
  width: 24px;
  height: 24px;
}
.nav__menu__item .header__button .header__icon {
  /* Styles for icons */
}
.nav__menu__item.has__subnav {
  /* Styles for Lists with Sub Menu */
  flex-wrap: wrap;
}
.nav__menu__item.has__subnav .menu-item__link {
  width: 100%;
  padding: 0;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .nav__menu__item.has__subnav .menu-item__link {
    width: calc(100% - 20px);
  }
}
.nav__menu__item.has__subnav .header__button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
}
.nav__menu__item .header__toggle-submenu {
  /* Styles for Sub Menu Toggler */
}
@media screen and (min-width: 1024px) {
  .nav__menu__item {
    gap: 0;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
    border: none;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .nav__menu__item > * {
      margin: calc(0 / 2);
    }
  }
}
@media screen and (min-width: 1024px) {
  .nav__menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .nav__menu {
    gap: 10px;
    justify-content: unset;
  }
}

.nav__subnav {
  /* Styles for List of Sub Menu */
  overflow: hidden;
  width: 100%;
  height: 0;
  color: #fff;
  background-color: #000;
}
.nav__subnav--show {
  height: -moz-fit-content;
  height: fit-content;
  border: 1px solid transparent;
  animation: show-submenu 0.35s;
}
.nav__subnav--hiding {
  background-color: #0e1d3a;
  border: 1px solid rgba(0, 0, 0, 0);
  animation: hide-submenu 0.35s;
}
@media screen and (min-width: 1024px) {
  .nav__subnav--horizontal {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .nav__subnav--vertical {
    display: flex;
    flex-direction: column;
  }
}
.nav__subnav .subnav__item {
  /* Styles for List Item of Sub Menu */
  list-style: none;
}
.nav__subnav .subnav__item:first-child {
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .nav__subnav .subnav__item:first-child {
    margin-top: 0;
  }
}
.nav__subnav .subnav__item:last-child {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .nav__subnav .subnav__item:last-child {
    margin-bottom: 0;
  }
  .nav__subnav .subnav__item:last-child .subnav-item__link {
    margin-right: 0;
  }
}
.nav__subnav .subnav__item .subnav-item__link {
  /* Styles for Links in Sub Menu */
  padding: 10px;
  padding-left: 20px;
}
@media screen and (min-width: 1024px) {
  .nav__subnav .subnav__item .subnav-item__link {
    width: 100%;
    margin-right: 10px;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .nav__subnav {
    position: absolute;
    z-index: 1;
    top: 70%;
    right: 0;
    width: -moz-max-content;
    width: max-content;
    border-radius: 6px;
  }
  .nav__subnav--show {
    height: -moz-fit-content;
    height: fit-content;
    padding: 0 10px;
    border-top: 1px solid #000;
  }
  .nav__subnav--show .subnav__item {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .nav__subnav--hiding {
    padding: 0 10px;
  }
  .nav__subnav--hiding .subnav__item {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.register-item .register.has_icon {
  --button-border-color: #fcfcfd;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 40px;
  padding: 0;
  padding: 12px 24px;
  background-color: #0e1d3a;
}
.register-item .register.has_icon::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("/assets/images/header/locallibrary.svg");
}
@media screen and (min-width: 1024px) {
  .register-item .register.has_icon::after {
    background-image: url("/assets/images/header/library-dark.svg");
  }
}
@media screen and (min-width: 1024px) {
  .register-item .register.has_icon {
    --button-border-color: #0e1d3a;
    display: flex;
    height: -moz-fit-content;
    height: fit-content;
    margin: 0;
    padding: 0;
    padding: 11px;
    background-color: unset;
  }
}
@media screen and (min-width: 1220px) {
  .register-item .register.has_icon {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1439px) {
  .register-item .register.has_icon {
    padding: 12px 24px;
    font-size: 16px;
  }
}

.nav__menu__item.register-item {
  display: block;
}
@media screen and (min-width: 1024px) {
  .nav__menu__item.register-item {
    display: flex;
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: 0;
  }
  .nav__menu__item.register-item img {
    display: none;
  }
}
@media screen and (min-width: 1300px) {
  .nav__menu__item.register-item {
    margin-inline: 22px;
  }
}

.hidden-item {
  display: none;
}
@media screen and (min-width: 1024px) {
  .hidden-item {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .nav__menu__item.hidden-item a {
    padding: 16px 8px;
  }
}

.menu-item__link.second-block {
  margin-bottom: 0;
  padding: 16px 8px;
}

.has_icon {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  letter-spacing: unset;
}
.has_icon::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("/assets/images/header/useradd.svg");
  background-size: cover;
}

.submenu-divider {
  width: 100%;
  max-width: 310px;
  height: 1px;
  margin-bottom: 30px;
  background-color: #fcfcfd;
}
@media screen and (min-width: 1024px) {
  .submenu-divider {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .mobile__item {
    display: none;
  }
}

.desktop__item {
  display: none;
}
@media screen and (min-width: 1024px) {
  .desktop__item {
    display: block;
    order: 1;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.desktop__item.register-item {
  display: none;
}
@media screen and (min-width: 1024px) {
  .desktop__item.register-item {
    display: block;
    width: 160px;
    height: 48px;
    padding: 0;
  }
  .desktop__item.register-item a {
    justify-content: center;
    margin: 0;
    margin-top: 10px;
    padding: 0;
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .desktop__item.register-item {
    width: 210px;
  }
}
@media screen and (min-width: 1440px) {
  .desktop__item.register-item {
    margin-right: 6px;
    margin-left: 14px;
  }
}

@media screen and (min-width: 1300px) {
  .cart {
    margin-left: 22px;
  }
}

.btn-desktop {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .btn-desktop {
    display: block;
  }
}

.show-submenu-desktop {
  padding-block: 4px;
}
.show-submenu-desktop::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: transparent;
}

.register-item {
  height: -moz-fit-content;
  height: fit-content;
}
.register-item::after {
  content: "";
  width: 100%;
  max-width: 310px;
  height: 1px;
  margin: auto;
  margin-bottom: 30px;
  background-color: #fcfcfd;
}
@media screen and (min-width: 1024px) {
  .register-item::after {
    display: none;
  }
}
.register-item .has_icon button {
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 30px;
  padding: 12px 24px;
  background-color: transparent;
  border-radius: 5px;
}
.register-item .has_icon button::after {
  content: "";
  width: 24px;
  height: 24px;
  margin: 0;
  background-image: url("/assets/images/header/locallibrary.svg");
  background-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .register-item .has_icon button::after {
    content: "";
    width: 24px;
    height: 24px;
    margin: 0;
    background-image: url("/assets/images/header/library-dark.svg");
  }
}
.register-item .has_icon button a {
  height: -moz-fit-content;
  height: fit-content;
  font-family: "DM Sans", sans-serif;
}
@media screen and (min-width: 1024px) {
  .register-item .has_icon button {
    display: flex;
    margin: 0;
    padding: 4px;
    padding-bottom: 12px;
    /* margin: 0;
    padding: 0; */
  }
}
@media screen and (min-width: 1220px) {
  .register-item .has_icon button {
    padding: 12px 16px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .register-item {
    order: 1;
    width: 170px;
    height: 48px;
    padding: 0;
    border-radius: 5px;
  }
}
@media screen and (min-width: 1220px) {
  .register-item {
    width: 217px;
  }
}

@keyframes show-submenu {
  0% {
    height: 0;
  }
  100% {
    height: var(--height-submenu-animation);
  }
}
@keyframes hide-submenu {
  0% {
    height: var(--height-submenu-animation);
  }
  100% {
    height: 0;
  }
}
@keyframes show-navigation {
  0% {
    height: 0;
  }
  100% {
    height: 100dvh;
  }
}
@keyframes hide-navigation {
  0% {
    height: 100dvh;
  }
  100% {
    height: 0;
  }
}
@keyframes show-submenu-desktop {
  0% {
    height: 0;
  }
  100% {
    height: 107px;
  }
}
@keyframes hide-submenu-desktop {
  0% {
    height: 107px;
  }
  100% {
    height: 0;
  }
}
.hero {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-block-end: -83px;
  margin-inline: auto;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(14, 29, 58, 0) 4.36%, #0e1d3a 100%);
}
.hero__video-wrapper {
  position: relative;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__video-wrapper .wistia_async_cqz47q1ol0 {
  position: relative;
}
.hero__video-wrapper .hero__video--mobile {
  position: relative;
  height: 180vw;
}
@media screen and (min-width: 768px) {
  .hero__video-wrapper .hero__video--mobile {
    display: none;
  }
}
.hero__video-wrapper .hero__video--desktop .wistia_responsive_wrapper {
  display: none;
}
@media screen and (min-width: 768px) {
  .hero__video-wrapper .hero__video--desktop .wistia_responsive_wrapper {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .hero__video-wrapper .wistia_responsive_padding {
    padding: 0 !important;
  }
}
.hero .button {
  width: 100%;
  max-width: 263px;
  padding: 11px 15px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 114.286%;
}
.hero .button.hero__button {
  --button-background-color: rgba(250, 192, 22, 0.6);
  gap: 8px;
  align-items: center;
  align-self: flex-end;
  max-width: 157px;
  margin-inline: auto 0;
  padding: 7px 9px;
  font-size: 13px;
  font-weight: 600;
  line-height: 24px;
  border-radius: 10px;
}
.hero .button.hero__button img {
  width: 16px;
  height: 16px;
}
@media screen and (min-width: 1024px) {
  .hero .button.hero__button img {
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .hero .button.hero__button {
    --button-background-color: rgba(250, 192, 22, 0.8);
    max-width: 211px;
    margin-right: 82px;
    padding: 9px 19px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .hero .button {
    max-width: 312px;
    font-size: 16px;
    font-style: normal;
    line-height: 16px; /* 100% */
  }
}
.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-height: calc(100% - (100vw - 207px));
  padding-block-start: 34px;
  padding-inline: 10px;
}
.hero__content .button {
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .hero__content .button {
    padding: 12px 24px;
  }
}
.hero__content-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding-inline: 10px 18px;
}
.hero__content .wistia-viewer {
  text-align: right;
}
@media screen and (min-width: 419px) {
  .hero__content {
    max-height: calc(100% - (100vw - 167px));
  }
}
@media screen and (min-width: 729px) {
  .hero__content {
    max-height: calc(100% - (100vw - 117px));
  }
}
@media screen and (min-width: 768px) {
  .hero__content {
    max-height: calc(40vw + 10px - (100vw - 768px) / 10);
  }
}
@media screen and (min-width: 1024px) {
  .hero__content {
    max-height: calc(41vw + 40px);
    padding-top: 28px;
  }
}
@media screen and (min-width: 1150px) {
  .hero__content {
    max-height: calc(41vw + 30px);
  }
}
@media screen and (min-width: 1250px) {
  .hero__content {
    max-height: calc(41vw + 90px);
  }
}
@media screen and (min-width: 1366px) {
  .hero__content {
    max-height: calc(41vw + 87px - (100vw - 1300px) / 10);
  }
}
@media screen and (min-width: 1920px) {
  .hero__content {
    max-height: 810px;
  }
}
.hero__title {
  font-family: "DM Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .hero__title {
    max-width: 26ch;
    margin-inline: auto;
    font-size: 48px;
    text-align: center;
  }
}
.hero__description {
  display: none;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 32px; /* 200% */
  color: #fff;
  text-align: center;
}
.hero__description strong {
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .hero__description strong {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .hero__description {
    max-width: 92ch;
    margin-inline: auto;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px; /* 177.778% */
  }
}
@media screen and (min-width: 1250px) {
  .hero__description {
    display: block;
  }
}

.internal-nav {
  --internal-nav-top: 0px;
  top: var(--internal-nav-top);
  left: 0;
  width: 100%;
  max-width: 100%;
  padding: 0.625rem;
  background-color: #000;
}
.internal-nav__container {
  display: flex;
  justify-content: center;
}
.internal-nav__list {
  position: relative;
  display: flex;
  gap: 0.625rem;
  justify-content: flex-start;
  padding: 0.625rem;
}
.internal-nav__list-item {
  list-style-type: none;
}
.internal-nav__list-item-link {
  padding: 0.3125rem 0.625rem;
  color: #fff;
}
.internal-nav__list-item--is-active {
  background-color: #fff;
}
.internal-nav__list-item--is-active .internal-nav__list-item-link {
  color: #000;
}
.internal-nav[data-scroll-to-active=true] .internal-nav__list {
  scroll-behavior: smooth;
  scrollbar-width: none;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
}
.internal-nav[data-scroll-to-active=true] .internal-nav__list::-webkit-scrollbar {
  display: none;
}
.internal-nav.is--fixed {
  position: fixed;
  z-index: 5;
  top: var(--internal-nav-top);
  left: 0;
}

.isi {
  z-index: 3;
  background-color: #fff;
}
.isi__header {
  background-color: #83869a;
}
.isi__header-inner {
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
}
.isi__header-heading {
  font-size: 17px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  text-transform: uppercase;
}
.isi.is-fixed {
  --height: 10rem;
  position: fixed;
  z-index: 3;
  top: calc(100% - var(--height));
  left: 0;
  width: 100%;
  height: var(--height);
  transition: top 0.5s ease-in-out, height 0.5s ease-in-out;
}
.isi__content-head {
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .isi__content-head br {
    display: none;
  }
}
.isi__content-paragraph {
  line-height: 22px;
  color: #000;
}
.isi__content-paragraph strong {
  font-weight: 700;
}
.isi__content-paragraph-box {
  padding: 5px 8px;
  border: 1px solid #000;
}
.isi__content-list {
  padding-top: 4px;
  padding-left: 2rem;
}
.isi__content-list li {
  list-style-type: disc;
}
.isi__content-link {
  display: inline;
  font-weight: 700;
  text-decoration: underline;
}
@media screen and (max-width: 41rem) {
  .isi__content .wrapper {
    max-width: 100%;
    margin: 0;
  }
}
.isi__mobile-tabs {
  width: 100%;
}
.isi__mobile-tabs ul.tabs[role=tablist] {
  overflow-y: hidden;
  height: 31px;
  padding: 0;
}
.isi__mobile-tabs [role=tablist] li {
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: #ededed;
}
.isi__mobile-tabs [role=tablist] li a {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  border: 0;
}
@media screen and (min-width: 41rem) {
  .isi__mobile-tabs {
    display: none;
  }
}
.isi__grid-left {
  padding: 1rem 1rem 6rem !important;
}
.isi__grid-left .isi__content-head {
  color: #000;
}
.isi__grid-left .isi__content-link {
  color: #666ca3;
}
@media only screen and (min-width: 41rem) {
  .isi__grid-left {
    padding: 1rem 1.5rem 3rem !important;
  }
}
.isi__grid-right {
  padding: 1rem 1rem 6rem !important;
}
.isi__grid-right .isi__content-head {
  color: #000;
}
.isi__grid-right .isi__content-link {
  color: #666ca3;
}
@media only screen and (min-width: 41rem) {
  .isi__grid-right {
    padding: 1rem 1.5rem 3rem !important;
  }
}
.isi__toggle {
  cursor: pointer;
}
.isi__toggle::after {
  content: url("/assets/images/isi/isi-icon.png");
  display: block;
  width: 20px;
  height: 20px;
  transition: all 1s ease-in-out;
}
.isi .isi__toggle {
  display: block;
}
.isi.is-open-toggle .isi__toggle {
  rotate: 180deg;
  display: none;
}
.isi.is-open-toggle .isi__header-inner {
  cursor: auto;
}
.isi.is-open {
  z-index: 10;
  top: 0;
  height: 100vh;
}
.isi.is-open .isi__grid-left,
.isi.is-open .isi__grid-right {
  overflow-y: scroll;
  max-height: 100vh;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.isi.is-open .isi__grid-left::-webkit-scrollbar,
.isi.is-open .isi__grid-right::-webkit-scrollbar {
  width: 5px;
}
.isi.is-open .isi__grid-left::-webkit-scrollbar-track,
.isi.is-open .isi__grid-right::-webkit-scrollbar-track {
  border-radius: 20px;
  box-shadow: inset 0 0 8px rgb(0, 0, 0);
}
.isi.is-open .isi__grid-left::-webkit-scrollbar-thumb,
.isi.is-open .isi__grid-right::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}
.isi.is-open .isi__grid-left::-webkit-scrollbar-thumb:hover,
.isi.is-open .isi__grid-right::-webkit-scrollbar-thumb:hover {
  background: rgb(156, 156, 156);
}
.isi.is-open .isi__toggle {
  rotate: 180deg;
}
@media screen and (min-width: 41rem) {
  .isi__grid-right[hidden], .isi__grid-left[hidden] {
    display: block !important;
  }
}

.menu {
  position: relative;
  color: #fff;
  background-color: #d66969;
}

.menu1.is-fixed {
  --position: 120px;
  position: fixed;
  z-index: 2;
  top: calc(var(--position) + 5px);
  width: 100%;
  transition: top 0.5s ease-in-out, height 0.5s ease-in-out;
}

.menu2.is-fixed {
  --position: 0px;
  position: fixed;
  z-index: 2;
  bottom: calc(var(--position) + 5px);
  width: 100%;
  transition: top 0.5s ease-in-out, height 0.5s ease-in-out;
}

ul.tabs[role=tablist] {
  scroll-behavior: smooth;
  scrollbar-width: none;
  overflow-y: scroll;
  display: flex;
  align-items: center;
  height: 3.125rem;
  margin: 0;
  padding: 0.3125rem 0.9375rem;
  background-color: #c1c1c1;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

[role=tablist] li {
  height: 2.5rem;
  margin-right: 1rem;
  list-style-type: none;
}
[role=tablist] li::marker {
  display: none;
}

[role=tablist] a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.875rem;
  height: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.125rem;
  color: currentcolor;
  border: 2px solid currentcolor;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
  [role=tablist] a {
    font-size: 1.25rem;
    line-height: 1.4375rem;
  }
}

[role=tablist] [aria-selected] {
  font-weight: 900;
  background-color: #FFF;
  border: 2px solid #FFF;
}

[role=tabpanel] {
  padding: 1rem;
}

/* stylelint-disable rule-empty-line-before */
input {
  width: 100%;
}
input[type=submit] {
  cursor: pointer;
}
input[type=checkbox], input[type=radio] {
  transform: translateY(-0.075em);
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: currentcolor;
  border: 3px solid currentcolor;
}
input[type=radio] {
  border-radius: 50%;
}
input[type=radio]::before {
  content: "";
  transform: scale(0);
  width: 0.65em;
  height: 0.65em;
  background-color: CanvasText;
  border-radius: 50%;
  box-shadow: inset 1em 1em currentcolor;
  transition: 120ms transform ease-in-out;
}
input[type=radio]:checked::before {
  transform: scale(1.5);
}
input[type=checkbox] {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.25rem;
}
input[type=checkbox]:checked {
  background-color: currentcolor;
  border-color: currentcolor;
}

.form__control {
  position: relative;
  display: block;
  padding-bottom: 0;
  transition: all 100ms ease-in-out;
  /*   .form__control-input {
      width: 100%;
      height: 2.9375rem;
      padding: 0.625rem 1.875rem;

      font-size: 1.125rem;
      font-weight: 300;
      color: $color-black;

      background-color: $color-white;
      outline: 1px solid $color-black;

      &::placeholder {
        font-size: 1.125rem;
        font-weight: 300;
        color: $color-black;
      }
    }
   */
  /* stylelint-disable-next-line no-descending-specificity */
}
.form__control .form__control-label,
.form__control .form__control-legend {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 14px;
  color: #000;
}
.form__control .form__control-legend {
  margin-bottom: 0.5rem;
  line-height: 18px;
}
.form__control .form__control-error {
  position: absolute;
  top: 101%;
  left: 0;
  display: none;
  margin-top: 4px;
  color: #ff3246;
}
@media screen and (min-width: 1024px) {
  .form__control .form__control-error {
    font-size: 0.875rem;
  }
}
.form__control[data-required=true] .form__control-label::after,
.form__control[data-required=true] .form__control-legend::after {
  content: "*";
  display: inline-block;
  margin-left: 0.25rem;
  color: #f00;
}
.form__control .form__control-select-wrapper {
  position: relative;
  height: 2.9375rem;
  font-size: 1.125rem;
  font-weight: 300;
  color: #000;
  outline: 1px solid #000;
}
.form__control .form__control-select-wrapper .form__control-select {
  width: 100%;
  height: 100%;
  padding: 0.625rem 2.5rem 0.625rem 1.875rem;
}
.form__control .form__control-select-wrapper .form__control-select:focus {
  border: none;
  outline: none;
}
.form__control .form__control-select-wrapper .form__control-select option,
.form__control .form__control-select-wrapper .form__control-select option:checked {
  font-size: 1.125rem;
  font-weight: 300;
  color: #000;
}
.form__control .form__control-radio,
.form__control .form__control-checkbox {
  display: flex;
  align-items: center;
}
.form__control .form__control-radio:not(:last-of-type),
.form__control .form__control-checkbox:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.form__control .form__control-radio input,
.form__control .form__control-checkbox input {
  margin-right: 0.625rem;
}
.form__control .form__control-checkbox {
  align-items: center;
}
.form__control .form__control-checkbox .form__control-label {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 300;
  line-height: 17.5px;
}
@media screen and (min-width: 768px) {
  .form__control .form__control-checkbox .form__control-label {
    font-size: 1.125rem;
  }
}
.form__control.form__control--invalid[data-touched=true][data-required=true][data-is-valid=false] .form__control-label {
  color: #f00;
}
.form__control.form__control--invalid[data-touched=true][data-required=true][data-is-valid=false] .form__control-input,
.form__control.form__control--invalid[data-touched=true][data-required=true][data-is-valid=false] .form__control-select-wrapper {
  outline-color: #f00;
}
.form__control.form__control--invalid[data-touched=true][data-required=true][data-is-valid=false] .form__control-error {
  display: block;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 28px;
}

.contact__button {
  width: 100%;
  padding: 15px 24px;
}

.contact__info {
  margin-bottom: 24px;
}
.contact__info h2 {
  margin-bottom: 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
  text-align: center;
}
@media (min-width: 1024px) {
  .contact__info h2 {
    font-size: 48px;
    text-align: left;
  }
}
.contact__info p {
  margin-bottom: 48px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #0e1d3a;
  text-align: center;
}
@media (min-width: 1024px) {
  .contact__info p {
    text-align: left;
  }
}
.contact__info a {
  text-decoration: none;
}
.contact__info .message-form {
  margin-bottom: 48px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #0e1d3a;
  text-align: center;
}
@media (min-width: 1024px) {
  .contact__info .message-form {
    text-align: left;
  }
}
.contact__info .success-title {
  display: none;
}
@media (min-width: 1024px) {
  .contact__info .success-title {
    display: block;
  }
}
.contact__info .success-mail {
  display: none;
}

.form__container-message {
  display: none;
  margin-top: 120px;
  margin-bottom: 106px;
}
.form__container-message .username {
  font-weight: 700;
}
@media (min-width: 1424px) {
  .form__container-message {
    margin-top: 234px;
    margin-bottom: 193px;
  }
}

.input-switch {
  width: 0;
  height: 0;
  visibility: hidden;
}
.input-switch + .label-switch {
  cursor: pointer;
  position: relative;
  display: block;
  width: 52px;
  height: 32px;
  text-indent: -9999px;
  background: #cfd2d8;
  border-radius: 100px;
}
.input-switch + .label-switch::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 24px;
  height: 24px;
  background: #3e4a61;
  border-radius: 100px;
  transition: 0.3s;
}
.input-switch + .label-switch:active::after {
  width: 24px;
}
@media (min-width: 1024px) {
  .input-switch + .label-switch {
    width: 68.2px;
  }
}
.input-switch:checked + .label-switch {
  background: #3e4a61;
}
.input-switch:checked + .label-switch::after {
  left: calc(100% - 5px);
  transform: translateX(-100%);
  background: #cfd2d8;
}

.schedule {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}
.schedule input::-moz-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 22px;
}
.schedule input::placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 22px;
}
.schedule__item {
  display: flex;
}
.schedule__item:first-child label {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 22px;
}
@media (min-width: 768px) {
  .schedule__item:first-child label {
    font-weight: 600;
  }
}
@media (min-width: 768px) {
  .schedule__item:first-child {
    width: 80px;
  }
}
.schedule__item:nth-child(2) {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .schedule__item:nth-child(2) {
    order: 3;
  }
}
.schedule__item:nth-child(3) {
  display: flex;
  flex-basis: 100%;
  justify-content: space-evenly;
}
@media (min-width: 768px) {
  .schedule__item:nth-child(3) {
    flex-basis: unset;
    width: 300px;
  }
}
.schedule__time {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #c8d1d3;
}
.schedule__time .time-end::-webkit-calendar-picker-indicator {
  display: none;
}
.schedule__time img.icon-separator {
  width: 17px;
  height: 16px;
  background-color: #c8d1d3;
  -webkit-mask: url("/assets/images/icons/separator-time.svg") no-repeat center;
          mask: url("/assets/images/icons/separator-time.svg") no-repeat center;
}
.schedule__time img.icon-clock {
  width: 14px;
  height: 14px;
  background-color: #c8d1d3;
  -webkit-mask: url("/assets/images/icons/icon-clock.svg") no-repeat center;
          mask: url("/assets/images/icons/icon-clock.svg") no-repeat center;
}
.schedule__time img.active-separator {
  background-color: #0e1d3a;
}
.schedule__time input[type=text] {
  width: 136px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 12px;
}
@media (min-width: 768px) {
  .schedule__time input[type=text] {
    width: 111px;
  }
}
.schedule__time input[type=time] {
  width: 136px;
  height: 40px;
  margin-right: 10px;
  padding: 10px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px;
  color: #0e1d3a;
  text-align: center;
  border: none;
  border-radius: 5px;
  outline: none;
}
.schedule__time input[type=time]:first-child::-webkit-calendar-picker-indicator {
  display: none;
}
@media (min-width: 768px) {
  .schedule__time input[type=time] {
    width: 111px;
  }
}
.schedule .active {
  border: 1px solid #0e1d3a;
}
.schedule .active input::-moz-placeholder {
  color: #0e1d3a;
}
.schedule .active input::placeholder {
  color: #0e1d3a;
}
@media (min-width: 1024px) {
  .schedule {
    max-width: 772px;
    margin: 0 auto;
    margin-top: 30px;
  }
}

.image-upload {
  cursor: pointer;
  text-align: center;
  border: 1px dashed gray;
}
.image-upload__container-img {
  display: grid;
  grid-template-columns: repeat(2, 190.5px);
  row-gap: 5px;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (min-width: 1024px) {
  .image-upload__container-img {
    grid-template-columns: repeat(4, 178px);
    row-gap: 10px;
  }
}
@media (max-width: 429px) {
  .image-upload__container-img {
    grid-template-columns: repeat(4, 196px);
    grid-template-rows: 224px;
  }
}
.image-upload__images-control {
  display: none;
  flex-direction: row;
  visibility: hidden;
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s;
}
.image-upload__images-control label {
  cursor: pointer;
  margin-right: 0;
}
.image-upload__images-control .button {
  cursor: pointer;
  width: 10px;
}
.image-upload__images-control:last-child {
  margin-top: 0;
}
.image-upload__images-control .image-upload__button-control {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #0e1d3a;
  border-radius: 8px;
}
.image-upload__images-control img {
  width: 24px;
  height: 24px;
}
.image-upload__images {
  position: relative;
}
.image-upload__images .image-upload__images-src {
  width: 190.5px;
  height: 190.5px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  transition: filter 0.5s ease;
}
@media (max-width: 429px) {
  .image-upload__images .image-upload__images-src {
    width: 190.5px;
    height: 224px;
  }
}
.image-upload__images:hover .image-upload__images-src {
  filter: brightness(0.7);
}
.image-upload__images:hover .image-upload__images-control {
  transform: translateY(0);
  display: flex;
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.image-upload__images-container {
  position: absolute;
  top: 5px;
  right: 5px;
}
@media (max-width: 429px) {
  .image-upload__images-container {
    top: 10px;
    right: 10px;
  }
}

.image-upload__wrapper {
  cursor: pointer;
  display: block;
  width: 397px;
  margin: 0 auto;
}
@media (max-width: 429px) {
  .image-upload__wrapper {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .image-upload__wrapper {
    margin: 0;
  }
}

.center-element .image-upload__container-img {
  grid-template-columns: repeat(1, 397px);
  justify-content: center;
}
.center-element .image-upload__container-img .image-upload__images .image-upload__images-src {
  width: 397px;
  height: 308px;
}

.stepper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 16px 13.17px;
  background-color: #f5f7f8;
}
.stepper__steps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stepper__steps .stepper__count {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  text-align: center;
}
@media (max-width: 332px) {
  .stepper__steps {
    align-self: baseline;
  }
}
.stepper .stepper-label {
  margin-top: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
  text-align: center;
}
.stepper__label-current {
  margin-top: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
  text-align: center;
}
.stepper .stepper-current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #fff;
  border: 2px solid #0e1d3a;
  border-radius: 50%;
}
.stepper__circle-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-top: 6px;
  margin-bottom: 6px;
  color: #0e1d3a;
  background-color: #cfd2d8;
  border-radius: 50%;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.stepper__line {
  position: absolute;
  z-index: 0;
  top: 35%;
  right: 81px;
  left: 81px;
  height: 2px;
  background-color: #cfd2d8;
}
@media (max-width: 332px) {
  .stepper__line {
    top: 30%;
    right: 23%;
    left: 23%;
  }
}
@media (max-width: 222px) {
  .stepper__line {
    top: 26%;
  }
}
@media (min-width: 1024px) {
  .stepper__line {
    right: 150px;
    left: 160px;
  }
}
.stepper__indicator {
  position: absolute;
  z-index: 1;
  width: 25%;
  height: 2px;
  background-color: #0e1d3a;
  transition: width 0.3s ease;
}
.stepper .active {
  color: #fff;
  background-color: #0e1d3a;
  border-color: #0e1d3a;
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .stepper {
    padding-right: 85.5px;
    padding-left: 85.5px;
  }
}
@media (min-width: 1024px) {
  .stepper {
    max-width: 864px;
  }
}

.label-with-icon {
  z-index: 1;
  display: flex;
  align-items: center;
}

.label-text {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #6e7789;
  text-align: center;
}

.input-feedback {
  position: relative;
  display: flex;
}
.input-feedback::after {
  content: "?";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-left: 4px;
  padding-top: 1px;
  font-size: 10px;
  border: 1px solid #fac016;
  border-radius: 100px;
}
.input-feedback .tooltip {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 8px;
  font-size: 12px;
  color: #0e1d3a;
  white-space: nowrap;
  opacity: 0;
  background-color: #b6b8bb;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease-in-out;
}
.input-feedback .tooltip p {
  width: 150px;
  font-size: 10px;
}
.input-feedback .tooltip.fade-in {
  opacity: 1;
}
.input-feedback .tooltip.fade-out {
  opacity: 0;
}
.input-feedback .tooltip.right {
  top: 50%;
  left: 100%;
  transform: translate(8px, -50%);
}
.input-feedback .tooltip.left {
  top: 50%;
  right: 100%;
  transform: translate(-8px, -50%);
}
.input-feedback .tooltip.top {
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -8px);
}
.input-feedback .tooltip.bottom {
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
}

.add-form {
  margin-top: 16px;
}
.add-form__button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 64px;
  background-color: #eef2f3;
  border: 1px dashed #3e4a61;
  border-radius: 5px;
}
.add-form__button img {
  width: 32px;
  height: 32px;
}
.add-form__button:active {
  background-color: #fff;
}
.add-form__button .add-form__label .add-form__button-text {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
}
.add-form__label {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.form-branch {
  padding: 20px 12px 32px;
  background-color: #f5f7f8;
}
.form-branch__section {
  margin-bottom: 20px;
  padding-bottom: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px;
  color: #0e1d3a;
  text-overflow: ellipsis;
  border-bottom: 1px solid #cfd2d8;
}
.form-branch__container {
  margin-top: 20px;
}
.form-branch__container .form-branch__description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(100% - 10px);
  margin: 0 auto;
}
.form-branch__container .form-branch__description h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px;
  color: #0e1d3a;
  text-align: center;
}
.form-branch__container .form-branch__description p {
  width: 94%;
  margin-top: 8px;
  margin-bottom: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 32px;
  color: #0e1d3a;
  text-align: center;
}
@media (min-width: 1024px) {
  .form-branch__container .form-branch__description p {
    width: 840px;
    margin-bottom: 44px;
    font-size: 16px;
  }
}
.form-branch__section-buttons {
  display: flex;
  gap: 77px;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 20px;
}
.form-branch__section-buttons .button--secondary {
  padding: 15px 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
  text-align: center;
  border-radius: 5px;
}
@media (max-width: 423px) {
  .form-branch__section-buttons .button--secondary {
    width: 100%;
  }
}
.form-branch__section-buttons .button--primary {
  width: 203px;
  padding: 15px 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #fff;
  text-align: center;
}
@media (max-width: 423px) {
  .form-branch__section-buttons .button--primary {
    width: 100%;
  }
}
@media (max-width: 423px) {
  .form-branch__section-buttons {
    flex-direction: column;
    gap: 10px;
  }
}
@media (min-width: 1024px) {
  .form-branch__section-buttons {
    justify-content: space-between;
    margin-top: 16px;
    margin-bottom: 64px;
  }
}
.form-branch__forms {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-branch__general {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 56px;
}
@media (min-width: 1024px) {
  .form-branch__general .input__general-info:nth-child(1) {
    grid-column: 1/4;
    grid-row: 1;
  }
}
@media (min-width: 1024px) {
  .form-branch__general .input__general-info:nth-child(2) {
    grid-row: 2;
  }
}
@media (min-width: 1024px) {
  .form-branch__general .input__general-info:nth-child(3) {
    grid-row: 2;
  }
}
@media (min-width: 1024px) {
  .form-branch__general .input__general-info:nth-child(4) {
    grid-row: 2;
  }
}
@media (min-width: 1024px) {
  .form-branch__general .input__general-info:nth-child(5) {
    grid-column: 1/4;
    grid-row: 3;
  }
}
@media (min-width: 1024px) {
  .form-branch__general {
    display: grid;
    grid-template-columns: repeat(3, 246px);
    margin-bottom: 16px;
  }
}
.form-branch__contact-section {
  display: flex;
  flex-direction: column;
  gap: 59px;
  margin-bottom: 56px;
}
@media (min-width: 1024px) {
  .form-branch__contact-section .input__general-info:nth-child(1), .form-branch__contact-section .input__general-info:nth-child(2) {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .form-branch__contact-section {
    flex-direction: row;
    gap: 31px;
  }
}
.form-branch__location-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 27.97px;
}
.form-branch__location-section img {
  height: 210px;
}
.form-branch__schedule-section .form-branch__schedules .form-branch__schedule-titles {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  background-color: #fcfcfd;
}
.form-branch__schedule-section .form-branch__schedules .form-branch__schedule-titles .schedule__title:first-child {
  width: 30%;
}
.form-branch__schedule-section .form-branch__schedules .form-branch__schedule-titles .schedule__title:nth-child(2) {
  width: 60%;
}
.form-branch__schedule-section .form-branch__schedules .form-branch__schedule-titles .schedule__title label {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  line-height: 22px;
  color: #000;
}
@media (max-width: 768px) {
  .form-branch__schedule-section .form-branch__schedules .form-branch__schedule-titles {
    display: none;
  }
}
@media (min-width: 1024px) {
  .form-branch {
    padding-right: 21px;
    padding-left: 21px;
  }
}

.school-information__section-branch {
  margin-bottom: 30px;
  padding-bottom: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px;
  color: #0e1d3a;
  text-overflow: ellipsis;
  border-bottom: 1px solid #cfd2d8;
}
.school-information__section-branch span {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #0e1d3a;
  text-overflow: ellipsis;
}
.school-information__section-branch .asterisk {
  font-size: 18px;
  color: #ff3246;
}
@media (min-width: 1024px) {
  .school-information__section-branch {
    margin-bottom: 20px;
  }
}

.form-branch__branch-buttons {
  display: flex;
  gap: 45px;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 32px;
}
.form-branch__branch-buttons .button--secondary {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 12px 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
  text-align: center;
  background-color: #f5f7f8;
  border-radius: 5px;
}
@media (max-width: 423px) {
  .form-branch__branch-buttons .button--secondary {
    width: 100%;
  }
}
.form-branch__branch-buttons .button--primary {
  width: 203px;
  padding: 12px 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #fff;
  text-align: center;
}
@media (max-width: 423px) {
  .form-branch__branch-buttons .button--primary {
    width: 100%;
  }
}
.form-branch__branch-buttons .form-branch__save {
  width: 210px;
  height: 48px;
  padding: 12px 21px;
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 423px) {
  .form-branch__branch-buttons .form-branch__save {
    width: 100%;
  }
}
@media (max-width: 423px) {
  .form-branch__branch-buttons {
    flex-direction: column;
    gap: 10px;
  }
}
@media (min-width: 1024px) {
  .form-branch__branch-buttons {
    justify-content: space-between;
    margin-top: 48px;
    margin-bottom: 20px;
  }
}

.section-branches {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section-branches p {
  font-weight: 500;
}

.form-branch__modal-alert {
  display: flex;
  flex-direction: column;
  gap: 29px;
  align-items: center;
  justify-content: center;
  margin-top: 58px;
}
.form-branch__modal-alert img {
  width: 30px;
  height: 30px;
}
.form-branch__modal-alert p {
  width: 90%;
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #000;
  text-align: center;
}
@media (min-width: 1024px) {
  .form-branch__modal-alert p {
    width: 86%;
  }
}
.form-branch__modal-alert button {
  display: flex;
  align-items: center;
  width: 121px;
  height: 32px;
  margin: 0 auto;
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #fff;
  text-align: center;
  background-color: #3e4a61;
}

.form-course__cards {
  margin-bottom: 30px;
  padding: 14.23px 7px 11.73px;
  border: 1px solid #cfd2d8;
  border-radius: 5px;
}
@media (min-width: 1024px) {
  .form-course__cards {
    padding: 20px 15px;
  }
}

.form-course__cards-course {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 176px));
  -moz-column-gap: 21px;
       column-gap: 21px;
  align-items: center;
  justify-content: center;
}
.form-course__cards-course label {
  gap: 0;
  height: 162px;
  padding-top: 20px;
}
.form-course__cards-course label .card-course__desc {
  margin-bottom: 0;
}
.form-course__cards-course label .card-course__title {
  margin-top: 0;
}
@media (max-width: 412px) {
  .form-course__cards-course {
    grid-template-columns: repeat(1, 176px);
  }
}
@media (min-width: 845px) {
  .form-course__cards-course {
    grid-template-columns: repeat(4, 176px);
  }
}

.form-course__container-cards {
  display: grid;
  grid-template-columns: repeat(2, 176px);
  row-gap: 21px;
  -moz-column-gap: 21px;
       column-gap: 21px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-top: 44px;
  padding-bottom: 25px;
  background-color: #f5f7f8;
}
.form-course__container-cards .card-course {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 412px) {
  .form-course__container-cards {
    grid-template-columns: repeat(1, 176px);
  }
}
@media (min-width: 1024px) {
  .form-course__container-cards {
    grid-template-columns: repeat(4, 176px);
  }
}

.form-course__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .form-course__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 43px;
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}

.form-course__aditions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}
.form-course__aditions-options {
  display: flex;
  gap: 8px;
  align-items: center;
}
.form-course__aditions-options input {
  width: 24px;
  height: 24px;
}
.form-course__aditions-options label {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
}

.form-course__package-name {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 18px;
}
.form-course__package-name h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 25px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #000;
}
.form-course__package-label {
  margin-top: 20px;
  margin-bottom: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #6e7789;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-course__package-buttons .button--secondary {
  font-size: 14px;
  background-color: #fac016;
  border: 1px solid #fac016;
}
.form-course__package-buttons .button--primary {
  width: 132px;
  height: 41px;
  padding: 11px 9px 12px;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #fff;
}
@media (min-width: 1024px) {
  .form-course__package-buttons {
    display: flex;
    gap: 21px;
    justify-content: flex-end;
  }
}
@media (min-width: 1024px) {
  .form-course__package {
    padding: 80px 87px 53px 88px;
  }
}

.form-course .form-branch__description {
  width: 100%;
}
.form-course .form-branch__description p {
  width: 100%;
}

.css-1p3m7a8-multiValue {
  border-radius: 50px;
}

.form-course__add {
  padding: 6px 8.36px;
  background: #fff;
  border: 1px solid #cfd2d8;
  border-radius: 5px;
}
.form-course__add .background {
  height: 109px;
  padding: 23px 6.38px 22px;
  background: #f5f7f8;
}
.form-course__add .background .add-form {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .form-course__add .background {
    padding: 23px 13px 22px;
  }
}
@media (min-width: 1024px) {
  .form-course__add {
    padding: 23px 15px 25px 14px;
  }
}

p.form-course__package-label {
  margin-bottom: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #6e7789;
}

.form-course__aditions-options label {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
  text-overflow: ellipsis;
}

.form-course__aditions {
  margin-top: 8px;
}

div.form-course__package-buttons .button--secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 93px;
  height: 41px;
}
div.form-course__package-buttons .button--primary {
  width: 132px;
}

input.form-course__aditions-checkbox:checked {
  background-color: transparent;
}

input.form-course__aditions-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  transform: rotate(45deg);
  width: 6px;
  height: 12px;
  border: solid currentcolor;
  border-width: 0 2px 2px 0;
}

.new-course {
  margin-bottom: 20px;
  padding: 11px 10px 20px 11px;
  border: 1px solid #cfd2d8;
  border-radius: 10px;
}
.new-course__buttons .button--primary {
  width: 163px;
}
.new-course__buttons .button--secondary {
  width: 107px;
}
@media (min-width: 1024px) {
  .new-course__buttons {
    margin-top: 50px;
    margin-bottom: 26px;
  }
}
.new-course .new-course__p {
  margin-top: 9px;
  margin-bottom: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #000;
}
.new-course__container {
  padding: 10px;
  background-color: #f5f7f8;
  border-radius: 5px;
}
.new-course__container > p:first-child {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}
.new-course__courses {
  margin-top: 20px;
}
.new-course__courses label {
  margin-bottom: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #6e7789;
  text-overflow: ellipsis;
}
.new-course__courses label span {
  margin-left: 10px;
  color: #ff3246;
}
.new-course__branches label {
  margin-bottom: 4px;
}
.new-course .form-error {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 14px;
  color: #ff3246;
}
@media (min-width: 1024px) {
  .new-course {
    margin-bottom: 65px;
    padding: 20px;
  }
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 162px 55px 258px;
}
.form-success img {
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
}
.form-success h2 {
  margin-bottom: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px;
  color: #0e1d3a;
  text-overflow: ellipsis;
}
.form-success p {
  width: 102%;
  margin-bottom: 48px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #3e4a61;
  text-align: center;
}
.form-success button {
  display: flex;
  align-items: center;
  width: 196px;
  height: 48px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .form-success {
    min-height: calc(100vh - 530px);
    padding: 75px 0 87px;
  }
}
@media screen and (min-width: 1200px) {
  .form-success {
    min-height: calc(100vh - 570px);
  }
}

.accordion__item_content {
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
  height: 100%;
  max-height: 0;
  padding-top: 0;
}
.accordion__item_content a {
  font-weight: 600;
  color: #f00;
  text-decoration: underline;
}
.accordion__item_content p {
  width: 81%;
  margin-top: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #3e4a61;
}
@media (min-width: 1024px) {
  .accordion__item_content p {
    width: 94%;
    margin-top: 0;
    padding-top: 8px;
  }
}
.accordion__item_content p:not(:last-of-type) {
  margin-bottom: 1rem;
}
.accordion__item_content[role=tabpanel] {
  padding: 0;
}
.accordion__item {
  margin-top: 16px;
  padding-bottom: 16px;
  background-color: #fff;
  border-bottom: 1px solid #cfd2d8;
}
.accordion__item_header {
  position: relative;
}
@media (min-width: 1024px) {
  .accordion__item {
    transition: padding-bottom 0.3s ease-in-out;
    margin-top: 29.5px;
    padding-bottom: 21.5px;
  }
  .accordion__item[aria-expanded=true] {
    padding-bottom: 16px;
  }
}
.accordion__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
@media (min-width: 1024px) {
  .accordion__item:last-child {
    padding-bottom: 13.5px;
  }
}
.accordion__item_title {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 79.4%;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
}
.accordion__item_title::after {
  transition: top 0.2s ease-in;
  content: "";
  position: absolute;
  top: calc((100% - 24px) / 2);
  right: 12px;
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-image: url("/assets/images/accordions/plus-circle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.accordion [aria-expanded=true] .accordion__item_content {
  max-height: 500px;
}
.accordion [aria-expanded=true] .accordion__item_title::after {
  transition: top 0.2s ease-out;
  position: absolute;
  top: 150%;
  background-image: url("/assets/images/accordions/minus-circle.svg");
}

.acordion-form {
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 16px;
  background-color: #f5f7f8;
  border-radius: 5px;
}
.acordion-form__container {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.acordion-form__container label {
  width: 152px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
}
@media (min-width: 1024px) {
  .acordion-form__container label {
    max-width: 545px;
  }
}
.acordion-form__container button {
  cursor: pointer;
  margin-right: 32px;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #ff3246;
  text-align: center;
}
@media (min-width: 1024px) {
  .acordion-form__container button {
    font-size: 16px;
  }
}
.acordion-form__show {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding-left: 20px;
  border-left: 1px solid #cfd2d8;
}
.acordion-form__show button {
  cursor: pointer;
}

.acordion-form__body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.acordion-form__body.open {
  max-height: -moz-fit-content;
  max-height: fit-content;
  opacity: 1;
}

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion__modal-alert {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
.accordion__modal-alert .accordion__modal-title {
  margin-top: 9px;
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
  text-align: center;
}
.accordion__modal-alert .accordion__modal-message {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
  text-align: center;
}
.accordion__modal-alert img {
  width: 41px;
  height: 47px;
}
.accordion__modal-alert button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  margin: 0 auto;
  margin-top: 17px;
  font-family: "DM Sans", sans-serif;
  font-size: 17.41px;
  font-weight: 500;
  font-style: normal;
  line-height: 17.41px;
  color: #fff;
  text-align: center;
  background-color: #ff3246;
}
.accordion__modal-alert button img {
  width: 24px;
  height: 24px;
}
@media (min-width: 1024px) {
  .accordion__modal-alert button {
    width: 268px;
  }
}
@media (min-width: 1024px) {
  .accordion__modal-alert {
    margin-top: 54px;
  }
}

.pinch-to-zoom {
  width: 100% !important;
  height: 100%;
  margin: 0 !important;
  padding: 0.5rem 1rem;
}
.pinch-to-zoom .pinch-to-zoom__close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3.125rem;
  font-weight: 300;
  line-height: 40%;
  color: #000;
}

.wistia-viewer .wistia-viewer__inner .wistia-viewer__embed-container {
  position: relative;
}
.wistia-viewer .button-video[data-wistia-play-button] {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 60px;
  max-height: -moz-max-content;
  max-height: max-content;
  padding: 0;
  font-size: 2rem;
}
.wistia-viewer .button-video[data-wistia-play-button][data-playing=true] .play-icon {
  display: none;
}
.wistia-viewer .button-video[data-wistia-play-button][data-playing=true] .pause-icon {
  display: initial;
}
.wistia-viewer .button-video[data-wistia-play-button][data-playing=false] .play-icon {
  display: initial;
}
.wistia-viewer .button-video[data-wistia-play-button][data-playing=false] .pause-icon {
  display: none;
}

.footer {
  width: 100%;
  max-width: 100%;
  padding-block: 50px;
  background-color: #0e1d3a;
}
@media screen and (min-width: 1366px) {
  .footer .wrapper {
    width: 100%;
    max-width: 1366px;
  }
}
.footer__branding {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.footer__branding-logo {
  width: 100%;
  max-width: 179px;
}
.footer__branding-text {
  width: 100%;
  max-width: 32ch;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 540px) {
  .footer__branding-text {
    max-width: 40ch;
  }
}
@media screen and (min-width: 1024px) {
  .footer__branding-text {
    width: 100%;
    max-width: 27.5ch;
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .footer__branding {
    grid-column: 1/2;
    align-items: flex-start;
  }
}
.footer__grid {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 16px;
         column-gap: 16px;
    align-items: flex-start;
    width: 100%;
    max-width: 1256px;
    padding-inline: 30px;
  }
}
@media screen and (min-width: 1300px) {
  .footer__grid {
    max-width: 1256px;
    padding-inline: 55px;
  }
}
@media screen and (min-width: 1366px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1366px;
  }
}
.footer .footer__nav_column--company {
  margin-bottom: 48px;
}
@media screen and (min-width: 1024px) {
  .footer .footer__nav_column--company {
    margin-bottom: 26px;
  }
}
.footer .footer__nav_column--contact {
  margin-bottom: 48px;
}
@media screen and (min-width: 1024px) {
  .footer .footer__nav_column--contact {
    margin-bottom: 0;
  }
}
.footer .footer__nav_menu_item_heading {
  margin-bottom: 32px;
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #fac016;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .footer .footer__nav_menu_item_heading {
    margin-top: 16px;
    margin-left: 16px;
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .footer .footer__nav_menu_item_heading-suscibe {
    margin-left: 0;
  }
}
.footer .footer__nav_menu {
  margin-left: 0;
}
.footer .footer__nav_menu_item {
  margin-bottom: 32px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  color: #fff;
  text-align: center;
}
.footer .footer__nav_menu_item:nth-child(5) {
  margin-bottom: 0;
}
.footer .footer__nav_menu_item-contact:nth-child(3) {
  margin-bottom: 0;
}
.footer .footer__nav_menu_item_link {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .footer .footer__nav_menu_item_link {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1024px) {
  .footer .footer__nav_menu {
    margin-left: 16px;
  }
}
.footer .footer__nav .footer__nav_menu_item_logo {
  width: 24px;
}
.footer .footer__nav_menu_item_last-news {
  margin-bottom: 16px;
  line-height: 24px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .footer .footer__nav_menu_item_last-news {
    text-align: left;
  }
}
.footer .footer__nav .footer__nav_column--suscribe {
  margin-bottom: 34px;
}
.footer .footer__nav .footer__nav_menu_form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 310px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid #cfd2d8;
  border-radius: 5px;
}
.footer .footer__nav .footer__nav_menu_form-input {
  width: 100%;
  max-width: 100%;
  padding-block: 12px;
  padding-inline: 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
  border: none;
  outline: none;
}
.footer .footer__nav .footer__nav_menu_form-input::-moz-placeholder {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 16px;
  color: #cfd2d8;
}
.footer .footer__nav .footer__nav_menu_form-input::placeholder {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 16px;
  color: #cfd2d8;
}
@media screen and (min-width: 1024px) {
  .footer .footer__nav .footer__nav_menu_form {
    max-width: 302px;
  }
}
@media screen and (min-width: 1300px) {
  .footer .footer__nav .footer__nav_menu_form {
    width: 302px;
  }
}
@media screen and (min-width: 1024px) {
  .footer .footer__nav {
    display: grid;
    grid-column: 2/5;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 16px;
         column-gap: 16px;
    align-items: flex-start;
    justify-items: flex-start;
    width: 100%;
    max-width: 1024.5px;
  }
}
.footer .footer__seccion-block-social {
  border-top: 1px solid #fff;
}
.footer .footer__seccion-block-social .footer-info {
  display: flex;
  flex-direction: row;
  gap: 4.5px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 32px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  color: #6e7789;
}
.footer .footer__seccion-block-social .footer-info__copyright {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}
.footer .footer__seccion-block-social .footer-info__links {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}
@media screen and (min-width: 1024px) {
  .footer .footer__seccion-block-social .footer-info {
    -moz-column-gap: 35.5px;
         column-gap: 35.5px;
    justify-content: flex-start;
    width: 100%;
    max-width: 302px;
    line-height: 16px;
  }
}
.footer .footer__seccion-block-social .footer__social {
  display: flex;
  flex-flow: row wrap;
  row-gap: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 240px;
  margin-inline: auto;
}
.footer .footer__seccion-block-social .footer__social .footer__social-text {
  cursor: pointer;
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .footer .footer__seccion-block-social .footer__social {
    flex-wrap: nowrap;
    -moz-column-gap: 13.66px;
         column-gap: 13.66px;
    width: 100%;
    max-width: 408px;
    margin-inline: 0;
  }
}
@media screen and (min-width: 1024px) {
  .footer .footer__seccion-block-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-inline: 30px;
  }
}
@media screen and (min-width: 1366px) {
  .footer .footer__seccion-block-social {
    padding-inline: 55px;
  }
}
.footer .footer__email-msg {
  width: 100%;
  max-width: 310px;
  margin-top: 10px;
  margin-left: auto;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #fac016;
  text-align: left;
}
.footer .footer__email-msg-hidden {
  display: none;
}
@media screen and (min-width: 1024px) {
  .footer .footer__email-msg {
    margin-left: 16px;
  }
}

.modal {
  position: relative;
}
.modal [data-modal-close] {
  cursor: pointer;
}
.modal .modal__header {
  position: relative;
}
.modal .modal__header .modal__close-button-wrapper {
  position: absolute;
  right: 0;
}
.modal [data-modal-header] {
  display: flex;
  justify-content: space-between;
}
.modal [data-modal-actions] {
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 430px) {
  .modal-file {
    width: 352px;
    height: 294px;
  }
  .modal-form {
    width: 390px;
    height: 603px;
  }
  .modal-alert {
    width: 352px;
    height: 294px;
  }
  .modal-alert .modal-react__modal-close {
    display: none;
  }
  .modal-alert-small {
    width: 395px;
    height: 292px;
  }
  .modal-alert-small button.modal-react__modal-close {
    bottom: 225px;
    left: 335px;
  }
  .modal-alert-small button.modal-react__modal-close img {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 430px) and (max-width: 460px) {
  .modal-alert-small button.modal-react__modal-close {
    bottom: 76%;
    left: 87%;
  }
}
@media (min-width: 430px) {
  .modal-alert-small button:active {
    background: transparent;
    background-color: #f05037;
  }
}
.modal-react {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-react__content {
  position: relative;
  max-width: calc(100% - 78px);
  height: auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.modal-react__content.modal-enter-active {
  transform: translateY(0);
}
.modal-react__content.modal-exit-active {
  transform: translateY(100%);
}
.modal-react .modal-react__content .modal-react__modal-close {
  cursor: pointer;
  position: absolute;
  top: 9px;
  right: -200px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #000;
  text-align: center;
  background: transparent;
  border: none;
}
@media (max-width: 429px) {
  .modal-react .modal-react__content .modal-react__modal-close {
    top: 0;
    right: 0;
  }
}
@media (min-width: 1024px) {
  .modal-react .modal-react__content .modal-react__modal-close {
    top: 20px;
    right: -184px;
    font-size: 30px;
  }
}
.modal-react.modal-open {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 1024px) {
  .modal-file {
    width: 992px;
    height: 734px;
  }
  .modal-form {
    width: 819px;
    height: 603px;
  }
  .modal-alert {
    width: 614px;
    height: 300px;
  }
}
.blog-card {
  position: relative;
  width: 100%;
  background-color: #0e1d3a;
  border-radius: 4.5px;
}
.blog-card__header {
  position: relative;
}
.blog-card__timereading, .blog-card__rating {
  display: flex;
  align-items: center;
}
.blog-card p {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
}
.blog-card__statistics {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
}
.blog-card__info {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.blog-card__info .blog-card__info-category {
  overflow: hidden;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.blog-card__info .divider {
  width: 0.563px;
  background-color: #fac016;
}
.blog-card__info .blog-card__info-date {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #6e7789;
}
.blog-card__title {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
}
.blog-card .gradient-overlay {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(14, 29, 58, 0.5) 0%, rgba(14, 29, 58, 0.5) 100%);
}

.landing--card {
  position: relative;
  width: 100%;
  max-width: 196.88px;
  background-color: #0e1d3a;
  border-radius: 4.5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.landing--card .gradient-overlay {
  border-top-left-radius: 4.5px;
  border-top-right-radius: 4.5px;
}
.landing--card .blog-card__header {
  position: relative;
}
.landing--card .blog-card__timereading p,
.landing--card .blog-card__rating p {
  font-size: 7.875px;
}
.landing--card .blog-card__timereading img,
.landing--card .blog-card__rating img {
  width: 8.44px;
  height: 8.44px;
}
.landing--card .blog-card__timereading {
  gap: 2.81px;
}
.landing--card .blog-card__rating {
  gap: 3.38px;
}
.landing--card .blog-card__statistics {
  top: 8px;
  left: 7px;
  gap: 6.75px;
}
.landing--card .blog-card__body {
  height: 93.13px;
  padding: 6.75px 6.75px 10.12px;
}
@media screen and (min-width: 690px) {
  .landing--card .blog-card__body {
    height: 148px;
  }
}
.landing--card .blog-card__info {
  gap: 9px;
}
.landing--card .blog-card__info .blog-card__info-category {
  max-width: 17ch;
  font-size: 7.875px;
}
.landing--card .blog-card__info .divider {
  height: 11.25px;
}
.landing--card .blog-card__info .blog-card__info-date {
  font-size: 7.875px;
}
.landing--card .blog-card__title {
  margin-top: 8.44px;
  font-size: 10.125px;
}
.landing--card .cardblog__img {
  width: 100%;
  height: 155px;
  border-radius: 4.5px 4.5px 2.81px 2.81px;
}
@media screen and (min-width: 690px) {
  .landing--card .cardblog__img {
    width: 100%;
    max-width: 350px;
    height: 223px;
  }
}
@media (min-width: 390px) {
  .landing--card {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .landing--card {
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    max-width: 350px;
  }
  .landing--card .gradient-overlay {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .landing--card .blog-card__timereading,
  .landing--card .blog-card__rating {
    gap: 5px;
  }
  .landing--card .blog-card__timereading p,
  .landing--card .blog-card__rating p {
    font-size: 14px;
  }
  .landing--card .blog-card__timereading img,
  .landing--card .blog-card__rating img {
    width: 15px;
    height: 15px;
  }
  .landing--card .blog-card__timereading {
    gap: 5px;
  }
  .landing--card .blog-card__rating {
    gap: 6px;
  }
  .landing--card .blog-card__statistics {
    top: 14.5px;
    left: 12px;
    gap: 12px;
  }
  .landing--card .blog-card__body {
    height: 100%;
    min-height: 95px;
    padding: 12px 12px 18px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .landing--card .blog-card__body {
    min-height: 134px;
  }
}
@media (min-width: 768px) {
  .landing--card .blog-card__info {
    gap: 16px;
  }
  .landing--card .blog-card__info .blog-card__info-category {
    max-width: 17ch;
    font-size: 14px;
  }
  .landing--card .blog-card__info .blog-card__info-date {
    font-size: 14px;
  }
  .landing--card .blog-card__info .divider {
    width: 1px;
    height: 20px;
  }
  .landing--card .blog-card__title {
    margin-top: 15px;
    font-size: 18px;
  }
  .landing--card .cardblog__img {
    height: 223px;
    border-radius: 8px 8px 5px 5px;
  }
}

@media (max-width: 389px) {
  .blog--card {
    position: relative;
    width: 100%;
    max-width: 196.88px;
    background-color: #0e1d3a;
    border-radius: 4.5px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    max-width: 196.88px;
  }
  .blog--card .gradient-overlay {
    border-top-left-radius: 4.5px;
    border-top-right-radius: 4.5px;
  }
  .blog--card .blog-card__header {
    position: relative;
  }
  .blog--card .blog-card__timereading p,
  .blog--card .blog-card__rating p {
    font-size: 7.875px;
  }
  .blog--card .blog-card__timereading img,
  .blog--card .blog-card__rating img {
    width: 8.44px;
    height: 8.44px;
  }
  .blog--card .blog-card__timereading {
    gap: 2.81px;
  }
  .blog--card .blog-card__rating {
    gap: 3.38px;
  }
  .blog--card .blog-card__statistics {
    top: 8px;
    left: 7px;
    gap: 6.75px;
  }
  .blog--card .blog-card__body {
    height: 93.13px;
    padding: 6.75px 6.75px 10.12px;
  }
}
@media screen and (max-width: 389px) and (min-width: 690px) {
  .blog--card .blog-card__body {
    height: 148px;
  }
}
@media (max-width: 389px) {
  .blog--card .blog-card__info {
    gap: 9px;
  }
  .blog--card .blog-card__info .blog-card__info-category {
    max-width: 17ch;
    font-size: 7.875px;
  }
  .blog--card .blog-card__info .divider {
    height: 11.25px;
  }
  .blog--card .blog-card__info .blog-card__info-date {
    font-size: 7.875px;
  }
  .blog--card .blog-card__title {
    margin-top: 8.44px;
    font-size: 10.125px;
  }
  .blog--card .cardblog__img {
    width: 100%;
    height: 155px;
    border-radius: 4.5px 4.5px 2.81px 2.81px;
  }
}
@media screen and (max-width: 389px) and (min-width: 690px) {
  .blog--card .cardblog__img {
    width: 100%;
    max-width: 350px;
    height: 223px;
  }
}
@media (min-width: 390px) {
  .blog--card {
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  }
  .blog--card .gradient-overlay {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .blog--card .blog-card__timereading,
  .blog--card .blog-card__rating {
    gap: 5px;
  }
  .blog--card .blog-card__timereading p,
  .blog--card .blog-card__rating p {
    font-size: 14px;
  }
  .blog--card .blog-card__timereading img,
  .blog--card .blog-card__rating img {
    width: 15px;
    height: 15px;
  }
  .blog--card .blog-card__timereading {
    gap: 5px;
  }
  .blog--card .blog-card__rating {
    gap: 6px;
  }
  .blog--card .blog-card__statistics {
    top: 14.5px;
    left: 12px;
    gap: 12px;
  }
  .blog--card .blog-card__body {
    height: 100%;
    min-height: 95px;
    padding: 12px 12px 18px;
  }
}
@media screen and (min-width: 390px) and (min-width: 1200px) {
  .blog--card .blog-card__body {
    min-height: 134px;
  }
}
@media (min-width: 390px) {
  .blog--card .blog-card__info {
    gap: 16px;
  }
  .blog--card .blog-card__info .blog-card__info-category {
    max-width: 17ch;
    font-size: 14px;
  }
  .blog--card .blog-card__info .blog-card__info-date {
    font-size: 14px;
  }
  .blog--card .blog-card__info .divider {
    width: 1px;
    height: 20px;
  }
  .blog--card .blog-card__title {
    margin-top: 15px;
    font-size: 18px;
  }
  .blog--card .cardblog__img {
    height: 223px;
    border-radius: 8px 8px 5px 5px;
  }
}

.feature--card .featured {
  display: none;
}
@media (max-width: 389px) {
  .feature--card {
    position: relative;
    width: 100%;
    max-width: 196.88px;
    background-color: #0e1d3a;
    border-radius: 4.5px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    max-width: 196.88px;
  }
  .feature--card .gradient-overlay {
    border-top-left-radius: 4.5px;
    border-top-right-radius: 4.5px;
  }
  .feature--card .blog-card__header {
    position: relative;
  }
  .feature--card .blog-card__timereading p,
  .feature--card .blog-card__rating p {
    font-size: 7.875px;
  }
  .feature--card .blog-card__timereading img,
  .feature--card .blog-card__rating img {
    width: 8.44px;
    height: 8.44px;
  }
  .feature--card .blog-card__timereading {
    gap: 2.81px;
  }
  .feature--card .blog-card__rating {
    gap: 3.38px;
  }
  .feature--card .blog-card__statistics {
    top: 8px;
    left: 7px;
    gap: 6.75px;
  }
  .feature--card .blog-card__body {
    height: 93.13px;
    padding: 6.75px 6.75px 10.12px;
  }
}
@media screen and (max-width: 389px) and (min-width: 690px) {
  .feature--card .blog-card__body {
    height: 148px;
  }
}
@media (max-width: 389px) {
  .feature--card .blog-card__info {
    gap: 9px;
  }
  .feature--card .blog-card__info .blog-card__info-category {
    max-width: 17ch;
    font-size: 7.875px;
  }
  .feature--card .blog-card__info .divider {
    height: 11.25px;
  }
  .feature--card .blog-card__info .blog-card__info-date {
    font-size: 7.875px;
  }
  .feature--card .blog-card__title {
    margin-top: 8.44px;
    font-size: 10.125px;
  }
  .feature--card .cardblog__img {
    width: 100%;
    height: 155px;
    border-radius: 4.5px 4.5px 2.81px 2.81px;
  }
}
@media screen and (max-width: 389px) and (min-width: 690px) {
  .feature--card .cardblog__img {
    width: 100%;
    max-width: 350px;
    height: 223px;
  }
}
@media (min-width: 390px) {
  .feature--card {
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  }
  .feature--card .gradient-overlay {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .feature--card .blog-card__timereading,
  .feature--card .blog-card__rating {
    gap: 5px;
  }
  .feature--card .blog-card__timereading p,
  .feature--card .blog-card__rating p {
    font-size: 14px;
  }
  .feature--card .blog-card__timereading img,
  .feature--card .blog-card__rating img {
    width: 15px;
    height: 15px;
  }
  .feature--card .blog-card__timereading {
    gap: 5px;
  }
  .feature--card .blog-card__rating {
    gap: 6px;
  }
  .feature--card .blog-card__statistics {
    top: 14.5px;
    left: 12px;
    gap: 12px;
  }
  .feature--card .blog-card__body {
    height: 100%;
    min-height: 95px;
    padding: 12px 12px 18px;
  }
}
@media screen and (min-width: 390px) and (min-width: 1200px) {
  .feature--card .blog-card__body {
    min-height: 134px;
  }
}
@media (min-width: 390px) {
  .feature--card .blog-card__info {
    gap: 16px;
  }
  .feature--card .blog-card__info .blog-card__info-category {
    max-width: 17ch;
    font-size: 14px;
  }
  .feature--card .blog-card__info .blog-card__info-date {
    font-size: 14px;
  }
  .feature--card .blog-card__info .divider {
    width: 1px;
    height: 20px;
  }
  .feature--card .blog-card__title {
    margin-top: 15px;
    font-size: 18px;
  }
  .feature--card .cardblog__img {
    height: 223px;
    border-radius: 8px 8px 5px 5px;
  }
  .feature--card .blog-card__title {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .feature--card {
    width: 100%;
    max-width: 834px;
    border-radius: 16.6px;
    box-shadow: 0 0 20.781px 0 rgba(0, 0, 0, 0.15);
  }
  .feature--card .gradient-overlay {
    border-top-left-radius: 16.6px;
    border-top-right-radius: 16.6px;
  }
  .feature--card .blog-card__timereading,
  .feature--card .blog-card__rating {
    gap: 10.39px;
  }
  .feature--card .blog-card__timereading p,
  .feature--card .blog-card__rating p {
    font-size: 29.093px;
  }
  .feature--card .blog-card__timereading img,
  .feature--card .blog-card__rating img {
    width: 31.17px;
    height: 31.17px;
  }
  .feature--card .blog-card__timereading {
    gap: 10.39px;
  }
  .feature--card .blog-card__rating {
    gap: 12.47px;
  }
  .feature--card .blog-card__statistics {
    top: 30.13px;
    left: 35.33px;
    gap: 24.94px;
  }
  .feature--card .blog-card__body {
    padding: 24.94px 40.87px 37.41px;
  }
  .feature--card .blog-card__info {
    gap: 33.25px;
  }
  .feature--card .blog-card__info .blog-card__info-category {
    max-width: 203px;
    font-size: 29.093px;
  }
  .feature--card .blog-card__info .divider {
    width: 2.078px;
    height: 41.562px;
  }
  .feature--card .blog-card__info .blog-card__info-date {
    font-size: 29.093px;
  }
  .feature--card .blog-card__title {
    width: 90.2%;
    margin-top: 31.17px;
    font-size: 41.562px;
  }
  .feature--card .featured {
    display: block;
    width: 173px;
    padding: 8px 10px;
    background: rgba(250, 192, 22, 0.5);
    border-radius: 8px;
  }
  .feature--card .featured p {
    font-family: "DM Sans", sans-serif;
    font-size: 29.093px;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    color: #fff;
  }
  .feature--card .cardblog__img {
    height: 463.41px;
    border-radius: 16.6px 16.6px 10.4px 10.4px;
  }
}

#blogs-container .blog-card {
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 390px) {
  #blogs-container .blog-card {
    height: unset;
  }
}
#blogs-container .blog--card .blog-card__body {
  height: -moz-fit-content;
  height: fit-content;
}

/* stylelint-disable no-descending-specificity */
.filter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 20px 16px;
  background-color: #f5f7f8;
  border-radius: 5px;
}
.filter-form.invalid {
  align-items: unset;
}
.filter-form .css-151sz6c-indicatorContainer {
  padding: 0;
}
.filter-form__control .filter-form__label {
  overflow: hidden;
  margin-block-end: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #6e7789;
  text-overflow: ellipsis;
}
.filter-form__control .filter-form__error {
  margin-top: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 14px;
  color: #ff3246;
}
.filter-form__control .filter-form__error [aria-hidden=true] {
  display: block;
  opacity: 0;
}
.filter-form__control .filter-form__error [aria-hidden=false] {
  display: block;
  opacity: 1;
}
.filter-form__radio-group {
  display: flex;
  gap: 26px;
}
.filter-form__radio-group label {
  cursor: pointer;
  display: flex;
  gap: 8px;
  align-items: center;
}
.filter-form__radio-group label input {
  cursor: pointer;
  scale: 0.7;
  color: #0e1d3a;
}
.filter-form__radio-group label span {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  /* 114.286% */
  color: #000;
}
@media screen and (min-width: 1300px) {
  .filter-form__radio-group label {
    white-space: nowrap;
  }
}
@media screen and (min-width: 1024px) {
  .filter-form__radio-group {
    gap: 20px;
    min-height: 48px;
    margin-block-start: auto;
  }
}
@media screen and (min-width: 1024px) {
  .filter-form__radio-group {
    padding-inline: 20px;
  }
}
.filter-form__select {
  position: relative;
}
.filter-form__select .css-1u9des2-indicatorSeparator {
  display: none;
}
.filter-form__select-placeholder, .filter-form__select-value {
  overflow: hidden;
  display: flex;
  grid-area: 1/1/2/3 !important;
  gap: 8px;
  align-items: center;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 16px;
  color: #cfd2d8;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.filter-form__select-placeholder img, .filter-form__select-value img {
  width: 24px;
  height: 24px;
}
.filter-form__select-value {
  font-style: normal;
  color: #0e1d3a;
}
.filter-form__select-indicators-container .css-tj5bde-Svg {
  fill: #0e1d3a;
}
.filter-form__search-button {
  cursor: pointer;
  display: flex;
  flex-direction: row-reverse;
  gap: 8px;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  background: #0e1d3a;
  border-radius: 5px;
}
.filter-form__search-button span {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  /* 100% */
  color: #fff;
  text-align: center;
}
.filter-form__search-button img {
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 1024px) {
  .filter-form__search-button {
    max-height: 48px;
    margin-block-start: auto;
  }
}
.filter-form .css-13cymwt-control,
.filter-form .css-t3ipsp-control {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  border: 1px solid #cfd2d8;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.filter-form .css-13cymwt-control .css-hlgwow,
.filter-form .css-t3ipsp-control .css-hlgwow {
  padding-block: 12px;
  padding-inline: 16px 0;
}
.filter-form .css-13cymwt-control .css-1wy0on6,
.filter-form .css-t3ipsp-control .css-1wy0on6 {
  padding-inline: 8px 16px;
}
.filter-form .css-13cymwt-control.active, .filter-form .css-13cymwt-control.active:hover,
.filter-form .css-t3ipsp-control.active,
.filter-form .css-t3ipsp-control.active:hover {
  border-color: transparent;
  outline: 2px solid #2684ff;
}
.filter-form .css-13cymwt-control.active .css-1xc3v61-indicatorContainer svg,
.filter-form .css-13cymwt-control.active .css-15lsz6c-indicatorContainer svg, .filter-form .css-13cymwt-control.active:hover .css-1xc3v61-indicatorContainer svg,
.filter-form .css-13cymwt-control.active:hover .css-15lsz6c-indicatorContainer svg,
.filter-form .css-t3ipsp-control.active .css-1xc3v61-indicatorContainer svg,
.filter-form .css-t3ipsp-control.active .css-15lsz6c-indicatorContainer svg,
.filter-form .css-t3ipsp-control.active:hover .css-1xc3v61-indicatorContainer svg,
.filter-form .css-t3ipsp-control.active:hover .css-15lsz6c-indicatorContainer svg {
  fill: #2684ff;
}
.filter-form .css-13cymwt-control .css-1xc3v61-indicatorContainer,
.filter-form .css-13cymwt-control .css-15lsz6c-indicatorContainer,
.filter-form .css-t3ipsp-control .css-1xc3v61-indicatorContainer,
.filter-form .css-t3ipsp-control .css-15lsz6c-indicatorContainer {
  padding: 0;
}
.filter-form .css-13cymwt-control .css-1xc3v61-indicatorContainer svg,
.filter-form .css-13cymwt-control .css-15lsz6c-indicatorContainer svg,
.filter-form .css-t3ipsp-control .css-1xc3v61-indicatorContainer svg,
.filter-form .css-t3ipsp-control .css-15lsz6c-indicatorContainer svg {
  fill: #cfd2d8;
  transition: all 0.3s ease;
}
.filter-form .css-13cymwt-control:hover,
.filter-form .css-t3ipsp-control:hover {
  border: 1px solid #3e4a61;
}
.filter-form .css-13cymwt-control:hover .css-1xc3v61-indicatorContainer svg,
.filter-form .css-13cymwt-control:hover .css-15lsz6c-indicatorContainer svg,
.filter-form .css-t3ipsp-control:hover .css-1xc3v61-indicatorContainer svg,
.filter-form .css-t3ipsp-control:hover .css-15lsz6c-indicatorContainer svg {
  fill: initial;
}
.filter-form .css-1jqq78o-placeholder {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .filter-form__wrapper {
    max-width: calc(100% - 20px);
  }
}
@media screen and (min-width: 1300px) {
  .filter-form__wrapper {
    max-width: 1256px;
  }
}
@media screen and (min-width: 1024px) {
  .filter-form {
    flex-direction: row;
    gap: 14px;
    align-items: center;
    justify-content: center;
    padding: 18px 30px 25px;
  }
  .filter-form .invalid {
    margin-block-end: 18px;
  }
  .filter-form .invalid.filter-form__control--select {
    margin-block-end: 0;
  }
  .filter-form .invalid.filter-form__search-button {
    margin-block-start: 20px;
  }
  .filter-form .css-13cymwt-control {
    width: 100%;
    min-width: 258px;
  }
  .filter-form__control--select {
    flex-grow: 1;
    max-width: 366px;
  }
}
@media screen and (min-width: 1366px) {
  .filter-form {
    /* stylelint-disable-next-line rule-empty-line-before */
  }
  .filter-form .css-13cymwt-control,
  .filter-form .css-t3ipsp-control {
    min-width: 366px;
  }
}

#filter-form {
  display: none;
}

#filter-form-temp .skeleton {
  overflow: hidden;
  width: 100%;
}

#filter-form-temp .skeleton-dropdown,
#filter-form-temp .skeleton-button {
  width: 100%;
  height: 48px;
}

#filter-form-temp .skeleton-radio {
  display: flex;
  gap: 26px;
}

#filter-form-temp .skeleton-radio-button {
  width: 90px;
  height: 32px;
}

@media screen and (min-width: 1024px) {
  #filter-form-temp .skeleton {
    display: flex;
    justify-content: space-between;
  }
  /* stylelint-disable-next-line rule-empty-line-before */
  #filter-form-temp .skeleton-dropdown {
    max-width: 366px;
  }
  #filter-form-temp .skeleton-button {
    max-width: 130px;
    height: 48px;
  }
}
.css-10wo9uf-option,
.css-tr4s17-option {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 8px 12px;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.css-tr4s17-option {
  color: #fff;
  background-color: #2684ff;
}

.css-10wo9uf-option:hover {
  background-color: #deebff;
}

.css-1nmdiq5-menu {
  position: absolute;
  z-index: 1;
  top: 100%;
  overflow-y: auto;
  box-sizing: border-box;
  width: 100%;
  max-height: 300px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: hsl(0, 0%, 100%);
  border-radius: 4px;
  box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 11px hsla(0, 0%, 0%, 0.1);
}

.faqs {
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
}
.faqs__title {
  margin-bottom: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  text-align: center;
}
@media (min-width: 768px) {
  .faqs__title {
    font-size: 40px;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.8px;
  }
}
.faqs__description {
  width: 102%;
  margin-bottom: 32px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #3e4a61;
  text-align: center;
}
@media (min-width: 768px) {
  .faqs__description {
    margin-bottom: 32px;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
  }
}
@media (min-width: 768px) {
  .faqs {
    max-width: 832px;
    margin: 60px auto;
  }
}

.street__container {
  position: relative;
  overflow-x: scroll;
  height: 700px;
  margin-bottom: 52px;
  padding-top: 20px;
}
.street__container .street__step {
  position: absolute;
  width: 288px;
}
.street__container .street__step__number {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #3E4A61;
  text-overflow: ellipsis;
  border-bottom: 1px solid #0e1d3a;
}
.street__container .street__step__number::after {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 50%;
  max-width: 100%;
  height: 5px;
  background-color: #3e4a61;
}
.street__container .street__step__heading {
  margin-bottom: 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
}
.street__container .street__step__text {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px; /* 171.429% */
  color: #3E4A61;
}
@media screen and (min-width: 890px) {
  .street__container .street__step {
    width: 338px;
  }
}
.street__container .street__image {
  position: relative;
  overflow: visible;
  width: auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
  /* width: 805.5px;
  height: 74.49px; */
  height: 81.49px;
  margin: auto;
  margin-top: 277.5px;
  margin-right: 94px;
}
@media screen and (min-width: 768px) {
  .street__container .street__image {
    width: 66.49px;
    height: 713px;
    margin: auto;
    margin-top: 19.5px;
  }
}
.street__container .step-1 {
  left: 55px;
}
.street__container .step-1 .street__step__number::after {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 50%;
  max-width: 100%;
  height: 5px;
  background-color: #fac016;
}
@media screen and (min-width: 768px) {
  .street__container .step-1 {
    left: 45px;
  }
}
@media screen and (min-width: 1090px) {
  .street__container .step-1 {
    left: 0;
  }
}
.street__container .step-2 {
  bottom: 70px;
  left: 243px;
}
@media screen and (min-width: 768px) {
  .street__container .step-2 {
    top: 195px;
    right: 45px;
    left: unset;
  }
}
@media screen and (min-width: 1090px) {
  .street__container .step-2 {
    right: 0;
  }
}
.street__container .step-3 {
  left: 503px;
}
@media screen and (min-width: 768px) {
  .street__container .step-3 {
    top: 361px;
    left: 45px;
  }
}
@media screen and (min-width: 1090px) {
  .street__container .step-3 {
    left: 0;
  }
}
.street__container .step-4 {
  bottom: 0;
  left: 698px;
}
@media screen and (min-width: 768px) {
  .street__container .step-4 {
    top: 532px;
    right: 45px;
    bottom: 0;
    left: unset;
  }
}
@media screen and (min-width: 1090px) {
  .street__container .step-4 {
    right: 0;
  }
}
.street__container .street__image__container {
  margin-right: 603px;
}
@media screen and (min-width: 442px) {
  .street__container .street__image__container {
    margin-right: 526px;
  }
}
@media screen and (min-width: 502px) {
  .street__container .street__image__container {
    margin-right: 474px;
  }
}
@media screen and (min-width: 555px) {
  .street__container .street__image__container {
    margin-right: 423px;
  }
}
@media screen and (min-width: 622px) {
  .street__container .street__image__container {
    margin-right: 358px;
  }
}
@media screen and (min-width: 692px) {
  .street__container .street__image__container {
    margin-right: 290px;
  }
}
@media screen and (min-width: 730px) {
  .street__container .street__image__container {
    margin-right: 239px;
  }
}
@media screen and (min-width: 768px) {
  .street__container .street__image__container {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .street__container {
    overflow: hidden;
    height: auto;
    padding-block: 32px;
    padding-inline: 45px;
  }
}
@media screen and (min-width: 1024px) {
  .street__container {
    margin-bottom: 0;
    padding-bottom: 41.5px;
  }
}
@media screen and (min-width: 1090px) {
  .street__container {
    max-width: 866px;
    margin: auto;
    padding-inline: 0;
  }
}

.street-section-heading {
  margin-bottom: 1rem;
  padding-inline: 20px;
  color: #0e1d3a;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .street-section-heading {
    margin-bottom: 20px;
  }
}

.main-text {
  margin-bottom: 32px;
  padding-inline: 19px;
  font-weight: 400;
  font-style: normal;
  line-height: 32px;
  color: #3e4a61;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .main-text {
    max-width: 905px;
    margin: auto;
    margin-bottom: 60px;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1061px) {
  .main-text {
    max-width: 1044px;
  }
}

.street {
  padding-block: 50px;
}
.street__button {
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  padding-block: 12px;
}
@media screen and (min-width: 768px) {
  .street__button {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
@media screen and (min-width: 1090px) {
  .street {
    padding-block: 60px;
  }
}

.school-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 294px;
  max-width: 100%;
  min-height: 421px;
  background: #f5f7f8;
  border-radius: 15px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.school-card.hide-description {
  min-height: unset;
}
@media screen and (min-width: 1024px) {
  .school-card {
    width: 408px;
    min-height: 475px;
  }
}

.badge {
  position: absolute;
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
  border-radius: 50px;
}

.badge--promotion {
  top: 10px;
  left: 10px;
  padding: 4px 12px;
  font-size: 12px;
  text-align: right;
  background: #00d472;
}
@media screen and (min-width: 1024px) {
  .badge--promotion {
    top: 14px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

.promotion-image {
  width: 12px;
  height: 12px;
}
@media screen and (min-width: 1024px) {
  .promotion-image {
    width: 14px;
    height: 14px;
  }
}

.school-card-header {
  position: relative;
}

.school-image {
  width: 330px;
  height: 177px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
@media screen and (min-width: 1024px) {
  .school-image {
    width: 408px;
    height: 222px;
  }
}

.badge--rating {
  top: 10px;
  right: 10px;
  gap: 3px;
  padding: 4px 6px;
  font-size: 10px;
  color: #0e1d3a;
  text-align: right;
  background: #eef2f3;
}
@media screen and (min-width: 1024px) {
  .badge--rating {
    top: 14px;
    gap: 8px;
    padding: 4px 8px;
    font-size: 12px;
  }
}

.rating-image {
  width: 12px;
  height: 12px;
}
@media screen and (min-width: 1024px) {
  .rating-image {
    width: 24px;
    height: 24px;
  }
}

.school-card-body-header {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 11px;
}
@media screen and (min-width: 1024px) {
  .school-card-body-header {
    margin-bottom: 16px;
  }
}

.school-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  justify-content: center;
  padding: 8px 16px;
  padding-top: 3px;
}
@media screen and (min-width: 1024px) {
  .school-card-body {
    padding-top: 8px;
  }
}

.container-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 2px;
  background: #fff;
  border-radius: 100px;
}
@media screen and (min-width: 1024px) {
  .container-logo {
    width: 50px;
    height: 50px;
    padding: 6px;
  }
}

.school-logo {
  width: 34px;
  height: 34px;
}

.school-name {
  overflow: hidden;
  width: 212px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .school-name {
    width: 275px;
    font-size: 16px;
  }
}

.school-address {
  overflow: hidden;
  display: -webkit-box;
  flex: 1 0 0;
  margin-block-start: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px; /* 133.333% */
  color: #3e4a61;
  text-decoration-line: underline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.school-heading {
  max-width: 214px;
}

.badge--examiner {
  bottom: 10px;
  left: 10px;
  gap: 8px;
  padding: 4px 8px;
  background: #0e1d3a;
}

.examiner-image {
  width: 16px;
  height: 16px;
}
@media screen and (min-width: 1024px) {
  .examiner-image {
    width: 24px;
    height: 24px;
  }
}

.examiner-text {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-align: right;
}
@media screen and (min-width: 1024px) {
  .examiner-text {
    font-size: 12px;
  }
}

.examiner-badge {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-align: right;
}
@media screen and (min-width: 1024px) {
  .examiner-badge {
    font-size: 12px;
  }
}

.badge--courses {
  position: relative;
  gap: 8px;
  margin-bottom: 16px;
  padding: 4px 8px;
  background: #cfd2d8;
}
@media screen and (min-width: 1024px) {
  .badge--courses {
    padding: 4px 8px;
  }
}

.school-courses-image {
  width: 18px;
  height: 18px;
}
@media screen and (min-width: 1024px) {
  .school-courses-image {
    width: 24px;
    height: 24px;
  }
}

.school-courses-text {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
}
@media screen and (min-width: 1024px) {
  .school-courses-text {
    font-size: 12px;
  }
}

.school-description {
  width: 263px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  /* 200% */
  color: #0e1d3a;
}
@media screen and (min-width: 1024px) {
  .school-description {
    width: 377px;
    height: 139px;
    font-size: 14px;
  }
}

.scroll-section {
  gap: 13.5px;
}
@media (min-width: 1024px) {
  .scroll-section {
    gap: 24px;
  }
}

.section-blog {
  margin-bottom: 60px;
  padding-top: 60px;
}
@media (min-width: 1024px) {
  .section-blog__container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
.section-blog__title {
  margin-bottom: 25px;
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #001746;
  text-align: center;
}
.section-blog__description {
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #001746;
  text-align: center;
}
@media (min-width: 1024px) {
  .section-blog__description {
    width: 100%;
    text-align: center;
  }
}
.section-blog__info {
  margin-inline: auto;
}
.section-blog__info :nth-child(2) {
  margin-bottom: 20px;
}
@media (min-width: 1240px) {
  .section-blog__info {
    max-width: 1240px;
  }
}
.section-blog__button {
  width: 100%;
  max-width: 350px;
  height: 48px;
  margin-top: 31px;
  margin-inline: auto;
  padding: 15px 24px;
}
@media screen and (min-width: 690px) {
  .section-blog__button {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .section-blog__button {
    width: 100%;
    max-width: -moz-fit-content;
    max-width: fit-content;
    height: 48px;
    margin-inline: auto;
  }
}

@media (min-width: 1024px) {
  .blog-card:last-child {
    margin-right: 20px;
  }
}
@media (min-width: 1040px) {
  .blog-card:last-child {
    margin-right: 20%;
  }
}
@media (min-width: 1140px) {
  .blog-card:last-child {
    margin-right: 25%;
  }
}
@media (min-width: 1441px) {
  .blog-card:last-child {
    margin-right: 10%;
  }
}

.blog-carousel-container {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.blog-carousel-container .next-button-blog {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: -68.5px;
  bottom: 0;
  width: 44px;
  height: 50px;
  margin-top: auto;
  margin-bottom: auto;
  visibility: hidden;
}
@media screen and (min-width: 380px) {
  .blog-carousel-container .next-button-blog {
    visibility: visible;
  }
}
.blog-carousel-container .prev-button-blog {
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -68.5px;
  transform: rotate(180deg);
  width: 44px;
  height: 50px;
  margin-top: auto;
  margin-bottom: auto;
  visibility: hidden;
}
@media screen and (min-width: 380px) {
  .blog-carousel-container .prev-button-blog {
    visibility: visible;
  }
}
@media screen and (min-width: 690px) {
  .blog-carousel-container .less-four-cards-item-tablet {
    display: none;
  }
}
@media screen and (min-width: 1260px) {
  .blog-carousel-container .less-four-cards-item-desktop {
    display: none;
  }
}
.blog-carousel-container .less-four-cards {
  display: none;
}

.blog-carousel {
  overflow: hidden;
  display: flex;
  gap: 80px;
  width: 100%;
  max-width: 253px;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
}
.blog-carousel .blog-carousel-slider {
  width: 243px !important;
  margin-inline: 5px;
}
.blog-carousel .blog-carousel-slider .landing--card {
  max-width: 100%;
}
@media screen and (min-width: 390px) {
  .blog-carousel .blog-carousel-slider .landing--card .blog-card__title {
    font-size: 12.497px;
  }
}
@media screen and (min-width: 690px) {
  .blog-carousel .blog-carousel-slider .landing--card .blog-card__title {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1260px) {
  .blog-carousel .blog-carousel-slider .landing--card .blog-card__title {
    margin-top: 8.44px;
    font-size: 18px;
    font-weight: 700;
  }
}
@media screen and (min-width: 690px) {
  .blog-carousel .blog-carousel-slider .landing--card .blog-card__body {
    height: 134px;
  }
}
.blog-carousel .blog-carousel-slider .landing--card .blog-card__info-category {
  max-width: 17ch;
  font-size: 9.72px;
}
@media screen and (min-width: 690px) {
  .blog-carousel .blog-carousel-slider .landing--card .blog-card__info-category {
    font-size: 14px;
    font-weight: 400;
  }
}
.blog-carousel .blog-carousel-slider .landing--card .blog-card__info-date {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 690px) {
  .blog-carousel .blog-carousel-slider .landing--card .cardblog__img {
    width: 100%;
    max-width: 350px;
  }
}
@media screen and (min-width: 690px) {
  .blog-carousel .blog-carousel-slider .landing--card {
    max-width: 350px;
  }
}
@media screen and (min-width: 768px) {
  .blog-carousel .blog-carousel-slider {
    width: 300px !important;
    height: 360px;
  }
  .blog-carousel .blog-carousel-slider .blog-card__title {
    font-size: 17px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1260px) {
  .blog-carousel .blog-carousel-slider .blog-card__title {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .blog-carousel .blog-carousel-slider .landing--card {
    max-width: 100%;
    height: 370px;
  }
}
@media screen and (min-width: 1260px) {
  .blog-carousel .blog-carousel-slider {
    width: 350px !important;
  }
}
@media screen and (min-width: 1350px) {
  .blog-carousel .blog-carousel-slider {
    width: 350px !important;
    margin-inline: 12px;
  }
}
@media screen and (min-width: 690px) {
  .blog-carousel {
    width: 100%;
    max-width: 505px;
    height: 360px;
  }
}
@media screen and (min-width: 768px) {
  .blog-carousel {
    width: 100%;
    max-width: 622px;
  }
}
@media screen and (min-width: 1260px) {
  .blog-carousel {
    gap: 24px;
    width: 100%;
    max-width: 1077px;
  }
}
@media screen and (min-width: 1350px) {
  .blog-carousel {
    width: 100%;
    max-width: 1120px;
  }
}

.pagination__control {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border-bottom: 1px solid #cfd2d8;
}
.pagination__control__text {
  max-width: 94px;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #3E4A61;
  text-overflow: ellipsis;
  white-space: nowrap;
  white-space: normal;
}
@media screen and (min-width: 391px) {
  .pagination__control__text {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media screen and (min-width: 768px) {
  .pagination__control__text {
    font-size: 12px;
  }
}
.pagination__control__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.pagination__control__buttons .button {
  min-width: 32px;
  padding-inline: 7px;
  font-size: 12px;
}
.pagination__control .selected {
  color: #fff;
  background-color: #0e1d3a;
}
.pagination__control .button-disabled {
  color: rgb(221, 214, 214);
  border-color: rgb(221, 214, 214);
}

.testimonials-seccion {
  padding-bottom: 34px;
  background-color: #0e1d3a;
}
.testimonials-seccion .wrapper {
  max-width: calc(100% - 60px);
}
@media screen and (min-width: 1024px) {
  .testimonials-seccion .wrapper {
    max-width: calc(100% - 100px);
  }
}
@media screen and (min-width: 1300px) {
  .testimonials-seccion .wrapper {
    max-width: var(--wrapper-max-width);
  }
}
.testimonials-seccion .testimonial {
  padding-inline: 0;
}
@media screen and (min-width: 768px) {
  .testimonials-seccion {
    padding-bottom: 0;
  }
}

.testimonial {
  display: grid;
  grid-template-columns: 44px auto;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-top: 34px;
  padding-bottom: 53px;
  padding-inline: 30px;
  background-color: #0e1d3a;
}
.testimonial__reviews_heading {
  grid-column: 1/3;
  grid-row: 1/2;
  margin-bottom: 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  color: #eef2f3;
}
@media screen and (min-width: 768px) {
  .testimonial__reviews_heading {
    grid-column: 2/3;
    grid-row: 2/3;
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .testimonial__reviews_heading {
    grid-column: 2/3;
    grid-row: 2/3;
    font-size: 24px;
  }
}
.testimonial__reviews_accent {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  color: #eef2f3;
}
.testimonial__reviews_content {
  grid-column: 1/3;
  grid-row: 2/3;
  width: 100%;
  max-width: 34ch;
  margin-bottom: 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: #cfd2d8;
}
@media screen and (min-width: 500px) {
  .testimonial__reviews_content {
    max-width: 59ch;
  }
}
@media screen and (min-width: 768px) {
  .testimonial__reviews_content {
    grid-column: 2/3;
    grid-row: 3/4;
    width: 100%;
    max-width: 45ch;
    margin-bottom: 0;
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .testimonial__reviews_content {
    grid-column: 2/3;
    grid-row: 3/4;
    width: 100%;
    max-width: 48ch;
    margin-bottom: 0;
    font-size: 20px;
  }
}
@media screen and (min-width: 1150px) {
  .testimonial__reviews_content {
    max-width: 55ch;
  }
}
@media screen and (min-width: 1200px) {
  .testimonial__reviews_content {
    max-width: 59ch;
  }
}
.testimonial__profile_img {
  grid-column: 1/2;
  grid-row: 3/4;
  width: 100%;
  max-width: 44px;
  min-height: 44px;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .testimonial__profile_img {
    grid-column: 1/2;
    grid-row: 1/4;
    max-width: 164px;
    min-height: 164px;
    margin-left: auto;
  }
}
@media screen and (min-width: 1024px) {
  .testimonial__profile_img {
    grid-column: 1/2;
    grid-row: 1/4;
    max-width: 164px;
    min-height: 164px;
    margin-left: auto;
  }
}
.testimonial__role_wrapper {
  display: flex;
  grid-column: 2/3;
  grid-row: 3/4;
  flex-direction: column;
  row-gap: 4px;
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .testimonial__role_wrapper {
    grid-column: 2/3;
    grid-row: 1/2;
    flex-direction: row;
    -moz-column-gap: 12px;
         column-gap: 12px;
    align-items: center;
    margin-bottom: 21px;
    margin-left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .testimonial__role_wrapper {
    grid-column: 2/3;
    grid-row: 1/2;
    flex-direction: row;
    -moz-column-gap: 12px;
         column-gap: 12px;
    align-items: center;
    margin-left: 0;
  }
}
.testimonial__information_container {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.testimonial__role_img {
  width: 100%;
  max-width: 12px;
  border: 50px;
}
@media screen and (min-width: 768px) {
  .testimonial__role_img {
    width: 24px;
    max-width: 24px;
  }
}
.testimonial__role_desc {
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
}
@media screen and (min-width: 768px) {
  .testimonial__role_desc {
    font-size: 12px;
    line-height: normal;
  }
}
.testimonial__role_conteiner {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 3px;
  padding-inline: 8px;
  background: #fac016;
  border-radius: 50px;
}
@media screen and (min-width: 768px) {
  .testimonial__role_conteiner {
    order: 2;
    width: auto;
    padding-block: 3px;
  }
}
.testimonial__profile_name {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: #fac016;
}
@media screen and (min-width: 768px) {
  .testimonial__profile_name {
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    color: #fac016;
  }
}
@media screen and (min-width: 1024px) {
  .testimonial__profile_name {
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .testimonial {
    grid-template-columns: 164px auto;
    -moz-column-gap: 30px;
         column-gap: 30px;
    max-width: 768px;
    height: auto;
    margin-left: 40px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .testimonial {
    grid-template-columns: 164px auto;
    max-width: 1240px;
  }
}
@media screen and (min-width: 1300px) {
  .testimonial {
    grid-template-columns: 211px 870px;
    -moz-column-gap: 40px;
         column-gap: 40px;
    margin-left: 0;
  }
}

.testimonials-seccion .testimonial__slider {
  --swiper-pagination-bullet-width: 10px;
  --swiper-pagination-bullet-height: 10px;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-inactive-color: #58595b;
  --swiper-theme-color: #fac016;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bottom: 0;
  --swiper-navigation-size: 26.375px;
  --swiper-navigation-top-offset: 30%;
  --swiper-navigation-sides-offset: 0;
  --swiper-navigation-color: var(--swiper-theme-color);
}
.testimonials-seccion .testimonial__slider::part(bullet-active) {
  background-color: #fac016;
}
.testimonials-seccion .testimonial__slider::part(bullet) {
  background-color: #cfd2d8;
}
.testimonials-seccion .testimonial__slider::part(button-prev), .testimonials-seccion .testimonial__slider::part(button-next) {
  display: none;
}
@media screen and (min-width: 768px) {
  .testimonials-seccion .testimonial__slider::part(button-prev), .testimonials-seccion .testimonial__slider::part(button-next) {
    top: 187px;
    right: 0;
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .testimonials-seccion .testimonial__slider::part(button-prev), .testimonials-seccion .testimonial__slider::part(button-next) {
    top: 187px;
    right: 0;
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .testimonials-seccion .testimonial__slider::part(button-prev) {
    left: 0;
  }
}
@media screen and (min-width: 1440px) {
  .testimonials-seccion .testimonial__slider::part(button-prev) {
    top: 187px;
    left: 0;
  }
}
@media screen and (min-width: 1440px) {
  .testimonials-seccion .testimonial__slider::part(button-prev) {
    top: 187px;
    left: 0;
  }
}
.testimonials-seccion .testimonial__slider::part(button-next) {
  top: 187px;
}
@media screen and (min-width: 1300px) {
  .testimonials-seccion .testimonial__slider::part(button-next) {
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .testimonials-seccion .testimonial__slider::part(pagination) {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .testimonials-seccion .testimonial__slider::part(pagination) {
    display: none;
  }
}
.testimonials-seccion .testimonial__slider swiper-slide {
  height: auto;
}
.testimonials-seccion .testimonial__slider swiper-slide .testimonial {
  height: 100%;
}
.testimonials-seccion .testimonial__slider .swiper-button-next,
.testimonials-seccion .testimonial__slider .swiper-button-prev {
  background-color: var(--swiper-theme-color);
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.input-wrapper .input-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.input-wrapper label {
  margin-right: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #6e7789;
  text-overflow: ellipsis;
}
.input-wrapper .asterisk {
  margin-left: 6px;
  color: #ff3246;
}
.input-wrapper input,
.input-wrapper textarea {
  overflow: hidden;
  padding: 15px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
  text-overflow: ellipsis;
  background: #fff;
  border: 1px solid #cfd2d8;
  border-radius: 5px;
}
.input-wrapper input::-moz-placeholder, .input-wrapper textarea::-moz-placeholder {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 16px;
  color: #cfd2d8;
  text-overflow: ellipsis;
}
.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 16px;
  color: #cfd2d8;
  text-overflow: ellipsis;
}
.input-wrapper textarea {
  resize: vertical;
  height: 80px;
}
.input-wrapper .input-container {
  position: relative;
}
.input-wrapper .input-container .password-toggle {
  cursor: pointer;
  position: absolute;
  top: 11px;
  right: 16px;
  width: 24px;
  height: 24px;
}

.form__error {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 14px;
  color: #ff3246;
}

.feedback-message__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feedback-message__wrapper img {
  width: 99.75px;
  height: 98.96px;
  margin-bottom: 21px;
}
@media (min-width: 1024px) {
  .feedback-message__wrapper img {
    width: 129.83px;
    height: 129.83px;
  }
}
.feedback-message__wrapper h2 {
  margin-bottom: 8px;
  font-size: 42px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
  text-align: center;
}
.feedback-message__wrapper p {
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #6e7789;
  text-align: center;
}

.icons {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
}
.icons__icon {
  display: flex;
  flex-shrink: 0;
  gap: 16px;
  align-items: flex-start;
  width: 344px;
}
.icons__image {
  flex-shrink: 0;
  width: 147px;
  height: 147px;
}
.icons__container-text {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
}
.icons__title {
  font-family: "DM Sans", sans-serif;
  font-size: 48px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
  text-align: center;
}
.icons__subtitle {
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
}
.icons__description {
  max-width: 11ch;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
}
@media screen and (min-width: 380px) {
  .icons__description {
    max-width: unset;
  }
}
@media screen and (min-width: 1020px) {
  .icons__description {
    max-width: 15ch;
  }
}
@media screen and (min-width: 1150px) {
  .icons__description {
    width: auto;
    max-width: unset;
  }
}
@media screen and (min-width: 1400px) {
  .icons__description {
    width: 230px;
  }
}

.schools-carousel__slider {
  width: -moz-fit-content;
  width: fit-content;
}
.schools-carousel__slider:first-child {
  margin-left: var(--wrapper-margin);
  margin-left: 7px;
}
@media screen and (min-width: 1260px) {
  .schools-carousel__slider:first-child {
    margin-right: 7px;
  }
}
@media screen and (min-width: 690px) {
  .schools-carousel__slider {
    width: 294px !important;
    margin-right: 7px;
    margin-left: 7px;
  }
}
@media screen and (min-width: 1024px) {
  .schools-carousel__slider {
    width: 424px !important;
  }
}
@media screen and (min-width: 1260px) {
  .schools-carousel__slider {
    width: 362px !important;
  }
}

/* .schools-carousel__slider {
  flex-shrink: 0;
  width: 100%;
  width: 310px !important;

  &:first-child {
    margin-left: var(--wrapper-margin);
    margin-left: 7px;
  }

  @media screen and (min-width: 1024px) {
    width: 425px !important;
  }
  } */
.schools-carousel {
  overflow: hidden;
  display: flex;
  align-items: stretch;
  width: 308px;
  margin: auto;
}
@media screen and (min-width: 690px) {
  .schools-carousel {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 294px;
    max-width: 616px;
  }
}
@media screen and (min-width: 1024px) {
  .schools-carousel {
    min-width: 424px;
    max-width: 874px;
  }
}
@media screen and (min-width: 1260px) {
  .schools-carousel {
    width: -moz-fit-content;
    width: fit-content;
    min-width: unset;
    max-width: 1130px;
  }
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.icons-slider .icons__icon {
  gap: 1rem;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .icons-slider .icons__icon {
    width: -moz-fit-content !important;
    width: fit-content !important;
    margin: 0;
    margin-right: 1rem;
  }
  .icons-slider .icons__icon :last-of-type {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .icons-slider .icons__icon {
    margin-right: 0;
  }
}
.icons-slider .icons {
  max-width: 344px;
  margin: auto;
}
.icons-slider .icons__description {
  max-width: 204px;
}
@media screen and (min-width: 1024px) {
  .icons-slider .icons__description {
    max-width: 15ch;
  }
}
@media screen and (min-width: 1180px) {
  .icons-slider .icons__description {
    max-width: 210px;
  }
}
@media screen and (min-width: 1250px) {
  .icons-slider .icons__description {
    max-width: 230px;
  }
}
@media screen and (min-width: 370px) {
  .icons-slider .icons {
    max-width: 342px !important;
  }
}
@media screen and (min-width: 385px) {
  .icons-slider .icons {
    max-width: 356px !important;
  }
}
@media screen and (min-width: 400px) {
  .icons-slider .icons {
    max-width: 388px !important;
  }
}
@media screen and (min-width: 640px) {
  .icons-slider .icons {
    width: 403px !important;
    max-width: 403px !important;
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .icons-slider .icons {
    width: -moz-fit-content !important;
    width: fit-content !important;
    max-width: -moz-fit-content !important;
    max-width: fit-content !important;
    margin-left: var(--wrapper-margin);
  }
}
@media screen and (min-width: 1024px) {
  .icons-slider .icons {
    margin-left: 0;
  }
}
@media screen and (min-width: 1100px) {
  .icons-slider .icons {
    margin-left: 0;
  }
}
@media screen and (min-width: 1250px) {
  .icons-slider .icons {
    width: 403px !important;
    max-width: 403px !important;
  }
}
@media screen and (min-width: 1250px) {
  .icons-slider {
    margin-right: 1rem;
  }
  .icons-slider:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .icons-slider {
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media screen and (min-width: 1024px) {
  .icons-caroesel {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}

.schools-section {
  margin-top: 78px;
}
.schools-section .wrapper {
  max-width: 100%;
  margin: 0;
}
.schools-section__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  align-self: stretch;
  max-width: 390px;
  margin-bottom: 32px;
  padding-top: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid #cfd2d8;
}
@media screen and (min-width: 760px) {
  .schools-section__header {
    max-width: 100%;
  }
}
@media screen and (min-width: 1020px) {
  .schools-section__header {
    flex-direction: row;
    gap: 0;
    justify-content: center;
    max-width: 100%;
    padding-top: 60px;
  }
}
.schools-section__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: var(--wrapper-margin);
  margin-bottom: 32px;
  margin-left: var(--wrapper-margin);
  padding-top: 80px;
  /* title/mobile */
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
  text-align: center;
  border-bottom: 1px solid #cfd2d8;
}
@media screen and (min-width: 760px) {
  .schools-section__heading {
    flex-direction: row;
    gap: 8px;
    justify-content: center;
    width: auto;
    margin-right: var(--wrapper-margin);
    margin-left: var(--wrapper-margin);
    padding-bottom: 16px;
    font-size: 40px;
  }
}
@media screen and (min-width: 1020px) {
  .schools-section__heading {
    flex-direction: row;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 16px;
    font-size: 40px;
  }
}
.schools-section__subheading {
  padding-bottom: 16px;
  /* title/mobile */
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #4b6dfb;
  text-align: center;
}
@media screen and (min-width: 760px) {
  .schools-section__subheading {
    padding-bottom: 0;
    font-size: 40px;
  }
}
.schools-section__button {
  display: flex;
  flex: 1 0 0;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 32px;
  margin-bottom: 40px;
  padding: 12px 24px;
  background: #0e1d3a;
  border-radius: 5px;
}
@media screen and (min-width: 766px) {
  .schools-section__button {
    width: 304px;
    height: auto;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  .schools-section {
    margin-top: 74px;
  }
}

.button--school {
  width: 307px;
  margin-top: 32px;
  margin-bottom: 40px;
  margin-inline: auto;
}
@media screen and (min-width: 370px) {
  .button--school {
    width: 350px;
  }
}
@media screen and (min-width: 766px) {
  .button--school {
    margin-inline: auto;
  }
}
@media screen and (min-width: 1020px) {
  .button--school {
    margin-bottom: 60px;
  }
}

.blogs__container .posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  row-gap: 25px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  max-width: 350px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 38px;
}
.blogs__container .posts.posts--paginated {
  min-height: 1042px;
}
.blogs__container .posts.posts--paginated .skeleton.agency {
  width: 250px;
  height: 200px;
}
@media screen and (min-width: 390px) {
  .blogs__container .posts.posts--paginated {
    min-height: 1058px;
  }
  .blogs__container .posts.posts--paginated .skeleton.agency {
    width: 350px;
    height: 336px;
  }
}
@media screen and (min-width: 1024px) {
  .blogs__container .posts.posts--paginated {
    min-height: 735px;
  }
  .blogs__container .posts.posts--paginated .skeleton.agency {
    height: 357px;
  }
}
@media (max-width: 389px) {
  .blogs__container .posts {
    max-width: 250px;
    margin: 0 auto;
    margin-top: 20px;
  }
  .blogs__container .posts .blog-card {
    max-width: 250px;
    height: 200px;
  }
}
@media (min-width: 784px) {
  .blogs__container .posts {
    grid-template-columns: minmax(350px, 1fr);
    justify-items: center;
    max-width: 725px;
  }
}
@media (min-width: 1024px) {
  .blogs__container .posts {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    justify-items: unset;
  }
  .blogs__container .posts .blog-card--elements {
    height: 350px;
  }
  .blogs__container .posts .blog-card--elements:first-child.feature--card {
    grid-column: 1/3;
    grid-row: 1/3;
    width: 725px;
    height: 763px;
  }
}
@media (min-width: 1154px) {
  .blogs__container .posts {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 350px;
    max-width: 1100px;
  }
}
@media (min-width: 1318px) {
  .blogs__container .posts {
    grid-template-columns: 350px 350px 350px;
    gap: 60px;
    justify-content: center;
    max-width: 1209px;
  }
  .blogs__container .posts .blog-card--elements:first-child.feature--card {
    width: 760px;
  }
  .blogs__container .posts .blog-card--elements:nth-child(3) {
    margin-top: unset;
  }
}
.blogs__filter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 89.744%;
  margin: 0 auto;
  margin-top: 20px;
}
.blogs__filter .form-group {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 12px 16px;
  background-color: #eef2f3;
}
.blogs__filter .form-group label,
.blogs__filter .form-group select {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
}
.blogs__filter .form-group div.nice-select {
  height: 48px;
  padding-top: 5px;
  padding-right: 48px;
  padding-left: 16px;
  background-color: transparent;
  border: none;
}
.blogs__filter .form-group div.nice-select::after {
  top: 46%;
  right: 9px;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-right: 2px solid #0e1d3a;
  border-bottom: 2px solid #0e1d3a;
}
@media (min-width: 390px) {
  .blogs__filter .form-group div.nice-select::after {
    max-width: 81%;
  }
}
@media (min-width: 1024px) {
  .blogs__filter .form-group div.nice-select::after {
    margin-right: 16px;
  }
}
.blogs__filter .form-group div.nice-select .nice-select-dropdown {
  z-index: 2;
  top: 49px;
  right: 10px;
  left: unset;
}
.blogs__filter .form-group div.nice-select .nice-select-dropdown .list {
  margin-left: 0;
}
@media (max-width: 390px) {
  .blogs__filter .form-group div.nice-select .nice-select-dropdown {
    right: -17px;
  }
}
@media (min-width: 1024px) {
  .blogs__filter .form-group div.nice-select .nice-select-dropdown {
    top: 45px;
  }
}
.blogs__filter .form-group div.nice-select .current {
  margin: 12px 0;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
}
@media (min-width: 1024px) {
  .blogs__filter .form-group div.nice-select .current {
    margin-right: 0 8px 0 0;
  }
}
@media (max-width: 390px) {
  .blogs__filter .form-group div.nice-select {
    min-width: 40px;
  }
}
@media (min-width: 1024px) {
  .blogs__filter .form-group div.nice-select {
    background-color: #eef2f3;
  }
}
@media (min-width: 1024px) {
  .blogs__filter .form-group {
    background-color: transparent;
  }
}
@media (min-width: 768px) {
  .blogs__filter {
    max-width: 725px;
  }
}
@media (min-width: 1024px) {
  .blogs__filter {
    flex-direction: row;
    gap: 8px;
    max-width: 91.666%;
  }
}
@media (min-width: 1366px) {
  .blogs__filter {
    max-width: 1340px;
  }
}

.pagination__control {
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .pagination__control {
    margin-bottom: 93px;
  }
}

.resources_card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: auto;
  height: auto;
  background: #0e1d3a;
  border-radius: 8px;
  /* stylelint-disable-next-line no-descending-specificity */
}
.resources_card:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 139px;
  background: rgba(14, 29, 58, 0.5);
  border-radius: 8px 8px 0 0;
}
.resources_card:hover .resources_card__text-hover {
  opacity: 1;
}
.resources_card__image {
  width: 321px;
  height: 139px;
  border-radius: 8px 8px 0 0;
}
.resources_card__text-hover {
  --button-text-color: #fff;
  --button-hover-text-color: #fff;
  position: absolute;
  z-index: 1;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-10px);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.resources_card__content {
  margin-top: 16px;
  padding-right: 20px;
  padding-left: 20px;
}
.resources_card__title {
  margin-bottom: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
}
.resources_card__description {
  margin-bottom: 17px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
}
.resources_card__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.resources_card__questions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
  height: 20px;
}
.resources_card__image-questions {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.resources_card__text-questions {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
}
.resources_card__rating {
  display: flex;
}
.resources_card__image-rating {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
}
.resources_card__text-rating {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-align: right;
}
@media screen and (min-width: 425px) {
  .resources_card {
    width: 321px;
  }
}
@media screen and (min-width: 768px) {
  .resources_card {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .resources_card {
    margin-bottom: 7px;
  }
}

.school-information {
  margin-top: 30px;
}
.school-information__title {
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px;
  color: #0e1d3a;
  text-align: center;
}
.school-information__description {
  margin-top: 8px;
  margin-bottom: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 27px;
  color: #0e1d3a;
  text-align: center;
}
@media (min-width: 1024px) {
  .school-information__description {
    font-size: 16px;
    line-height: 32px;
  }
}
.school-information__section {
  margin-bottom: 20px;
  padding-bottom: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px;
  color: #0e1d3a;
  text-overflow: ellipsis;
  border-bottom: 1px solid #cfd2d8;
}
.school-information__general-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.school-information__general-info .form__control-select {
  height: 48px;
}
@media (min-width: 1024px) {
  .school-information__general-info {
    display: grid;
    grid-template-columns: 196px repeat(2, 300px);
    grid-template-rows: repeat(4, 68px) 156px;
    row-gap: 16px;
    -moz-column-gap: 16px;
         column-gap: 16px;
    width: 832px;
    margin: 0 auto;
  }
}
.school-information .input__general-info {
  margin-bottom: 28px;
}
@media (min-width: 1024px) {
  .school-information .input__general-info:nth-child(2) {
    grid-column: 2/5;
  }
}
@media (min-width: 1024px) {
  .school-information .input__general-info:nth-child(3) {
    grid-column: 1/5;
    grid-row: 4;
  }
}
@media (min-width: 1024px) {
  .school-information .input__general-info:nth-child(4) {
    grid-column: 2/3;
  }
}
@media (min-width: 1024px) {
  .school-information .input__general-info:nth-child(5) {
    grid-column: 3/5;
  }
}
@media (min-width: 1024px) {
  .school-information .input__general-info:nth-child(6) {
    grid-column: 2/5;
    grid-row: 3/4;
  }
}
@media (min-width: 1024px) {
  .school-information .input__general-info:nth-child(7) {
    grid-column: 1/5;
    grid-row: 5;
    margin-top: 10px;
  }
  .school-information .input__general-info:nth-child(7) textarea {
    height: 146px;
  }
}
.school-information__contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 28px;
}
.school-information__location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.school-information__location-info .image-upload__images-src {
  width: 397px;
  height: 210px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .school-information__location-info .image-upload__images-src {
    width: 832px;
    height: 180px;
  }
}
.school-information__location-info label {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #6e7789;
  text-overflow: ellipsis;
}
.school-information__buttons {
  display: flex;
  gap: 77px;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 28px;
}
.school-information__buttons .button--secondary {
  padding: 12px 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
  text-align: center;
  border-radius: 5px;
}
@media (max-width: 423px) {
  .school-information__buttons .button--secondary {
    width: 100%;
  }
}
.school-information__buttons .button--primary {
  width: 203px;
  padding: 12px 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #fff;
  text-align: center;
}
@media (max-width: 423px) {
  .school-information__buttons .button--primary {
    width: 100%;
  }
}
@media (max-width: 423px) {
  .school-information__buttons {
    flex-direction: column;
    gap: 10px;
  }
}
@media (min-width: 1024px) {
  .school-information__buttons {
    justify-content: end;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.school-information__images-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.school-information__images-info .add-image {
  display: flex;
  margin: 0 auto;
  margin-bottom: 10px;
}
@media (min-width: 430px) {
  .school-information__images-info .add-image {
    display: none;
  }
}
.school-information__schedules {
  margin-bottom: 50px;
}
.school-information__authorization {
  margin-bottom: 50px;
}
.school-information__disclaimer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 20px;
  background-color: #fef2d0;
  border-radius: 8px;
}
.school-information__disclaimer p {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
}
.school-information__checkbox {
  margin-top: 24px;
}
.school-information__checkbox label {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #6e7789;
  text-overflow: ellipsis;
}
.school-information__checkbox .school-information__select-option {
  display: flex;
  gap: 36px;
  margin-top: 11px;
}
.school-information__checkbox .school-information__select-option .school-information__control-checkbox {
  display: flex;
  gap: 17px;
  align-items: center;
  justify-content: center;
}
.school-information__checkbox .school-information__select-option .school-information__control-checkbox input[type=radio] {
  width: 20px;
  height: 20px;
}
.school-information__checkbox .school-information__select-option .school-information__control-checkbox input[type=radio]:checked::before {
  transform: scale(1);
}
.school-information__terms {
  margin-bottom: 64px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #9fa5b0;
}
.school-information .link-terms {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  text-decoration: none;
}
.school-information__upload-file {
  margin-top: 24px;
}
.school-information__upload-file input {
  display: none;
}
.school-information__upload-file label {
  display: flex;
  align-items: center;
}
.school-information__upload-file button {
  display: flex;
  align-items: center;
  width: 223px;
  height: 50px;
  margin-top: 5px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
  text-align: center;
}
.school-information__upload-file button img {
  width: 24px;
  height: 24px;
}
@media (max-width: 429px) {
  .school-information__upload-file button {
    width: 100%;
  }
}
.school-information__upload-file .input-feedback-file::after {
  content: "?";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-left: 4px;
  padding-top: 1px;
  padding-left: 1px;
  font-size: 10px;
  border: 1px solid #fac016;
  border-radius: 100px;
}

.school-information__container-file {
  display: flex;
}
.school-information__container-file .dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  height: 250px;
  margin: 0 auto;
  border: 2px dashed #dadada;
}
.school-information__container-file .dropzone img.input-icon-file {
  width: 40px;
  height: 40px;
}
@media (min-width: 1024px) {
  .school-information__container-file .dropzone img.input-icon-file {
    width: 134px;
    height: 134px;
  }
}
.school-information__container-file .dropzone p {
  max-width: 70%;
  margin-top: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #000;
  text-align: center;
}
@media (min-width: 1024px) {
  .school-information__container-file .dropzone p {
    margin-top: 22px;
    font-size: 19px;
  }
}
.school-information__container-file .dropzone button {
  max-width: 90%;
  margin: 0 auto;
  margin-top: 50px;
  color: #fff;
}
@media (min-width: 1024px) {
  .school-information__container-file .dropzone button {
    height: 48px;
    margin-top: 77px;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 16px;
  }
}
@media (min-width: 1024px) {
  .school-information__container-file .dropzone {
    width: 826px;
    height: 508px;
    margin: 90px 83px 136px;
  }
}

.custom-file {
  cursor: pointer;
  display: inline-block;
  width: 100%;
  height: 308px;
  margin: 0 auto;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #eef2f3;
  background-image: url("/assets/images/form-school/placeholder-img.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 72px 72px;
  border: 1px dashed #0e1d3a;
  border-radius: 5px;
}
.custom-file input {
  display: none;
}
.custom-file .image-upload__label {
  margin-top: 200px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
  text-align: center;
}
@media (min-width: 1024px) {
  .custom-file .image-upload__label {
    margin-top: 50%;
  }
}

.fit-container {
  height: 402px;
}

.custom-file-upload i {
  display: block;
  margin-bottom: 10px;
  font-size: 48px;
}

@media (min-width: 1024px) {
  .logo-image {
    width: 196px;
    height: 224px;
    margin-bottom: 0;
  }
}
@media (max-width: 429px) {
  .school-images {
    max-width: 100%;
    height: 224px;
  }
  .logo-image {
    width: 100%;
    height: 224px;
  }
}
@media (max-width: 429px) {
  .school-images {
    overflow-y: auto;
  }
}
@media (min-width: 1024px) {
  .school-images {
    width: 832px;
    height: 196px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .logo-image .image-upload__label {
    margin-top: 75%;
  }
  .logo-image .image-upload__container-img .image-upload__images {
    width: 196px;
    margin: 0 auto;
  }
  .logo-image .image-upload__container-img .image-upload__images .image-upload__images-src {
    width: 196px;
    height: 224px;
  }
  .school-images .image-upload__label {
    margin-top: 16%;
  }
}
@media (max-width: 429px) {
  .logo-image .image-upload__label {
    margin-top: 142px;
  }
  .logo-image .image-upload__container-img .image-upload__images {
    width: 196px;
    margin: 0 auto;
  }
  .logo-image .image-upload__container-img .image-upload__images .image-upload__images-src {
    width: 196px;
    height: 224px;
  }
  .school-images .image-upload__label {
    margin-top: 150px;
  }
}
.input-feedback {
  display: flex;
}

.section-auth__label {
  font-weight: 700;
}

.file-name {
  text-align: center;
}

.upload-file__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 600px) {
  .upload-file__container {
    flex-direction: row;
    align-items: center;
  }
}

.schools-map .map-cards__hero .hero img {
  height: 194px;
}
@media screen and (min-width: 768px) {
  .schools-map .map-cards__hero .hero img {
    height: 209px;
  }
}
@media screen and (min-width: 1920px) {
  .schools-map .map-cards__hero .hero {
    max-width: 100%;
  }
}
.schools-map .schools-map__section {
  margin-top: 32px;
}
.schools-map .school-card-map {
  max-width: 477.33px;
  margin: auto;
  margin-bottom: 40px;
  padding-bottom: 20px;
  background-color: #F5F7F8;
  border-radius: 15px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.schools-map .school-card-map .school-image-container {
  position: relative;
  max-width: 350px;
}
.schools-map .school-card-map .school-image-container img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
@media screen and (min-width: 1080px) {
  .schools-map .school-card-map .school-image-container img {
    border-radius: 10px;
  }
}
@media screen and (min-width: 391px) {
  .schools-map .school-card-map .school-image-container {
    max-width: 100%;
  }
}
.schools-map .school-card-map .school-card-body-header {
  margin-bottom: 25px;
}
@media screen and (min-width: 380px) {
  .schools-map .school-card-map .school-card-body-header {
    margin-bottom: 8px;
  }
}
.schools-map .school-card-map .school-description {
  overflow: hidden;
  display: -webkit-box;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3 !important;
}
@media screen and (min-width: 1080px) {
  .schools-map .school-card-map .school-description {
    width: 309px !important;
  }
}
.schools-map .school-card-map .heading {
  width: 100%;
  padding-inline: 10px;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
}
.schools-map .school-card-map .heading::after {
  content: "";
  width: 100%;
  height: 1px;
  margin-top: 8px;
  background-color: #CFD2D8;
}
@media screen and (min-width: 1350px) {
  .schools-map .school-card-map .heading {
    padding-inline: 16px;
  }
}
.schools-map .school-card-map .courses {
  overflow-y: hidden;
  margin-bottom: 45px;
  margin-left: 10px;
}
@media screen and (min-width: 1080px) {
  .schools-map .school-card-map .courses {
    margin-right: 10px;
    margin-bottom: 34px;
  }
}
@media screen and (min-width: 1080px) {
  .schools-map .school-card-map .courses {
    max-width: 450px;
    margin-left: 16px;
  }
}
.schools-map .school-card-map .acc-content {
  overflow: hidden;
  max-height: 0;
  padding-inline: 10px;
  transition: max-height 0.2s ease-in-out;
}
.schools-map .school-card-map .acc-content p {
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #0e1d3a;
}
@media screen and (min-width: 1080px) {
  .schools-map .school-card-map .acc-content {
    overflow: unset;
    max-height: 72px;
    margin-top: 1rem;
    padding-inline: 16px;
  }
}
.schools-map .school-card-map .course-content {
  cursor: pointer;
  margin-top: -6px;
  padding: 9px;
  padding-block: 4px;
  padding-inline: 8px;
  border: 1px solid #9fa5b0;
  border-radius: 4px;
}
.schools-map .school-card-map .courses-container {
  overflow-y: auto;
  display: flex;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  /* max-width: 444px; */
  height: 173px;
  margin-top: 20px;
  padding-top: 1px !important;
  padding-right: 10px;
}
.schools-map .school-card-map .courses-container .course {
  height: -moz-fit-content;
  height: fit-content;
}
.schools-map .school-card-map .courses-container .course .school-radio {
  width: 0;
  height: 0;
  visibility: hidden;
}
.schools-map .school-card-map .courses-container .course .school-radio:checked + .course-content {
  background-color: #FEF2D0;
}
.schools-map .school-card-map .courses-container .course img {
  width: 82px;
  height: 82px;
}
.schools-map .school-card-map .courses-container .course p {
  width: -moz-fit-content;
  width: fit-content;
}
.schools-map .school-card-map .courses-container .course .course-title {
  margin: auto;
  margin-block: 8px;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px;
  text-align: center;
}
.schools-map .school-card-map .courses-container .course .pricing-text {
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px;
  color: #3E4A61;
}
.schools-map .school-card-map .courses-container .course .pricing {
  margin: auto;
  font-size: 19px;
  font-weight: 700;
  font-style: normal;
  line-height: 20px;
  color: #0E1D3A;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
@media screen and (min-width: 768px) {
  .schools-map .school-card-map .courses-container {
    /* max-width: 455px;  */
    margin-top: 20px;
  }
}
@media screen and (min-width: 1190px) {
  .schools-map .school-card-map .courses-container {
    overflow-y: hidden;
    padding: 0;
  }
}
.schools-map .school-card-map .heading.acc {
  position: relative;
}
.schools-map .school-card-map .heading.acc::before {
  content: "";
  position: absolute;
  right: 5px;
  width: 25px;
  height: 22px;
  margin: 0;
  background-image: url("/assets/images/courses-icons/arrow-down.svg");
  background-size: cover;
  transition: transform 0.2s ease-in-out;
}
@media screen and (min-width: 1080px) {
  .schools-map .school-card-map .heading.acc::before {
    display: none;
  }
}
.schools-map .school-card-map .heading.acc.arr-active::before {
  content: "";
  position: absolute;
  right: 5px;
  transform: rotate(180deg);
  width: 25px;
  height: 22px;
  margin: 0;
  background-image: url("/assets/images/courses-icons/arrow-down.svg");
  background-size: cover;
}
@media screen and (min-width: 1080px) {
  .schools-map .school-card-map .heading.acc.arr-active::before {
    display: none;
  }
}
.schools-map .school-card-map .last-section .heading.acc {
  margin-top: 33px;
}
@media screen and (min-width: 1080px) {
  .schools-map .school-card-map .last-section .heading.acc {
    display: none;
  }
}
@media screen and (min-width: 1240px) {
  .schools-map .school-card-map .last-section .heading.acc {
    margin-top: 0;
  }
}
.schools-map .school-card-map .last-section .map-container {
  position: relative;
  max-width: 335px;
  margin: auto;
  padding-bottom: 10px;
  border: 1px solid #9fa5b0;
  border-radius: 8px;
  /*  .map-image{
                  min-height: 240px;
              }
  */
}
.schools-map .school-card-map .last-section .map-container img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.schools-map .school-card-map .last-section .map-container p {
  padding-inline: 18px;
}
.schools-map .school-card-map .last-section .map-container .next-address {
  cursor: pointer;
  position: absolute;
  right: -5px;
  bottom: 28px;
}
.schools-map .school-card-map .last-section .map-container .prev-address {
  cursor: pointer;
  position: absolute;
  bottom: 28px;
  left: -5px;
}
.schools-map .school-card-map .last-section .map-container .prev-address img {
  transform: rotate(180deg);
}
.schools-map .school-card-map .last-section .map-container .address-school {
  overflow: hidden;
  display: -webkit-box;
  width: 100%;
  max-width: 38ch;
  margin-top: 10px;
  margin-bottom: 8px;
  margin-inline: auto;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #3e4a61;
  text-align: center;
  text-decoration-line: underline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.schools-map .school-card-map .last-section .map-container .location-number {
  overflow: hidden;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #6e7789;
  text-align: center;
  text-overflow: ellipsis;
}
@media screen and (min-width: 1080px) {
  .schools-map .school-card-map .last-section .map-container {
    min-width: 335px;
  }
}
.schools-map .school-card-map .last-section .button-container {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
.schools-map .school-card-map .last-section .button-container .button {
  width: 161px;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
}
@media screen and (min-width: 380px) {
  .schools-map .school-card-map .last-section .button-container .button {
    font-size: 16px;
  }
}
@media screen and (min-width: 1080px) {
  .schools-map .school-card-map .last-section {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.schools-map .school-card-map .middle-section {
  position: relative;
}
.schools-map .school-card-map .middle-section .next-arrow {
  cursor: pointer;
  position: absolute;
  top: 106px;
  right: 9px;
  width: 35.7px;
  height: 40px;
  visibility: hidden;
}
@media screen and (min-width: 1300px) {
  .schools-map .school-card-map .middle-section .next-arrow {
    right: -22px;
    visibility: visible;
  }
}
.schools-map .school-card-map .middle-section .prev-arrow {
  cursor: pointer;
  position: absolute;
  top: 106px;
  left: -24px;
  width: 35.7px;
  height: 40px;
  visibility: hidden;
}
@media screen and (min-width: 1300px) {
  .schools-map .school-card-map .middle-section .prev-arrow {
    right: -22px;
    transform: rotate(180deg);
    visibility: visible;
  }
}
.schools-map .school-card-map .middle-section .radio-tags {
  display: flex;
  gap: 1rem;
  margin-left: 1rem;
}
.schools-map .school-card-map .middle-section .radio-tags input {
  width: 0;
  height: 0;
  visibility: hidden;
}
.schools-map .school-card-map .middle-section .radio-tags .tag {
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -6px;
  padding-block: 4px;
  padding-inline: 14px;
  background-color: #CFD2D8;
  border-radius: 100px;
}
.schools-map .school-card-map .middle-section .radio-tags .tag::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("/assets/images/courses-icons/menu-book-black.svg");
  background-size: cover;
}
.schools-map .school-card-map .middle-section .radio-tags .tag p {
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
}
.schools-map .school-card-map .middle-section .radio-tags .tag.tramites::after {
  background-image: url("/assets/images/courses-icons/id-card.svg");
}
.schools-map .school-card-map .middle-section .radio-tags .tag img {
  width: 14px;
  height: 14px;
}
.schools-map .school-card-map .middle-section .radio-tags .tramites-tag .tag::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("/assets/images/courses-icons/id-card.svg");
  background-size: cover;
}
@media screen and (min-width: 1080px) {
  .schools-map .school-card-map .middle-section {
    width: 100%;
    max-width: calc(100% - 335px - 339px);
    height: -moz-fit-content;
    height: fit-content;
  }
}
.schools-map .school-card-map .courses-tag .radio-tag:checked + .tag {
  background-color: #0e1d3a;
}
.schools-map .school-card-map .courses-tag .radio-tag:checked + .tag::after {
  background-image: url("/assets/images/courses-icons/menu-book.svg");
}
.schools-map .school-card-map .courses-tag .radio-tag:checked + .tag p {
  color: white;
}
.schools-map .school-card-map .radio-tags .tramites-tag .radio-tag:checked + .tag {
  background-color: #0e1d3a;
}
.schools-map .school-card-map .radio-tags .tramites-tag .radio-tag:checked + .tag::after {
  background-image: url("/assets/images/courses-icons/id-card-white.svg");
}
.schools-map .school-card-map .radio-tags .tramites-tag .radio-tag:checked + .tag p {
  color: white;
}
.schools-map .school-card-map .acc-active {
  max-height: 72px;
  margin-top: 1rem;
}
@media screen and (min-width: 1080px) {
  .schools-map .school-card-map .item-map {
    height: 293px;
    max-height: 293px;
    margin-top: 0;
    padding-inline: 0;
  }
}
.schools-map .school-card-map .item-map.acc-active {
  max-height: 293px !important;
  margin-top: 11px;
}
@media screen and (min-width: 1080px) {
  .schools-map .school-card-map .item-map.acc-active {
    margin-top: 0;
  }
}
@media screen and (min-width: 1080px) {
  .schools-map .school-card-map .main-card {
    max-width: 339px;
  }
}
@media screen and (min-width: 1080px) {
  .schools-map .school-card-map .section-container {
    display: flex;
  }
}
@media screen and (min-width: 1300px) {
  .schools-map .school-card-map .section-container {
    gap: 25px;
  }
}
.schools-map .school-card-map .school-name {
  width: 94px;
  font-size: 16px;
}
@media screen and (min-width: 1080px) {
  .schools-map .school-card-map .school-name {
    width: 74px;
  }
}
.schools-map .school-card-map .school-card-body {
  position: relative;
  padding-top: 8px;
  padding-bottom: 32px;
}
.schools-map .school-card-map .school-card-body .school-logo {
  width: 35px;
  height: 35px;
  border-radius: 10px;
}
@media screen and (min-width: 1080px) {
  .schools-map .school-card-map .school-card-body {
    padding-bottom: 0;
  }
}
.schools-map .school-card-map .stars-container {
  position: absolute;
  top: 51px;
  left: 20px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 380px) {
  .schools-map .school-card-map .stars-container {
    top: unset;
    right: 16px;
    left: unset;
  }
}
.schools-map .school-card-map .rating-number {
  font-size: 17px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
}
.schools-map .school-card-map .review-number {
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
}
.schools-map .school-card-map .star-filled {
  color: #fac016 !important;
}
.schools-map .school-card-map .star {
  display: flex;
  align-items: center;
  height: 15px;
  padding-inline: 2.5px;
  font-size: 18px;
  color: #cfd2d8;
}
@media screen and (min-width: 1080px) {
  .schools-map .school-card-map {
    max-width: 1240px;
    max-height: 404px;
    margin-bottom: 35px;
    padding: 20px;
  }
}
.schools-map .schools__filter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 89.744%;
  margin: 0 auto;
  margin-top: 39px;
}
.schools-map .schools__filter .form-group {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 12px 16px;
  background-color: #eef2f3;
}
.schools-map .schools__filter .form-group label,
.schools-map .schools__filter .form-group select {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
}
.schools-map .schools__filter .form-group div.nice-select {
  height: 48px;
  padding-top: 5px;
  padding-right: 48px;
  padding-left: 16px;
  background-color: transparent;
  border: none;
}
.schools-map .schools__filter .form-group div.nice-select::after {
  top: 46%;
  right: 9px;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-right: 2px solid #0e1d3a;
  border-bottom: 2px solid #0e1d3a;
}
@media (min-width: 390px) {
  .schools-map .schools__filter .form-group div.nice-select::after {
    max-width: 81%;
  }
}
@media (min-width: 1024px) {
  .schools-map .schools__filter .form-group div.nice-select::after {
    margin-right: 16px;
  }
}
.schools-map .schools__filter .form-group div.nice-select .nice-select-dropdown {
  z-index: 2;
  top: 49px;
  right: 10px;
  left: unset;
}
.schools-map .schools__filter .form-group div.nice-select .nice-select-dropdown .list {
  margin-left: 0;
}
@media (max-width: 390px) {
  .schools-map .schools__filter .form-group div.nice-select .nice-select-dropdown {
    right: -17px;
  }
}
@media (min-width: 1024px) {
  .schools-map .schools__filter .form-group div.nice-select .nice-select-dropdown {
    top: 45px;
  }
}
.schools-map .schools__filter .form-group div.nice-select .current {
  margin: 12px 0;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
}
@media (min-width: 1024px) {
  .schools-map .schools__filter .form-group div.nice-select .current {
    margin-right: 0 8px 0 0;
  }
}
@media (max-width: 390px) {
  .schools-map .schools__filter .form-group div.nice-select {
    min-width: 40px;
  }
}
@media (min-width: 1024px) {
  .schools-map .schools__filter .form-group div.nice-select {
    background-color: #f5f7f8;
  }
}
@media (min-width: 1024px) {
  .schools-map .schools__filter .form-group {
    padding-left: 0;
  }
}
@media (min-width: 1024px) {
  .schools-map .schools__filter .form-group {
    background-color: transparent;
  }
}
@media (min-width: 768px) {
  .schools-map .schools__filter {
    max-width: 725px;
  }
}
@media (min-width: 1024px) {
  .schools-map .schools__filter {
    flex-direction: row;
    gap: 8px;
    max-width: 91.666%;
    margin: 0;
    margin-top: 50px;
    margin-left: var(--wrapper-margin);
  }
}
@media (min-width: 1366px) {
  .schools-map .schools__filter {
    max-width: 1340px;
  }
}
.schools-map .badge {
  height: 30px;
  border-radius: 20px;
}
.schools-map .badge.badge--examiner {
  height: 32px;
  border-radius: 50px;
}
.schools-map .promotion-text {
  font-size: 14px;
}
.schools-map .school-main-image {
  height: 202px;
}
@media screen and (min-width: 390px) {
  .schools-map .school-main-image {
    max-width: 350px;
  }
}
@media screen and (min-width: 391px) {
  .schools-map .school-main-image {
    max-width: 100%;
  }
}
@media screen and (min-width: 1080px) {
  .schools-map .school-main-image {
    width: 339px;
  }
}

.blogcontent {
  margin-top: 20px;
  margin-bottom: 65px;
}
@media (min-width: 1024px) {
  .blogcontent {
    margin-bottom: 45px;
  }
}

.heroblog .hero-image-blog {
  width: 100%;
  height: auto;
  max-height: 497px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 390px) {
  .heroblog .hero-image-blog {
    height: 184px;
  }
}
.heroblog__info-container {
  margin-top: 18px;
}
@media (min-width: 1024px) {
  .heroblog__info-container {
    display: flex;
    flex-direction: row;
  }
}
.heroblog .heroblog__info {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.heroblog .heroblog__info label,
.heroblog .heroblog__info p {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
}
.heroblog .heroblog__info label {
  color: #6e7789;
}
.heroblog .heroblog__info p {
  color: #0e1d3a;
}
.heroblog__metadata {
  display: flex;
  flex-wrap: wrap;
}
.heroblog__metadata .heroblog__info {
  flex: 0 1 auto;
  align-items: center;
}
.heroblog__metadata .heroblog__info:first-child p {
  margin-right: 16px;
}
.heroblog__metadata .heroblog__info:nth-child(2) p {
  height: 20px;
  padding-left: 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #6e7789;
  border-left: 1px solid #fac016;
}
@media (max-width: 329px) {
  .heroblog__metadata .heroblog__info:nth-child(2) p {
    padding-left: 0;
    border-left: none;
  }
}
@media (max-width: 329px) {
  .heroblog__metadata .heroblog__info:nth-child(2) {
    order: 2;
    margin-top: 10px;
  }
}
@media (min-width: 1024px) {
  .heroblog__metadata .heroblog__info:nth-child(2) {
    order: 3;
    margin-left: 16px;
  }
}
.heroblog__metadata .heroblog__info:nth-child(3) {
  display: flex;
  flex-basis: 100%;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #fac016;
  border-bottom: 1px solid #fac016;
}
@media (min-width: 1024px) {
  .heroblog__metadata .heroblog__info:nth-child(3) {
    flex-basis: unset;
    margin: 0;
    padding: 0;
    border: none;
  }
  .heroblog__metadata .heroblog__info:nth-child(3) label {
    height: 20px;
    padding-left: 16px;
    border-left: 1px solid #fac016;
  }
}
@media (min-width: 1024px) {
  .heroblog__metadata {
    flex: 1 1 auto;
    flex-wrap: nowrap;
  }
}
.heroblog__statistics {
  display: flex;
  flex-direction: row;
  gap: 25.06px;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
.heroblog__statistics img {
  width: 17px;
  height: 17px;
}
@media (min-width: 1024px) {
  .heroblog__statistics img {
    width: 31.17px;
    height: 31.17px;
  }
}
.heroblog__statistics .heroblog__data {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
@media (min-width: 1024px) {
  .heroblog__statistics {
    margin: 0;
  }
}
.heroblog .heroblog__statistics .heroblog__data p {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
}
@media (min-width: 1024px) {
  .heroblog .heroblog__statistics .heroblog__data p {
    font-size: 18px;
  }
}
.heroblog h1 {
  margin-top: 25px;
  font-family: "DM Sans", sans-serif;
  font-size: 35px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
  text-align: left;
}
@media (min-width: 1024px) {
  .heroblog h1 {
    text-align: center;
  }
}
.heroblog .featured {
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  width: 115px;
  height: 39px;
  padding: 8px 10px;
  background: #fac016;
  border-radius: 8px;
}
.heroblog .featured .text-featured {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-align: center;
}

.blog-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}
.blog-content p {
  font-family: "Inter", sans-serif;
  font-size: 19px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #000;
}
.blog-content .two-columns {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.blog-content .two-columns__content p {
  font-family: "DM Sans", sans-serif;
}
@media (min-width: 1024px) {
  .blog-content .two-columns__content {
    width: 56.85%;
  }
}
.blog-content .two-columns__image .image-blog {
  height: 258px;
}
@media (min-width: 1024px) {
  .blog-content .two-columns__image .image-blog {
    width: 418px;
  }
}
.blog-content .two-columns__image .image-blog__list {
  height: 299px;
}
@media (min-width: 1024px) {
  .blog-content .two-columns__image .image-blog__list {
    width: 429px;
  }
}
.blog-content .two-columns__image-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  .blog-content .two-columns {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .blog-content .content-reverse {
    flex-direction: row-reverse;
  }
}
.blog-content h3 {
  font-family: "Inter", sans-serif;
  font-size: 25px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #000;
  text-align: center;
}
.blog-content ol {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-content ol.list-gap-90 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .blog-content ol.list-gap-90 {
    gap: 90px;
  }
}
.blog-content ol.strong-list {
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #000;
}
@media (min-width: 1024px) {
  .blog-content {
    gap: 30px;
  }
}

.rating-blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 45px;
}
.rating-blog h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
  text-align: center;
}
.rating-blog__stars {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.rating-blog button {
  align-items: center;
  height: 41px;
  margin: 0 auto;
  margin-top: 10px;
  padding: 7px 31px;
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-align: center;
  border-radius: 4px;
}
@media (min-width: 1024px) {
  .rating-blog {
    margin-top: 105px;
  }
}

.section_signs {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #0e1d3a;
}
@media screen and (min-width: 1024px) {
  .section_signs::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("/assets/images/circulation-images/bg-street-signs.png");
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1500px) {
  .section_signs::before {
    right: calc((100% - 1440px) / 2);
    max-width: 1440px;
  }
}
.section_signs__heading {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 40px;
  padding-left: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 32px;
  color: #fcfcfd;
}
@media screen and (min-width: 1024px) {
  .section_signs__heading {
    max-width: 1040px;
    margin-inline: auto;
    padding-left: 0;
  }
}
.section_signs__block_desc {
  margin-bottom: 11px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .section_signs__block_desc {
    max-width: 1040px;
  }
}
.section_signs__title {
  margin-bottom: 11px;
  margin-left: 22px;
  font-family: "DM Sans", sans-serif;
  font-size: 30px;
  font-weight: 400;
  font-style: normal;
  line-height: 32px;
  color: #fac016;
}
.section_signs__title--regulatory {
  width: 100%;
  max-width: 10ch;
  margin-left: 22px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .section_signs__title--regulatory {
    max-width: 20ch;
  }
}
.section_signs__title_regulatory_signs {
  margin-left: 22px;
}
@media screen and (min-width: 375px) {
  .section_signs__title_regulatory_signs {
    margin-left: 0;
  }
}
.section_signs__title_regulatory_span {
  margin-left: 30px;
}
@media screen and (min-width: 768px) {
  .section_signs__title_regulatory_span {
    margin-left: 0;
  }
}
.section_signs__title_regulatory_informative {
  margin-left: 30px;
}
@media screen and (min-width: 375px) {
  .section_signs__title_regulatory_informative {
    margin-left: 0;
  }
}
.section_signs__desc {
  padding-bottom: 10px;
  padding-inline: 22px;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 32px;
  color: #fcfcfd;
}
@media screen and (min-width: 1024px) {
  .section_signs__desc {
    max-width: 80ch;
  }
}
.section_signs__conteiner_warning_signs {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  -moz-column-gap: 8px;
       column-gap: 8px;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  margin-inline: auto;
  padding-block: 20px;
  padding-inline: 10.5px;
}
@media screen and (min-width: 375px) {
  .section_signs__conteiner_warning_signs {
    padding-inline: 45.5px;
  }
}
@media screen and (min-width: 1024px) {
  .section_signs__conteiner_warning_signs {
    justify-content: space-between;
    max-width: 1040px;
    padding-inline: 25px;
  }
}
.section_signs__conteiner_warning_signs--space {
  margin-bottom: 0;
  padding-bottom: 80px;
}
.section_signs__conteiner_icon {
  display: grid;
  row-gap: 10px;
  width: 100%;
  max-width: 122px;
}
@media screen and (min-width: 1024px) {
  .section_signs__conteiner_icon:nth-child(3) p {
    width: 19ch;
  }
}
@media screen and (min-width: 1024px) {
  .section_signs__conteiner_icon {
    max-width: 200px;
  }
}
.section_signs__icon_image {
  width: 122px;
  height: 122px;
}
@media screen and (min-width: 1024px) {
  .section_signs__icon_image {
    width: 200px;
    height: 200px;
  }
}
.section_signs__desc_icon {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 18px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .section_signs__desc_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .section_signs {
    padding-top: 100px;
    padding-bottom: 200px;
  }
}
@media screen and (min-width: 1024px) {
  .section_signs {
    padding-top: 100px;
  }
}

.brand-card {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 20px 25px;
  border: 1px solid #3e4a61;
  border-radius: 10px;
}
.brand-card__image {
  flex-shrink: 0;
}
.brand-card__image img {
  width: 64px;
  height: auto;
}
.brand-card__description h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px;
  color: #000;
}
.brand-card__description .brand-card__location {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: left;
}
.brand-card__description .brand-card__location img {
  width: 12px;
  height: 15px;
}
.brand-card__description .brand-card__location p {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px;
  color: #9fa5b0;
  text-decoration-line: underline;
}
@media (min-width: 1024px) {
  .brand-card__description .brand-card__location p {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .brand-card {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

.cart-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  margin-top: 21px;
  margin-bottom: 21px;
  background: #fff;
  border: 1px solid #cfd2d8;
  border-radius: 8px;
}
.cart-item__header {
  display: grid;
  grid-template-columns: 20px 33% 1fr;
  gap: 20px;
  align-items: center;
  align-self: stretch;
  justify-content: flex-start;
  padding: 18px 20px;
  background: rgba(250, 192, 22, 0.2);
  border-radius: 8px 8px 0 0;
}
@media (min-width: 350px) {
  .cart-item__header {
    grid-template-columns: 20px minmax(0, calc(100% - 182px)) minmax(0, 182px);
  }
}
.cart-item__school {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cart-item__logo {
  width: 26px;
  height: 27px;
  border-radius: 40px;
}
@media (min-width: 768px) {
  .cart-item__logo {
    width: 36px;
    height: 37px;
  }
}
.cart-item__name {
  overflow: hidden;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px; /* 106.667% */
  color: #000;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cart-item__badge {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: auto;
  height: 26px;
  padding: 4px 8px;
  background: #0e1d3a;
  border-radius: 50px;
}
@media (min-width: 360px) {
  .cart-item__badge {
    max-width: 182px;
  }
}
@media (min-width: 390px) {
  .cart-item__badge {
    max-width: 182px;
  }
}
.cart-item__badge-image {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
}
@media (min-width: 768px) {
  .cart-item__badge-image {
    width: 24px;
    height: 24px;
  }
}
.cart-item__badge-text {
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
}
@media (min-width: 768px) {
  .cart-item__badge-text {
    font-size: 11px;
  }
}
.cart-item__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  align-self: stretch;
  padding: 20px;
  background: #fff;
  border-bottom: 1px solid #6e7789;
}
.cart-item__item {
  display: flex;
  gap: 8px;
  align-items: center;
  align-self: stretch;
  justify-content: flex-start;
}
.cart-item__item-image {
  width: 39px;
  height: 39px;
}
@media (min-width: 768px) {
  .cart-item__item-image {
    width: 53px;
    height: 53px;
  }
}
.cart-item__title {
  width: 100%;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px; /* 100% */
  color: #3e4a61;
}
@media (min-width: 768px) {
  .cart-item__title {
    width: 583px;
    font-size: 19px;
  }
}
.cart-item__delete {
  width: 18px;
  height: 17px;
}
@media (min-width: 768px) {
  .cart-item__delete {
    width: 21px;
    font-size: 21px;
  }
}
.cart-item__item-delete {
  width: 18px;
  height: 17px;
}
@media (min-width: 768px) {
  .cart-item__item-delete {
    width: 21px;
    font-size: 21px;
  }
}
.cart-item__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  align-self: stretch;
  margin: 0;
}
@media (min-width: 360px) {
  .cart-item__details {
    padding: 0 20px;
  }
}
.cart-item__details-content {
  display: flex;
  align-items: center;
  align-self: stretch;
  justify-content: space-between;
  height: 24px;
}
.cart-item__details-name {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px; /* 114.286% */
  color: #3e4a61;
}
@media (min-width: 768px) {
  .cart-item__details-name {
    font-size: 16px;
  }
}
.cart-item__details-offer {
  display: flex;
  gap: 4px;
}
.cart-item__details-discount {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px; /* 171.429% */
  color: #cfd2d8;
  text-decoration-line: line-through;
}
@media (min-width: 768px) {
  .cart-item__details-discount {
    font-size: 16px;
  }
}
.cart-item__details-price {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px; /* 171.429% */
  color: #3e4a61;
}
@media (min-width: 768px) {
  .cart-item__details-price {
    font-size: 16px;
  }
}
.cart-item__footer {
  display: flex;
  align-items: center;
  align-self: stretch;
  justify-content: space-between;
  padding: 19px 38px;
}
.cart-item__footer-text {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px; /* 150% */
  color: #0e1d3a;
}
@media (min-width: 768px) {
  .cart-item__footer-text {
    font-size: 18px;
  }
}
.cart-item__footer-total {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px; /* 150% */
  color: #0e1d3a;
}
@media (min-width: 768px) {
  .cart-item__footer-total {
    font-size: 18px;
  }
}
@media (min-width: 390px) {
  .cart-item {
    width: 100%;
  }
}
@media (min-width: 435px) {
  .cart-item {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .cart-item {
    width: 713px;
  }
}

.cart-item--selected .cart-item__header {
  display: grid;
  grid-template-columns: minmax(0, calc(100% - 182px)) minmax(0, 182px);
  align-self: stretch;
  justify-content: space-between;
  padding: 10px 20px;
  background: rgba(250, 192, 22, 0.4);
}
.cart-item--selected .cart-item__school {
  display: flex;
  gap: 4px;
  align-items: center;
}
.cart-item--selected .cart-item__item-image {
  width: 37px;
  height: 37px;
}
.cart-item--selected .cart-item__title {
  font-size: 14px;
}
.cart-item--selected .cart-item__body {
  gap: 12px;
  border-bottom: none;
  border-radius: 8px;
}
.cart-item--selected .cart-item__details {
  gap: 12px;
  padding: 0;
}
.cart-item--selected .cart-item__details-content {
  display: flex;
  gap: 12px;
  align-items: center;
  align-self: stretch;
  justify-content: space-between;
  height: auto;
}
.cart-item--selected .cart-item__details-name {
  font-size: 16px;
}
.cart-item--selected .cart-item__details-offer {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cart-item--selected .cart-item__details-discount {
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px; /* 240% */
  color: #cfd2d8;
  text-align: center;
  text-decoration-line: line-through;
}
.cart-item--selected .cart-item__details-price {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px;
  color: #3e4a61;
}

.cart-item__select {
  display: flex;
  align-items: center;
  width: 20px;
  height: 20px;
}
.cart-item__select input[type=radio] {
  display: none;
}
.cart-item__select label {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 2px solid #0e1d3a;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.cart-item__select.selected label {
  width: 20px;
  height: 20px;
  border-color: #0e1d3a;
}
.cart-item__select label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: transparent;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.cart-item__select.selected label::before {
  width: 9px;
  height: 9px;
  background-color: #0e1d3a;
}

.safety-card {
  width: 100%;
  max-width: 350px;
  margin-bottom: 40px;
  margin-inline: auto;
  padding-bottom: 20px;
  background: #f5f7f8;
  border-radius: 15px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.safety-card__conteiner {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin-bottom: 25px;
  margin-inline: auto;
}
.safety-card__conteiner_image {
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
@media screen and (min-width: 768px) {
  .safety-card__conteiner {
    max-width: 600px;
  }
}
@media screen and (min-width: 1024px) {
  .safety-card__conteiner {
    height: 364px;
    margin-bottom: 0;
  }
}
.safety-card__img {
  width: 100%;
  max-width: 350px;
  height: 202px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
@media screen and (min-width: 768px) {
  .safety-card__img {
    max-width: 600px;
    -o-object-position: top center;
       object-position: top center;
  }
}
@media screen and (min-width: 1024px) {
  .safety-card__img {
    border-radius: 15px;
  }
}
.safety-card__promotion_conteiner {
  position: absolute;
  top: 14px;
  left: 8px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 6px;
  padding-inline: 12px;
  background: #00d472;
  border-radius: 20px;
}
.safety-card__desc_promotion {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
}
.safety-card__role_conteiner {
  position: absolute;
  top: 158px;
  left: 8px;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
  justify-content: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  height: 32px;
  padding-block: 4px;
  padding-inline: 8px;
  background: #0e1d3a;
  border-radius: 50px;
}
.safety-card__icon_logo {
  width: 100%;
  max-width: 24px;
  height: 24px;
}
.safety-card__desc_icon {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
}
.safety-card__conteiner_school {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding-block: 8px;
  padding-inline: 16px;
}
.safety-card__conteiner_icon_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 100px;
}
.safety-card__school_icon {
  width: 100%;
  max-width: 34px;
  height: 34px;
  border-radius: 100px;
}
.safety-card__school_desc {
  overflow: hidden;
  width: 212px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.safety-card__price_conteiner {
  padding-block: 8px;
  padding-inline: 16px;
}
.safety-card__price_flex {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 4px;
       column-gap: 4px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.safety-card__phone_desc {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #6e7789;
}
.safety-card__price {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #6e7789;
}
.safety-card__contact {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #000;
}
.safety-card__cost {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #000;
}
.safety-card__wrapper_centers {
  padding-inline: 10px;
}
@media screen and (min-width: 1024px) {
  .safety-card__wrapper_centers {
    height: 364px;
    padding-inline: 16px;
  }
}
.safety-card__heading_centers {
  margin-bottom: 16px;
  padding-block: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
  border-bottom: 1px solid #cfd2d8;
}
.safety-card__location_desc {
  overflow: hidden;
  display: -webkit-box;
  width: 41.2ch;
  margin-bottom: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #3e4a61;
  text-decoration-line: underline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.safety-card__location_desc:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .safety-card__location_desc {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .safety-card__location_desc {
    width: -moz-fit-content;
    width: fit-content;
    white-space: collapse;
  }
}
@media screen and (min-width: 1240px) {
  .safety-card__location_desc {
    width: 55ch;
  }
}
.safety-card__location_important_desc {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px;
  color: #3e4a61;
  text-decoration-line: underline;
}
.safety-card .accordion {
  width: 100%;
  margin-top: 36px;
}
@media screen and (min-width: 1024px) {
  .safety-card .accordion {
    margin-top: 31px;
  }
}
.safety-card .acc-header {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-items: flex-start;
  width: 100%;
  margin: auto;
  border-bottom: 1px solid #cfd2d8;
  transition: transform 0.2s ease-in-out;
}
.safety-card .acc-header::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  width: 25px;
  height: 22px;
  background-image: url("/assets/images/safety-card/Submenu-Arrow-Down.svg");
  transition: transform 0.3s ease-in-out;
}
@media screen and (min-width: 1024px) {
  .safety-card .acc-header::after {
    display: none;
  }
}
.safety-card .heading__acc {
  padding-block: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
}
.safety-card .acc-body {
  overflow: hidden;
}
.safety-card .acc-body p {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #0e1d3a;
}
.safety-card .acc-body__content {
  padding-top: 16px;
  padding-bottom: 16px;
}
.safety-card .acc-item.open .acc-header::after {
  transform: rotate(180deg);
}
@media screen and (min-width: 1024px) {
  .safety-card .acc-item.open .acc-header::after {
    display: none;
  }
}
.safety-card .acc-item.close .acc-body {
  max-height: 0;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1024px) {
  .safety-card .acc-item.close .acc-body {
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}
.safety-card .acc-item.open .acc-body {
  max-height: 300px;
  transition: all 0.4s ease;
}
.safety-card__safety_map_section {
  width: 100%;
  margin-top: 25px;
  padding-inline: 10px;
  /* stylelint-disable-next-line no-descending-specificity */
}
.safety-card__safety_map_section .safety-card__map_conteiner {
  margin-top: 10px;
  border-radius: 15px;
}
@media screen and (min-width: 1024px) {
  .safety-card__safety_map_section .safety-card__map_conteiner {
    max-width: 335px;
    height: 292px;
    margin-top: 0;
  }
}
.safety-card__safety_map_section .safety-card__map_image {
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .safety-card__safety_map_section .safety-card__map_image {
    max-width: 500px;
    height: 292px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1024px) {
  .safety-card__safety_map_section .safety-card__map_image {
    max-width: 335px;
    height: 292px;
  }
}
@media screen and (min-width: 1024px) {
  .safety-card__safety_map_section .acc-header {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .safety-card__safety_map_section {
    height: 364px;
    margin-top: 0;
    padding-inline: 0;
  }
}
.safety-card__safety_button {
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 330px;
  height: 48px;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .safety-card__safety_button {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .safety-card__safety_button {
    width: 100%;
    max-width: 335px;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media screen and (min-width: 768px) {
  .safety-card {
    max-width: 600px;
  }
}
@media screen and (min-width: 1024px) {
  .safety-card {
    display: grid;
    grid-template-columns: auto auto auto;
    -moz-column-gap: 15px;
         column-gap: 15px;
    width: 100%;
    max-width: 1240px;
    height: 404px;
    margin-bottom: 35px;
    margin-inline: auto;
    padding: 20px;
  }
}
@media screen and (min-width: 1240px) {
  .safety-card {
    display: grid;
    grid-template-columns: 339px 476px auto;
    -moz-column-gap: 25px;
         column-gap: 25px;
    width: 100%;
    max-width: 1240px;
  }
}

.licenses-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-content: center;
  align-items: center;
  align-self: stretch;
  margin-top: 10px;
  margin-bottom: 10px;
}
.licenses-card__input {
  pointer-events: none; /* Oculta completamente el input y evita cualquier interacción visual */
  position: absolute;
  opacity: 0;
}
.licenses-card__card {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 176px;
  padding: 40px 20px;
  border: 1px solid #cfd2d8;
  border-radius: 10px;
  /* card-shadow */
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.licenses-card__icon {
  width: 82px;
  height: 82px;
}
.licenses-card__heading, .licenses-card__subheading {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px; /* 114.286% */
  color: #000;
  text-align: center;
}
.licenses-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10px;
}
.licenses-card__price-text {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px; /* 133.333% */
  color: #3e4a61;
  text-align: center;
}
.licenses-card__price-number {
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  font-weight: 700;
  font-style: normal;
  line-height: 20px;
  color: #0e1d3a;
}
.licenses-card__add-btn {
  display: flex;
  gap: 4px;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  width: 100%;
  min-height: 32px;
  padding: 4px 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px; /* 114.286% */
  color: #fff;
  text-align: center;
}
.licenses-card__add-btn::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  background-image: url("/assets/images/licenses-icons/cart-icons.svg");
  background-size: cover;
}
.licenses-card__expand-icon {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 11.5px;
  width: 17px;
  height: 17px;
}
.licenses-card__help-text {
  margin-bottom: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px; /* 114.286% */
  color: #000;
  text-align: center;
}

.licenses-card__input:checked + .licenses-card__card {
  background: rgba(250, 192, 22, 0.1);
  border: 1px solid #fac016;
  border-radius: 10px;
  /* card-shadow */
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}

.card-course {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 176px;
  height: 244px;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #fff;
  border: 1px solid #cfd2d8;
  border-radius: 10px;
}
.card-course img {
  width: 82px;
  height: 82px;
  margin: 0 auto 8px;
}
.card-course p {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px;
  color: #000;
  text-align: center;
}
.card-course button {
  width: 104px;
  margin: 0 auto;
  padding: 4px 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px;
  color: #fff;
  text-align: center;
}
.card-course.selected {
  background: rgba(250, 192, 22, 0.1);
  border: 1px solid #fac016;
}

.data-table {
  width: 100%;
  margin: 0 auto;
}
.data-table__row {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
  border-bottom: 1px solid #cfd2d8;
}
@media (min-width: 1024px) {
  .data-table__row {
    padding: 16px;
  }
}
.data-table__column {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #3e4a61;
  text-overflow: ellipsis;
}
.data-table__column i {
  cursor: pointer;
}
.data-table__column:nth-child(4) {
  margin-right: 16px;
}
@media (min-width: 1024px) {
  .data-table {
    max-width: calc(100% - 119px);
  }
}

.selection-box {
  width: -moz-fit-content;
  width: fit-content;
}
.selection-box__heading {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 1px;
  padding-bottom: 20px;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #6e7789;
}
@media screen and (min-width: 1024px) {
  .selection-box__heading {
    line-height: 16px;
  }
}
.selection-box .required-asterisk {
  position: absolute;
  top: 0;
  right: 0;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px;
  color: #ff3246;
}
@media screen and (min-width: 554px) {
  .selection-box .required-asterisk {
    top: 9px;
    right: -15px;
  }
}
@media screen and (min-width: 1024px) {
  .selection-box .required-asterisk {
    top: 3px;
  }
}
.selection-box .boxes-container {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.selection-box .boxes-container input {
  position: absolute;
  visibility: hidden;
}
.selection-box .boxes-container .input-label {
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #0e1d3a;
  text-align: center;
}
.selection-box .boxes-container .box {
  cursor: pointer;
  padding-block: 12px;
  padding-inline: 24px;
  border: 1px solid #0e1d3a;
  border-radius: 5px;
}
.selection-box .boxes-container input:checked + .box {
  background-color: #0e1d3a;
}
.selection-box .boxes-container input:checked + .box p {
  color: #fff;
}
@media screen and (max-width: 700px) {
  .selection-box .boxes-container label {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.selection-box__error-message {
  font-size: 12px;
  color: #ff3246;
}

.section__plans {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 500px;
  height: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .section__plans {
    flex-direction: row;
    -moz-column-gap: 10px;
         column-gap: 10px;
    width: 100%;
    max-width: 90%;
    max-height: 420px;
    margin-inline: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .section__plans {
    -moz-column-gap: 20px;
         column-gap: 20px;
    max-width: 764px;
    margin-inline: auto;
  }
}

.course-package {
  width: 100%;
  height: 100%;
}

.course-package__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 241px;
  height: 390px;
  margin-inline: auto;
  padding: 20px 0;
  padding-bottom: 20px;
  background-color: #fff;
  border: 1px solid #cfd2d8;
  border-radius: 10px;
  transition: all ease-in-out 0.5s;
}
.course-package__card:hover {
  cursor: pointer;
}
.course-package__card_number {
  font-family: "Roboto", sans-serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 24px;
  color: #0e1d3a;
}
.course-package__card_heading {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px;
  color: #0e1d3a;
  text-align: center;
}
.course-package__card_description {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px;
  color: #0e1d3a;
  text-align: center;
}
.course-package__card_desc_promotion {
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #9fa5b0;
  text-align: center;
  text-decoration: line-through;
}
.course-package__card_price_promo_desc {
  margin-block: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 8px;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  color: #4b6dfb;
  text-align: center;
  text-transform: uppercase;
  leading-trim: both;
  text-edge: cap;
}
.course-package__card_price {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px;
  color: #6f8afc;
  text-align: center;
}
.course-package__card_button {
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  height: 40px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .course-package__card_button {
    justify-content: center;
    max-width: 200px;
  }
}
.course-package__card_conteiner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: 100%;
  max-height: 440px;
}
.course-package__card_price_desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  border: 2px blue;
}

.course {
  margin-inline: 10.5px;
}
.course__list {
  width: 100%;
  margin: 0;
  margin-left: 24.5px;
}
.course__list_item {
  width: 25ch;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #0e1d3a;
}
.course__list_item::marker {
  color: #0e1d3a;
}
.course__list_item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .course__list_item {
    width: 22ch;
  }
}
@media screen and (min-width: 1024px) {
  .course__list_item {
    width: 25ch;
  }
}

.course-package__input_element {
  display: none !important;
}

.course-package__input_element:checked + .course-package__card {
  transform: scale(1.03);
  border: 1px solid #fac016;
}

.course-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 22px;
  margin-top: 10px;
  margin-bottom: 8px;
  background-color: white;
}
.course-slider__conteiner {
  position: relative;
  display: flex;
  gap: 8px;
  justify-content: center;
  width: 100%;
  max-width: 104px;
  margin-left: 0;
  list-style: none !important;
}
.course-slider__conteiner::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -32px;
  display: block;
  width: 44px;
  height: 50px;
  background-image: url("/assets/images/course-slider/arrow-right.png");
  background-repeat: no-repeat;
}
.course-slider__conteiner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -32px;
  display: block;
  width: 44px;
  height: 50px;
  background-image: url("/assets/images/course-slider/arrow-left.png");
  background-repeat: no-repeat;
}
.course-slider__dot {
  cursor: pointer;
  width: 10px;
  height: 10px;
  background-color: #cfd2d8;
  border-radius: 50%;
  transition: all 0.3s;
}
.course-slider__dot::marker {
  font-size: 0;
}
.course-slider__dot--active {
  background-color: #0e1d3a;
}

.home .filter-form {
  margin-block-end: 38px;
}
@media screen and (min-width: 768px) {
  .home .filter-form {
    margin-block-end: 74px;
  }
}

.registration-school {
  padding-top: 40px;
  padding-bottom: 40px;
}
.registration-school__title {
  max-width: 350px;
  margin: 0 auto;
  margin-bottom: 53.22px;
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
  text-align: center;
}
@media (min-width: 500px) {
  .registration-school__title {
    max-width: 70%;
  }
}
@media (min-width: 1024px) {
  .registration-school__title {
    margin-bottom: 68px;
    font-size: 40px;
  }
}
@media (min-width: 1224px) {
  .registration-school__title {
    max-width: 100%;
  }
}
@media (min-width: 1024px) {
  .registration-school__benefits {
    max-width: 546px;
  }
}
@media (min-width: 1024px) {
  .registration-school__content {
    display: flex;
    flex-direction: row;
    gap: 92px;
    margin: 0 auto;
  }
}
.registration-school__list {
  margin-left: 0;
  padding: 0;
  list-style: none;
}
.registration-school__list br {
  display: none;
}
@media (min-width: 1024px) {
  .registration-school__list br {
    display: block;
  }
}
.registration-school__list li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 32px;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #6e7789;
}
.registration-school__list li::marker {
  content: "";
}
.registration-school__list li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("/assets/images/register-school/check_circle.svg") no-repeat center center;
  background-size: 24px 24px;
}
.registration-school__list li:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .registration-school__list li {
    margin-bottom: 24px;
  }
}
@media (min-width: 1024px) {
  .registration-school__list li {
    font-size: 20px;
  }
}
.registration-school__button {
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
  padding: 15px 23px;
  text-align: center;
}
@media (min-width: 1024px) {
  .registration-school__button {
    width: 178px;
  }
}
.registration-school__image-group {
  position: relative;
  max-width: 350px;
  margin: 0 auto;
  margin-bottom: 177.3px;
}
@media (min-width: 1024px) {
  .registration-school__image-group {
    order: 3;
    max-width: 559.66px;
    margin-top: 52.15px;
    margin-left: 0;
  }
}
.registration-school .image-group__top {
  position: relative;
  display: flex;
  gap: 9.03px;
}
.registration-school .image-group__top img {
  width: 170.48px;
  height: 154.48px;
  border-radius: 25px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}
@media (min-width: 1024px) {
  .registration-school .image-group__top img {
    width: 272.6px;
    height: 200.39px;
  }
}
@media (min-width: 1024px) {
  .registration-school .image-group__top {
    gap: 14.44px;
  }
}
.registration-school .image-group__img--bottom {
  position: absolute;
  top: 118.3px;
  left: 59.84px;
  width: 170.48px;
  height: 154.48px;
}
@media (min-width: 1224px) {
  .registration-school .image-group__img--bottom {
    top: 153.46px;
    left: 95.68px;
    width: 272.6px;
    height: 200.39px;
  }
}
.registration-school .image-group__img::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(75, 109, 251, 0.15) 0%, rgba(75, 109, 251, 0.15) 100%);
  border-radius: 25px;
}
.registration-school .image-group__img img {
  width: 170.48px;
  height: 154.48px;
  border-radius: 25px;
}
@media (min-width: 1224px) {
  .registration-school .image-group__img img {
    width: 272.6px;
    height: 200.39px;
  }
}
.registration-school .image-group__img--left {
  position: relative;
}
.registration-school .image-group__img--right {
  position: relative;
  top: -13px;
}
@media (min-width: 1024px) {
  .registration-school .image-group__img--right {
    top: -17.15px;
  }
}
.registration-school .registration-school__background-image {
  position: absolute;
  z-index: -3;
  top: 8px;
  right: calc(var(--wrapper-margin) * -1);
  width: 100vw;
  height: 492px;
  margin: 0 auto;
  background-image: url("/assets/images/register-school/background-road-mobile.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 500px) {
  .registration-school .registration-school__background-image {
    top: -5px;
    right: calc(var(--wrapper-margin) * -2);
    background-image: url("/assets/images/register-school/background-road-tablet.png");
  }
}
@media (min-width: 800px) {
  .registration-school .registration-school__background-image {
    top: -26px;
  }
}
@media (min-width: 900px) {
  .registration-school .registration-school__background-image {
    top: 0;
    right: calc(var(--wrapper-margin) * -4);
    width: 100%;
    height: 447px;
  }
}
@media (min-width: 1024px) {
  .registration-school .registration-school__background-image {
    top: 36px;
    right: calc(var(--wrapper-margin) * -1);
    width: 90%;
    height: 755px;
  }
}
@media (min-width: 1024px) {
  .registration-school {
    padding-top: 60px;
    padding-bottom: 90px;
  }
}

.test-space {
  height: 100px;
}

.schools-section .slider-reference {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media screen and (min-width: 1260px) {
  .schools-section .slider-reference .school-card {
    width: 363px;
  }
  .schools-section .slider-reference .school-card .school-card-body-header {
    width: 100%;
  }
  .schools-section .slider-reference .school-card .school-description {
    width: 100%;
  }
}
.schools-section .slider-reference .next-button {
  cursor: pointer;
  position: absolute;
  top: 196px;
  right: -24px;
  width: 11px;
  height: 20px;
  visibility: hidden;
}
@media screen and (min-width: 380px) {
  .schools-section .slider-reference .next-button {
    visibility: visible;
  }
}
@media screen and (min-width: 690px) {
  .schools-section .slider-reference .next-button {
    right: -21px;
  }
}
@media screen and (min-width: 1024px) {
  .schools-section .slider-reference .next-button {
    top: 229px;
    right: -57px;
    width: 44px;
    height: 50px;
  }
}
.schools-section .slider-reference .prev-button {
  cursor: pointer;
  position: absolute;
  top: 196px;
  left: -28px;
  transform: rotate(180deg);
  width: 11px;
  height: 20px;
  visibility: hidden;
}
@media screen and (min-width: 380px) {
  .schools-section .slider-reference .prev-button {
    visibility: visible;
  }
}
@media screen and (min-width: 690px) {
  .schools-section .slider-reference .prev-button {
    left: -25px;
  }
}
@media screen and (min-width: 1024px) {
  .schools-section .slider-reference .prev-button {
    top: 227px;
    left: -56px;
    width: 44px;
    height: 50px;
  }
}
@media screen and (min-width: 690px) {
  .schools-section .slider-reference .less-four-cards-tablet {
    display: none;
  }
}
.schools-section .slider-reference .less-four-cards {
  display: none;
}
@media screen and (min-width: 1260px) {
  .schools-section .slider-reference .less-four-cards-desktop {
    display: none;
  }
}

/* Add styles for Homepage */
.schools .school-card {
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding-bottom: 1rem;
}
.schools__hero {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
.schools__hero__image {
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.schools__hero__image img {
  width: 100%;
  height: 100%;
}
.schools__hero__heading {
  margin-bottom: 1rem;
  padding-top: 151.5px;
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .schools__hero__heading {
    max-width: 546px;
    padding-top: 80px;
    font-size: 40px;
  }
}
.schools__hero__text {
  padding-bottom: 119.5px;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 32px; /* 200% */
  color: #fff;
  letter-spacing: -0.1px;
}
@media screen and (min-width: 768px) {
  .schools__hero__text {
    max-width: 685px;
    padding-bottom: 114px;
    font-size: 16px;
  }
}
.schools__cards {
  padding-bottom: 50px;
}
.schools__cards__heading {
  margin-top: 50px;
  margin-bottom: 32px;
  padding-bottom: 1rem;
  color: #0e1d3a;
  text-align: center;
  border-bottom: 1px solid #cfd2d8;
}
@media screen and (min-width: 1300px) {
  .schools__cards__heading {
    text-align: left;
  }
}
.schools__cards__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 32px;
  margin-inline: 13px;
}
.schools__cards__container:last-child {
  margin-bottom: 32px;
}
.schools__cards__container .school-card {
  width: 330px;
  margin: auto;
  margin-bottom: 40px;
}
.schools__cards__container .school-card:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .schools__cards__container .school-card {
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .schools__cards__container .school-card {
    width: 400px;
  }
}
@media screen and (min-width: 350px) {
  .schools__cards__container {
    margin-inline: 0;
  }
}
@media screen and (min-width: 768px) {
  .schools__cards__container {
    flex-flow: row wrap;
    row-gap: 40px;
    -moz-column-gap: 20.16px;
         column-gap: 20.16px;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 1300px) {
  .schools__cards__container {
    max-width: 1256px;
  }
}
.schools .filter-form {
  margin-top: -69px;
}
@media screen and (min-width: 768px) {
  .schools .filter-form {
    margin-top: -47px;
  }
}
.schools .school-description {
  overflow: hidden;
  display: -webkit-box;
  width: 100%;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 1024px) {
  .schools .school-description {
    -webkit-line-clamp: unset;
  }
}

.schools-result {
  min-height: calc(100vh - 570px);
}
.schools-result .no-results {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

/* stylelint-disable scss/at-rule-no-unknown */
/* stylelint-disable no-descending-specificity */
.school-details .filter-form__wrapper {
  margin-block-start: 18px;
}
.school-details .swiper {
  z-index: 0 !important;
  padding-block: 1px;
}
.school-details-intro__wrapper {
  padding-block: 40px;
}
.school-details-intro__heading {
  overflow: hidden;
  padding-block: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px; /* 100% */
  color: #eef2f3;
  text-overflow: ellipsis;
  border-block-end: 1px solid #fcd973;
}
.school-details-intro__school {
  display: flex;
  gap: 16px;
  margin-block: 16px;
}
.school-details-intro__details .pill {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  line-height: 12px; /* 120% */
  border-radius: 5px;
}
.school-details-intro__address {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-block-start: 7.5px;
}
.school-details-intro__address img {
  width: 24px;
  height: 24px;
}
.school-details-intro__address p {
  overflow: hidden;
  display: -webkit-box;
  flex: 1 0 0;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px; /* 133.333% */
  color: #dbe2fe;
  text-decoration-line: underline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.school-details-intro__logo {
  width: 64px;
  height: 64px;
}
.school-details-intro__ratings {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-block-end: 21px;
}
.school-details-intro__ratings-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 24px;
  padding: 4px;
  background: #dbe2fe;
  border-radius: 5px;
}
.school-details-intro__ratings-stars-value {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
  text-align: right;
}
.school-details-intro__ratings-stars-stars {
  display: flex;
}
.school-details-intro__ratings-stars-stars img {
  width: 16px;
  height: 16px;
}
.school-details-intro__ratings-stars-comments {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
  text-align: right;
}
.school-details-intro__ratings-examiner {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 32px;
  padding: 0 8px;
  background: #fac016;
  border-radius: 50px;
}
.school-details-intro__ratings-examiner img {
  width: 24px;
  height: 24px;
}
.school-details-intro__ratings-examiner p {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-align: center;
}
.school-details-intro__contact {
  display: flex;
  gap: 39.5px;
  align-items: center;
  margin-block-end: 16px;
}
.school-details-intro__contact-phones {
  position: relative;
  padding-inline-end: 39.5px;
}
.school-details-intro__contact-phones::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 27px;
  background: #eef2f3;
}
@media screen and (min-width: 1200px) {
  .school-details-intro__contact-phones::after {
    height: 36px;
  }
}
.school-details-intro__contact-phones-phone {
  display: flex;
  gap: 8px;
  padding-inline-start: 18px;
}
.school-details-intro__contact-phones-phone img {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
}
.school-details-intro__contact-phones-phone a {
  overflow: hidden;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px; /* 133.333% */
  color: #eef2f3;
  text-decoration-line: underline;
  text-overflow: ellipsis;
}
.school-details-intro__contact .school-details-intro__ratings-examiner,
.school-details-intro__contact .school-details-intro__ratings-stars {
  display: none;
}
.school-details-intro__contact-web {
  display: flex;
  gap: 8px;
}
.school-details-intro__contact-web img {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
}
.school-details-intro__contact-web a {
  overflow: hidden;
  display: -webkit-box;
  max-width: 131px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px; /* 133.333% */
  color: #eef2f3;
  text-decoration-line: underline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.school-details-intro__description {
  margin-block-end: 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px; /* 171.429% */
  color: #eef2f3;
}
.school-details-intro__schedule {
  margin-block-end: 16px;
}
.school-details-intro__schedule * {
  color: #eef2f3;
}
.school-details-intro__schedule-times p {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px; /* 171.429% */
}
.school-details-intro__schedule h5 {
  margin-block-end: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px; /* 171.429% */
}
.school-details-intro__photo-gallery {
  margin-block-end: 16px;
}
.school-details-intro__photo-gallery h5 {
  margin-block-end: 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px; /* 171.429% */
  color: #eef2f3;
}
.school-details-intro__photo-gallery-picture {
  width: 171.6px;
  height: 171.6px;
  border-radius: 5px;
}
.school-details-intro__photo-gallery--wrapper {
  scrollbar-width: none;
  overflow-x: scroll;
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  -ms-overflow-style: none; /* IE and Edge */
}
.school-details-intro__photo-gallery--wrapper::-webkit-scrollbar {
  display: none;
}
.school-details-intro__locations picture {
  margin-block-end: 17px;
}
.school-details-intro__locations swiper-container::part(button-prev) {
  color: white;
}
.school-details-intro__locations swiper-container::part(button-prev)::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzYiIGhlaWdodD0iNDEiIHZpZXdCb3g9IjAgMCAzNiA0MSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjQ0MzMgMjAuNkwyMy4yODYxIDI4LjI2NjdMMjEuNzE4NSAzMC4wMjMxTDEzLjMwODEgMjAuNkwyMS43MTg1IDExLjE3N0wyMy4yODYxIDEyLjkzMzRMMTYuNDQzMyAyMC42WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+");
}
.school-details-intro__locations swiper-container::part(button-next) {
  color: white;
}
.school-details-intro__locations swiper-container::part(button-next)::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNiIgaGVpZ2h0PSI0MSIgdmlld0JveD0iMCAwIDM2IDQxIiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMTkuNTU2NyAyMC41OTk5TDEyLjcxMzkgMTIuOTMzM0wxNC4yODE1IDExLjE3NjlMMjIuNjkxOSAyMC41OTk5TDE0LjI4MTUgMzAuMDIzTDEyLjcxMzkgMjguMjY2NkwxOS41NTY3IDIwLjU5OTlaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=");
}
.school-details-intro__locations-swiper .swiper-button-prev {
  color: white;
}
.school-details-intro__locations-swiper .swiper-button-prev::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzYiIGhlaWdodD0iNDEiIHZpZXdCb3g9IjAgMCAzNiA0MSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjQ0MzMgMjAuNkwyMy4yODYxIDI4LjI2NjdMMjEuNzE4NSAzMC4wMjMxTDEzLjMwODEgMjAuNkwyMS43MTg1IDExLjE3N0wyMy4yODYxIDEyLjkzMzRMMTYuNDQzMyAyMC42WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+");
}
.school-details-intro__locations-swiper .swiper-button-next {
  color: white;
}
.school-details-intro__locations-swiper .swiper-button-next::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNiIgaGVpZ2h0PSI0MSIgdmlld0JveD0iMCAwIDM2IDQxIiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMTkuNTU2NyAyMC41OTk5TDEyLjcxMzkgMTIuOTMzM0wxNC4yODE1IDExLjE3NjlMMjIuNjkxOSAyMC41OTk5TDE0LjI4MTUgMzAuMDIzTDEyLjcxMzkgMjguMjY2NkwxOS41NTY3IDIwLjU5OTlaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=");
}
.school-details-intro__locations-count {
  overflow: hidden;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px; /* 133.333% */
  color: #eef2f3;
  text-align: center;
  text-overflow: ellipsis;
}
.school-details-intro__locations-swiper-slide-address {
  overflow: hidden;
  display: -webkit-box;
  width: 266.869px;
  margin-inline: auto;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 16px; /* 133.333% */
  color: #fff;
  text-align: center;
  text-decoration-line: underline;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.school-details-courses__wrapper {
  padding-block-start: 32px;
}
.school-details-courses__heading {
  overflow: hidden;
  margin-block-end: 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px; /* 100% */
  color: #0e1d3a;
  text-overflow: ellipsis;
}
.school-details-courses__filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background-color: #eef2f3;
}
.school-details-courses__filter-heading {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px; /* 114.286% */
  color: #0e1d3a;
}
.school-details-courses__filter-select .css-13cymwt-control {
  cursor: pointer;
  background: transparent;
  border: none;
}
.school-details-courses__filter-select .css-13cymwt-control svg {
  fill: #0e1d3a;
  stroke: #0e1d3a;
}
.school-details-courses__filter-select .css-t3ipsp-control {
  background: transparent;
}
.school-details-courses__filter-select .css-1u9des2-indicatorSeparator {
  display: none;
}
.school-details-courses__filter-select .css-hlgwow {
  overflow: hidden;
  width: 156px;
  max-width: 156px;
  text-overflow: ellipsis;
}
.school-details-courses__filter-select-value {
  overflow: hidden;
  max-width: 135px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px; /* 114.286% */
  color: #0e1d3a;
  text-overflow: ellipsis;
}
.school-details-courses__filter-select-indicator {
  fill: #0e1d3a;
  stroke: #0e1d3a;
}
.school-details-courses__title-section {
  padding-block-end: 10px;
  border-bottom: 1px solid #cfd2d8;
}
.school-details-courses__sliders {
  padding-block-start: 16px;
}
.school-details-courses__sliders .course-swiper__title {
  display: flex;
  gap: 8px;
  margin-block-end: 24px;
}
.school-details-courses__sliders .course-swiper__title span {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px; /* 150% */
  color: #0e1d3a;
}
.school-details-courses__sliders .course-swiper__title img {
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 1024px) {
  .school-details-courses__sliders .course-swiper__title {
    margin-inline-start: 5%;
  }
}
.school-details-courses__sliders .course-swiper__carousel .button-next,
.school-details-courses__sliders .course-swiper__carousel .button-prev {
  top: 37%;
}
.school-details-courses__sliders .course-swiper__carousel .button-prev::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzEiIHZpZXdCb3g9IjAgMCAzMCAzMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9IkNoZXZyb24gUmlnaHQiPgo8cGF0aCBpZD0iVmVjdG9yIiBkPSJNMTMuODE3NCAxNS41MDAzTDE5LjU2NzQgMjEuMjUwM0wxOC4yNTAxIDIyLjU2NzZMMTEuMTgyOCAxNS41MDAzTDE4LjI1MDEgOC40MzMwNkwxOS41Njc0IDkuNzUwMzRMMTMuODE3NCAxNS41MDAzWiIgZmlsbD0iIzBFMUQzQSIvPgo8L2c+Cjwvc3ZnPgo=");
  position: static;
  display: block;
}
@media screen and (max-width: 370px) {
  .school-details-courses__sliders .course-swiper__carousel .button-prev {
    left: -10px;
  }
}
.school-details-courses__sliders .course-swiper__carousel .button-next::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAyNCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9IkNoZXZyb24gUmlnaHQiPgo8cGF0aCBpZD0iVmVjdG9yIiBkPSJNMTYuMTgyNiAxNS4wMDA0TDEwLjQzMjYgOS4yNTAzOUwxMS43NDk5IDcuOTMzMTFMMTguODE3MiAxNS4wMDA0TDExLjc0OTkgMjIuMDY3N0wxMC40MzI2IDIwLjc1MDRMMTYuMTgyNiAxNS4wMDA0WiIgZmlsbD0iIzBFMUQzQSIvPgo8L2c+Cjwvc3ZnPgo=");
  position: static;
  display: block;
}
@media screen and (max-width: 370px) {
  .school-details-courses__sliders .course-swiper__carousel .button-next {
    right: -4px;
  }
}
.school-details-courses__sliders:nth-child(3) {
  padding-block-start: 24px;
}
.school-details-courses__tabs {
  display: none;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .school-details-courses__tabs {
    display: flex;
    margin-block-start: 16px;
  }
}
.school-details-courses__tab {
  cursor: pointer;
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 15px;
  background: #cfd2d8;
  border-radius: 100px;
  transition: all 0.2s ease-in-out;
}
.school-details-courses__tab p {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
}
.school-details-courses__tab img {
  width: 24px;
  height: 24px;
}
.school-details-courses__tab--active {
  background: #0e1d3a;
}
.school-details-courses__tab--active p {
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .school-details-courses__tab {
    padding: 10px 20px;
  }
}
.school-details-vehicules {
  padding-block-start: 40px;
}
.school-details-vehicules__title {
  overflow: hidden;
  padding-block-end: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px; /* 100% */
  color: #0e1d3a;
  text-overflow: ellipsis;
  border-bottom: 1px solid #cfd2d8;
}
.school-details-vehicules__carousel {
  margin-block-start: 24px;
  padding-block-end: 5px;
}
.school-details-vehicules__carousel .swiper-button-prev::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzEiIHZpZXdCb3g9IjAgMCAzMCAzMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9IkNoZXZyb24gUmlnaHQiPgo8cGF0aCBpZD0iVmVjdG9yIiBkPSJNMTMuODE3NCAxNS41MDAzTDE5LjU2NzQgMjEuMjUwM0wxOC4yNTAxIDIyLjU2NzZMMTEuMTgyOCAxNS41MDAzTDE4LjI1MDEgOC40MzMwNkwxOS41Njc0IDkuNzUwMzRMMTMuODE3NCAxNS41MDAzWiIgZmlsbD0iIzBFMUQzQSIvPgo8L2c+Cjwvc3ZnPgo=");
}
.school-details-vehicules__carousel .swiper-button-next::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAyNCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9IkNoZXZyb24gUmlnaHQiPgo8cGF0aCBpZD0iVmVjdG9yIiBkPSJNMTYuMTgyNiAxNS4wMDA0TDEwLjQzMjYgOS4yNTAzOUwxMS43NDk5IDcuOTMzMTFMMTguODE3MiAxNS4wMDA0TDExLjc0OTkgMjIuMDY3N0wxMC40MzI2IDIwLjc1MDRMMTYuMTgyNiAxNS4wMDA0WiIgZmlsbD0iIzBFMUQzQSIvPgo8L2c+Cjwvc3ZnPgo=");
}
.school-details-vehicules__card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  max-width: 272px;
  margin-inline: auto;
  background: #fff;
  border-radius: 10px;
  /* card-shadow */
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.school-details-vehicules__card-img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.school-details-vehicules__card-name {
  margin-block: 10px 8px;
  margin-inline: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px; /* 171.429% */
  color: #000;
}
.school-details-vehicules__card-info {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-block-end: 10px;
  margin-inline: 10px;
}
.school-details-vehicules__card-info p {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px; /* 200% */
  color: #000;
}
.school-details-vehicules__card-info p:not(:last-child) {
  position: relative;
  width: 81.3px;
}
.school-details-vehicules__card-info p:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: #cfd2d8;
}
.school-details-branches {
  padding-block-start: 40px;
  padding-block-end: 24px;
}
.school-details-branches__slider .school-card {
  overflow: hidden;
  max-width: 358px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .school-details-branches__slider .school-card .school-heading {
    max-width: 243px;
  }
  .school-details-branches__slider .school-card .school-name {
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 374px) {
  .school-details-branches__slider .school-card {
    scale: 0.8;
  }
}
.school-details-branches__heading {
  overflow: hidden;
  padding-block-end: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px; /* 100% */
  color: #0e1d3a;
  text-overflow: ellipsis;
  border-bottom: 1px solid #cfd2d8;
}
.school-details-branches__carousel {
  margin-block-start: 24px;
}
.school-details-branches__carousel::part(button-next), .school-details-branches__carousel::part(button-prev) {
  color: #0e1d3a;
  stroke-width: 2px;
}
.school-details-branches__carousel::part(button-prev) {
  left: 0;
}
.school-details-branches__carousel::part(button-prev)::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzEiIHZpZXdCb3g9IjAgMCAzMCAzMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9IkNoZXZyb24gUmlnaHQiPgo8cGF0aCBpZD0iVmVjdG9yIiBkPSJNMTMuODE3NCAxNS41MDAzTDE5LjU2NzQgMjEuMjUwM0wxOC4yNTAxIDIyLjU2NzZMMTEuMTgyOCAxNS41MDAzTDE4LjI1MDEgOC40MzMwNkwxOS41Njc0IDkuNzUwMzRMMTMuODE3NCAxNS41MDAzWiIgZmlsbD0iIzBFMUQzQSIvPgo8L2c+Cjwvc3ZnPgo=");
}
.school-details-branches__carousel::part(button-prev) svg {
  display: none;
}
.school-details-branches__carousel::part(button-next) {
  right: 4px;
}
.school-details-branches__carousel::part(button-next)::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAyNCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9IkNoZXZyb24gUmlnaHQiPgo8cGF0aCBpZD0iVmVjdG9yIiBkPSJNMTYuMTgyNiAxNS4wMDA0TDEwLjQzMjYgOS4yNTAzOUwxMS43NDk5IDcuOTMzMTFMMTguODE3MiAxNS4wMDA0TDExLjc0OTkgMjIuMDY3N0wxMC40MzI2IDIwLjc1MDRMMTYuMTgyNiAxNS4wMDA0WiIgZmlsbD0iIzBFMUQzQSIvPgo8L2c+Cjwvc3ZnPgo=");
}
.school-details-branches__carousel::part(button-next) svg {
  display: none;
}
@media screen and (min-width: 1024px) {
  .school-details-branches__carousel {
    margin-block-start: 40px;
  }
}
@media screen and (min-width: 768px) {
  .school-details .bg-color--main-quaternary-variant-1 {
    padding-block-start: 16px;
    background-color: white;
  }
  .school-details .bg-color--main-quaternary-variant-1 .wrapper {
    padding: 16px;
    padding-block-start: 32px;
    background-color: #f5f7f8;
    border-radius: 5px;
  }
  .school-details-wrapper {
    grid-area: details;
  }
  .school-details-intro__wrapper .wrapper {
    display: grid;
    grid-template: "title title title" 32px "details details map" 1.9fr/1fr 1fr 372px;
    gap: 0 0;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .school-details-intro__heading {
    grid-area: title;
  }
  .school-details-intro__locations {
    grid-area: map;
    width: 100%;
    margin-block-start: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .school-details-intro__ratings {
    display: none;
  }
  .school-details-intro__contact .school-details-intro__ratings-examiner,
  .school-details-intro__contact .school-details-intro__ratings-stars {
    display: flex;
  }
  .school-details-intro__contact .school-details-intro__ratings-examiner {
    position: relative;
  }
  .school-details-intro__contact .school-details-intro__ratings-examiner::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 1px;
    height: 27px;
    background: #eef2f3;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  .school-details-intro__contact .school-details-intro__ratings-examiner::after {
    height: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .school-details-intro__contact .school-details-intro__ratings-stars {
    position: relative;
  }
  .school-details-intro__contact .school-details-intro__ratings-stars::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    width: 1px;
    height: 27px;
    background: #eef2f3;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  .school-details-intro__contact .school-details-intro__ratings-stars::after {
    height: 36px;
  }
}

.course-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 250px;
  max-width: 260px;
  margin-block-end: 5px;
  margin-inline: auto;
  padding: 40px 20px;
  background: #fcfcfd;
  border: 1px solid #cfd2d8;
  border-radius: 10px;
  /* card-shadow */
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.course-card__button--full-screen {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 12px;
}
.course-card__button--add {
  display: flex;
  gap: 4px;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  min-height: 32px;
  margin-block-start: 10px;
  padding: 4px 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px; /* 114.286% */
  color: #fff;
  text-align: center;
  background: #0e1d3a;
  border-radius: 5px;
}
.course-card__button--add img {
  width: 24px;
  height: 24px;
}
.course-card.motocicleta .licenses-card__icon {
  position: relative;
}
.course-card.motocicleta .licenses-card__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 43px;
}
.course-card .licenses-card__icon {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  padding: 10px;
  background: #0e1d3a;
  border-radius: 50px;
}
.course-card__title {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px; /* 114.286% */
  color: #000;
  text-align: center;
}
.course-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.course-card__price * {
  margin: 0;
}
.course-card__price-from {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px; /* 133.333% */
  color: #3e4a61;
  text-align: center;
}
.course-card__price-value {
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  font-weight: 700;
  font-style: normal;
  line-height: 20px;
  color: #0e1d3a;
}
.course-card__packages {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px; /* 114.286% */
  color: #000;
  text-align: center;
}

.desktop-large,
.desktop {
  width: 250px !important;
}

.desktop {
  margin-right: 45px !important;
}

.desktop-large--carousel .swiper-wrapper {
  justify-content: center;
}

.desktop--carousel {
  padding-inline-start: 50px !important;
}

swiper-container::part(button-prev) {
  top: 37%;
}
swiper-container::part(button-prev)::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzEiIHZpZXdCb3g9IjAgMCAzMCAzMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9IkNoZXZyb24gUmlnaHQiPgo8cGF0aCBpZD0iVmVjdG9yIiBkPSJNMTMuODE3NCAxNS41MDAzTDE5LjU2NzQgMjEuMjUwM0wxOC4yNTAxIDIyLjU2NzZMMTEuMTgyOCAxNS41MDAzTDE4LjI1MDEgOC40MzMwNkwxOS41Njc0IDkuNzUwMzRMMTMuODE3NCAxNS41MDAzWiIgZmlsbD0iIzBFMUQzQSIvPgo8L2c+Cjwvc3ZnPgo=");
}
@media screen and (max-width: 370px) {
  swiper-container::part(button-prev) {
    left: -10px;
  }
}

swiper-container::part(button-next) {
  top: 37%;
}
swiper-container::part(button-next)::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAyNCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9IkNoZXZyb24gUmlnaHQiPgo8cGF0aCBpZD0iVmVjdG9yIiBkPSJNMTYuMTgyNiAxNS4wMDA0TDEwLjQzMjYgOS4yNTAzOUwxMS43NDk5IDcuOTMzMTFMMTguODE3MiAxNS4wMDA0TDExLjc0OTkgMjIuMDY3N0wxMC40MzI2IDIwLjc1MDRMMTYuMTgyNiAxNS4wMDA0WiIgZmlsbD0iIzBFMUQzQSIvPgo8L2c+Cjwvc3ZnPgo=");
}
swiper-container::part(button-next) svg {
  display: none;
}
@media screen and (max-width: 370px) {
  swiper-container::part(button-next) {
    right: -4px;
  }
}

.contact {
  padding-bottom: 50px;
}
.contact__image-form img {
  width: 100%;
  height: 262px;
}
@media (min-width: 425px) {
  .contact__image-form img {
    height: 20%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contact__image-form img {
    height: 356px;
  }
}
@media (min-width: 1024px) {
  .contact__image-form img {
    width: 536px;
    height: 962px;
  }
}
@media (min-width: 1024px) {
  .contact__image-form {
    width: 536px;
  }
}
@media (min-width: 1024px) {
  .contact__image {
    width: 47.222%;
  }
}
.contact__container {
  margin-top: 50px;
}
@media (min-width: 1024px) {
  .contact__container {
    margin-top: 96px;
    margin-bottom: 96px;
  }
}
@media (min-width: 1024px) {
  .contact__main {
    max-width: 512px;
  }
}
@media (min-width: 1441px) {
  .contact__main {
    max-width: 78.555%;
  }
}
@media (min-width: 1441px) {
  .contact {
    width: 1256px;
  }
}
@media (min-width: 1024px) {
  .contact {
    display: flex;
    flex-direction: row;
    gap: 8.222%;
    max-width: 87.22%;
    margin: 0 auto;
    padding-top: 30px;
  }
}

#form-contact img {
  position: relative;
  top: 40%;
  left: calc(50% - 50px);
  width: 100px;
  height: 100px;
  margin-top: 50%;
}

.contact__button + .form__error {
  margin-top: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 14px;
  color: #ff3246;
}

.feedback-user {
  display: none;
}

.register-school__heading {
  margin-top: 83px;
  font-size: 48px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
}
@media screen and (min-width: 768px) {
  .register-school__heading {
    margin-top: 0;
  }
}
.register-school__description {
  margin-block: 25px;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 32px;
  color: #3E4A61;
}
@media screen and (min-width: 1024px) {
  .register-school__description {
    margin-block: 16px;
  }
}
.register-school .button {
  margin-bottom: 35px;
  padding-block: 15px;
}
@media screen and (min-width: 1024px) {
  .register-school .button {
    margin-bottom: 0;
  }
}
.register-school img {
  width: 100%;
  height: 450px;
  margin-bottom: 110px;
}
@media screen and (min-width: 768px) {
  .register-school img {
    max-width: 400px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1050px) {
  .register-school img {
    max-width: 620px;
  }
}
@media screen and (min-width: 768px) {
  .register-school .wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-block: 128px;
  }
}
@media screen and (min-width: 1300px) {
  .register-school .wrapper {
    max-width: 1256px;
    margin: auto;
  }
}

.maintenance__section {
  padding-top: 144px;
  padding-bottom: 262px;
}
@media screen and (min-width: 768px) {
  .maintenance__section {
    padding-top: 120px;
    padding-bottom: 78px;
  }
}
.maintenance__heading {
  margin-bottom: 40px;
  font-family: "DM Sans", sans-serif;
  font-size: 50px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .maintenance__heading {
    margin-bottom: 42px;
  }
}
.maintenance__description {
  width: 100%;
  max-width: 26ch;
  margin-bottom: 122px;
  margin-inline: auto;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 500px) {
  .maintenance__description {
    max-width: 40ch;
  }
}
@media screen and (min-width: 1024px) {
  .maintenance__description {
    max-width: 49ch;
    margin-bottom: 100px;
  }
}
.maintenance__container_img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 250px;
  margin-right: 67px;
  margin-bottom: -38px;
  margin-left: 57px;
  margin-inline: auto;
}
.maintenance__container_img::after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: 0;
  display: block;
  width: 33px;
  height: 37px;
  background-image: url("/assets/images/maintenance/con-mobile.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 390px) {
  .maintenance__container_img::after {
    right: -66px;
    bottom: 0;
  }
}
@media screen and (min-width: 430px) {
  .maintenance__container_img::after {
    right: -46px;
    bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .maintenance__container_img::after {
    right: -110px;
    bottom: 10px;
    width: 69px;
    height: 78px;
  }
}
@media screen and (min-width: 1024px) {
  .maintenance__container_img::after {
    right: -129px;
    bottom: 23px;
    width: 69px;
    height: 78px;
  }
}
@media screen and (min-width: 430px) {
  .maintenance__container_img {
    max-width: 306px;
  }
}
@media screen and (min-width: 768px) {
  .maintenance__container_img {
    max-width: 500px;
  }
}
@media screen and (min-width: 1024px) {
  .maintenance__container_img {
    max-width: 611px;
    margin-right: 0;
    margin-bottom: -51px;
    margin-left: 200px;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1300px) {
  .maintenance__container_img {
    margin-right: 390px;
    margin-bottom: -51px;
    margin-left: 439px;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1500px) {
  .maintenance__container_img {
    margin-left: 0;
    margin-inline: auto;
  }
}
.maintenance__img {
  width: 100%;
  height: 72px;
}

.coming_soon__section {
  overflow: hidden;
  padding-top: 80px;
}
@media screen and (min-width: 1024px) {
  .coming_soon__section {
    padding-top: 158px;
  }
}
@media screen and (min-width: 1024px) {
  .coming_soon__wrapper {
    position: relative;
    width: 100%;
    max-width: 1096px;
    margin-inline: auto;
  }
}
.coming_soon__heading {
  margin-bottom: 31px;
  font-family: "DM Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #000;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 390px) {
  .coming_soon__heading {
    font-size: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .coming_soon__heading {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    font-size: 100px;
    font-weight: 700;
    line-height: normal;
  }
}
@media screen and (min-width: 1300px) {
  .coming_soon__heading {
    font-size: 140px;
  }
}
.coming_soon__description {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28ch;
  margin-inline: auto;
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .coming_soon__description {
    max-width: 50ch;
  }
}
@media screen and (min-width: 1024px) {
  .coming_soon__description {
    position: absolute;
    top: 115px;
    left: 216px;
    font-size: 19px;
  }
}
@media screen and (min-width: 1300px) {
  .coming_soon__description {
    top: 162px;
    left: 114px;
    font-size: 25px;
  }
}
.coming_soon__wrapper-img {
  position: relative;
  z-index: -1;
  width: 100%;
  max-width: 819px;
  margin-top: -26px;
  margin-inline: auto;
}
.coming_soon__wrapper-img::after {
  content: "";
  position: absolute;
  top: 206px;
  right: 34.5px;
  display: block;
  width: 65px;
  height: 87.102px;
  background-image: url("/assets/images/comming-soon/mini-con-mobile.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 375px) {
  .coming_soon__wrapper-img::after {
    right: 70.5px;
  }
}
@media screen and (min-width: 430px) {
  .coming_soon__wrapper-img::after {
    right: 89.5px;
  }
}
@media screen and (min-width: 600px) {
  .coming_soon__wrapper-img::after {
    right: 165px;
  }
}
@media screen and (min-width: 700px) {
  .coming_soon__wrapper-img::after {
    right: 223px;
  }
}
@media screen and (min-width: 768px) {
  .coming_soon__wrapper-img::after {
    top: unset;
    right: 171px;
    bottom: 200px;
    height: 97px;
    background-image: url("/assets/images/comming-soon/mini-con-desktop.png");
  }
}
@media screen and (min-width: 820px) {
  .coming_soon__wrapper-img::after {
    right: 201px;
    bottom: 200px;
  }
}
@media screen and (min-width: 1024px) {
  .coming_soon__wrapper-img::after {
    right: 209px;
    bottom: 249px;
  }
}
.coming_soon__wrapper-img::before {
  content: "";
  position: absolute;
  top: 290px;
  left: 51.5px;
  display: block;
  width: 194px;
  height: 129px;
  background-image: url("/assets/images/comming-soon/caution-signal-mobile.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 375px) {
  .coming_soon__wrapper-img::before {
    left: 76.5px;
  }
}
@media screen and (min-width: 430px) {
  .coming_soon__wrapper-img::before {
    left: 105.5px;
  }
}
@media screen and (min-width: 500px) {
  .coming_soon__wrapper-img::before {
    left: 139.5px;
  }
}
@media screen and (min-width: 600px) {
  .coming_soon__wrapper-img::before {
    left: 187px;
  }
}
@media screen and (min-width: 700px) {
  .coming_soon__wrapper-img::before {
    left: 234px;
  }
}
@media screen and (min-width: 768px) {
  .coming_soon__wrapper-img::before {
    z-index: 4;
    top: unset;
    bottom: 24px;
    left: 230px;
    width: 330px;
    height: 220px;
    background-image: url("/assets/images/comming-soon/caution-signal-desktop.png");
  }
}
@media screen and (min-width: 1024px) {
  .coming_soon__wrapper-img::before {
    bottom: 72px;
    left: 240px;
  }
}
@media screen and (min-width: 1024px) {
  .coming_soon__wrapper-img {
    width: 819px;
    height: 683px;
    margin-top: -176px;
    margin-bottom: -50px;
  }
}
@media screen and (min-width: 1300px) {
  .coming_soon__wrapper-img {
    margin-top: -225px;
  }
}

.page_not_found__section {
  position: relative;
  padding-top: 174px;
  padding-bottom: 284px;
}
@media screen and (min-width: 768px) {
  .page_not_found__section {
    padding-top: 147px;
    padding-bottom: 71px;
  }
}
@media screen and (min-width: 1024px) {
  .page_not_found__section {
    padding-top: 147px;
    padding-bottom: 71px;
  }
}
.page_not_found__wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 298px;
  height: 100%;
  min-height: 209px;
  margin-bottom: -43px;
  margin-inline: auto;
}
.page_not_found__wrapper::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 9.46px;
  left: 63.36px;
  display: block;
  width: 178px;
  height: 200px;
  background-image: url("/assets/images/page-not-found/cono.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 1024px) {
  .page_not_found__wrapper::before {
    top: 0;
    left: 134px;
    width: 376px;
    height: 422px;
    background-image: url("/assets/images/page-not-found/cono-desktop.png");
  }
}
@media screen and (min-width: 1300px) {
  .page_not_found__wrapper::before {
    top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .page_not_found__wrapper {
    max-width: 630px;
  }
}
.page_not_found__number {
  font-family: "DM Sans", sans-serif;
  font-size: 150px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #000;
}
@media screen and (min-width: 1024px) {
  .page_not_found__number {
    font-size: 300px;
  }
}
.page_not_found__img {
  position: relative;
  margin-bottom: 86px;
}
@media screen and (min-width: 1024px) {
  .page_not_found__img {
    margin-bottom: 41px;
  }
}
.page_not_found__gradient {
  position: absolute;
  bottom: 433px;
  left: 0;
  width: 100%;
  height: 11.4px;
  background: linear-gradient(91deg, #fff -5.9%, #476194 14.94%, #0e2f6d 70.04%, #fff 100%);
}
@media screen and (min-width: 375px) {
  .page_not_found__gradient {
    bottom: 441px;
  }
}
@media screen and (min-width: 430px) {
  .page_not_found__gradient {
    bottom: 460px;
  }
}
@media screen and (min-width: 768px) {
  .page_not_found__gradient {
    bottom: 235px;
    height: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .page_not_found__gradient {
    bottom: 246px;
  }
}
.page_not_found__heading {
  width: 100%;
  margin-inline: auto;
  font-family: "DM Sans", sans-serif;
  font-size: 25px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 375px) {
  .page_not_found__heading {
    font-size: 30px;
  }
}
@media screen and (min-width: 430px) {
  .page_not_found__heading {
    margin-bottom: 3px;
    font-size: 35px;
  }
}
@media screen and (min-width: 600px) {
  .page_not_found__heading {
    max-width: 100%;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .page_not_found__heading {
    margin-bottom: 18px;
    font-size: 55px;
  }
}
.page_not_found__description {
  width: 100%;
  max-width: 28ch;
  margin-inline: auto;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 430px) {
  .page_not_found__description {
    font-size: 19px;
  }
}
@media screen and (min-width: 1024px) {
  .page_not_found__description {
    font-size: 25px;
  }
}

.blog-hero {
  position: relative;
  z-index: -2;
  width: 100%;
  height: 471px;
  background-image: url("/assets/images/blog-page/driver-blog-page.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.blog-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-color: rgba(14, 29, 58, 0.5);
}
.blog-hero__content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.blog-hero__content h1 {
  width: 288px;
  margin-top: 113.51px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-bottom: 3px solid #fac016;
}
@media (min-width: 1024px) {
  .blog-hero__content h1 {
    width: 74.513%;
    font-size: 50px;
  }
}
@media (min-width: 1310px) {
  .blog-hero__content h1 {
    width: 1073px;
  }
}
.blog-hero__content p {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
  .blog-hero__content p {
    font-size: 22px;
  }
  .blog-hero__content p:last-child {
    width: 84%;
  }
}
@media (min-width: 1024px) {
  .blog-hero__content {
    bottom: 11%;
  }
}
@media screen and (min-width: 1600px) {
  .blog-hero__content {
    bottom: 0;
  }
}
@media (min-width: 1024px) {
  .blog-hero {
    height: 337px;
    background-image: url("/assets/images/blog-page/driver-blog-page-desktop.webp");
    background-position: center;
    background-size: 100% 337px;
  }
}
@media screen and (min-width: 1300px) {
  .blog-hero {
    height: 23.41vw;
    background-size: 100% 23.41vw;
  }
}

.no-data {
  height: 350px;
}

.resources__section_main {
  position: relative;
  width: 100%;
  height: 100%;
}
.resources .resources__video_wrapper {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.resources .resources__video_wrapper .resources__video--mobile {
  height: 100% !important;
}
@media screen and (min-width: 768px) {
  .resources .resources__video_wrapper .resources__video--mobile {
    display: none;
  }
}
.resources .resources__video_wrapper .resources__video--desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .resources .resources__video_wrapper .resources__video--desktop {
    display: block;
  }
}
.resources__main_heading {
  position: absolute;
  top: 40px;
  left: 20px;
  width: 100%;
  max-width: 15ch;
  font-family: "DM Sans", sans-serif;
  font-size: 29px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
}
@media screen and (min-width: 375px) {
  .resources__main_heading {
    max-width: 17ch;
  }
}
@media screen and (min-width: 768px) {
  .resources__main_heading {
    top: 140px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .resources__main_heading {
    margin-left: 40px;
    padding-top: 40px;
    font-size: 29px;
  }
}
@media screen and (min-width: 1300px) {
  .resources__main_heading {
    margin-left: 20px;
    padding-top: 120px;
    font-size: 50px;
  }
}
@media screen and (min-width: 1440px) {
  .resources__main_heading {
    margin-left: 60px;
    padding-top: 174px;
  }
}
.resources__span_heading {
  font-size: 29px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #fac016;
}
@media screen and (min-width: 768px) {
  .resources__span_heading {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .resources__span_heading {
    font-size: 29px;
  }
}
@media screen and (min-width: 1300px) {
  .resources__span_heading {
    font-size: 50px;
  }
}
.resources__simulator {
  width: 100%;
  padding-block: 60px;
}
.resources__simulator_conteiner {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
  width: 100%;
  height: 100%;
  max-height: 263px;
}
@media screen and (min-width: 1240px) {
  .resources__simulator_conteiner {
    align-items: center;
    max-height: 120px;
  }
}
.resources__simulator_heading {
  max-width: 18ch;
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .resources__simulator_heading {
    max-width: 28ch;
  }
}
@media screen and (min-width: 1024px) {
  .resources__simulator_heading {
    max-width: 100%;
    font-size: 40px;
    font-weight: 700;
  }
}
.resources__simulator_heading_focus {
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #4b6dfb;
}
@media screen and (min-width: 1024px) {
  .resources__simulator_heading_focus {
    font-family: "DM Sans", sans-serif;
    font-size: 40px;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    color: #4b6dfb;
  }
}
.resources__simulator_button {
  align-items: center;
  height: 48px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .resources__simulator_button {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.resources__license {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0e1d3a;
}
@media screen and (min-width: 1024px) {
  .resources__license {
    padding-block: 60px;
  }
}
.resources__conteiner {
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .resources__conteiner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 75px;
         column-gap: 75px;
    width: 100%;
    max-width: 1240px;
  }
}
@media screen and (min-width: 1240px) {
  .resources__conteiner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 75px;
         column-gap: 75px;
    width: 100%;
    max-width: 1240px;
  }
}
.resources__title {
  width: 100%;
  max-width: 12ch;
  margin-bottom: 54px;
  font-family: "DM Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
}
@media screen and (min-width: 500px) {
  .resources__title {
    max-width: 15ch;
  }
}
@media screen and (min-width: 768px) {
  .resources__title {
    max-width: 23ch;
  }
}
.resources__List {
  margin-left: 0;
  padding: 0;
  list-style: none;
}
.resources__List_item {
  position: relative;
  width: 100%;
  margin-bottom: 23px;
  padding-left: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #fff;
}
.resources__List_item::marker {
  content: "";
}
.resources__List_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 9.059px;
  height: 10px;
  background-color: #fcc43e;
  border-radius: 50%;
}
.resources__List_item:nth-child(1) {
  width: 23ch;
  padding-left: 18px;
}
.resources__List_item:nth-child(1)::before {
  top: 9px;
  left: 0;
}
@media screen and (min-width: 375px) {
  .resources__List_item:nth-child(1) {
    width: 29ch;
  }
}
@media screen and (min-width: 600px) {
  .resources__List_item:nth-child(1) {
    width: 50ch;
  }
}
@media screen and (min-width: 1024px) {
  .resources__List_item:nth-child(1) {
    width: 35ch;
    padding-left: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .resources__List_item:nth-child(1) {
    width: 44ch;
  }
}
.resources__List_item:nth-child(2) {
  max-width: 25ch;
  padding-left: 18px;
}
.resources__List_item:nth-child(2)::before {
  top: 7px;
  left: 0;
}
@media screen and (min-width: 500px) {
  .resources__List_item:nth-child(2) {
    max-width: 40ch;
  }
}
@media screen and (min-width: 1024px) {
  .resources__List_item:nth-child(2) {
    max-width: 42ch;
    padding-left: 35px;
  }
}
.resources__List_item:nth-child(3) {
  padding-left: 18px;
}
.resources__List_item:nth-child(3)::before {
  top: 34px;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .resources__List_item:nth-child(3) {
    width: 35ch;
    padding-left: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .resources__List_item:nth-child(3) {
    width: 48ch;
  }
}
.resources__List_item:nth-child(4) {
  padding-left: 18px;
}
.resources__List_item:nth-child(4)::before {
  top: 15px;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .resources__List_item:nth-child(4) {
    padding-left: 35px;
  }
}
.resources__List_item:nth-child(5) {
  max-width: 40ch;
  padding-left: 18px;
}
.resources__List_item:nth-child(5)::before {
  top: 7px;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .resources__List_item:nth-child(5) {
    padding-left: 35px;
  }
}
.resources__List_item:nth-child(6) {
  max-width: 40ch;
  margin-bottom: 0;
  padding-left: 18px;
}
.resources__List_item:nth-child(6)::before {
  top: 7px;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .resources__List_item:nth-child(6) {
    padding-left: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .resources__conteiner_image {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    background-image: url("/assets/images/resources-page/image-licence.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.resources__button {
  align-items: center;
  width: 162px;
  height: 48px;
  margin-top: 30px;
  margin-inline: auto;
  color: #fcfcfd;
}
@media screen and (min-width: 1024px) {
  .resources__button {
    width: 162px;
    margin-bottom: 30px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1300px) {
  .resources__button {
    margin-left: 240.5px;
  }
}
.resources__Tips_and_resources {
  padding-block: 40px;
}
@media screen and (min-width: 1024px) {
  .resources__Tips_and_resources {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
.resources__Tips_and_resources_span {
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #4b6dfb;
}
@media screen and (min-width: 1024px) {
  .resources__Tips_and_resources_span {
    font-size: 40px;
  }
}
.resources__Tips_and_resources_heading {
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .resources__Tips_and_resources_heading {
    font-size: 40px;
  }
}
.resources ul.tabs[role=tablist] {
  width: 100%;
  height: 100%;
  min-height: 86px;
  padding: 0;
  background: #fff;
}
@media screen and (min-width: 1024px) {
  .resources ul.tabs[role=tablist] {
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: center;
    justify-content: center;
    max-width: 1320px;
    margin-inline: auto;
  }
}
.resources [role=tabpanel] {
  padding: 0;
}
.resources [role=presentation].resources__tips_li {
  height: 86px;
}
.resources [role=tablist] [aria-selected] {
  color: #fff;
  background-color: #0e1d3a;
  border-radius: 8px 8px 0 0;
}
.resources [role=tablist] li {
  flex: 1;
  height: 86px;
  margin-right: 0;
  text-align: center;
  list-style-type: none;
  border: 1px solid #0e1d3a;
  border-radius: 8px 8px 0 0;
}
.resources [role=tablist] li:nth-child(1) {
  border-radius: 8px 8px 0 0;
}
.resources [role=tablist] a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  height: 100%;
  padding-right: 0;
  padding-left: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #0e1d3a;
  border: none;
}
@media screen and (min-width: 1024px) {
  .resources [role=tablist] a {
    min-width: 100%;
    font-size: 20px;
  }
}
.resources [aria-hidden=true] {
  display: block;
}
.resources__road_block {
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #0e1d3a;
}
@media screen and (min-width: 1024px) {
  .resources__road_block::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("/assets/images/road-advice/bg-street-videos.png");
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1500px) {
  .resources__road_block::before {
    right: calc((100% - 1440px) / 2);
    max-width: 1440px;
  }
}
@media screen and (min-width: 1024px) {
  .resources__road_block::before {
    padding-top: 100px;
    padding-bottom: 200px;
  }
}
@media screen and (min-width: 1024px) {
  .resources__road_block {
    padding-top: 100px;
    padding-bottom: 200px;
  }
}
.resources .resources__conteiner_road_advice {
  display: flex;
  flex-direction: column;
  gap: 70px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .resources .resources__conteiner_road_advice {
    flex-flow: row wrap;
    gap: 75px;
    width: 100%;
    max-width: 1040px;
  }
}
.resources__road_advice {
  display: flex;
  flex-direction: column;
  gap: 59px;
}
@media screen and (min-width: 1024px) {
  .resources__road_advice {
    flex-direction: row;
    align-items: center;
  }
  .resources__road_advice:nth-child(even) .resources__road_image {
    order: 2;
  }
  .resources__road_advice:nth-child(even) .resources__road_content {
    order: 1;
  }
}
.resources__road_image {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .resources__road_image {
    width: 100%;
    max-width: 405px;
  }
}
.resources__road_image_signs {
  height: 292.32px;
}
.resources__road_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.resources__road_heading {
  font-family: "DM Sans", sans-serif;
  font-size: 25px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fac016;
}
.resources__road_desc {
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .resources__road_desc--condition {
    width: 100%;
    max-width: 41ch;
  }
}
@media screen and (min-width: 1024px) {
  .resources__blog_info .section-blog__button {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.servers_failing__section {
  margin-top: 139px;
}
.servers_failing__content {
  position: relative;
}
.servers_failing__number {
  font-family: "DM Sans", sans-serif;
  font-size: 150px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: rgba(14, 29, 58, 0.41);
  text-align: center;
}
@media screen and (min-width: 415px) {
  .servers_failing__number {
    font-size: 200px;
  }
}
@media screen and (min-width: 1020px) {
  .servers_failing__number {
    font-size: 350px;
  }
}
.servers_failing__img-fuel {
  position: absolute;
  top: 14%;
  left: 38%;
  flex-shrink: 0;
  width: 120px;
  height: 125px;
}
@media screen and (min-width: 415px) {
  .servers_failing__img-fuel {
    top: 11%;
    left: 35%;
    flex-shrink: 0;
    width: 182px;
    height: 180px;
  }
}
@media screen and (min-width: 480px) {
  .servers_failing__img-fuel {
    left: 38%;
  }
}
@media screen and (min-width: 540px) {
  .servers_failing__img-fuel {
    left: 39%;
  }
}
@media screen and (min-width: 600px) {
  .servers_failing__img-fuel {
    left: 43%;
  }
}
@media screen and (min-width: 1020px) {
  .servers_failing__img-fuel {
    top: 3%;
    left: calc((100% - 200px) / 2);
    flex-shrink: 0;
    width: 274px;
    height: 271px;
  }
}
.servers_failing__img-gas {
  position: absolute;
  top: 74%;
  left: 2%;
  flex-shrink: 0;
  width: 296px;
  height: 87px;
}
@media screen and (min-width: 415px) {
  .servers_failing__img-gas {
    top: 75%;
    left: 10%;
    flex-shrink: 0;
    width: 306px;
    height: 97px;
  }
}
@media screen and (min-width: 480px) {
  .servers_failing__img-gas {
    left: 15%;
  }
}
@media screen and (min-width: 540px) {
  .servers_failing__img-gas {
    left: 19%;
  }
}
@media screen and (min-width: 600px) {
  .servers_failing__img-gas {
    left: 28%;
  }
}
@media screen and (min-width: 1020px) {
  .servers_failing__img-gas {
    top: 66%;
    left: calc((100% - 582px) / 2);
    flex-shrink: 0;
    width: 582px;
    height: 185px;
  }
}
.servers_failing__heading {
  margin-top: 30px;
  padding-top: 72px;
  font-family: "DM Sans", sans-serif;
  font-size: 50px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 1020px) {
  .servers_failing__heading {
    padding-top: 25px;
  }
}
.servers_failing__description {
  margin-top: 44px;
  margin-bottom: 134px;
  font-family: "DM Sans", sans-serif;
  font-size: 25px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 1020px) {
  .servers_failing__description {
    margin-top: 13px;
  }
}

.terms__header {
  position: relative;
  text-align: center;
}
.terms__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .terms__image {
    content: url("/assets/images/terms-and-conditions/conditions-image-desktop.png");
  }
}
.terms__header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.terms__subheading {
  font-family: "DM Sans", sans-serif;
  font-size: 30px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .terms__subheading {
    font-size: 35px;
  }
}
.terms__heading {
  width: 430px;
  font-family: "DM Sans", sans-serif;
  font-size: 55px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .terms__heading {
    width: 712px;
    font-size: 65px;
  }
}
.terms__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  align-self: stretch;
  margin-bottom: 595px;
  padding-top: 90px;
}
@media screen and (min-width: 768px) {
  .terms__content {
    align-items: center;
    justify-content: center;
    margin-bottom: 90px;
  }
}
.terms__content-heading {
  font-family: "DM Sans", sans-serif;
  font-size: 25px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #000;
}
@media screen and (min-width: 420px) {
  .terms__content-heading {
    width: 380px;
  }
}
@media screen and (min-width: 450px) {
  .terms__content-heading {
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .terms__content-heading {
    width: 909px;
  }
}
.terms__content-text {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #000;
}
@media screen and (min-width: 420px) {
  .terms__content-text {
    width: 380px;
  }
}
@media screen and (min-width: 450px) {
  .terms__content-text {
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .terms__content-text {
    width: 909px;
  }
}
.terms .wrapper {
  --wrapper-margin: 25px;
  --wrapper-max-width: calc((100% - (var(--wrapper-margin) * 2)));
}
@media screen and (min-width: 768px) {
  .terms .wrapper {
    --wrapper-margin: 32px;
  }
}
@media screen and (min-width: 1300px) {
  .terms .wrapper {
    --wrapper-max-width: 1240px;
    --wrapper-margin: calc((100vw - var(--wrapper-max-width)) / 2);
  }
}

.policy__header {
  position: relative;
  text-align: center;
}
.policy__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .policy__image {
    content: url("/assets/images/policy-page/image-policy-desktop.png");
  }
}
.policy__header-content {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1024px) {
  .policy__header-content {
    top: 50%;
  }
}
.policy__subheading {
  margin-bottom: 7px;
  font-family: "DM Sans", sans-serif;
  font-size: 30px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .policy__subheading {
    margin-bottom: 0;
    font-size: 35px;
  }
}
.policy__heading {
  width: 430px;
  font-family: "DM Sans", sans-serif;
  font-size: 55px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .policy__heading {
    width: 712px;
    font-size: 65px;
  }
}
.policy__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  align-self: stretch;
  margin-bottom: 412px;
  padding-top: 90px;
  padding-bottom: 98px;
}
@media screen and (min-width: 768px) {
  .policy__content {
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
}
.policy__content-heading {
  font-family: "DM Sans", sans-serif;
  font-size: 25px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #000;
}
@media screen and (min-width: 420px) {
  .policy__content-heading {
    width: 380px;
  }
}
@media screen and (min-width: 450px) {
  .policy__content-heading {
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .policy__content-heading {
    width: 909px;
  }
}
.policy__content-text {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #000;
}
@media screen and (min-width: 420px) {
  .policy__content-text {
    width: 380px;
  }
}
@media screen and (min-width: 450px) {
  .policy__content-text {
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .policy__content-text {
    width: 909px;
  }
}
.policy .wrapper {
  --wrapper-margin: 25px;
  --wrapper-max-width: calc((100% - (var(--wrapper-margin) * 2)));
}
@media screen and (min-width: 768px) {
  .policy .wrapper {
    --wrapper-margin: 32px;
  }
}
@media screen and (min-width: 1300px) {
  .policy .wrapper {
    --wrapper-max-width: 1240px;
    --wrapper-margin: calc((100vw - var(--wrapper-max-width)) / 2);
  }
}

.student_resources__header {
  position: relative;
  text-align: center;
}
.student_resources__hero {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .student_resources__hero {
    height: 338px;
  }
}
@media screen and (min-width: 1500px) {
  .student_resources__hero {
    height: 100%;
  }
}
.student_resources__header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
.student_resources__heading {
  width: auto;
  margin-bottom: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 370px) {
  .student_resources__heading {
    width: 350px;
  }
}
@media screen and (min-width: 500px) {
  .student_resources__heading {
    width: 437px;
  }
}
@media screen and (min-width: 600px) {
  .student_resources__heading {
    width: 530px;
  }
}
@media screen and (min-width: 760px) {
  .student_resources__heading {
    width: 683px;
  }
}
@media screen and (min-width: 1024px) {
  .student_resources__heading {
    width: 854px;
    font-size: 50px;
  }
}
@media screen and (min-width: 1138px) {
  .student_resources__heading {
    width: 1073px;
    font-size: 50px;
  }
}
.student_resources__subheading {
  width: 299px;
  padding-top: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-top: 2px solid #fac016;
}
@media screen and (min-width: 370px) {
  .student_resources__subheading {
    width: 350px;
  }
}
@media screen and (min-width: 390px) {
  .student_resources__subheading {
    width: 356px;
  }
}
@media screen and (min-width: 425px) {
  .student_resources__subheading {
    width: 356px;
  }
}
@media screen and (min-width: 500px) {
  .student_resources__subheading {
    width: 437px;
  }
}
@media screen and (min-width: 600px) {
  .student_resources__subheading {
    width: 530px;
  }
}
@media screen and (min-width: 760px) {
  .student_resources__subheading {
    width: 683px;
  }
}
@media screen and (min-width: 1024px) {
  .student_resources__subheading {
    width: 854px;
    font-size: 22px;
  }
}
@media screen and (min-width: 1138px) {
  .student_resources__subheading {
    width: 1073px;
    font-size: 22px;
  }
}
.student_resources__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 63px;
  align-items: center;
  justify-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .student_resources__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 63px;
  }
}
@media screen and (min-width: 1024px) {
  .student_resources__content {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1138px) {
  .student_resources__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1250px) {
  .student_resources__content {
    width: 1106px;
    max-width: 1240px;
  }
}
.student_resources__pagination {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .student_resources__pagination {
    margin-bottom: 60px;
  }
}
.student_resources .wrapper {
  --wrapper-margin: 34.5px;
  --wrapper-max-width: calc((100% - (var(--wrapper-margin) * 2)));
}
@media screen and (min-width: 768px) {
  .student_resources .wrapper {
    --wrapper-margin: 32px;
  }
}
@media screen and (min-width: 1300px) {
  .student_resources .wrapper {
    --wrapper-max-width: 1240px;
    --wrapper-margin: calc((100vw - var(--wrapper-max-width)) / 2);
  }
}

.re-education__hero {
  position: relative;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}
.re-education__hero__image {
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.re-education__hero__image img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 390px) {
  .re-education__hero__image {
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media screen and (min-width: 500px) {
  .re-education__hero__image {
    height: 100%;
  }
}
.re-education__hero__heading {
  margin-bottom: 16px;
  padding-top: 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .re-education__hero__heading {
    padding-top: 92px;
  }
}
.re-education__hero__heading-span {
  font-family: "DM Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fac016;
}
.re-education__hero__text {
  width: 100%;
  max-width: 32ch;
  padding-bottom: 71.5px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 32px;
  color: #fff;
}
@media screen and (min-width: 700px) {
  .re-education__hero__text {
    max-width: 43ch;
  }
}
@media screen and (min-width: 1024px) {
  .re-education__hero__text {
    max-width: 63ch;
  }
}
@media screen and (min-width: 1024px) {
  .re-education__hero {
    height: 314px;
  }
}
.re-education__safety {
  padding-top: 39px;
}
@media screen and (min-width: 1024px) {
  .re-education__safety {
    padding-top: 50px;
  }
}
.re-education .pagination__control {
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .re-education .pagination__control {
    flex-direction: row;
    padding: 8px 15px;
  }
}
.re-education .pagination__control__text {
  max-width: -moz-fit-content;
  max-width: fit-content;
}

/* {outputFileName:style} */