.qs-datepicker-container {
  font-size: 1rem;
  font-family: sans-serif;
  color: #000;
  position: absolute;
  width: 15.625em;
  display: flex;
  flex-direction: column;
  z-index: 9001;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid grey;
  border-radius: 0.263921875em;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1.25em 1.25em -0.9375em rgba(0, 0, 0, 0.3);
}

.qs-datepicker-container * {
  box-sizing: border-box;
}

.qs-centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.qs-hidden {
  display: none;
}

.qs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 0.5em;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
}

.qs-overlay.qs-hidden {
  opacity: 0;
  z-index: -1;
}

.qs-overlay .qs-overlay-year {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  font-size: 0.875em;
  padding: 0.25em 0;
  width: 80%;
  text-align: center;
  margin: 0 auto;
  display: block;
}

.qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.qs-overlay .qs-close {
  padding: 0.5em;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

.qs-overlay .qs-submit {
  border: 1px solid #fff;
  border-radius: 0.263921875em;
  padding: 0.5em;
  margin: 0 auto auto;
  cursor: pointer;
  background: hsla(0, 0%, 50.2%, 0.4);
}

.qs-overlay .qs-submit.qs-disabled {
  color: grey;
  border-color: grey;
  cursor: not-allowed;
}

.qs-overlay .qs-overlay-month-container {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
}

.qs-overlay .qs-overlay-month {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33.33333%;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.15s;
}

.qs-overlay .qs-overlay-month.active,
.qs-overlay .qs-overlay-month:hover {
  opacity: 1;
}

.qs-controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 0;
  background: #d3d3d3;
  filter: blur(0);
  transition: filter 0.3s;
}

.qs-controls.qs-blur {
  filter: blur(5px);
}

.qs-arrow {
  height: 1.5625em;
  width: 1.5625em;
  position: relative;
  cursor: pointer;
  border-radius: 0.263921875em;
  transition: background 0.15s;
}

.qs-arrow:hover {
  background: rgba(0, 0, 0, 0.1);
}

.qs-arrow:hover.qs-left:after {
  border-right-color: #000;
}

.qs-arrow:hover.qs-right:after {
  border-left-color: #000;
}

.qs-arrow:after {
  content: "";
  border: 0.390625em solid transparent;
  position: absolute;
  top: 50%;
  transition: border 0.2s;
}

.qs-arrow.qs-left:after {
  border-right-color: grey;
  right: 50%;
  transform: translate(25%, -50%);
}

.qs-arrow.qs-right:after {
  border-left-color: grey;
  left: 50%;
  transform: translate(-25%, -50%);
}

.qs-month-year {
  font-weight: 700;
  transition: border 0.2s;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}

.qs-month-year:hover {
  border-bottom: 1px solid grey;
}

.qs-month-year:active:focus,
.qs-month-year:focus {
  outline: none;
}

.qs-month {
  padding-right: 0.5ex;
}

.qs-year {
  padding-left: 0.5ex;
}

.qs-squares {
  display: flex;
  flex-wrap: wrap;
  padding: 0.3125em;
  filter: blur(0);
  transition: filter 0.3s;
}

.qs-squares.qs-blur {
  filter: blur(5px);
}

.qs-square {
  width: 14.28571%;
  height: 1.5625em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.1s;
  border-radius: 0.263921875em;
}

.qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
  background: orange;
}

.qs-current {
  font-weight: 700;
  text-decoration: underline;
}

.qs-active,
.qs-range-end,
.qs-range-start {
  background: #add8e6;
}

.qs-range-start:not(.qs-range-6) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qs-range-middle {
  background: #d4ebf2;
}

.qs-range-middle:not(.qs-range-0):not(.qs-range-6) {
  border-radius: 0;
}

.qs-range-middle.qs-range-0 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qs-range-end:not(.qs-range-0),
.qs-range-middle.qs-range-6 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.qs-disabled,
.qs-outside-current-month {
  opacity: 0.2;
}

.qs-disabled {
  cursor: not-allowed;
}

.qs-day,
.qs-empty {
  cursor: default;
}

.qs-day {
  font-weight: 700;
  color: grey;
}

.qs-event {
  position: relative;
}

.qs-event:after {
  content: "";
  position: absolute;
  width: 0.46875em;
  height: 0.46875em;
  border-radius: 50%;
  background: #07f;
  bottom: 0;
  right: 0;
}

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: none;
  overflow: hidden;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translateZ(0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  opacity: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
.glightbox-container .ginner-container.desc-top {
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
.glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe,
.gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
}

.gslide-image {
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-bottom .gslide-image img,
.desc-top .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img,
.desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  margin: auto;
}

.gslide-video:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing:before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  box-shadow: none !important;
}

.desc-bottom .gslide-media,
.desc-top .gslide-media {
  margin: 0 auto;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  flex: 1 0 100%;
}

.gslide-description.description-left,
.gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom,
.gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

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

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none !important;
}

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  background: transparent;
  position: absolute;
  bottom: 15px;
  max-width: 100vw !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.75));
  transition: opacity 0.3s linear;
  padding: 19px 11px 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: 700;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc string {
  color: #fff;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s linear infinite;
  animation: lightboxLoader 0.8s linear infinite;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  will-change: opacity;
}

.glightbox-mobile .goverlay,
.goverlay {
  background: #000;
}

.gclose,
.gnext,
.gprev {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gclose svg,
.gnext svg,
.gprev svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gclose.disabled,
.gnext.disabled,
.gprev.disabled {
  opacity: 0.1;
}

.gclose .garrow,
.gnext .garrow,
.gprev .garrow {
  stroke: #fff;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gclose,
.glightbox-closing .gnext,
.glightbox-closing .gprev {
  opacity: 0 !important;
}

.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: 400;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gclose path,
.glightbox-clean .gnext path,
.glightbox-clean .gprev path {
  fill: #fff;
}

.glightbox-clean button:focus:not(.focused):not(.disabled) {
  outline: none;
}

.glightbox-clean .gprev {
  left: 30px;
}

.glightbox-clean .gnext,
.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  right: 30px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}

.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

@-webkit-keyframes lightboxLoader {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1turn);
  }
}

@keyframes lightboxLoader {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1turn);
  }
}

@-webkit-keyframes gfadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes gfadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes gfadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes gfadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes gslideInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }

  to {
    visibility: visible;
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes gslideInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }

  to {
    visibility: visible;
    transform: translateZ(0);
    opacity: 1;
  }
}

@-webkit-keyframes gslideOutLeft {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateZ(0);
  }

  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes gslideOutLeft {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateZ(0);
  }

  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@-webkit-keyframes gslideInRight {
  0% {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }

  to {
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes gslideInRight {
  0% {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }

  to {
    transform: translateZ(0);
    opacity: 1;
  }
}

@-webkit-keyframes gslideOutRight {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateZ(0);
  }

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

@keyframes gslideOutRight {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateZ(0);
  }

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

@-webkit-keyframes gzoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 1;
  }
}

@keyframes gzoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes gzoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes gzoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

/*24-01-2022 Start*/
.visible_on_more,
.con_read_less {
  display: none;
}

.con_read_more,
.con_read_less {
  color: #ccc;
  text-decoration: underline;
}

.con_read_more:hover,
.con_read_less:hover {
  color: #ccc;
}

.con_read_less {
  background: #18ace0;
  padding: 10px 30px;
  margin-top: 10px;
  color: #fff;
  text-decoration: none;
  border-radius: 0.25rem;
}

.con_read_more {
  background: #18ace0;
  padding: 10px 30px;
  margin-top: 10px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border-radius: 0.25rem;
}

.category-header-inner h4 {
  color: #fff;
}

/*24-01-2022 End*/
@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    flex-direction: row;
  }

  .glightbox-container .ginner-container.desc-top .gslide-description {
    order: 0;
  }

  .glightbox-container .ginner-container.desc-top .gslide-image,
  .glightbox-container .ginner-container.desc-top .gslide-image img {
    order: 1;
  }

  .glightbox-container .ginner-container.desc-left .gslide-description {
    order: 0;
  }

  .glightbox-container .ginner-container.desc-left .gslide-image {
    order: 1;
  }

  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }

  .gslide-image img.zoomable {
    cursor: zoom-in;
  }

  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }

  .gslide-inline {
    max-height: 95vh;
  }

  .gslide-external {
    max-height: 100vh;
  }

  .gslide-description.description-left,
  .gslide-description.description-right {
    max-width: 275px;
  }

  .glightbox-open {
    height: auto;
  }

  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }

  .glightbox-clean .gslide-media {
    box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
  }

  .glightbox-clean .description-left .gdesc-inner,
  .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }

  .glightbox-clean .gclose,
  .glightbox-clean .gnext,
  .glightbox-clean .gprev {
    background-color: rgba(0, 0, 0, 0.32);
  }

  .glightbox-clean .gclose:hover,
  .glightbox-clean .gnext:hover,
  .glightbox-clean .gprev:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }

  .glightbox-clean .gnext,
  .glightbox-clean .gprev {
    top: 45%;
  }
}

@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}

@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}

/*! nouislider - 14.6.3 - 11/19/2020 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

.noUi-connect {
  height: 100%;
  width: 100%;
}

.noUi-origin {
  height: 10%;
  width: 10%;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

.noUi-vertical .noUi-origin {
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  top: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

.noUi-target {
  background: #fafafa;
  border-radius: 4px;
  border: 1px solid #d3d3d3;
  box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #3fb8af;
}

.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  cursor: default;
  box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb;
}

.noUi-active {
  box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
}

.noUi-handle:after,
.noUi-handle:before {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #e8e7e6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

[disabled] .noUi-connect {
  background: #b8b8b8;
}

[disabled].noUi-handle,
[disabled] .noUi-handle,
[disabled].noUi-target {
  cursor: not-allowed;
}

.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

.noUi-marker {
  position: absolute;
  background: #ccc;
}

.noUi-marker-large,
.noUi-marker-sub {
  background: #aaa;
}

.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  transform: translateY(-50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  transform: translateY(50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  transform: translate(-50%);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  transform: translateY(-50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  transform: translate(50%);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  transform: translateY(-18px);
  top: auto;
  right: 28px;
}

@-webkit-keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__container {
  position: relative;
  box-sizing: border-box;
}

.splide__list {
  margin: 0 !important;
  padding: 0 !important;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}

.splide.is-active .splide__list {
  display: flex;
}

.splide__pagination {
  display: inline-flex;
  align-items: center;
  width: 95%;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}

.splide__pagination li {
  list-style-type: none;
  display: inline-block;
  line-height: 1;
  margin: 0;
}

.splide {
  visibility: hidden;
}

.splide,
.splide__slide {
  position: relative;
  outline: none;
}

.splide__slide {
  box-sizing: border-box;
  list-style-type: none !important;
  margin: 0;
  flex-shrink: 0;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__slider {
  position: relative;
}

.splide__spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #999;
  border-left-color: transparent;
  -webkit-animation: splide-loading 1s linear infinite;
  animation: splide-loading 1s linear infinite;
}

.splide__track {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.splide--draggable > .splide__track > .splide__list > .splide__slide {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide--fade > .splide__track > .splide__list {
  display: block;
}

.splide--fade > .splide__track > .splide__list > .splide__slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
}

.splide--fade > .splide__track > .splide__list > .splide__slide.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide--ttb > .splide__track > .splide__list {
  display: block;
}

.splide--ttb > .splide__pagination {
  width: auto;
}

.splide__arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 2em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  opacity: 0.7;
  background: #ccc;
}

.splide__arrow svg {
  width: 1.2em;
  height: 1.2em;
}

.splide__arrow:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__arrow:focus {
  outline: none;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide__pagination {
  position: absolute;
  z-index: 1;
  bottom: 0.5em;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}

.splide__pagination__page {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  margin: 3px;
  padding: 0;
  transition: transform 0.2s linear;
  border: none;
  opacity: 0.7;
}

.splide__pagination__page.is-active {
  transform: scale(1.4);
  background: #fff;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus {
  outline: none;
}

.splide__progress__bar {
  width: 0;
  height: 3px;
  background: #ccc;
}

.splide--nav > .splide__track > .splide__list > .splide__slide {
  border: 3px solid transparent;
}

.splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
  border-color: #000;
}

.splide--nav > .splide__track > .splide__list > .splide__slide:focus {
  outline: none;
}

.splide--rtl > .splide__arrows .splide__arrow--prev,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev {
  right: 1em;
  left: auto;
}

.splide--rtl > .splide__arrows .splide__arrow--prev svg,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide--rtl > .splide__arrows .splide__arrow--next,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide--rtl > .splide__arrows .splide__arrow--next svg,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide--ttb > .splide__arrows .splide__arrow,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide--ttb > .splide__arrows .splide__arrow--prev,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev {
  top: 1em;
}

.splide--ttb > .splide__arrows .splide__arrow--prev svg,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide--ttb > .splide__arrows .splide__arrow--next,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--next {
  top: auto;
  bottom: 1em;
}

.splide--ttb > .splide__arrows .splide__arrow--next svg,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide--ttb > .splide__pagination {
  display: flex;
  flex-direction: column;
  bottom: 50%;
  left: auto;
  right: 0.5em;
  transform: translateY(50%);
}

:root {
  --bs-blue: #3abfee;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #01ad27;
  --bs-teal: #20c997;
  --bs-cyan: #18ace0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #3abfee;
  --bs-secondary: #6a2483;
  --bs-success: #01ad27;
  --bs-info: #18ace0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f9f9fa;
  --bs-dark: #252525;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(
    180deg,
    hsla(0, 0%, 100%, 0.15),
    hsla(0, 0%, 100%, 0)
  );
}

:root {
  font-size: 16px;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #c4c4c4;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[data-bs-original-title],
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

.small,
small {
  font-size: 0.875em;
}

.mark,
mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #3abfee;
  text-decoration: underline;
}

a:hover {
  color: #18ace0;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #252525;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border: 0 solid;
  border-color: inherit;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

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

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.05rem + 0.6vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}

legend + * {
  clear: left;
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

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

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

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

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

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: calc(1.025rem + 0.3vw);
  font-weight: 300;
}

@media (min-width: 1200px) {
  .lead {
    font-size: 1.25rem;
  }
}

.display-1 {
  font-size: calc(1.4rem + 4.8vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.35rem + 4.2vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.3rem + 3.6vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.25rem + 3vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.2rem + 2.4vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.15rem + 1.8vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-inline,
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: calc(1.025rem + 0.3vw);
}

@media (min-width: 1200px) {
  .blockquote {
    font-size: 1.25rem;
  }
}

.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}

.blockquote-footer:before {
  content: "— ";
}

.img-fluid,
.img-thumbnail {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #e1e1e7;
  border-radius: 0.25rem;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.table {
  --bs-table-bg: transparent;
  --bs-table-striped-color: #c4c4c4;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #c4c4c4;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #c4c4c4;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #c4c4c4;
  vertical-align: top;
  border-color: #e1e1e7;
}

.table > :not(caption) > * > * {
  padding: 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table > tbody {
  vertical-align: inherit;
}

.table > thead {
  vertical-align: bottom;
}

.table > :not(:last-child) > :last-child > * {
  border-bottom-color: currentColor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}

.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-bg: #d8f2fc;
  --bs-table-striped-bg: #cde6ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #c2dae3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c8e0e9;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #c2dae3;
}

.table-secondary {
  --bs-table-bg: #e1d3e6;
  --bs-table-striped-bg: #d6c8db;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbbecf;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d0c3d5;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #cbbecf;
}

.table-success {
  --bs-table-bg: #ccefd4;
  --bs-table-striped-bg: #c2e3c9;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #b8d7bf;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bdddc4;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #b8d7bf;
}

.table-info {
  --bs-table-bg: #d1eef9;
  --bs-table-striped-bg: #c7e2ed;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd6e0;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1dce6;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bcd6e0;
}

.table-warning {
  --bs-table-bg: #fff3cd;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6dbb9;
}

.table-danger {
  --bs-table-bg: #f8d7da;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfc2c4;
}

.table-light {
  --bs-table-bg: #f9f9fa;
  --bs-table-striped-bg: #ededee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e0e0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e6e6e7;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e0e0e1;
}

.table-dark {
  --bs-table-bg: #252525;
  --bs-table-striped-bg: #303030;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #3b3b3b;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #353535;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #3b3b3b;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.form-label {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.col-form-label {
  padding-top: calc(0.75rem + 1px);
  padding-bottom: calc(0.75rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.2;
}

.col-form-label-lg {
  padding-top: calc(1rem + 1px);
  padding-bottom: calc(1rem + 1px);
  font-size: calc(1.0375rem + 0.45vw);
}

@media (min-width: 1200px) {
  .col-form-label-lg {
    font-size: 1.375rem;
  }
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-family: Archivo;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #252525;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #e1e1e7;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control[type="file"] {
  overflow: hidden;
}

.form-control[type="file"]:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control:focus {
  color: #252525;
  background-color: #fff;
  border-color: #9ddff7;
  outline: 0;
  box-shadow: none;
}

.form-control::-webkit-date-and-time-value {
  height: 1.2em;
}

.form-control::-moz-placeholder {
  color: #a8b7bc;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #a8b7bc;
  opacity: 1;
}

.form-control::placeholder {
  color: #a8b7bc;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #f3f3f7;
  opacity: 1;
}

.form-control::file-selector-button {
  padding: 0.75rem 1.5rem;
  margin: -0.75rem -1.5rem;
  -webkit-margin-end: 1.5rem;
  margin-inline-end: 1.5rem;
  color: #252525;
  background-color: #f3f3f7;
  pointer-events: none;
  border: 0 solid;
  border-color: inherit;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #18ace0;
}

.form-control::-webkit-file-upload-button {
  padding: 0.75rem 1.5rem;
  margin: -0.75rem -1.5rem;
  -webkit-margin-end: 1.5rem;
  margin-inline-end: 1.5rem;
  color: #252525;
  background-color: #f3f3f7;
  pointer-events: none;
  border: 0 solid;
  border-color: inherit;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out,
    background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #18ace0;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.75rem 0;
  margin-bottom: 0;
  line-height: 1.2;
  color: #c4c4c4;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.2em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.2em + 2rem + 2px);
  padding: 1rem 2.5rem;
  font-size: calc(1.0375rem + 0.45vw);
  border-radius: 0.25rem;
}

@media (min-width: 1200px) {
  .form-control-lg {
    font-size: 1.375rem;
  }
}

.form-control-lg::file-selector-button {
  padding: 1rem 2.5rem;
  margin: -1rem -2.5rem;
  -webkit-margin-end: 2.5rem;
  margin-inline-end: 2.5rem;
}

.form-control-lg::-webkit-file-upload-button {
  padding: 1rem 2.5rem;
  margin: -1rem -2.5rem;
  -webkit-margin-end: 2.5rem;
  margin-inline-end: 2.5rem;
}

textarea.form-control {
  min-height: calc(1.2em + 1.5rem + 2px);
}

textarea.form-control-sm {
  min-height: calc(1.2em + 0.5rem + 2px);
}

textarea.form-control-lg {
  min-height: calc(1.2em + 2rem + 2px);
}

.form-control-color {
  max-width: 3rem;
  height: auto;
  padding: 0.75rem;
}

.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control-color::-moz-color-swatch {
  height: 1.2em;
  border-radius: 0.25rem;
}

.form-control-color::-webkit-color-swatch {
  height: 1.2em;
  border-radius: 0.25rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.75rem 2.25rem 0.75rem 1.5rem;
  font-family: Archivo;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  color: #252525;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.5 1.5l4.5 4 4.5-4' stroke='%233ABFEE' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 10px 7px;
  border: 1px solid #e1e1e7;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-select:focus {
  border-color: #e1e1e7;
  outline: 0;
  box-shadow: 0 0 0 1px #18ace0;
}

.form-select[multiple],
.form-select[size]:not([size="1"]) {
  padding-right: 1.5rem;
  background-image: none;
}

.form-select:disabled {
  color: #6c757d;
  background-color: #f3f3f7;
}

.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #252525;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.form-select-lg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2.5rem;
  font-size: calc(1.0375rem + 0.45vw);
}

@media (min-width: 1200px) {
  .form-select-lg {
    font-size: 1.375rem;
  }
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  border: 1px solid #a8b7bc;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

.form-check-input[type="checkbox"] {
  border-radius: 2px;
}

.form-check-input[type="radio"] {
  border-radius: 50%;
}

.form-check-input.nice-select.open,
.form-check-input:active {
  filter: brightness(90%);
}

.form-check-input:focus {
  border-color: #9ddff7;
  outline: 0;
  box-shadow: 0 0 0 1px #18ace0;
}

.form-check-input:checked {
  background-color: #fff;
  border-color: #fff;
}

.form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='10' height='10' rx='2' transform='matrix(-1 0 0 1 10 0)' fill='%233ABFEE'/%3E%3Cpath d='M8 3.845l-3.846 3.77L2 5.52l.877-.845 1.277 1.237L7.124 3 8 3.845z' fill='%23fff'/%3E%3C/svg%3E");
}

.form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='2' fill='%23fff'/%3E%3C/svg%3E");
}

.form-check-input[type="checkbox"]:indeterminate {
  background-color: #3abfee;
  border-color: #3abfee;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3E%3C/svg%3E");
}

.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}

.form-check-input:disabled ~ .form-check-label,
.form-check-input[disabled] ~ .form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}

.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='rgba(0, 0, 0, 0.25)'/%3E%3C/svg%3E");
  background-position: 0;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}

.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%239ddff7'/%3E%3C/svg%3E");
}

.form-switch .form-check-input:checked {
  background-position: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.btn-check:disabled + .btn,
.btn-check[disabled] + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: calc(1rem + 2px);
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-range:focus {
  outline: 0;
}

.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, none;
}

.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, none;
}

.form-range::-moz-focus-outer {
  border: 0;
}

.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #3abfee;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.form-range.nice-select.open::-webkit-slider-thumb,
.form-range::-webkit-slider-thumb:active {
  background-color: #c4ecfa;
}

.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #e1e1e7;
  border-color: transparent;
  border-radius: 1rem;
}

.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #3abfee;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

.form-range.nice-select.open::-moz-range-thumb,
.form-range::-moz-range-thumb:active {
  background-color: #c4ecfa;
}

.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #e1e1e7;
  border-color: transparent;
  border-radius: 1rem;
}

.form-range:disabled {
  pointer-events: none;
}

.form-range:disabled::-webkit-slider-thumb {
  background-color: #9295a5;
}

.form-range:disabled::-moz-range-thumb {
  background-color: #9295a5;
}

.form-floating {
  position: relative;
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  padding: 1rem 1.5rem;
}

.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 1.5rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}

.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}

.form-floating > .form-control:-ms-input-placeholder {
  color: transparent;
}

.form-floating > .form-control::placeholder {
  color: transparent;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:not(:-ms-input-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}

.input-group .btn {
  position: relative;
  z-index: 2;
}

.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #252525;
  text-align: center;
  white-space: nowrap;
  background-color: #f3f3f7;
  border: 1px solid #e1e1e7;
  border-radius: 0.25rem;
}

.input-group-lg > .btn,
.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text {
  padding: 1rem 2.5rem;
  font-size: calc(1.0375rem + 0.45vw);
  border-radius: 0.25rem;
}

@media (min-width: 1200px) {
  .input-group-lg > .btn,
  .input-group-lg > .form-control,
  .input-group-lg > .form-select,
  .input-group-lg > .input-group-text {
    font-size: 1.375rem;
  }
}

.input-group-sm > .btn,
.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3.75rem;
}

.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4),
.input-group.has-validation
  > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation)
  > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #01ad27;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #000;
  background-color: rgba(1, 173, 39, 0.9);
  border-radius: 0.25rem;
}

.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip,
.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip {
  display: block;
}

.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: #01ad27;
  padding-right: calc(1.2em + 1.5rem);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2301AD27' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right calc(0.3em + 0.375rem) center;
  background-size: calc(0.6em + 0.75rem) calc(0.6em + 0.75rem);
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
  border-color: #01ad27;
  box-shadow: 0 0 0 1px rgba(1, 173, 39, 0.25);
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.2em + 1.5rem);
  background-position: top calc(0.3em + 0.375rem) right calc(0.3em + 0.375rem);
}

.form-select.is-valid,
.was-validated .form-select:valid {
  border-color: #01ad27;
  padding-right: 6rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.5 1.5l4.5 4 4.5-4' stroke='%233ABFEE' stroke-width='1.5'/%3E%3C/svg%3E"),
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2301AD27' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
  background-position: right 1.5rem center, center right 2.25rem;
  background-size: 10px 7px, calc(0.6em + 0.75rem) calc(0.6em + 0.75rem);
}

.form-select.is-valid:focus,
.was-validated .form-select:valid:focus {
  border-color: #01ad27;
  box-shadow: 0 0 0 1px rgba(1, 173, 39, 0.25);
}

.form-check-input.is-valid,
.was-validated .form-check-input:valid {
  border-color: #01ad27;
}

.form-check-input.is-valid:checked,
.was-validated .form-check-input:valid:checked {
  background-color: #01ad27;
}

.form-check-input.is-valid:focus,
.was-validated .form-check-input:valid:focus {
  box-shadow: 0 0 0 1px rgba(1, 173, 39, 0.25);
}

.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
  color: #01ad27;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.input-group .form-control.is-valid,
.input-group .form-select.is-valid,
.was-validated .input-group .form-control:valid,
.was-validated .input-group .form-select:valid {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip,
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip {
  display: block;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: #dc3545;
  padding-right: calc(1.2em + 1.5rem);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right calc(0.3em + 0.375rem) center;
  background-size: calc(0.6em + 0.75rem) calc(0.6em + 0.75rem);
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 1px rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.2em + 1.5rem);
  background-position: top calc(0.3em + 0.375rem) right calc(0.3em + 0.375rem);
}

.form-select.is-invalid,
.was-validated .form-select:invalid {
  border-color: #dc3545;
  padding-right: 6rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.5 1.5l4.5 4 4.5-4' stroke='%233ABFEE' stroke-width='1.5'/%3E%3C/svg%3E"),
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
  background-position: right 1.5rem center, center right 2.25rem;
  background-size: 10px 7px, calc(0.6em + 0.75rem) calc(0.6em + 0.75rem);
}

.form-select.is-invalid:focus,
.was-validated .form-select:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 1px rgba(220, 53, 69, 0.25);
}

.form-check-input.is-invalid,
.was-validated .form-check-input:invalid {
  border-color: #dc3545;
}

.form-check-input.is-invalid:checked,
.was-validated .form-check-input:invalid:checked {
  background-color: #dc3545;
}

.form-check-input.is-invalid:focus,
.was-validated .form-check-input:invalid:focus {
  box-shadow: 0 0 0 1px rgba(220, 53, 69, 0.25);
}

.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.input-group .form-control.is-invalid,
.input-group .form-select.is-invalid,
.was-validated .input-group .form-control:invalid,
.was-validated .input-group .form-select:invalid {
  z-index: 3;
}

.btn {
  display: inline-block;
  font-family: Kanit;
  font-weight: 400;
  line-height: 1.2;
  color: #c4c4c4;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: #c4c4c4;
}

.btn-check:focus + .btn,
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 1px #18ace0;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary {
  color: #000;
  background-color: #3abfee;
  border-color: #3abfee;
}

.btn-check:focus + .btn-primary,
.btn-primary:focus,
.btn-primary:hover {
  color: #000;
  background-color: #58c9f1;
  border-color: #4ec5f0;
}

.btn-check:focus + .btn-primary,
.btn-primary:focus {
  box-shadow: 0 0 0 1px rgba(49, 162, 202, 0.5);
}

.btn-check.nice-select.open + .btn-primary,
.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary.nice-select.open,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle {
  color: #000;
  background-color: #61ccf1;
  border-color: #4ec5f0;
}

.btn-check.nice-select.open + .btn-primary:focus,
.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary.nice-select.open:focus,
.btn-primary:active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 1px rgba(49, 162, 202, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #000;
  background-color: #3abfee;
  border-color: #3abfee;
}

.btn-secondary {
  color: #fff;
  background-color: #6a2483;
  border-color: #6a2483;
}

.btn-check:focus + .btn-secondary,
.btn-secondary:focus,
.btn-secondary:hover {
  color: #fff;
  background-color: #5a1f6f;
  border-color: #551d69;
}

.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
  box-shadow: 0 0 0 1px rgba(128, 69, 150, 0.5);
}

.btn-check.nice-select.open + .btn-secondary,
.btn-check:active + .btn-secondary,
.btn-check:checked + .btn-secondary,
.btn-secondary.active,
.btn-secondary.nice-select.open,
.btn-secondary:active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #551d69;
  border-color: #501b62;
}

.btn-check.nice-select.open + .btn-secondary:focus,
.btn-check:active + .btn-secondary:focus,
.btn-check:checked + .btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary.nice-select.open:focus,
.btn-secondary:active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 1px rgba(128, 69, 150, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #6a2483;
  border-color: #6a2483;
}

.btn-success {
  color: #000;
  background-color: #01ad27;
  border-color: #01ad27;
}

.btn-check:focus + .btn-success,
.btn-success:focus,
.btn-success:hover {
  color: #000;
  background-color: #27b947;
  border-color: #1ab53d;
}

.btn-check:focus + .btn-success,
.btn-success:focus {
  box-shadow: 0 0 0 1px rgba(1, 147, 33, 0.5);
}

.btn-check.nice-select.open + .btn-success,
.btn-check:active + .btn-success,
.btn-check:checked + .btn-success,
.btn-success.active,
.btn-success.nice-select.open,
.btn-success:active,
.show > .btn-success.dropdown-toggle {
  color: #000;
  background-color: #34bd52;
  border-color: #1ab53d;
}

.btn-check.nice-select.open + .btn-success:focus,
.btn-check:active + .btn-success:focus,
.btn-check:checked + .btn-success:focus,
.btn-success.active:focus,
.btn-success.nice-select.open:focus,
.btn-success:active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 1px rgba(1, 147, 33, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #000;
  background-color: #01ad27;
  border-color: #01ad27;
}

.btn-info {
  color: #000;
  background-color: #18ace0;
  border-color: #18ace0;
}

.btn-check:focus + .btn-info,
.btn-info:focus,
.btn-info:hover {
  color: #000;
  background-color: #3bb8e5;
  border-color: #2fb4e3;
}

.btn-check:focus + .btn-info,
.btn-info:focus {
  box-shadow: 0 0 0 1px rgba(20, 146, 190, 0.5);
}

.btn-check.nice-select.open + .btn-info,
.btn-check:active + .btn-info,
.btn-check:checked + .btn-info,
.btn-info.active,
.btn-info.nice-select.open,
.btn-info:active,
.show > .btn-info.dropdown-toggle {
  color: #000;
  background-color: #46bde6;
  border-color: #2fb4e3;
}

.btn-check.nice-select.open + .btn-info:focus,
.btn-check:active + .btn-info:focus,
.btn-check:checked + .btn-info:focus,
.btn-info.active:focus,
.btn-info.nice-select.open:focus,
.btn-info:active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 1px rgba(20, 146, 190, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #000;
  background-color: #18ace0;
  border-color: #18ace0;
}

.btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-check:focus + .btn-warning,
.btn-warning:focus,
.btn-warning:hover {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
}

.btn-check:focus + .btn-warning,
.btn-warning:focus {
  box-shadow: 0 0 0 1px rgba(217, 164, 6, 0.5);
}

.btn-check.nice-select.open + .btn-warning,
.btn-check:active + .btn-warning,
.btn-check:checked + .btn-warning,
.btn-warning.active,
.btn-warning.nice-select.open,
.btn-warning:active,
.show > .btn-warning.dropdown-toggle {
  color: #000;
  background-color: #ffcd39;
  border-color: #ffc720;
}

.btn-check.nice-select.open + .btn-warning:focus,
.btn-check:active + .btn-warning:focus,
.btn-check:checked + .btn-warning:focus,
.btn-warning.active:focus,
.btn-warning.nice-select.open:focus,
.btn-warning:active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 1px rgba(217, 164, 6, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-check:focus + .btn-danger,
.btn-danger:focus,
.btn-danger:hover {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
}

.btn-check:focus + .btn-danger,
.btn-danger:focus {
  box-shadow: 0 0 0 1px rgba(225, 83, 97, 0.5);
}

.btn-check.nice-select.open + .btn-danger,
.btn-check:active + .btn-danger,
.btn-check:checked + .btn-danger,
.btn-danger.active,
.btn-danger.nice-select.open,
.btn-danger:active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #b02a37;
  border-color: #a52834;
}

.btn-check.nice-select.open + .btn-danger:focus,
.btn-check:active + .btn-danger:focus,
.btn-check:checked + .btn-danger:focus,
.btn-danger.active:focus,
.btn-danger.nice-select.open:focus,
.btn-danger:active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 1px rgba(225, 83, 97, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-light {
  color: #000;
  background-color: #f9f9fa;
  border-color: #f9f9fa;
}

.btn-check:focus + .btn-light,
.btn-light:focus,
.btn-light:hover {
  color: #000;
  background-color: #fafafb;
  border-color: #fafafb;
}

.btn-check:focus + .btn-light,
.btn-light:focus {
  box-shadow: 0 0 0 1px rgba(212, 212, 213, 0.5);
}

.btn-check.nice-select.open + .btn-light,
.btn-check:active + .btn-light,
.btn-check:checked + .btn-light,
.btn-light.active,
.btn-light.nice-select.open,
.btn-light:active,
.show > .btn-light.dropdown-toggle {
  color: #000;
  background-color: #fafafb;
  border-color: #fafafb;
}

.btn-check.nice-select.open + .btn-light:focus,
.btn-check:active + .btn-light:focus,
.btn-check:checked + .btn-light:focus,
.btn-light.active:focus,
.btn-light.nice-select.open:focus,
.btn-light:active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 1px rgba(212, 212, 213, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #000;
  background-color: #f9f9fa;
  border-color: #f9f9fa;
}

.btn-dark {
  color: #fff;
  background-color: #252525;
  border-color: #252525;
}

.btn-check:focus + .btn-dark,
.btn-dark:focus,
.btn-dark:hover {
  color: #fff;
  background-color: #1f1f1f;
  border-color: #1e1e1e;
}

.btn-check:focus + .btn-dark,
.btn-dark:focus {
  box-shadow: 0 0 0 1px rgba(70, 70, 70, 0.5);
}

.btn-check.nice-select.open + .btn-dark,
.btn-check:active + .btn-dark,
.btn-check:checked + .btn-dark,
.btn-dark.active,
.btn-dark.nice-select.open,
.btn-dark:active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1e1e1e;
  border-color: #1c1c1c;
}

.btn-check.nice-select.open + .btn-dark:focus,
.btn-check:active + .btn-dark:focus,
.btn-check:checked + .btn-dark:focus,
.btn-dark.active:focus,
.btn-dark.nice-select.open:focus,
.btn-dark:active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 1px rgba(70, 70, 70, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #252525;
  border-color: #252525;
}

.btn-outline-primary {
  color: #3abfee;
  border-color: #3abfee;
}

.btn-outline-primary:hover {
  color: #000;
  background-color: #3abfee;
  border-color: #3abfee;
}

.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus {
  box-shadow: 0 0 0 1px rgba(58, 191, 238, 0.5);
}

.btn-check.nice-select.open + .btn-outline-primary,
.btn-check:active + .btn-outline-primary,
.btn-check:checked + .btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary.nice-select.open,
.btn-outline-primary:active {
  color: #000;
  background-color: #3abfee;
  border-color: #3abfee;
}

.btn-check.nice-select.open + .btn-outline-primary:focus,
.btn-check:active + .btn-outline-primary:focus,
.btn-check:checked + .btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary.nice-select.open:focus,
.btn-outline-primary:active:focus {
  box-shadow: 0 0 0 1px rgba(58, 191, 238, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #3abfee;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #6a2483;
  border-color: #6a2483;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6a2483;
  border-color: #6a2483;
}

.btn-check:focus + .btn-outline-secondary,
.btn-outline-secondary:focus {
  box-shadow: 0 0 0 1px rgba(106, 36, 131, 0.5);
}

.btn-check.nice-select.open + .btn-outline-secondary,
.btn-check:active + .btn-outline-secondary,
.btn-check:checked + .btn-outline-secondary,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show,
.btn-outline-secondary.nice-select.open,
.btn-outline-secondary:active {
  color: #fff;
  background-color: #6a2483;
  border-color: #6a2483;
}

.btn-check.nice-select.open + .btn-outline-secondary:focus,
.btn-check:active + .btn-outline-secondary:focus,
.btn-check:checked + .btn-outline-secondary:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus,
.btn-outline-secondary.nice-select.open:focus,
.btn-outline-secondary:active:focus {
  box-shadow: 0 0 0 1px rgba(106, 36, 131, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6a2483;
  background-color: transparent;
}

.btn-outline-success {
  color: #01ad27;
  border-color: #01ad27;
}

.btn-outline-success:hover {
  color: #000;
  background-color: #01ad27;
  border-color: #01ad27;
}

.btn-check:focus + .btn-outline-success,
.btn-outline-success:focus {
  box-shadow: 0 0 0 1px rgba(1, 173, 39, 0.5);
}

.btn-check.nice-select.open + .btn-outline-success,
.btn-check:active + .btn-outline-success,
.btn-check:checked + .btn-outline-success,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show,
.btn-outline-success.nice-select.open,
.btn-outline-success:active {
  color: #000;
  background-color: #01ad27;
  border-color: #01ad27;
}

.btn-check.nice-select.open + .btn-outline-success:focus,
.btn-check:active + .btn-outline-success:focus,
.btn-check:checked + .btn-outline-success:focus,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus,
.btn-outline-success.nice-select.open:focus,
.btn-outline-success:active:focus {
  box-shadow: 0 0 0 1px rgba(1, 173, 39, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #01ad27;
  background-color: transparent;
}

.btn-outline-info {
  color: #18ace0;
  border-color: #18ace0;
}

.btn-outline-info:hover {
  color: #000;
  background-color: #18ace0;
  border-color: #18ace0;
}

.btn-check:focus + .btn-outline-info,
.btn-outline-info:focus {
  box-shadow: 0 0 0 1px rgba(24, 172, 224, 0.5);
}

.btn-check.nice-select.open + .btn-outline-info,
.btn-check:active + .btn-outline-info,
.btn-check:checked + .btn-outline-info,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show,
.btn-outline-info.nice-select.open,
.btn-outline-info:active {
  color: #000;
  background-color: #18ace0;
  border-color: #18ace0;
}

.btn-check.nice-select.open + .btn-outline-info:focus,
.btn-check:active + .btn-outline-info:focus,
.btn-check:checked + .btn-outline-info:focus,
.btn-outline-info.active:focus,
.btn-outline-info.dropdown-toggle.show:focus,
.btn-outline-info.nice-select.open:focus,
.btn-outline-info:active:focus {
  box-shadow: 0 0 0 1px rgba(24, 172, 224, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #18ace0;
  background-color: transparent;
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-check:focus + .btn-outline-warning,
.btn-outline-warning:focus {
  box-shadow: 0 0 0 1px rgba(255, 193, 7, 0.5);
}

.btn-check.nice-select.open + .btn-outline-warning,
.btn-check:active + .btn-outline-warning,
.btn-check:checked + .btn-outline-warning,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show,
.btn-outline-warning.nice-select.open,
.btn-outline-warning:active {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-check.nice-select.open + .btn-outline-warning:focus,
.btn-check:active + .btn-outline-warning:focus,
.btn-check:checked + .btn-outline-warning:focus,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus,
.btn-outline-warning.nice-select.open:focus,
.btn-outline-warning:active:focus {
  box-shadow: 0 0 0 1px rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-check:focus + .btn-outline-danger,
.btn-outline-danger:focus {
  box-shadow: 0 0 0 1px rgba(220, 53, 69, 0.5);
}

.btn-check.nice-select.open + .btn-outline-danger,
.btn-check:active + .btn-outline-danger,
.btn-check:checked + .btn-outline-danger,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show,
.btn-outline-danger.nice-select.open,
.btn-outline-danger:active {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-check.nice-select.open + .btn-outline-danger:focus,
.btn-check:active + .btn-outline-danger:focus,
.btn-check:checked + .btn-outline-danger:focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus,
.btn-outline-danger.nice-select.open:focus,
.btn-outline-danger:active:focus {
  box-shadow: 0 0 0 1px rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-light {
  color: #f9f9fa;
  border-color: #f9f9fa;
}

.btn-outline-light:hover {
  color: #000;
  background-color: #f9f9fa;
  border-color: #f9f9fa;
}

.btn-check:focus + .btn-outline-light,
.btn-outline-light:focus {
  box-shadow: 0 0 0 1px rgba(249, 249, 250, 0.5);
}

.btn-check.nice-select.open + .btn-outline-light,
.btn-check:active + .btn-outline-light,
.btn-check:checked + .btn-outline-light,
.btn-outline-light.active,
.btn-outline-light.dropdown-toggle.show,
.btn-outline-light.nice-select.open,
.btn-outline-light:active {
  color: #000;
  background-color: #f9f9fa;
  border-color: #f9f9fa;
}

.btn-check.nice-select.open + .btn-outline-light:focus,
.btn-check:active + .btn-outline-light:focus,
.btn-check:checked + .btn-outline-light:focus,
.btn-outline-light.active:focus,
.btn-outline-light.dropdown-toggle.show:focus,
.btn-outline-light.nice-select.open:focus,
.btn-outline-light:active:focus {
  box-shadow: 0 0 0 1px rgba(249, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f9f9fa;
  background-color: transparent;
}

.btn-outline-dark {
  color: #252525;
  border-color: #252525;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #252525;
  border-color: #252525;
}

.btn-check:focus + .btn-outline-dark,
.btn-outline-dark:focus {
  box-shadow: 0 0 0 1px rgba(37, 37, 37, 0.5);
}

.btn-check.nice-select.open + .btn-outline-dark,
.btn-check:active + .btn-outline-dark,
.btn-check:checked + .btn-outline-dark,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show,
.btn-outline-dark.nice-select.open,
.btn-outline-dark:active {
  color: #fff;
  background-color: #252525;
  border-color: #252525;
}

.btn-check.nice-select.open + .btn-outline-dark:focus,
.btn-check:active + .btn-outline-dark:focus,
.btn-check:checked + .btn-outline-dark:focus,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus,
.btn-outline-dark.nice-select.open:focus,
.btn-outline-dark:active:focus {
  box-shadow: 0 0 0 1px rgba(37, 37, 37, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #252525;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: #3abfee;
  text-decoration: underline;
}

.btn-link:hover {
  color: #18ace0;
}

.btn-link.disabled,
.btn-link:disabled {
  color: #6c757d;
}

.btn-group-lg > .btn,
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: calc(1.0375rem + 0.45vw);
  border-radius: 0.25rem;
}

@media (min-width: 1200px) {
  .btn-group-lg > .btn,
  .btn-lg {
    font-size: 1.375rem;
  }
}

.btn-group-sm > .btn,
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropdown,
.dropend,
.dropstart,
.dropup {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #c4c4c4;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu[data-bs-popper] {
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}

.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}

.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }

  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-end {
    --bs-position: end;
  }

  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }

  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-end {
    --bs-position: end;
  }

  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }

  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-end {
    --bs-position: end;
  }

  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }

  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-end {
    --bs-position: end;
  }

  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }

  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxl-end {
    --bs-position: end;
  }

  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropend .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
}

.dropend .dropdown-menu[data-bs-popper] {
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropend .dropdown-toggle:after {
  vertical-align: 0;
}

.dropstart .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
}

.dropstart .dropdown-menu[data-bs-popper] {
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropstart .dropdown-toggle:before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #252525;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #212121;
  background-color: #f3f3f7;
}

.dropdown-item.active,
.dropdown-item.nice-select.open,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #3abfee;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #9295a5;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #252525;
}

.dropdown-menu-dark {
  color: #e1e1e7;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}

.dropdown-menu-dark .dropdown-item {
  color: #e1e1e7;
}

.dropdown-menu-dark .dropdown-item:focus,
.dropdown-menu-dark .dropdown-item:hover {
  color: #fff;
  background-color: hsla(0, 0%, 100%, 0.15);
}

.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item.nice-select.open,
.dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #3abfee;
}

.dropdown-menu-dark .dropdown-item.disabled,
.dropdown-menu-dark .dropdown-item:disabled {
  color: #9295a5;
}

.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}

.dropdown-menu-dark .dropdown-item-text {
  color: #e1e1e7;
}

.dropdown-menu-dark .dropdown-header {
  color: #9295a5;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group-vertical > .btn,
.btn-group > .btn {
  position: relative;
  flex: 1 1 auto;
}

.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn.nice-select.open,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:hover,
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn.active,
.btn-group > .btn.nice-select.open,
.btn-group > .btn:active,
.btn-group > .btn:focus,
.btn-group > .btn:hover {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn-group:not(:first-child),
.btn-group > .btn:not(:first-child) {
  margin-left: -1px;
}

.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group > .btn:nth-child(n + 3),
.btn-group > :not(.btn-check) + .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.dropdown-toggle-split:after,
.dropend .dropdown-toggle-split:after,
.dropup .dropdown-toggle-split:after {
  margin-left: 0;
}

.dropstart .dropdown-toggle-split:before {
  margin-right: 0;
}

.btn-group-sm > .btn + .dropdown-toggle-split,
.btn-sm + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-group-lg > .btn + .dropdown-toggle-split,
.btn-lg + .dropdown-toggle-split {
  padding-right: 1.875rem;
  padding-left: 1.875rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn-group:not(:first-child),
.btn-group-vertical > .btn:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.btn-group-vertical > .btn ~ .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #e1e1e7;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: #f3f3f7 #f3f3f7 #e1e1e7;
  isolation: isolate;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: #e1e1e7 #e1e1e7 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #3abfee;
}

.nav-fill .nav-item,
.nav-fill > .nav-link {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item,
.nav-justified > .nav-link {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-lg,
.navbar > .container-md,
.navbar > .container-sm,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: 0.21875rem;
  padding-bottom: 0.21875rem;
  margin-right: 1rem;
  font-size: calc(1.0375rem + 0.45vw);
  text-decoration: none;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .navbar-brand {
    font-size: 1.375rem;
  }
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: calc(1.0375rem + 0.45vw);
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}

@media (min-width: 1200px) {
  .navbar-toggler {
    font-size: 1.375rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}

.navbar-toggler:hover {
  text-decoration: none;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 1px;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand,
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
  color: #3abfee;
}

.navbar-light .navbar-nav .nav-link {
  color: #004057;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #3abfee;
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
  color: #3abfee;
}

.navbar-light .navbar-toggler {
  color: #004057;
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23004057' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-light .navbar-text {
  color: #004057;
}

.navbar-dark .navbar-brand,
.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover,
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
  color: #3abfee;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #3abfee;
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: hsla(0, 0%, 100%, 0.25);
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #3abfee;
}

.navbar-dark .navbar-toggler {
  color: #fff;
  border-color: hsla(0, 0%, 100%, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-text {
  color: #fff;
}

.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
  color: #3abfee;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
}

.card-subtitle,
.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-bottom: -0.5rem;
  border-bottom: 0;
}

.card-header-pills,
.card-header-tabs {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom,
.card-img-top {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-group > .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }

  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }

  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }

  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:last-child) .card-header,
  .card-group > .card:not(:last-child) .card-img-top {
    border-top-right-radius: 0;
  }

  .card-group > .card:not(:last-child) .card-footer,
  .card-group > .card:not(:last-child) .card-img-bottom {
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .card-group > .card:not(:first-child) .card-header,
  .card-group > .card:not(:first-child) .card-img-top {
    border-top-left-radius: 0;
  }

  .card-group > .card:not(:first-child) .card-footer,
  .card-group > .card:not(:first-child) .card-img-bottom {
    border-bottom-left-radius: 0;
  }
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #c4c4c4;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}

.accordion-button:not(.collapsed) {
  color: #34acd6;
  background-color: #ebf9fd;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:not(.collapsed):after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5l4.5 4 4.5-4' stroke='%2334acd6' stroke-width='1.5'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}

.accordion-button:after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='11' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5l4.5 4 4.5-4' stroke='%238FB2BE' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button:after {
    transition: none;
  }
}

.accordion-button:hover {
  z-index: 2;
}

.accordion-button:focus {
  z-index: 3;
  border-color: #9ddff7;
  outline: 0;
  box-shadow: 0 0 0 1px #18ace0;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.accordion-item:last-of-type {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}

.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.accordion-flush .accordion-item:first-child {
  border-top: 0;
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}

.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
  list-style: none;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item:before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "/");
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  color: #3abfee;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #e1e1e7;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}

.page-link:hover {
  z-index: 2;
  border-color: #e1e1e7;
}

.page-link:focus,
.page-link:hover {
  color: #18ace0;
  background-color: #f3f3f7;
}

.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 1px #18ace0;
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #3abfee;
  border-color: #3abfee;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #e1e1e7;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: calc(1.0375rem + 0.45vw);
}

@media (min-width: 1200px) {
  .pagination-lg .page-link {
    font-size: 1.375rem;
  }
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.75em 1em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em;
  color: #000;
  background: transparent
    url("data:image/svg+xml;charset=utf-8,%3Csvg width='23' height='22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.803 7.111a1 1 0 00-1.414-1.414L11.5 9.586l-3.89-3.89a1 1 0 10-1.413 1.415l3.889 3.89-3.89 3.888a1 1 0 001.415 1.415l3.889-3.89 3.89 3.89a1 1 0 001.413-1.415L12.914 11l3.89-3.889z' fill='%233ABFEE'/%3E%3C/svg%3E")
    50%/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}

.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 1;
}

.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 1px #18ace0;
  opacity: 1;
}

.btn-close.disabled,
.btn-close:disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translateY(-50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #073b4e;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.8;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e1e1e7;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.modal-header .btn-close {
  padding: 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #e1e1e7;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.modal-fullscreen .modal-header {
  border-radius: 0;
}

.modal-fullscreen .modal-body {
  overflow-y: auto;
}

.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
}

.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}

.popover .popover-arrow:after,
.popover .popover-arrow:before {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow,
.bs-popover-top > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}

.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow:before,
.bs-popover-top > .popover-arrow:before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow:after,
.bs-popover-top > .popover-arrow:after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow,
.bs-popover-end > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}

.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow:before,
.bs-popover-end > .popover-arrow:before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow:after,
.bs-popover-end > .popover-arrow:after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow,
.bs-popover-bottom > .popover-arrow {
  top: calc(-0.5rem - 1px);
}

.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow:before,
.bs-popover-bottom > .popover-arrow:before {
  top: 0;
  border-width: 0 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow:after,
.bs-popover-bottom > .popover-arrow:after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.bs-popover-auto[data-popper-placement^="bottom"] .popover-header:before,
.bs-popover-bottom .popover-header:before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0;
}

.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow,
.bs-popover-start > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}

.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow:before,
.bs-popover-start > .popover-arrow:before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow:after,
.bs-popover-start > .popover-arrow:after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: #004057;
  background-color: #f0f0f0;
  border-bottom: 1px solid #d8d8d8;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem;
  color: #c4c4c4;
}

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

.link-primary {
  color: #3abfee;
}

.link-primary:focus,
.link-primary:hover {
  color: #61ccf1;
}

.link-secondary {
  color: #6a2483;
}

.link-secondary:focus,
.link-secondary:hover {
  color: #551d69;
}

.link-success {
  color: #01ad27;
}

.link-success:focus,
.link-success:hover {
  color: #34bd52;
}

.link-info {
  color: #18ace0;
}

.link-info:focus,
.link-info:hover {
  color: #46bde6;
}

.link-warning {
  color: #ffc107;
}

.link-warning:focus,
.link-warning:hover {
  color: #ffcd39;
}

.link-danger {
  color: #dc3545;
}

.link-danger:focus,
.link-danger:hover {
  color: #b02a37;
}

.link-light {
  color: #f9f9fa;
}

.link-light:focus,
.link-light:hover {
  color: #fafafb;
}

.link-dark {
  color: #252525;
}

.link-dark:focus,
.link-dark:hover {
  color: #1e1e1e;
}

.ratio {
  position: relative;
  width: 100%;
}

.ratio:before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.85714%;
}

.fixed-top {
  top: 0;
}

.fixed-bottom,
.fixed-top {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  bottom: 0;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 768px) {
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 992px) {
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 1200px) {
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

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

.body-s {
  font-size: 0.75rem;
  line-height: 1.8;
}

.body-m,
.body-s,
.search-tags__label {
  font-family: Archivo, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.body-m,
.search-tags__label {
  font-size: 0.875rem;
  line-height: 1.7;
}

.body-l,
.btn-filtr,
.job-offer p,
.job-offer ul li:before,
.section-plain-text p,
.section-plain-text span {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.75;
}

@media (max-width: 575.98px) {
  .body-l,
  .btn-filtr,
  .job-offer p,
  .job-offer ul li:before,
  .section-plain-text p,
  .section-plain-text span {
    font-size: 0.875rem;
  }
}

.body-xl {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.67;
}

.bg-half-1 {
  background: linear-gradient(180deg, #f9f9fa 50%, #f3f3f7 0);
}

.with-decor:before {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='6' fill='none'%3E%3Cpath d='M6.5 0h9l-6 12h-9l6-12z' fill='%23E1E1E7'/%3E%3C/svg%3E");
  width: 8.25rem;
  background-repeat: repeat-x;
  display: block;
  height: 0.75rem;
  position: relative;
  top: -0.35em;
}

.decor-center:before {
  margin-left: auto;
  margin-right: auto;
}

.decor-l-blue:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='6' fill='none'%3E%3Cpath d='M6.5 0h9l-6 12h-9l6-12z' fill='%236FD8FD'/%3E%3C/svg%3E");
}

.input-big {
  padding: 1.25rem 1.5rem;
  box-shadow: inset 0 2px 0 0 #e5e5f2;
}

@media (max-width: 991.98px) {
  .input-big {
    padding: 0.75rem 2rem;
    box-shadow: none;
  }
}

.shadow-minimal {
  box-shadow: 0 1px 0 #ececf3;
}

.shadow-middle {
  box-shadow: 0 22px 20px -13px rgba(0, 0, 0, 0.05);
}

.shadow-inner {
  box-shadow: inset 0 2px 0 #e5e5f2;
}

.no-scroll {
  overflow: hidden !important;
}

.badge {
  line-height: 1.2;
  font-family: Kanit, sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.badge.success {
  color: #01ad27;
  background-color: #e9ffee;
}

.badge.danger {
  color: #ee4723;
  background-color: #ffe4de;
}

.form-select--label {
  margin-bottom: 0.75rem;
}

.decor-line {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='6' fill='none'%3E%3Cpath d='M6.5 0h9l-6 12h-9l6-12z' fill='%23E1E1E7'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  display: block;
  height: 0.75rem;
  position: relative;
}

.decor-line--l-blue {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='6' fill='none'%3E%3Cpath d='M6.5 0h9l-6 12h-9l6-12z' fill='%23105973'/%3E%3C/svg%3E");
}

.qbutton {
  width: 100%;
  display: inline-block;
  font-family: Kanit;
  font-weight: 400;
  line-height: 1.2;
  color: #c4c4c4;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.wpcf7-form-control-wrap.cv {
  display: flex;
  justify-content: space-between;
}

.btn-primary:focus {
  color: #fff;
}

.btn-primary:hover {
  background-color: #18ace0;
}

.btn,
.btn:hover {
  color: #fff;
}

@media (max-width: 991.98px) {
  .btn-group-lg > .btn,
  .btn.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

.btn-video {
  display: inline-flex;
  align-items: center;
  color: #3abfee;
}

.btn-video:before {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath d='M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM8 14.5v-9l6 4.5-6 4.5z' fill='%233ABFEE'/%3E%3C/svg%3E");
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  transition: all 0.25s ease-in-out;
  margin-right: 0.625rem;
}

.btn-video:hover {
  color: #3abfee;
}

.btn-video:hover:before {
  transform: scale(1.1);
}

.navbar-dark .btn-video {
  color: #3abfee;
}

.navbar-dark .btn-video:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath d='M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM8 14.5v-9l6 4.5-6 4.5z' fill='%23FFF'/%3E%3C/svg%3E");
}

.navbar-dark .btn-video:hover {
  color: #fff;
}

.btn-video--full {
  color: #fff;
  border-radius: 100px;
  background-color: #3abfee;
  padding-left: 0.6875rem;
  padding-right: 1.5rem;
}

.btn-video--full:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath d='M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM8 14.5v-9l6 4.5-6 4.5z' fill='%23FFF'/%3E%3C/svg%3E");
  display: inline-block;
  width: 1.75em;
  height: 1.75em;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  transition: all 0.25s ease-in-out;
  margin-right: 1.125rem;
}

.btn-video--full:hover {
  color: #fff;
  background-color: #18ace0;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  color: #fff;
  border-radius: 100px;
  background-color: #3abfee;
  padding: 0.3125rem 1.5rem 0.3125rem 0.6875rem;
  min-height: 3.4375rem;
}

.btn-download:before {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='37' fill='none'%3E%3Crect y='.5' width='36' height='36' rx='18' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M25 20.5a1 1 0 01.993.883L26 21.5v2a3 3 0 01-2.824 2.995L23 26.5H13a3 3 0 01-2.995-2.824L10 23.5v-2a1 1 0 011.993-.117L12 21.5v2a1 1 0 00.883.993L13 24.5h10a1 1 0 00.993-.883L24 23.5v-2a1 1 0 011-1zm-7-10a1 1 0 011 1v7.585l1.293-1.292a1 1 0 011.32-.083l.094.083a1 1 0 01.083 1.32l-.083.094-3 3a1 1 0 01-1.32.083l-.094-.083-3-3a1 1 0 011.32-1.497l.094.083L17 19.085V11.5a1 1 0 011-1z' fill='%233ABFEE'/%3E%3C/svg%3E");
  display: inline-block;
  width: 2.4em;
  height: 2.4em;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  transition: all 0.25s ease-in-out;
  display: inline-flex;
  flex-grow: 1;
  flex-shrink: 0;
  margin-right: 1rem;
}

.btn-download:hover {
  color: #fff;
  background-color: #18ace0;
}

.btn-header,
.qbutton {
  border: 1px solid #3abfee;
  color: #004057;
}

.btn-header:hover,
.qbutton:hover {
  color: #3abfee;
}

.navbar-dark .btn-header:hover,
.navbar-dark .qbutton:hover {
  color: #3abfee;
}

.btn-transparent {
  color: #004057;
  background: transparent;
  border-color: #3abfee;
}

.btn-transparent:hover {
  color: #3abfee;
}

.btn-light {
  background-color: #fff;
  color: #004057;
  border-color: #fff;
}

.btn-light:hover {
  color: #3abfee;
}

.btn-filtr {
  position: relative;
  color: #004057;
  text-align: left;
  padding: 0.625rem 1.5rem;
  min-height: 4.25rem;
  background-color: #f3f3f7;
  margin-bottom: 3rem;
}

.btn-filtr:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' fill='none'%3E%3Cpath d='M.5 1.5l4.5 4 4.5-4' stroke='%233ABFEE' stroke-width='1.5'/%3E%3C/svg%3E");
  display: inline-block;
  width: 0.875rem;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 1.75rem;
  right: 0.625rem;
  margin-left: 1rem;
  transition: all 0.25s ease-in-out;
  transform: rotate(180deg);
}

.btn-filtr.collapsed:after {
  transform: rotate(0deg);
}

.btn-filtr:hover {
  color: #3abfee;
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
}

.dropdown-toggle:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' fill='none'%3E%3Cpath d='M.5 1.5l4.5 4 4.5-4' stroke='%233ABFEE' stroke-width='1.5'/%3E%3C/svg%3E");
  display: inline-block;
  width: 0.6em;
  height: 0.4em;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  top: -0.1em;
  margin-left: 1rem;
  transition: all 0.25s ease-in-out;
}

.accordion-button:after {
  width: 1rem;
  height: 0.6rem;
  background-size: contain;
}

.link-arrow {
  color: #3abfee;
  font-family: Archivo;
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}

.link-arrow,
.link-arrow:after {
  transition: all 0.25s ease-in-out;
}

.link-arrow:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='8' fill='none'%3E%3Cpath d='M28.854 4.354a.5.5 0 000-.708L25.672.464a.5.5 0 10-.707.708L27.793 4l-2.828 2.828a.5.5 0 10.707.708l3.182-3.182zM.5 4.5h28v-1H.5v1z' fill='%233ABFEE'/%3E%3C/svg%3E");
  display: inline-block;
  width: 1.8125rem;
  height: 0.5rem;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  left: 0;
  margin-left: 0.5rem;
}

.link-arrow:hover {
  color: #18ace0;
}

.link-arrow:hover:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='8' fill='none'%3E%3Cpath d='M28.854 4.354a.5.5 0 000-.708L25.672.464a.5.5 0 10-.707.708L27.793 4l-2.828 2.828a.5.5 0 10.707.708l3.182-3.182zM.5 4.5h28v-1H.5v1z' fill='%2318ACE0'/%3E%3C/svg%3E");
  left: 4px;
  transform: scale(1.05);
}

.common-header {
  max-width: 43.3125rem;
  margin-bottom: 3.1875rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
}

.common-header .h3,
.common-header h3 {
  font-size: 2rem;
}

.common-header p {
  font-size: 1rem;
}

.arrow {
  width: 2.875rem;
  height: 2.875rem;
  display: inline-flex;
  position: relative;
  border-radius: 100px;
  background-color: #fff;
  box-shadow: 0 1px 0 #ececf3;
  padding: 0;
  border: none;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in-out;
}

.arrow:hover {
  box-shadow: 0 22px 20px -13px rgba(0, 0, 0, 0.05);
}

.arrow:hover:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='15' fill='none'%3E%3Cpath d='M8 1L2.222 7.5 8 14' stroke='%2318ACE0' stroke-width='2.5'/%3E%3C/svg%3E");
}

.arrow:focus {
  outline: none;
}

.arrow svg {
  display: none;
}

.arrow--next:after,
.arrow--prev:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='15' fill='none'%3E%3Cpath d='M8 1L2.222 7.5 8 14' stroke='%233ABFEE' stroke-width='2.5'/%3E%3C/svg%3E");
  display: inline-block;
  width: 0.5625rem;
  height: 0.9375rem;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  transition: all 0.25s ease-in-out;
  display: flex;
}

.arrow--next:after {
  transform: rotate(180deg);
}

.form-check {
  padding-left: 0.5rem;
}

.form-check-input {
  margin-right: 0.25rem;
}

.form-check-input[type="checkbox"] {
  position: relative;
  z-index: 99;
}

.glightbox {
  overflow: hidden;
}

.glightbox img {
  transition: all 0.25s ease-in-out;
}

.glightbox:hover img {
  transform: scale(1.03);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  color: #9295a5;
}

body:not(.home) {
  padding-top: 5.75rem;
}

a {
  transition: all 0.25s ease-in-out;
  text-decoration: none;
}

.h1,
h1 {
  letter-spacing: 0.02em;
  word-break: break-word;
}

.h1.with-decor:not(.decor-normal):before,
h1.with-decor:not(.decor-normal):before {
  width: 14.0625rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='6' fill='none'%3E%3Cpath d='M6 0h9L9 12H0L6 0z' fill='%233ABFEE'/%3E%3C/svg%3E");
}

@media (max-width: 575.98px) {
  .h1,
  h1 {
    font-size: 2rem;
    line-height: 1.37;
  }
}

.h2,
.h3,
h2,
h3 {
  letter-spacing: 0.02em;
  word-break: break-word;
}

.h3,
h3 {
  line-height: 1.3;
}

@media (max-width: 575.98px) {
  .h3,
  h3 {
    font-size: 2.5rem;
    line-height: 1.3;
  }
}

.headline-m.h3,
h3.headline-m {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.37;
}

.h4,
h4 {
  line-height: 1.37;
  word-break: break-word;
}

@media (max-width: 575.98px) {
  .h4,
  h4 {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.h5,
h5 {
  line-height: 1.5;
  word-break: break-word;
}

@media (max-width: 575.98px) {
  .h5,
  h5 {
    font-size: 1.125rem;
  }
}

.h6,
.section-job-offers .side-tabs .tab-title,
h6 {
  font-weight: 400;
  line-height: 1.67;
  word-break: break-word;
}

label {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-family: Archivo, sans-serif;
}

.label-val {
  font-size: 0.75rem;
  color: #a8b7bc;
}

p {
  margin-bottom: 2rem;
}

@media (max-width: 575.98px) {
  p {
    font-size: 0.875rem;
  }
}

::-moz-selection {
  background: #3abfee;
  color: #fff;
}

::selection {
  background: #3abfee;
  color: #fff;
}

@media (max-width: 575.98px) {
  ::-webkit-input-placeholder {
    font-size: 0.875rem;
  }
}

@media (max-width: 575.98px) {
  ::-moz-placeholder {
    font-size: 0.875rem;
  }
}

@media (max-width: 575.98px) {
  :-ms-input-placeholder {
    font-size: 0.875rem;
  }
}

@media (max-width: 575.98px) {
  :-moz-placeholder {
    font-size: 0.875rem;
  }
}

.qs-datepicker-container {
  font-family: Kanit, sans-serif;
  box-shadow: 0 22px 20px -13px rgba(0, 0, 0, 0.05);
}

.qs-datepicker-container
  .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(
    .qs-active
  ):hover {
  background: #3abfee;
  color: #fff;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.navbar {
  background: #fff;
  padding: 0;
}

@media (max-width: 1399.98px) {
  .navbar .btn-header,
  .navbar .btn-video {
    padding: 0.625rem;
  }
}

@media (max-width: 1199.98px) {
  .navbar {
    padding: 1.3125rem 1.5rem;
    overflow: auto;
    height: 5.75rem;
    transition: all 0.25s ease-in-out;
  }

  .navbar,
  .navbar .nav-item {
    border-bottom: 1px solid #e1e1e7;
  }

  .navbar .fake-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .navbar .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: column;
    height: auto;
  }

  .navbar.nav-show {
    height: 100%;
    overflow: auto;
  }

  .navbar.nav-show .container {
    min-height: 100%;
  }

  .navbar.nav-show .container .navbar-collapse {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .navbar.nav-show .fake-container {
    margin-bottom: 2rem;
  }
}

.navbar:after {
  content: "";
  left: 0;
  right: 0;
  width: 100%;
  display: block;
  height: 1px;
  background: hsla(0, 0%, 100%, 0.2);
  bottom: 0;
  position: absolute;
}

@media (max-width: 1199.98px) {
  .navbar:after {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar .navbar-nav {
    width: 100%;
  }
}

.navbar .navbar-brand {
  height: 3rem;
  width: 12.375rem;
  margin-right: 0;
}

@media (max-width: 1399.98px) {
  .navbar .navbar-brand {
    width: 7.5rem;
  }
}

@media (max-width: 1199.98px) {
  .navbar .navbar-brand {
    width: 12.375rem;
  }
}

@media (max-width: 1199.98px) {
  .navbar .navbar-collapse .btn-header {
    width: 100%;
    position: relative;
  }

  .navbar .navbar-collapse .btn-video {
    width: 100%;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e1e1e7;
    margin-top: auto;
    padding-bottom: 1.125rem;
  }
}

.navbar .logo--light {
  opacity: 1;
}

.navbar .logo--dark,
.navbar.scrolled .logo--light {
  opacity: 0;
}

.navbar.scrolled .logo--dark {
  opacity: 1;
}

.navbar.navbar-light .logo--light {
  opacity: 0;
}

.navbar.navbar-light .logo--dark {
  opacity: 1;
}

@media (min-width: 1200px) {
  .navbar .nav-item {
    height: 6rem;
  }

  .navbar .nav-item--lang .dropdown-menu {
    min-width: auto;
    top: calc(100% - 3px);
    border-radius: 0;
  }
}

@media (max-width: 1199.98px) {
  .navbar .nav-item .nav-link:after {
    width: 1rem;
    height: 0.6rem;
  }

  .navbar .nav-item:not(.nav-item--lang) .nav-link:after {
    position: absolute;
    right: 0;
    top: 1.5rem;
  }

  .navbar .nav-item--mobile {
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }

  .navbar .nav-item--mobile .dropdown-menu {
    width: 100%;
    border-radius: 0;
    border-bottom: none;
  }

  .navbar .nav-item--mobile .nav-link-label {
    color: #004057;
    font-size: 1.125rem;
  }

  .navbar .nav-item--mobile a.nav-link {
    color: #3abfee;
    overflow: hidden;
  }
}

@media (min-width: 1200px) {
  .navbar .nav-item.has-megamenu {
    position: static;
  }
}

.navbar .nav-item:not(:last-child) {
  margin-right: 1.125rem;
}

@media (max-width: 1399.98px) {
  .navbar .nav-item:not(:last-child) {
    margin-right: 0.5rem;
  }
}

@media (max-width: 1199.98px) {
  .navbar .nav-item:not(:last-child) {
    margin-right: 0;
  }
}

@media (max-width: 1199.98px) {
  .navbar .nav-item {
    margin-right: 0.75rem;
  }
}

.navbar .nav-link {
  color: #004057;
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar-dark .navbar .nav-link {
  color: #fff;
}

.navbar .nav-link:hover {
  color: #3abfee;
}

@media (max-width: 1199.98px) {
  .navbar .nav-link {
    padding: 1rem 0;
    height: auto;
    font-size: 1.125rem;
  }
}

.navbar.navbar-dark {
  background: linear-gradient(
    180deg,
    rgba(1, 15, 27, 0.65) 32.81%,
    rgba(1, 15, 27, 0)
  );
  border-color: hsla(0, 0%, 100%, 0.4);
}

.navbar.navbar-dark .nav-link {
  color: #fff;
}

.navbar.navbar-dark .nav-link:hover {
  color: #3abfee;
}

.navbar .navbar-toggler {
  border-radius: 100px;
  color: #fff;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #e8f9ff;
  border-color: transparent;
}

@media (max-width: 1199.98px) {
  .navbar .navbar-toggler {
    display: inline-flex;
  }
}

.navbar .navbar-toggler .navbar-toggler-icon {
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  transition: all 0.25s ease-in-out;
  opacity: 0;
  position: absolute;
}

.navbar .navbar-toggler .navbar-toggler-icon--close {
  opacity: 1;
  width: 1.1em;
  height: 1.1em;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='23' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.803 7.61a1 1 0 00-1.414-1.413L11.5 10.086l-3.889-3.89a1 1 0 00-1.414 1.415l3.889 3.889-3.89 3.889a1 1 0 101.415 1.414l3.89-3.889 3.888 3.89a1 1 0 001.414-1.415l-3.889-3.89 3.89-3.888z' fill='%233ABFEE'/%3E%3C/svg%3E");
}

.navbar .navbar-toggler.collapsed {
  background-color: #3abfee;
}

.navbar .navbar-toggler.collapsed .navbar-toggler-icon {
  opacity: 1;
}

.navbar .navbar-toggler.collapsed .navbar-toggler-icon--close {
  opacity: 0;
}

.megamenu {
  min-width: auto;
  width: auto;
  left: 10%;
  right: 10%;
  border-radius: 0;
  border: none;
  padding: 1.5rem 2rem 0;
  top: calc(100% - 1px);
  box-shadow: 0 22px 36px -13px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199.98px) {
  .megamenu {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: all 0.25s ease-in-out;
    padding: 0;
    box-shadow: none;
  }

  .megamenu.show {
    max-height: 1000px;
  }
}

.megamenu:before {
  content: "";
  position: absolute;
  display: block;
  top: 1px;
  right: 0;
  left: 0;
  height: 1px;
  background-color: #e1e1e7;
}

@media (max-width: 1199.98px) {
  .megamenu:before {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .megamenu .h5,
  .megamenu h5 {
    display: none;
  }
}

.megamenu .h5:before,
.megamenu h5:before {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='6' fill='none'%3E%3Cpath d='M6.5 0h9l-6 12h-9l6-12z' fill='%23E1E1E7'/%3E%3C/svg%3E");
  width: 8.25rem;
  background-repeat: repeat-x;
  display: block;
  height: 0.75rem;
  position: relative;
  margin-right: 2rem;
  top: 0.15em;
}

@media (max-width: 1199.98px) {
  .megamenu .h5:before,
  .megamenu h5:before {
    display: none;
  }
}

.megamenu .h5:after,
.megamenu h5:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='6' fill='none'%3E%3Cpath d='M6.5 0h9l-6 12h-9l6-12z' fill='%23E1E1E7'/%3E%3C/svg%3E");
  width: 8.25rem;
  background-repeat: repeat-x;
  display: block;
  height: 0.75rem;
  position: relative;
  margin-left: 2rem;
  top: 0.15em;
}

@media (max-width: 1199.98px) {
  .megamenu .h5:after,
  .megamenu h5:after {
    display: none;
  }
}

.megamenu[data-bs-popper] {
  left: 10%;
}

@media (min-width: 1400px) {
  .megamenu[data-bs-popper] {
    left: 20%;
  }
}

@media (min-width: 1400px) {
  .megamenu {
    left: 18%;
    right: 18%;
  }
}

.megamenu--cat {
  width: auto;
  left: 10%;
  right: 10%;
}

@media (min-width: 1400px) {
  .megamenu--cat {
    left: 20%;
    right: 20%;
  }
}

@media (max-width: 1199.98px) {
  .megamenu--cat.show {
    padding-bottom: 2rem;
  }
}

.megamenu--cat .mm-item__link {
  display: block;
  height: 100%;
  padding-top: 0.625rem;
  text-decoration: none;
}

@media (max-width: 1199.98px) {
  .megamenu--cat .mm-item__link {
    display: flex;
  }
}

.megamenu--cat .mm-item__link:hover .mm-item__fake-link:after {
  right: -0.625rem;
  transform: scale(1.05);
}

.megamenu--cat .mm-item__img-wrap {
  height: 7.5rem;
}

@media (max-width: 1199.98px) {
  .megamenu--cat .mm-item__img-wrap {
    height: 4.375rem;
  }
}

.megamenu--cat .mm-item__text-inner {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 1199.98px) {
  .megamenu--cat .mm-item__text-inner {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.megamenu--cat .mm-item__fake-link {
  font-family: Kanit, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #004057;
  text-decoration: none;
  padding-right: 1.75rem;
  position: relative;
  display: flex;
  transition: all 0.25s ease-in-out;
}

@media (max-width: 1199.98px) {
  .megamenu--cat .mm-item__fake-link {
    padding-right: 2.75rem;
  }
}

.megamenu--cat .mm-item__fake-link:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='8' fill='none'%3E%3Cpath d='M28.854 4.354a.5.5 0 000-.708L25.672.464a.5.5 0 10-.707.708L27.793 4l-2.828 2.828a.5.5 0 10.707.708l3.182-3.182zM.5 4.5h28v-1H.5v1z' fill='%233ABFEE'/%3E%3C/svg%3E");
  display: inline-block;
  width: 1.8125rem;
  height: 0.5rem;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  transition: all 0.25s ease-in-out;
  right: 0;
  position: absolute;
  top: calc(50% - 4px);
  bottom: 0;
}

.mm-item {
  transition: all 0.25s ease-in-out;
}

@media (min-width: 1200px) {
  .mm-item {
    padding-bottom: 2rem;
  }
}

@media (max-width: 1199.98px) {
  .mm-item .link-arrow {
    display: none;
  }
}

.mm-item__inner {
  padding: 0.875rem 0;
  text-decoration: none;
  display: block;
  position: relative;
}

@media (max-width: 1199.98px) {
  .mm-item__inner {
    display: flex;
  }
}

.mm-item__inner:hover .link-arrow {
  color: #18ace0;
}

.mm-item__inner:hover .link-arrow:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='8' fill='none'%3E%3Cpath d='M28.854 4.354a.5.5 0 000-.708L25.672.464a.5.5 0 10-.707.708L27.793 4l-2.828 2.828a.5.5 0 10.707.708l3.182-3.182zM.5 4.5h28v-1H.5v1z' fill='%2318ACE0'/%3E%3C/svg%3E");
  left: 4px;
  transform: scale(1.05);
}

@media (max-width: 1199.98px) {
  .mm-item__text-inner {
    padding-top: 0;
    padding-left: 0;
  }
}

.mm-item__text {
  color: #9295a5;
  font-size: 0.75rem;
}

@media (max-width: 1199.98px) {
  .mm-item__text {
    margin-bottom: 0;
  }
}

.mm-item__header {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.mm-item__img-wrap {
  width: 100%;
  display: block;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

@media (max-width: 1199.98px) {
  .mm-item__img-wrap {
    width: 4.375rem;
    height: 4.375rem;
    padding: 0;
    margin-right: 1rem;
    flex-shrink: 0;
  }
}

@media (min-width: 1200px) {
  .navbar.scrolled .nav-item.has-megamenu:hover:after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background-color: #3abfee;
    z-index: 9999;
    position: relative;
  }
}

.submenu {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #fff;
  display: none;
  padding: 1.5rem 3.375rem;
}

@media (min-width: 1200px) {
  .submenu {
    top: 100%;
    bottom: unset;
  }
}

@media (max-width: 1199.98px) {
  .submenu {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1199.98px) {
  .submenu.active {
    display: flex;
    flex-direction: column;
    overflow: auto;
    z-index: 1;
  }
}

.submenu__name {
  line-height: 1.2;
  z-index: 2;
  position: relative;
  font-size: 0.875rem;
}

.submenu__img-wrap {
  width: 4.375rem;
  height: 4.375rem;
  margin-right: 1rem;
}

@media (max-width: 1199.98px) {
  .submenu__item {
    padding: 1.5rem 2.625rem 1.5rem 0;
    position: relative;
    border-bottom: 1px solid #f3f3f7;
  }

  .submenu__item:after {
    content: "";
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='16' fill='none'%3E%3Cpath d='M1 1.5l6 6.75L1 15' stroke='%233ABFEE' stroke-width='2'/%3E%3C/svg%3E");
    display: inline-flex;
    width: 0.5625rem;
    height: 1rem;
    position: absolute;
    top: calc(50% - 8px);
    right: 0.75rem;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.submenu .r-submenu {
  width: 100%;
}

@media (max-width: 1199.98px) {
  .submenu .r-submenu {
    overflow-y: auto;
    max-width: 45rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.submenu .r-submenu-btns {
  width: 100%;
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {
  .submenu .r-submenu-btns {
    display: none;
  }
}

.submenu__link:hover {
  color: #3abfee;
}

.submenu__link:hover img {
  transform: scale(1.05);
}

.submenu__img {
  transition: all 0.25s ease-in-out;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.submenu__img-wrap {
  flex: 1 0 30%;
  max-width: 30%;
}

.submenu__item {
  height: 100%;
}

@media (max-width: 1199.98px) {
  .with-submenu .mm-item {
    border-bottom: 1px solid #f3f3f7;
  }

  .with-submenu .mm-item .mm-item__text-inner {
    padding-bottom: 0;
  }

  .with-submenu .mm-item .mm-item__inner {
    padding: 1.5rem 2.625rem 1.5rem 0;
    position: relative;
  }

  .with-submenu .mm-item .mm-item__inner:after {
    content: "";
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='16' fill='none'%3E%3Cpath d='M1 1.5l6 6.75L1 15' stroke='%233ABFEE' stroke-width='2'/%3E%3C/svg%3E");
    display: inline-flex;
    width: 0.5625rem;
    height: 1rem;
    position: absolute;
    top: calc(50% - 8px);
    right: 0.75rem;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

@media (max-width: 1199.98px) {
  .with-submenu.active {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    z-index: 99;
    overflow: auto;
  }
}

@media (max-width: 1199.98px) {
  .with-submenu.active .mobile-menu-nav {
    display: flex;
  }
}

@media (max-width: 1199.98px) {
  .with-submenu.active .nav-link--desktop {
    display: none;
  }
}

.with-submenu .megamenu {
  transition: none;
}

@media (max-width: 1199.98px) {
  .with-submenu .megamenu .container {
    max-width: 45rem;
  }
}

.mobile-menu-nav {
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
}

.mobile-menu-nav__title {
  color: #004057;
}

.mobile-menu-nav__count {
  color: #6c757d;
}

.dropdown-toggle-back {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 100px;
  background-color: #e8f9ff;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='16' fill='none'%3E%3Cpath d='M7.48 14.5l-6-6.75 6-6.75' stroke='%233ABFEE' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50%;
}

.home {
  background-color: #f9f9fa;
}

.home .navbar:not(.scrolled) .megamenu:before {
  display: none;
}

.home .section-what {
  padding-top: 0;
}

@media (max-width: 575.98px) {
  .home .section-what .r-what-1 .h3,
  .home .section-what .r-what-1 h3 {
    font-size: 2rem;
    line-height: 1.37;
  }
}

.home .section-testimonial {
  position: relative;
  z-index: 2;
}

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

.poliamid-lightbox .arrow {
  z-index: 99999;
  position: absolute;
  background-color: #f9f9fa;
}

.poliamid-lightbox .arrow:hover {
  box-shadow: none;
}

.poliamid-lightbox .arrow--prev {
  top: calc(50% - 23px);
  left: 1.5rem;
}

.poliamid-lightbox .arrow--next {
  top: calc(50% - 23px);
  right: 1.5rem;
}

.poliamid-lightbox .arrow.glightbox-button-hidden {
  display: none !important;
}

.poliamid-lightbox .gclose {
  position: absolute;
  z-index: 99999;
}

.poliamid-lightbox .gcontainer {
  max-width: 38.8125rem;
  max-height: 33.5rem;
}

.poliamid-lightbox .gslide {
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.poliamid-lightbox .goverlay {
  background: rgba(7, 59, 78, 0.8);
}

.poliamid-lightbox .glightbox-button-hidden {
  display: none !important;
}

.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 0.25rem;
  border: 1px solid #e8e8e8;
  box-sizing: border-box;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  height: 38px;
  outline: none;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
  padding: 0 30px 0 1.5rem;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  background-image: none;
  max-width: 21.0625rem;
  width: 100%;
}

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

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

.nice-select:after {
  content: "";
  display: block;
  height: 7px;
  width: 10px;
  pointer-events: none;
  position: absolute;
  right: 1.375rem;
  top: calc(50% - 3px);
  transition: all 0.25s ease-in-out;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.5 1.5l4.5 4 4.5-4' stroke='%233ABFEE' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 10px 7px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.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 {
  white-space: inherit;
  height: auto;
  padding: 7px 12px;
  min-height: 36px;
  line-height: 22px;
}

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

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

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

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

@media (max-width: 575.98px) {
  .section-breadcrumbs {
    display: none;
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs__item:not(:last-child):after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='9' fill='none'%3E%3Cpath d='M1 7.75l3-3.375L1 1' stroke='%23A8B7BC'/%3E%3C/svg%3E");
  display: inline-block;
  width: 0.375rem;
  height: 0.6875rem;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  transition: all 0.25s ease-in-out;
  margin: 0 0.8125rem;
}

.breadcrumbs__item--home a svg path {
  transition: all 0.25s ease-in-out;
  fill: #a8b7bc;
}

.breadcrumbs__item--home a:hover svg path {
  fill: #3abfee;
}

@media (max-width: 991.98px) {
  .section-home-hero {
    padding: 8.125rem 1.4375rem 1.25rem;
  }
}

.section-home-hero__bg-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(0, 26, 35, 0),
    rgba(0, 38, 51, 0.75) 75%
  );
  filter: blur(4px);
}

.section-home-hero__bg-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: hsla(0, 0%, 9%, 0.5);
}

@media (max-width: 575.98px) {
  .section-home-hero__img--desktop {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .section-home-hero__img--mobile {
    display: block;
  }
}

.home-hero .h1,
.home-hero h1 {
  margin-bottom: 1.625rem;
}

.home-hero p {
  font-size: 1rem;
}

.section-search {
  background-color: #004057;
  overflow: visible !important;
}

.section-search .accordion-collapse {
  border: none;
}

.section-search .accordion-button {
  width: auto;
  margin-left: auto;
  margin-right: auto;
  border: none;
  color: #8fb2be;
  padding-top: 0.625rem;
  text-align: center;
}

.section-search .accordion-button:not(.collapsed) {
  background-color: transparent;
}

.section-search .accordion-button:focus {
  box-shadow: none;
}

.section-search .container {
  max-width: 48.75rem;
}

@media (max-width: 991.98px) {
  .section-search .input-group {
    display: flex;
    flex-direction: column;
  }

  .section-search .input-group input {
    width: 100%;
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
  }

  .section-search .input-group button {
    margin-left: 0 !important;
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
  }
}

.section-search .input-group .btn-group-lg > .btn,
.section-search .input-group .btn-lg {
  padding-left: 3.6875rem;
  padding-right: 3.6875rem;
}

.section-search .input-group .btn-group-lg > .btn:focus,
.section-search .input-group .btn-lg:focus {
  color: #fff;
}

.section-search .input-wrapper {
  flex: 1 1 auto;
  width: 1%;
  position: relative;
}

@media (max-width: 991.98px) {
  .section-search .input-wrapper {
    width: 100%;
  }
}

.section-search__hint {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  background-color: #f9f9fa;
  border: 1px solid #f3f3f7;
  z-index: 3;
}

.section-search__hint ul {
  list-style: none;
}

.section-search__hint ul li a {
  font-family: Archivo;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #a8b7bc;
  display: block;
}

.section-search__hint ul li a:hover {
  color: #3abfee;
}

.section-search__filters .filter-block {
  flex: 1 0 30%;
  max-width: 30%;
}

.section-search__filters .filter-block.checkboxes {
  flex: 1 0 50%;
  max-width: 50%;
}

@media (max-width: 575.98px) {
  .section-search__filters .filter-block {
    flex: 1 0 100%;
    max-width: 100%;
  }
}

.section-search__filters .filter-block .nice-select {
  white-space: normal;
}

.section-search__filters .filter-block .nice-select-dropdown {
  width: 100%;
  z-index: 999;
}

.section-search__filters .filter-block .nice-select .current {
  white-space: nowrap;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
}

.section-about {
  background-color: #f9f9fa;
}

.section-about .container {
  max-width: 70.4rem;
}

.about__img-col {
  width: 48%;
}

@media (max-width: 575.98px) {
  .about__img-col {
    width: 50%;
  }
}

.about__img-col--1 .img-col__img-wrap {
  width: 100%;
  height: 25.3125rem;
}

.about__img-col--1 .img-col__img-wrap img {
  -o-object-position: top right;
  object-position: top right;
}

@media (max-width: 575.98px) {
  .about__img-col--1 .img-col__img-wrap {
    height: 15.6875rem;
  }
}

.about__img-col--2 {
  padding-left: 0.625rem;
  padding-top: 2.9375rem;
}

.about__img-col--2 .img-col__img-wrap {
  width: 100%;
  height: 13.8125rem;
}

@media (max-width: 575.98px) {
  .about__img-col--2 .img-col__img-wrap {
    height: 8.375rem;
  }
}

.about__img-col--2 .img-col__img-wrap:not(:last-child) {
  margin-bottom: 0.9375rem;
}

@media (min-width: 576px) {
  .about__c-images {
    padding-right: 1.875rem;
  }
}

.section-testimonial {
  background-color: transparent;
  position: relative;
  background: linear-gradient(180deg, #f9f9fa 50%, transparent 0);
}

.section-testimonial__inner {
  background-color: transparent;
  max-width: 39.6875rem;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
}

@media (max-width: 767.98px) {
  .section-testimonial__inner {
    border: none;
  }
}

@media (max-width: 767.98px) {
  .testimonial__inner {
    padding: 2rem;
  }
}

@media (max-width: 575.98px) {
  .c-testimonial-2 .h6,
  .c-testimonial-2 .section-job-offers .side-tabs .tab-title,
  .c-testimonial-2 h6,
  .section-job-offers .side-tabs .c-testimonial-2 .tab-title {
    font-size: 1.125rem;
  }
}

.section-what .splide__pagination {
  bottom: 0;
}

.section-what .splide__pagination li:not(:last-child) {
  margin-right: 1rem;
}

.section-what .splide__pagination__page {
  background: #fff;
  width: 0.5625rem;
  height: 0.5625rem;
  margin: 0;
}

.section-what .splide__pagination__page.is-active {
  transform: scale(1);
  background: #3abfee;
}

.section-what .splide__arrows {
  position: absolute;
  top: calc(100% + 30px);
  display: flex;
  justify-content: center;
  left: 0;
  right: 0;
}

.section-what .splide__arrows .arrow {
  background-color: transparent;
  border: 1px solid #fff;
  box-shadow: none;
}

.section-what .splide__arrows .arrow--prev {
  margin-right: 1.5rem;
}

.section-what__img-wrap {
  background-color: #002c3c;
}

.section-what__img-wrap:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 44, 60, 0), #002c3c 56.25%),
    #002c3c url(../../img/hex-bg.jpg);
  background-blend-mode: overlay;
}

.section-what .container {
  position: relative;
}

@media (max-width: 575.98px) {
  .r-what-1 .h3,
  .r-what-1 h3 {
    font-size: 2rem;
  }
}

.r-what-2 {
  width: 100%;
}

@media (max-width: 575.98px) {
  .r-what-2 {
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .r-what-2 > * {
    max-width: 50% !important;
    width: 50% !important;
  }
}

.what {
  margin-bottom: 3.625rem;
}

@media (max-width: 767.98px) {
  .what__inner {
    width: 100%;
    max-width: 23.4375rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575.98px) {
  .what__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.what__img-wrap {
  margin-right: 1.5rem;
  width: 6.625rem;
  height: 7.875rem;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .what__img-wrap {
    width: 5.8125rem;
    height: 6.4375rem;
    margin-right: 0;
  }
}

.what__img {
  -o-object-position: top;
  object-position: top;
}

.what__header {
  margin-bottom: 0.375rem;
}

.what__header,
.what__subheader {
  line-height: 1.2;
  word-break: break-word;
}

.what__subheader {
  color: #e1e1e7;
  margin-bottom: 0.5rem;
}

.what__last {
  color: #e1e1e7;
}

.section-solutions {
  background-color: #f3f3f7;
}

.r-common > * {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

.c-common {
  margin-bottom: 4.9375rem;
}

.c-common__inner {
  background-color: #fff;
}

.c-common__img-wrap {
  height: 14.375rem;
  width: 100%;
  margin-bottom: 0.25rem;
}

.c-common__header {
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

@media (max-width: 575.98px) {
  .c-common__header {
    font-size: 1.5rem;
  }
}

.c-common__text {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.c-common__text-inner {
  padding: 1.875rem;
  flex: 1;
}

@media (max-width: 991.98px) {
  .c-common {
    margin-bottom: 2.5rem;
  }
}

.section-opinions {
  background-color: #f9f9fa;
}

.section-opinions > .container-fluid,
.section-opinions > .container-lg,
.section-opinions > .container-md,
.section-opinions > .container-sm,
.section-opinions > .container-xl,
.section-opinions > .container-xxl {
  position: relative;
}

.section-opinions__img-wrap {
  opacity: 0.6;
}

.section-opinions .common-header .h3,
.section-opinions .common-header h3 {
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-opinions .c-testimonial-3 {
  margin-top: auto;
}

.section-opinions .splide {
  background-color: transparent;
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .section-opinions .splide {
    margin-right: auto;
    margin-left: auto;
  }
}

.section-opinions .splide__slide {
  background-color: #fff;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ececf3;
  box-shadow: 0 22px 20px -13px rgba(0, 0, 0, 0.05);
}

.section-opinions .splide__arrows {
  display: flex;
  position: absolute;
  bottom: -5.3125rem;
  justify-content: center;
  width: 100%;
}

@media (max-width: 991.98px) {
  .section-opinions .splide__arrows {
    bottom: -10.4rem;
  }
}

.section-opinions .splide__arrows .arrow:not(:last-of-type) {
  margin-right: 1.5rem;
}

@media (max-width: 991.98px) {
  .section-opinions .splide__pagination {
    bottom: -5.625rem;
  }
}

.section-opinions .splide__pagination li:not(:last-child) {
  margin-right: 1rem;
}

.section-opinions .splide__pagination__page {
  background: #e1e1e7;
  width: 0.5625rem;
  height: 0.5625rem;
  margin: 0;
}

.section-opinions .splide__pagination__page.is-active {
  transform: scale(1);
  background: #3abfee;
}

.section-opinions .testimonial {
  padding: 0;
}

.section-opinions .no-splide .splide__list {
  display: flex;
  width: 100%;
  max-width: 75rem;
  margin-right: auto !important;
  margin-left: auto !important;
}

@media (max-width: 767.98px) {
  .section-opinions .no-splide .splide__list {
    flex-direction: column;
  }
}

.section-opinions .no-splide .splide__slide {
  flex: 1;
}

.section-opinions .no-splide .splide__slide:not(:last-child) {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-opinions .no-splide .splide__slide:not(:last-child) {
    margin-right: 2rem;
    margin-bottom: 0;
  }
}

.section-trophies {
  background-color: #f3f3f7;
  overflow: hidden;
}

.section-trophies .common-header .h3,
.section-trophies .common-header h3 {
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-trophies.large .splide {
  max-width: 100%;
}

.section-trophies .splide {
  max-width: 40.625rem;
  margin-left: auto;
  margin-right: auto;
}

.section-trophies .splide__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.section-job-offers .side-tabs .section-trophies .splide__slide .tab-title,
.section-trophies .splide__slide .h6,
.section-trophies .splide__slide .section-job-offers .side-tabs .tab-title,
.section-trophies .splide__slide h6 {
  flex: 1;
  display: flex;
  max-width: 99%;
}

@media (max-width: 575.98px) {
  .section-job-offers .side-tabs .section-trophies .splide__slide .tab-title,
  .section-trophies .splide__slide .h6,
  .section-trophies .splide__slide .section-job-offers .side-tabs .tab-title,
  .section-trophies .splide__slide h6 {
    font-size: 1.125rem;
  }
}

.section-trophies .splide__arrows .arrow:not(:last-of-type) {
  margin-right: 1.5rem;
}

.section-trophies .no-splide .splide__list {
  display: flex;
  width: 100%;
  max-width: 75rem;
  margin-right: auto !important;
  margin-left: auto !important;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .section-trophies .no-splide .splide__list {
    flex-direction: column;
  }
}

.section-trophies .no-splide .splide__slide:not(:last-child) {
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .section-trophies .no-splide .splide__slide:not(:last-child) {
    margin-right: 4rem;
    margin-bottom: 0;
  }
}

.section-intouch {
  background-color: #002c3c;
}

@media (max-width: 575.98px) {
  .section-intouch__img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    left: -2.5rem;
    right: -2.5rem;
    width: calc(100% + 80px);
  }
}

.section-intouch__img {
  height: 120%;
  width: auto;
  max-width: 100%;
  position: relative;
  top: -10%;
}

@media (max-width: 575.98px) {
  .section-intouch__img {
    height: auto;
    max-height: 100%;
    width: 100%;
    top: 0;
  }
}

@media (max-width: 575.98px) {
  .section-intouch .h3,
  .section-intouch h3 {
    font-size: 2rem;
  }
}

.section-intouch p {
  opacity: 0.8;
}

.cat-img__img-wrap {
  height: 100%;
}

.cat-img__inner {
  height: 27.6875rem;
}

@media (max-width: 575.98px) {
  .cat-img__inner {
    height: 18.75rem;
  }
}

@media (max-width: 991.98px) {
  .cat-desc .h4,
  .cat-desc h4 {
    max-width: 100%;
  }
}

.cat-desc__subheader {
  color: #004057;
  margin-bottom: 1.5rem;
}

.cat-desc__text {
  color: #9295a5;
  margin-bottom: 2rem;
}

.cat-desc ul {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.cat-desc ul li:before {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='10' fill='none'%3E%3Cpath d='M13 1.83L4.667 10 0 5.458l1.9-1.83 2.767 2.68L11.1 0 13 1.83z' fill='%233ABFEE'/%3E%3C/svg%3E");
  display: inline-block;
  width: 0.8125rem;
  height: 0.625rem;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  transition: all 0.25s ease-in-out;
  position: absolute;
  left: 0.25rem;
  top: 0.5625rem;
}

.cat-desc ul li span {
  color: #9295a5;
}

.r-cat-cats {
  min-height: 6rem;
  margin: 0;
}

.section-cat-cats {
  border: 1px solid #fff;
  background: transparent;
}

.cat-1 {
  box-shadow: 0 1px 0 #ececf3;
  background-color: #fff;
}

.cat-1:not(:last-child) {
  border-right: 2px solid #f9f9fa;
}

.cat-1:hover a .h6,
.cat-1:hover a .section-job-offers .side-tabs .tab-title,
.cat-1:hover a h6,
.section-job-offers .side-tabs .cat-1:hover a .tab-title {
  color: #3abfee;
}

.cat-1__link {
  display: flex;
  align-items: center;
  height: 100%;
}

@media (max-width: 991.98px) {
  .cat-1__img {
    -o-object-position: left center;
    object-position: left center;
  }
}

.cat-1__name {
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

.section-prod-description {
  background-color: #f9f9fa;

  overflow: hidden;
}

.section-prod-description .glightbox {
  display: block;
  height: 100%;
}

@media (max-width: 575.98px) {
  .section-prod-description .glightbox {
    max-width: 23.4375rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.section-prod-description .glightbox:after {
  content: "";
  z-index: 10;
  display: inline-flex;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46' fill='none'%3E%3Ccircle r='23' transform='matrix(-1 0 0 1 23 23)' fill='%233ABFEE'/%3E%3Cpath d='M26.5 26h-.79l-.28-.27A6.471 6.471 0 0027 21.5a6.5 6.5 0 10-6.5 6.5c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L31.49 31l-4.99-5zm-6 0c-2.49 0-4.5-2.01-4.5-4.5s2.01-4.5 4.5-4.5 4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5z' fill='%23fff'/%3E%3C/svg%3E");
  display: inline-block;
  width: 2.875rem;
  height: 2.875rem;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  transition: all 0.25s ease-in-out;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

@media (max-width: 767.98px) {
  .section-prod-description .glightbox:after {
    display: none;
  }
}

.prod-img__img-wrap {
  max-height: 38.125rem;
}

@media (max-width: 1199.98px) {
  .prod-img {
    height: 28.125rem;
    background-color: #fff;
    max-width: 28.125rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.125rem;
  }
}

@media (max-width: 575.98px) {
  .prod-img {
    height: 23.4375rem;
    margin-left: -2.1875rem;
    margin-right: -2.1875rem;
    display: flex;
    justify-content: center;
    max-width: none;
  }
}

.prod-img .splide {
  background-color: #fff;
}

@media (max-width: 575.98px) {
  .prod-img .splide__arrows {
    position: absolute;
    top: 100%;
    display: flex;
    width: auto;
    width: 100%;
    justify-content: center;
  }
}

.prod-img .splide__arrows .arrow {
  z-index: 9;
}

@media (min-width: 576px) {
  .prod-img .splide__arrows .arrow {
    background-color: #f9f9fa;
  }
}

.prod-img .splide__arrows .arrow--prev {
  position: absolute;
  top: calc(50% - 23px);
  left: 1.5rem;
}

@media (max-width: 575.98px) {
  .prod-img .splide__arrows .arrow--prev {
    top: 0;
    position: relative;
    left: 0;
  }
}

.prod-img .splide__arrows .arrow--next {
  position: absolute;
  top: calc(50% - 23px);
  right: 1.5rem;
}

@media (max-width: 575.98px) {
  .prod-img .splide__arrows .arrow--next {
    top: 0;
    position: relative;
    right: 0;
  }
}

@media (max-width: 1199.98px) {
  .prod-img .splide__list,
  .prod-img .splide__slide,
  .prod-img .splide__track {
    height: 100%;
  }
}

@media (min-width: 1200px) {
  .prod-desc {
    margin-bottom: 1.8rem;
  }
}

.prod-desc .h1,
.prod-desc h1 {
  margin-bottom: 1.5rem;
}

@media (min-width: 1200px) {
  .prod-desc .h1,
  .prod-desc h1 {
    padding-bottom: 1.4rem;
  }
}

.prod-desc__subheader {
  margin-bottom: 1.5rem;
  color: #004057;
}

@media (min-width: 1200px) {
  .prod-desc__subheader {
    padding-bottom: 1.4rem;
    border-bottom: 1px solid #e1e1e7;
  }
}

.prod-desc__text {
  margin-bottom: 2.5rem;
}

@media (min-width: 1200px) {
  .prod-desc__text {
    padding-top: 0.5rem;
    margin-bottom: 1.4rem;
  }
}

.prod-desc__select {
  margin-bottom: 2rem;
}

@media (max-width: 575.98px) {
  .prod-desc__select {
    margin-bottom: 0;
  }
}

.prod-desc__bottom {
  border-top: 1px solid #e1e1e7;
  display: flex;
}

@media (max-width: 575.98px) {
  .prod-desc__bottom {
    flex-direction: column-reverse;
    border-top: none;
  }
}

.prod-desc__bottom-left {
  flex-shrink: 0;
}

@media (min-width: 576px) {
  .prod-desc__bottom-left {
    width: 45%;
    border-right: 1px solid #e1e1e7;
  }
}

.prod-desc__bottom-right {
  flex-shrink: 0;
}

@media (min-width: 576px) {
  .prod-desc__bottom-right {
    width: 55%;
  }
}

.prod-desc .products-list__bottom-wrap {
  display: flex;
  flex-direction: column;
}

.prod-desc .products-list__bottom-wrap p {
  padding: 0;
}

@media (max-width: 575.98px) {
  .prod-desc .products-list__bottom-wrap p span {
    display: inline-block;
  }
}

.prod-desc .products-list__bottom-wrap .products-list__color:after {
  display: none;
}

.prod-desc .products-list__buttons-inner {
  padding-left: 0;
  padding-right: 0;
  align-items: flex-start;
  border-bottom: 1px solid #e1e1e7;
}

@media (min-width: 576px) {
  .prod-desc .products-list__buttons-inner {
    border-bottom: none;
    padding-left: 4.0625rem;
  }
}

.prod-desc .products-list__buttons-inner a {
  width: 100%;
}

@media (min-width: 576px) {
  .prod-desc .products-list__buttons-inner a {
    max-width: 15.1875rem;
  }
}

@media (max-width: 575.98px) {
  .prod-desc .products-list__buttons-inner a {
    text-align: center;
  }
}

.prod-desc .products-list__buttons-inner:before {
  display: none;
}

@media (max-width: 575.98px) {
  .r-prod-content .h1,
  .r-prod-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 991.98px) {
  .product-table {
    margin-bottom: 3rem;
  }
}

.product-table .table {
  max-width: calc(100% - 2px);
}

.product-table .table tr {
  border: none;
}

.product-table td,
.product-table th {
  text-align: center;
  vertical-align: middle;
  line-height: 1.2;
  padding: 1.3rem;
  color: #9295a5;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .product-table td,
  .product-table th {
    font-size: 0.875rem;
  }
}

.product-table thead {
  background-color: #f3f3f7;
}

.product-table thead tr:not(:first-of-type) th {
  white-space: nowrap;
}

.product-table thead th {
  border: 1px solid #e1e1e7 !important;
}

.product-table tbody {
  background-color: #fff;
}

.product-table tbody th {
  white-space: nowrap;
}

.product-table tbody td,
.product-table tbody th {
  border: 1px solid #f3f3f7 !important;
}

.section-products-list {
  background-color: #f3f3f7;
}

@media (max-width: 575.98px) {
  .section-products-list .products-list__desc {
    font-size: 0.75rem;
  }
}

@media (min-width: 576px) {
  .c-list-header .h3:before,
  .c-list-header h3:before {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .c-list-header .h3,
  .c-list-header h3 {
    font-size: 2rem;
  }
}

.products-list__row {
  background-color: #fff;
  box-shadow: 0 1px 0 #ececf3;
}

.products-list__c-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 575.98px) {
  .products-list__c-image {
    justify-content: space-between;
    align-items: flex-start;
  }
}

.products-list__img-wrap {
  width: 17.375rem;
  height: 14.75rem;
}

@media (max-width: 575.98px) {
  .products-list__img-wrap {
    width: 8.9375rem;
    height: 7.5625rem;
  }
}

@media (min-width: 576px) {
  .products-list__c-details {
    padding-left: 2.6rem;
  }
}

.products-list__details-inner {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.products-list__badge {
  margin-bottom: 1rem;
}

.products-list__header {
  margin-bottom: 1rem;
  font-weight: 400;
}

.products-list__bottom-wrap {
  display: flex;
}

@media (max-width: 575.98px) {
  .products-list__bottom-wrap p span {
    display: block;
  }
}

.products-list__color {
  position: relative;
  padding: 0 1rem;
}

@media (max-width: 575.98px) {
  .products-list__color:not(:last-child) {
    border-right: 1px solid #e1e1e7;
  }
}

.products-list__color:first-child {
  padding-left: 0;
}

.products-list__color:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.25rem;
  position: absolute;
  top: 3px;
  background-color: #e1e1e7;
  left: 100%;
}

@media (max-width: 575.98px) {
  .products-list__color:not(:last-child):after {
    display: none;
  }
}

.products-list__material {
  padding-left: 2rem;
}

.products-list__prop {
  color: #252525;
}

.products-list__buttons-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  padding-left: 2rem;
}

@media (min-width: 1400px) {
  .products-list__buttons-inner {
    padding-right: 2.875rem;
    padding-left: 6.825rem;
  }
}

@media (max-width: 1399.98px) {
  .products-list__buttons-inner {
    border-left: 1px solid #e1e1e7;
  }
}

@media (max-width: 991.98px) {
  .products-list__buttons-inner {
    padding-right: 2.3125rem;
    padding-left: 2.3125rem;
    border-left: none;
  }
}

@media (max-width: 991.98px) and (max-width: 575.98px) {
  .products-list__buttons-inner {
    padding-top: 1.5rem;
    border-top: 1px solid #e1e1e7;
  }
}

.products-list__buttons-inner:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  left: 1.25rem;
  background-color: #e1e1e7;
}

@media (max-width: 1399.98px) {
  .products-list__buttons-inner:before {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .products-list__buttons-inner .link-arrow {
    text-align: center;
  }
}

.section-seo__img-wrap:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 44, 60, 0), #003649 56.25%),
    #003649 url(../img/hex-bg.jpg);
  background-blend-mode: overlay;
}

.section-seo .container {
  position: relative;
  max-width: 43.3125rem;
}

.section-seo p {
  line-height: 1.75;
}

.section-firm-about-opinion .r-firm-about:before {
  content: "";
  position: absolute;
  display: block;
  top: -0.5rem;
  bottom: -0.5rem;
  left: 0.25rem;
  right: 0.25rem;
  border: 1px solid #fff;
  background-color: transparent;
}

.firm-about-top {
  background-color: #f9f9fa;
  overflow: hidden;
}

@media (min-width: 992px) {
  .firm-about-top .container-fluid,
  .firm-about-top .container-lg,
  .firm-about-top .container-md,
  .firm-about-top .container-sm,
  .firm-about-top .container-xl,
  .firm-about-top .container-xxl {
    padding: 0;
  }
}

.firm-about .row {
  min-height: 35.375rem;
}

@media (max-width: 991.98px) {
  .firm-about .row {
    height: auto;
  }
}

.firm-about .col-12 {
  height: 100%;
}

.firm-about__c-img {
  width: 50%;
}

@media (max-width: 991.98px) {
  .firm-about__c-img {
    width: 100%;
    max-width: 25rem;
  }
}

@media (min-width: 992px) {
  .firm-about__c-img {
    align-self: stretch;
  }
}

.firm-about__c-content {
  width: 50%;
  height: 100%;
}

@media (min-width: 992px) {
  .firm-about__c-content {
    max-width: 30.125rem;
  }
}

@media (max-width: 991.98px) {
  .firm-about__c-content {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .map-content-wrap {
    margin-bottom: 0;
  }
}

@media (max-width: 991.98px) {
  .about-map {
    height: auto;
  }
}

.section-numbers.alter {
  padding-bottom: 0;
}

.section-numbers.alter .h3,
.section-numbers.alter h3 {
  margin-bottom: 1rem;
}

.section-numbers.alter .r-numbers-2 {
  margin-bottom: 4.5rem;
}

@media (max-width: 991.98px) {
  .section-numbers.alter .r-numbers-2 {
    margin-bottom: 2rem;
  }
}

.r-numbers-1__inner {
  max-width: 43.3125rem;
  margin-left: auto;
  margin-right: auto;
}

.in-numbers__number {
  font-size: 3.875rem;
  line-height: 1.2;
  color: #3abfee;
  font-weight: 600;
  font-family: Kanit, sans-serif;
}

.alter .in-numbers__number {
  color: #8e25d0;
}

@media (max-width: 767.98px) {
  .in-numbers__number {
    font-size: 2.125rem;
  }
}

@media (min-width: 992px) {
  .c-in-numbers:not(:last-child) {
    border-right: 1px solid #e1e1e7;
  }
}

.c-numbers-bg {
  height: 13.9375rem;
}

@media (max-width: 767.98px) {
  .c-numbers-bg {
    height: 9.375rem;
  }
}

.c-numbers-bg img {
  -o-object-position: bottom;
  object-position: bottom;
}

.section-history {
  background-color: #f3f3f7;
}

.history-title-wrap {
  max-width: 43.3125rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) {
  .history-item:nth-child(2n) .history-item__img-wrap {
    order: 1;
  }
}

.history-item__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 58.0625rem;
  margin-left: auto;
  margin-right: auto;
}

.history-item__header-wrap {
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
}

.history-item__header {
  color: #9295a5;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.history-item__header:before {
  right: calc(0.25em + 100%);
}

.history-item__header:after,
.history-item__header:before {
  content: "";
  display: block;
  height: 1px;
  border-bottom: 1px dashed #a8b7bc;
  position: absolute;
  top: calc(50% + 0.05em);
  width: 99999px;
}

.history-item__header:after {
  left: calc(0.25em + 100%);
}

.history-item__content {
  position: relative;
  align-items: center;
  background-color: #fff;
}

.history-item__content:before {
  content: "";
  position: absolute;
  border: 1px solid #fff;
  top: -8px;
  bottom: -8px;
  left: -8px;
  right: -8px;
}

.history-item__img-wrap {
  width: 25rem;
  flex-shrink: 0;
  position: relative;
  align-self: stretch;
}

@media (max-width: 991.98px) {
  .history-item__img-wrap {
    width: 12.5rem;
  }
}

@media (max-width: 575.98px) {
  .history-item__img-wrap {
    width: 100%;
    align-self: center;
  }
}

.history-item__text-wrap {
  background-color: #fff;
  position: relative;
  align-self: stretch;
}

.r-history-items {
  overflow: hidden;
}

.r-history-items__img-wrap {
  top: 505px;
  left: calc(50% - 232px);
  height: 30.4375rem;
  width: 29rem;
}

.animate-me {
  -webkit-animation: bounceIn 3s ease-in-out;
  animation: bounceIn 3s ease-in-out;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes bounceIn {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }

  60% {
    transform: scale(1.2);
    opacity: 1;
  }

  to {
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }

  60% {
    transform: scale(1.2);
    opacity: 1;
  }

  to {
    transform: scale(1);
  }
}

.section-top-tabs {
  background-color: #f9f9fa;
}

.section-top-tabs .col-12 {
  display: flex;
}

.top-tab {
  min-height: 3.875rem;
  border: 1px solid #e1e1e7;
  flex-grow: 1;
  flex-basis: 0;
  background: transparent;
}

.section-job-offers .side-tabs .top-tab .tab-title,
.top-tab .h6,
.top-tab .section-job-offers .side-tabs .tab-title,
.top-tab h6 {
  margin-bottom: 0;
  text-align: center;
}

.top-tab:not(:last-child) {
  border-right: none;
}

.top-tab.active {
  border: none;
  border-bottom: 2px solid #3abfee;
  background-color: #fff;
  position: relative;
}

@media (max-width: 575.98px) {
  .c-areas-header .h3,
  .c-areas-header h3 {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .c-areas-tabs .tab-content .tab-btn-wrap .btn {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .side-tabs .nav {
    margin-right: 3.375rem;
  }
}

@media (max-width: 1199.98px) {
  .side-tabs .nav {
    width: 100%;
  }
}

.side-tabs .nav-link {
  height: 5.25rem;
  width: 18.0625rem;
  padding: 1.5rem;
  border: none;
  border-bottom: 1px solid #e1e1e7;
  background-color: transparent;
}

@media (max-width: 1199.98px) {
  .side-tabs .nav-link {
    background-color: #f3f3f7;
  }
}

.side-tabs .nav-link:last-child {
  border-bottom: #3abfee;
}

@media (max-width: 1199.98px) {
  .side-tabs .nav-link:last-child:hover {
    padding-bottom: 1.375rem;
  }
}

@media (max-width: 1199.98px) {
  .side-tabs .nav-link {
    width: 100%;
  }
}

.side-tabs .nav-link.active,
.side-tabs .nav-link:hover {
  background-color: #fff;
  border-bottom: 2px solid #3abfee;
  padding-bottom: 1.4375rem;
}

.side-tabs .nav-link img {
  width: 1.6875rem;
  height: auto;
  margin-right: 1rem;
}

@media (max-width: 1199.98px) {
  .side-tabs .tab-inner {
    flex-direction: column-reverse;
  }
}

.side-tabs .tab-text {
  padding-right: 3.375rem;
  width: 50%;
  flex-shrink: 0;
}

@media (max-width: 1199.98px) {
  .side-tabs .tab-text {
    width: 100%;
  }

  .side-tabs .tab-text p {
    font-size: 16px;
  }
}

.side-tabs .tab-img {
  width: 50%;
  flex-shrink: 0;
  height: 22.9375rem;
}

@media (max-width: 1199.98px) {
  .side-tabs .tab-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.side-tabs .tab-img__icon-wrap {
  width: 5.5rem;
  height: 5.5rem;
  background-color: #fff;
  box-shadow: 0 0 0 12px rgba(0, 64, 87, 0.4);
  border-radius: 100px;
  bottom: 2rem;
  right: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1199.98px) {
  .side-tabs .tab-img__icon-wrap {
    display: none;
  }
}

.side-tabs .tab-img__icon {
  width: 1.6875rem;
  height: auto;
}

.side-tabs .tab-img__img-wrap {
  width: 100%;
  height: 100%;
}

.side-tabs--job-offers .nav-link {
  background-color: #f9f9fa;
}

.side-tabs .job-link-outer {
  position: relative;
  margin-bottom: 1.5rem;
}

.side-tabs .job-link-outer:before {
  content: "";
  position: absolute;
  top: -0.5rem;
  bottom: -0.5rem;
  left: -0.5rem;
  right: -0.5rem;
  border: 1px solid #fff;
  display: block;
}

.side-tabs .job-link {
  min-height: 4.5rem;
  position: relative;
  background-color: #fff;
  padding-left: 1.875rem;
  margin-bottom: 0;
  padding-right: 5rem;
}

@media (max-width: 575.98px) {
  .side-tabs .job-link {
    font-size: 1.125rem;
  }
}

.side-tabs .job-link:hover:after {
  right: 1.75rem;
}

.side-tabs .job-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: inline-block;
  width: 0.375rem;
}

.side-tabs .job-link--color-1:before {
  background-color: #3abfee;
}

.side-tabs .job-link--color-2:before {
  background-color: #6a2483;
}

.side-tabs .job-link--color-3:before {
  background-color: #0a8754;
}

.side-tabs .job-link--color-4:before {
  background-color: #bb4430;
}

.side-tabs .job-link:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='8' fill='none'%3E%3Cpath d='M28.354 4.354a.5.5 0 000-.708L25.172.464a.5.5 0 10-.707.708L27.293 4l-2.828 2.828a.5.5 0 10.707.708l3.182-3.182zM0 4.5h28v-1H0v1z' fill='%233ABFEE'/%3E%3C/svg%3E");
  display: inline-block;
  width: 1.8125rem;
  height: 0.5rem;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  transition: all 0.25s ease-in-out;
  position: absolute;
  top: calc(50% - 4px);
  right: 1.9375rem;
}

.side-tabs .tab-btn-wrap .btn {
  padding-left: 3.0625rem;
  padding-right: 3.0625rem;
}

.section-how__img-wrap {
  background-color: #002c3c;
}

.section-how__img-wrap:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 44, 60, 0), #002c3c 56.25%),
    #002c3c url(../img/hex-bg.jpg);
  background-blend-mode: overlay;
}

.section-how .container {
  position: relative;
}

.r-how-1 .col-12 {
  max-width: 43.3125rem;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1199.98px) {
  .how-item:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}

.how-item__inner {
  max-width: 12.5rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-item__img-wrap {
  height: 6.4375rem;
  margin-bottom: 1.5rem;
}

.how-item__header span {
  display: block;
  text-align: center;
}

.how-item:not(:last-child) .how-item__img-wrap:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='16' fill='none'%3E%3Cpath d='M40.707 8.707a1 1 0 000-1.414L34.343.929a1 1 0 10-1.414 1.414L38.586 8l-5.657 5.657a1 1 0 001.414 1.414l6.364-6.364zM0 9h40V7H0v2z' fill='%233ABFEE'/%3E%3C/svg%3E");
  display: inline-block;
  width: 2.5rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  transition: all 0.25s ease-in-out;
  position: absolute;
  top: calc(50% - 0.5rem);
  right: -1.625rem;
}

@media (max-width: 1199.98px) {
  .how-item:not(:last-child) .how-item__img-wrap:after {
    display: none;
  }
}

.section-values {
  background-color: #f3f3f7;
}

.section-values .common-header .h3,
.section-values .common-header h3 {
  font-size: 2.5rem;
}

.values__item {
  width: 16.625rem;
}

@media (max-width: 575.98px) {
  .values__item {
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.values__text {
  font-size: 0.75rem;
  line-height: 1.83;
  max-width: 13rem;
}

.values__header {
  margin-bottom: 0;
}

.values__mid-row {
  padding-top: 0.375rem;
  margin-bottom: -2.5rem;
}

.values__hero-wrap {
  width: 19.8125rem;
  height: 20.8125rem;
}

.values__top-row {
  position: relative;
  left: 45px;
  max-width: 755px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991.98px) {
  .values__top-row {
    left: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .values__top-row {
    margin-bottom: 0 !important;
  }
}

.values__bottom-row {
  position: relative;
  left: 45px;
  max-width: 755px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991.98px) {
  .values__bottom-row {
    left: 0;
  }
}

.r-benefits-1__inner {
  max-width: 43.3125rem;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 1199.98px) {
  .benefits {
    flex-direction: column;
  }
}

.benefits__item {
  flex-shrink: 0;
  background-color: #fff;
  width: calc(20% - 32px);
}

@media (max-width: 1199.98px) {
  .benefits__item {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .benefits__item:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}

.benefits__inner {
  padding: 1.5rem;
  height: 100%;
}

.benefits__img-wrap {
  height: 3.25rem;
  margin-bottom: 1rem;
}

.benefits__header span {
  display: block;
  text-align: center;
}

/* .section-job-offers {
    background-color: #f9f9fa;
    padding-top: 3.5rem;
    padding-bottom: 7.5rem
} */

/* @media (max-width:575.98px) {
    .section-job-offers {
        padding-bottom: 3.875rem
    }
} */

.section-job-offers .side-tabs .nav-link {
  cursor: pointer;
  width: 100%;
}

.section-job-offers .side-tabs .form-check {
  padding: 0;
  margin: 0 0 0 auto;
}

/* 
.section-job-offers .side-tabs .nav {
    padding-right: 8.5rem
} */

@media (max-width: 991.98px) {
  .section-job-offers .side-tabs .nav {
    padding-right: 0;
  }
}

.section-job-offers .job-link-outer.hide {
  display: none;
}

.section-job-offers .job-title--mobile {
  font-size: 2rem;
}

@media (min-width: 992px) {
  .section-job-offers .job-title--mobile {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .section-job-offers .job-title--desktop {
    display: none;
  }
}

@media (min-width: 992px) {
  .section-job-offers .collapse.dont-collapse-sm {
    display: block;
    height: auto !important;
    visibility: visible;
  }
}

.search-tags {
  flex-wrap: wrap;
}

.search-tags li {
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  padding: 0.3125rem 0.5rem 0.3125rem 1rem;
  background-color: #e8f9ff;
  color: #004057;
  margin-bottom: 1rem;
}

.search-tags__label,
.search-tags li:not(:last-child) {
  margin-right: 1rem;
}

.search-tags__link {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 100px;
  background-color: #fff;
  position: relative;
  justify-content: center;
  align-items: center;
}

.search-tags__link:hover:after {
  transform: scale(1.2);
}

.search-tags__link:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.41 1.718A1 1 0 109.996.303l-3.89 3.89L2.217.302A1 1 0 00.803 1.718l3.89 3.889-3.89 3.889a1 1 0 101.414 1.414l3.89-3.89 3.889 3.89a1 1 0 001.414-1.414l-3.89-3.89 3.89-3.888z' fill='%233ABFEE'/%3E%3C/svg%3E");
  display: inline-block;
  width: 12px;
  height: 12px;
  background-size: contain;
  position: relative;
  background-repeat: no-repeat;
  background-position: 50%;
  transition: all 0.25s ease-in-out;
}

.job-offer .h2:after,
.job-offer h2:after {
  content: "";
  display: inline-block;
  width: 0.375rem;
  background-color: #3abfee;
  position: absolute;
  top: 1.75rem;
  bottom: 0;
  left: 0;
}

.job-offer .h2:before,
.job-offer h2:before {
  left: -1.5rem;
}

.job-offer p {
  margin-bottom: 1.5rem;
}

.job-offer .h6,
.job-offer .section-job-offers .side-tabs .tab-title,
.job-offer h6,
.section-job-offers .side-tabs .job-offer .tab-title {
  font-weight: 400;
}

.job-offer ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.job-offer ul li:before {
  content: "";
  display: inline-flex;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 100px;
  background-color: #3abfee;
  margin-right: 0.625rem;
  position: relative;
  top: -3px;
}

.job-offer ul li:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

/* .job-apply {
    max-width: 22rem;
    padding: 2rem 3.375rem;
    background-color: #fff;
    align-self: flex-start;
    width: 100%;
    top: 125px
} */

@media (max-width: 767.98px) {
  .job-apply {
    max-width: 100%;
  }
}

.job-apply .h6,
.job-apply .section-job-offers .side-tabs .tab-title,
.job-apply h6,
.section-job-offers .side-tabs .job-apply .tab-title {
  position: relative;
}

.job-apply a {
  width: 100%;
  position: relative;
}

.section-img-text {
  background-color: #f9f9fa;
}

@media (min-width: 992px) {
  .c-img {
    padding-right: 6rem;
  }
}

@media (max-width: 991.98px) {
  .c-img {
    margin-bottom: 2rem;
  }
}

.img-text__img-wrap {
  max-height: 32.9375rem;
}

.r-lense-2 {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.lense {
  height: 19rem;
  display: block;
}

.c-lense {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-bottom: 1rem;
}

.section-contact-form.dark label {
  color: #e1e1e7;
}

.section-contact-form.dark .h5,
.section-contact-form.dark h5 {
  color: #f3f3f7;
}

.section-contact-form.dark .h4,
.section-contact-form.dark h4 {
  margin-bottom: 1.5rem;
  color: #fff;
}

.section-contact-form.dark .h4:before,
.section-contact-form.dark h4:before {
  display: none;
}

.section-contact-form.dark .decor-line {
  margin-bottom: 1.625rem;
}

.section-contact-form.light {
  background-color: #fff;
}

.section-contact-form.light .decor-line {
  display: none;
}

.section-contact-form.light label {
  color: #9295a5;
}

.section-contact-form.light .h4,
.section-contact-form.light h4 {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e1e1e7;
}

.section-contact-form.light .contact-form__top-wrap {
  border-bottom: 1px solid #e1e1e7;
}

@media (max-width: 575.98px) {
  .section-contact-form .contact-form .h5,
  .section-contact-form .contact-form h5 {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .section-contact-form .contact-form__inner .h4,
  .section-contact-form .contact-form__inner h4 {
    font-size: 2rem;
    text-align: center;
  }
}

.section-contact-form .contact-form textarea {
  min-height: 12.5rem;
}

.section-contact-form .contact-form .btn {
  min-width: 15.1875rem;
  align-self: flex-end;
}

@media (max-width: 575.98px) {
  .section-contact-form .contact-form .btn {
    min-width: 100%;
  }
}

.section-contact-ask {
  padding: 2.5rem;
}

.section-contact-ask.dark {
  background-color: #004057;
}

.section-contact-ask.dark label {
  color: #e1e1e7;
}

.section-contact-ask.dark .h5,
.section-contact-ask.dark h5 {
  color: #f3f3f7;
}

.section-contact-ask.dark .h4,
.section-contact-ask.dark h4 {
  color: #fff;
}

.section-contact-ask.light {
  background-color: #fff;
}

.section-contact-ask.light label {
  color: #9295a5;
}

.section-contact-ask .contact-form .col {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (max-width: 991.98px) {
  .section-contact-ask .contact-form .col {
    padding: 0;
  }
}

.section-contact-ask .contact-form .row {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

.section-contact-ask
  .contact-form__panel-1
  .form-group:not(.form-group--textarea) {
  max-width: 12.6875rem;
}

@media (max-width: 575.98px) {
  .section-contact-ask
    .contact-form__panel-1
    .form-group:not(.form-group--textarea) {
    max-width: unset;
  }
}

.section-contact-ask .contact-form__panel-1 .form-group textarea {
  min-height: 9.65rem;
}

.section-contact-ask .contact-form__trash svg {
  max-width: 30px;
}

.section-contact-ask .contact-form .h5,
.section-contact-ask .contact-form h5 {
  margin-bottom: 0.8125rem;
}

.section-contact-ask .contact-form .form-check {
  margin-bottom: 0;
}

.section-contact-ask .contact-form .form-check:not(:last-child) {
  margin-bottom: 1rem;
}

.section-contact-ask .contact-form__top-wrap {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 575.98px) {
  .section-contact-ask .contact-form__inner {
    flex-direction: column;
  }
}

.section-contact-ask .contact-form .form-group {
  margin-bottom: 1rem;
}

.section-contact-ask .contact-form .form-group--last {
  margin-bottom: 2rem;
}

.section-contact-ask .contact-form .form-group--datapicker .inner-wrap {
  position: relative;
}

.section-contact-ask .contact-form .form-group--datapicker .inner-wrap:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none'%3E%3Cpath d='M15 2.25h-.75V.75h-1.5v1.5h-7.5V.75h-1.5v1.5H3c-.825 0-1.5.675-1.5 1.5v12c0 .825.675 1.5 1.5 1.5h12c.825 0 1.5-.675 1.5-1.5v-12c0-.825-.675-1.5-1.5-1.5zm0 13.5H3V7.5h12v8.25zM15 6H3V3.75h12V6z' fill='%233ABFEE'/%3E%3C/svg%3E");
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  transition: all 0.25s ease-in-out;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.section-contact-ask .contact-form textarea {
  min-height: 12.5rem;
}

.section-contact-ask .contact-form .btn {
  min-width: 15.1875rem;
  align-self: flex-end;
}

@media (max-width: 575.98px) {
  .section-contact-ask .contact-form .btn {
    width: 100%;
    min-width: unset;
  }
}

.section-contact-ask .product-wrapper {
  flex-direction: row;
}

@media (max-width: 991.98px) {
  .section-contact-ask .product-wrapper {
    flex-direction: column;
  }
}

.section-contact-ask .product-wrapper .product-data {
  padding: 0.8125rem 1.4375rem;
}

.section-contact-ask .product-wrapper .product-data .form-group {
  flex-basis: calc(50% - 10px);
  max-width: calc(50% - 10px);
}

.section-contact-ask .product-wrapper .product-data .form-group--last {
  flex-basis: 100%;
  max-width: 100%;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .section-contact-ask .product-wrapper .product-data .form-group {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.section-contact-ask .product-wrapper .product-box__img {
  max-width: 150px;
}

@media (max-width: 767.98px) {
  .section-contact-ask .wpcf7-response-output {
    margin: 0 !important;
  }
}

.product-box {
  padding: 0.8125rem 1.4375rem;
  margin-bottom: 1rem;
}

.product-box__img-wrap {
  margin-right: 1.9375rem;
}

.product-box__label-value {
  color: #4a4141;
}

.section-contact-tabs {
  background-color: #f9f9fa;
}

@media (min-width: 1400px) {
  .section-contact-tabs .contact-form__inner input {
    max-width: 25.9375rem;
  }
}

.large-tabs .nav-item {
  width: 50%;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .large-tabs .nav-item {
    width: 100%;
  }
}

.large-tabs .nav-link {
  width: 100%;
  border-radius: 0;
  border: 1px solid #e1e1e7;
}

.large-tabs .nav-link.active,
.large-tabs .nav-link:focus {
  background-color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 2px solid #3abfee;
  outline: none;
}

.large-tabs .nav-link .h5,
.large-tabs .nav-link h5 {
  font-size: 1.125rem;
}

@media (max-width: 991.98px) {
  .large-tabs .tab-content__inner {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 991.98px) {
  .large-tabs .tab-content__form {
    width: 100%;
  }
}

.large-tabs .tab-content__vcard {
  width: 50%;
  flex-shrink: 0;
}

@media (max-width: 1399.98px) {
  .large-tabs .tab-content__vcard {
    padding-right: 0;
  }
}

@media (max-width: 991.98px) {
  .large-tabs .tab-content__vcard {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .large-tabs .tab-content__vcard {
  }
}

@media (max-width: 575.98px) {
  .large-tabs .tab-content__vcard .h4,
  .large-tabs .tab-content__vcard h4 {
    font-size: 2rem;
  }
}

.vcard:before {
  content: "";
  position: absolute;
  top: -0.5rem;
  bottom: -0.5rem;
  left: -0.5rem;
  right: -0.5rem;
  border: 1px solid #fff;
  display: block;
}

@media (max-width: 575.98px) {
  .vcard:before {
    display: none;
  }
}

/* .vcard__img-wrap {
    width: 4rem;
    height: 4rem;
    border-radius: 100px;
    margin-right: 1.25rem;
    flex-shrink: 0
} */

.vcard__content-wrap,
.vcard__img-wrap {
  position: relative;
}

.vcard__desc {
  max-width: 100%;
}

.vcard__label:not(.nohover):hover {
  color: #3abfee;
}

.section-gmap {
  height: 27.375rem;
  overflow: hidden;
}

.bubble {
  background-color: #fff;
  padding: 1.25rem 2rem;
  max-width: 20rem;
  position: absolute;
  z-index: 1;
  left: 20%;
  top: 30%;
  border-radius: 0.25rem;
  filter: drop-shadow(0 22px 20px rgba(0, 0, 0, 0.05));
}

.bubble:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-color: #fff transparent transparent;
  border-style: solid;
  border-width: 0.625rem 0.625rem 0;
  bottom: -0.625rem;
  position: absolute;
  left: 1.125rem;
}

.bubble p {
  font-weight: 500;
}

.section-news {
  padding: 3.125rem 0;
  background-color: #f3f3f7;
}

.section-news .r-button {
  padding-top: 0.5rem;
}

.news-title-wrap {
  max-width: 43.3125rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

.news-item {
  margin-bottom: 2.5rem;
}

.news-item__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 58.0625rem;
  margin-left: auto;
  margin-right: auto;
}

.news-item__header-wrap {
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
}

.news-item__header {
  color: #9295a5;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 2.25rem;
}

.news-item__header:before {
  right: calc(0.25em + 100%);
}

.news-item__header:after,
.news-item__header:before {
  content: "";
  display: block;
  height: 1px;
  border-bottom: 1px dashed #a8b7bc;
  position: absolute;
  top: calc(50% + 0.05em);
  width: 99999px;
}

.news-item__header:after {
  left: calc(0.25em + 100%);
}

.news-item__content {
  position: relative;
  align-items: center;
}

.news-item__content:before {
  content: "";
  position: absolute;
  border: 1px solid #fff;
  top: -8px;
  bottom: -8px;
  left: -8px;
  right: -8px;
}

.news-item__img-wrap {
  width: 25rem;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 991.98px) {
  .news-item__img-wrap {
    width: 12.5rem;
  }
}

@media (max-width: 575.98px) {
  .news-item__img-wrap {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .news-item__img {
    max-height: 250px;
  }
}

.news-item__text-wrap {
  background-color: #fff;
  padding: 2.5rem;
  position: relative;
  align-self: stretch;
}

.news-item__date {
  font-size: 0.75rem;
}

.r-news-items__img-wrap {
  top: 31.5625rem;
}

.section-plain-text {
  background-color: #f9f9fa;
}

.section-plain-text .container {
  max-width: 49.25rem;
  margin-left: auto;
  margin-right: auto;
}

.section-plain-text span {
  display: block;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .section-modal--form .modal-dialog {
    max-width: 34.375rem;
  }
}

@media (min-width: 992px) {
  .section-modal--ask .modal-dialog {
    max-width: 66.1875rem;
  }
}

.btn-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 100px;
  background-color: #e8f9ff;
  opacity: 1;
  padding: 0;
  background-size: 1.4375rem 1.375rem;
}

.section-ask-widget {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 0;
  z-index: 999;
  transition: height 0.3s;
}

.section-ask-widget__wrapper {
  max-height: 65px;
  background-color: #3abfee;
  box-shadow: 0 1px 0 #ececf3;
  padding: 0.75rem 0.25rem;
}

@media (max-width: 767.98px) {
  .section-ask-widget__wrapper {
    max-height: 100px;
    height: 100px;
  }
}

.section-ask-widget__left,
.section-ask-widget__right {
  height: 100%;
  display: flex;
  align-items: center;
}

.section-ask-widget__left {
  color: #fff;
  justify-content: center;
}

.section-ask-widget__left p {
  margin: 0;
}

@media (max-width: 767.98px) {
  .section-ask-widget__left p {
    margin-bottom: 0.75rem;
  }
}

.section-ask-widget__left p span {
  font-weight: 500;
}

.section-ask-widget__right {
  justify-content: flex-end;
}

@media (max-width: 767.98px) {
  .section-ask-widget__right {
    justify-content: center;
  }
}

.section-ask-widget__right-trash {
  margin-right: 0.75rem;
  margin-left: 30%;
}

@media (max-width: 991.98px) {
  .section-ask-widget__right-trash {
    margin-left: 15%;
  }
}

@media (max-width: 767.98px) {
  .section-ask-widget__right-trash {
    margin-left: 0.75rem;
  }
}

.section-ask-widget__right-trash svg {
  height: 25px;
  width: 25px;
}

.section-cookies {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  transition: height 0.3s;
  padding: 20px 0;
  display: none;
}

.section-cookies p {
  margin-bottom: 0 !important;
}

.section-cookies__buttons {
  text-align: center;
}

.footer-info p {
  color: #9295a5;
  opacity: 0.8;
}

.footer-header {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-menu {
  margin-bottom: 0;
}

.footer-menu__item {
  display: flex;
  min-height: 1.5rem;
}

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

.footer-menu__link {
  color: #9295a5;
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

.footer-box {
  margin-bottom: 2.75rem;
}

.footer-box .h6,
.footer-box .section-job-offers .side-tabs .tab-title,
.footer-box h6,
.section-job-offers .side-tabs .footer-box .tab-title {
  font-size: 1rem;
  font-weight: 500;
}

.footer-box__item:not(:last-child) {
  margin-bottom: 1.25rem;
}

.footer-box__img-wrap {
  margin-right: 0.75rem;
  width: 1rem;
  display: flex;
}

.footer-box__link {
  color: #9295a5;
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  line-height: 1.2;
  display: flex;
  font-weight: 600;
}

.footer-social {
  display: flex;
}

.footer-social__item:not(:last-of-type) {
  margin-right: 1.5rem;
}

.footer-social__link {
  display: inline-flex;
  height: 2.875rem;
  width: 2.875rem;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  background-color: #f9f9fa;
}

.footer-social__link:hover img {
  transform: scale(1.1);
}

.footer-social__img {
  transition: all 0.25s ease-in-out;
  max-width: 18px;
  max-height: 18px;
}

.r-footer-1:after {
  content: "";
  width: calc(100% - 24px);
  left: 0.75rem;
  display: block;
  bottom: 0;
  height: 1px;
  background-color: #e1e1e7;
  position: absolute;
}

@media (max-width: 575.98px) {
  .r-footer-1:after {
    display: none;
  }
}

.r-footer-3 a {
  color: #9295a5;
  opacity: 0.8;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
}

.r-footer-3 a:hover {
  color: #3abfee;
}

@media (min-width: 768px) {
  .r-footer-3 li {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .r-footer-3 li {
    min-height: 24px;
  }

  .r-footer-3 li a {
    height: 100%;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .submenu {
    top: 100%;
    bottom: unset;
  }

  .navbar .nav-item.has-megamenu .dropdown-menu .mm-item {
    padding-bottom: 15px;
  }
}

@media screen and (min-width: 1199px) and (max-height: 800px) {
  .navbar .nav-item.has-megamenu .dropdown-menu {
    height: calc(100vh - 150px);
    overflow-y: auto;
  }

  .navbar .nav-item.has-megamenu .dropdown-menu .row {
    position: relative;
  }

  .with-submenu .mm-item:hover .submenu {
    height: auto !important;
  }
}
