@charset "UTF-8";
/**
 * Swiper 12.1.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 24, 2026
 */
:root {
    --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

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

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

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

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

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

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

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

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

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}

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

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

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
}

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

.swiper-3d {
    perspective: 1200px;
    .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
}
}

/* CSS Mode */
.swiper-css-mode {
    > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
 /* For Firefox */
    -ms-overflow-style: none;
 /* For Internet Explorer and Edge */
    &: :-webkit-scrollbar {
      display: none;
}
  }
  >.swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
}
    >.swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-slides-offset-before);
    scroll-margin-inline-start: var(--swiper-slides-offset-before);
}
    >.swiper-wrapper > .swiper-slide:last-child {
    margin-inline-end: var(--swiper-slides-offset-after);
}
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
}
    >.swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-slides-offset-before);
    scroll-margin-block-start: var(--swiper-slides-offset-before);
}
    >.swiper-wrapper > .swiper-slide:last-child {
    margin-block-end: var(--swiper-slides-offset-after);
}
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
}
    >.swiper-wrapper > .swiper-slide {
    scroll-snap-align: none;
}
  }
  &.swiper-centered {
    > .swiper-wrapper: :before {
      content: "";
    flex-shrink: 0;
    order: 9999;
}
    >.swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always;
}
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide: first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
}
    >.swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
}
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide: first-child {
      margin-block-start: var(--swiper-centered-offset-before);
}
    >.swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
}
  }
}

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

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

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

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

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

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

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

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

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

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

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

    100% {
        transform: rotate(360deg);
    }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode {
    .swiper-wrapper: :after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}
}

.swiper-virtual.swiper-css-mode.swiper-horizontal {
    .swiper-wrapper: :after {
    height: 1px;
    width: var(--swiper-virtual-size);
}
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
    .swiper-wrapper: :after {
    width: 1px;
    height: var(--swiper-virtual-size);
}
}

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

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    width: var(--swiper-navigation-size);
    height: var(--swiper-navigation-size);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
    &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
}

.swiper-navigation-disabled & {
    display: none !important;
}

::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
}
}

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

.swiper-button-prev,
.swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
}

.swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
    :: slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
}
}

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

.swiper-horizontal {
    .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    margin-left: 0;
}

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

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

.swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    :: slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
}
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    :: slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
}
  }
}

.swiper-vertical {
    .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
}

.swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    :: slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
}
  }

.swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    :: slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
}
  }
}

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

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

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

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

/* Bullets */
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
    .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
}

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

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

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

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

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

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

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
    button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable & {
    cursor: pointer;
}
  &:only-child {
    display: none !important;
}
}

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

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0px, -50%, 0);
    .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
}
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
    transition: 200ms transform, 200ms top;
}
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
    .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: 200ms transform, 200ms left;
}
  }
}

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

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

/* Progress */
.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
    position: absolute;
    .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
}

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

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

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

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

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    position: relative;
    touch-action: none;
    background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
    .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
}

.swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

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

/* Zoom container styles start */
.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
}

/* Zoom container styles end */
.swiper-slide-zoomed {
    cursor: move;
    touch-action: none;
}

/* a11y */
.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-thumbs {
    .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
}
}

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

.swiper-grid > .swiper-wrapper {
    flex-wrap: wrap;
}

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

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

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

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

.swiper.swiper-cube {
    overflow: visible;
}

.swiper-cube {
    .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
}
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
}

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

.swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
}

.swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
    &: before {
      content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px);
}
  }
}

.swiper-cube {
    .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
}
}

/* Cube slide shadows start */
.swiper-cube {
    .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
}
}

/* Cube slide shadows end */
.swiper.swiper-flip {
    overflow: visible;
}

.swiper-flip {
    .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
}
  }

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

/* Flip slide shadows start */
.swiper-flip {
    .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
}
}

/* Flip slide shadows end */
.swiper-creative {
    .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
}
}

.swiper.swiper-cards {
    overflow: visible;
}

.swiper-cards {
    .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
}
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    position: relative;
}

body section {
    padding-top: 6vmax;
    padding-bottom: 6vmax;
}

body img {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.bttn {
    background-color: #ff7508;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    line-height: 2em;
    padding: 0 1em;
    border-radius: clamp(8px, 0.5vw, 12px);
    transition: box-shadow 0.2s, background-color 0.2s;
}

.bttn:hover {
    background-color: rgb(255, 145.4939271255, 59);
    box-shadow: 0 2px 12px rgba(255, 117, 8, 0.7);
}

header {
    position: relative;
    position: sticky;
    top: 0;
    margin-top: 2vmax;
    padding: 0.5em 0;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2;
}

header:after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.062745098), rgba(0, 0, 0, 0));
}

header .row {
    margin-bottom: 0;
}

header .row nav {
    display: flex;
    justify-content: space-between;
}

header .row nav ul {
    margin: 0;
    padding: 0;
    display: flex;
}

header .row nav ul li {
    list-style: none;
    display: block;
}

header .row nav ul li.sidenav-wrapper i {
    font-size: 2rem;
}

@media (min-width: 1200.5px) {
    header .row nav ul li.sidenav-wrapper {
        display: none;
    }
}

@media (max-width: 1200.5px) {
    header .row nav ul li:not(.sidenav-wrapper) {
        display: none;
    }
}

header .row nav ul li a {
    display: flex;
    align-items: center;
    padding: 0 1.2em;
    height: 100%;
    color: #333;
    text-decoration: none;
    border-radius: 12px;
}

header .row nav ul li a:hover {
    background-color: rgba(0, 0, 0, 0.062745098);
    transition: background-color 0.2s;
}

.sidenav a {
    text-decoration: none;
}

.sidenav {
    position: fixed;
    width: 300px;
    left: 0;
    top: 0;
    margin: 0;
    transform: translateX(-100%);
    height: 100%;
    height: calc(100% + 60px);
    height: -moz-calc(100%);
    padding-bottom: 60px;
    background-color: #fff;
    z-index: 999;
    overflow-y: auto;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateX(-105%);
    padding-left: 0;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.sidenav.right-aligned {
    right: 0;
    transform: translateX(105%);
    left: auto;
    transform: translateX(100%);
}

.sidenav .collapsible {
    margin: 0;
}

.sidenav li {
    float: none;
    line-height: 48px;
    list-style: none;
}

.sidenav li.active {
    background-color: rgba(0, 0, 0, 0.05);
}

.sidenav li > a,
.sidenav li > span {
    color: rgba(0, 0, 0, 0.87);
    display: block;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    line-height: 48px;
    padding: 0 32px;
}

.sidenav li > a:hover,
.sidenav li > span:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.sidenav li > a.btn, .sidenav li > a.btn-large, .sidenav li > a.btn-flat, .sidenav li > a.btn-floating,
.sidenav li > span.btn,
.sidenav li > span.btn-large,
.sidenav li > span.btn-flat,
.sidenav li > span.btn-floating {
    margin: 10px 15px;
}

.sidenav li > a > i, .sidenav li > a > [class^=mdi-],
.sidenav li > a li > a > [class*=mdi-], .sidenav li > a > i.material-icons,
.sidenav li > span > i,
.sidenav li > span > [class^=mdi-],
.sidenav li > span li > a > [class*=mdi-],
.sidenav li > span > i.material-icons {
    float: left;
    height: 48px;
    line-height: 48px;
    margin: 0 32px 0 0;
    width: 24px;
    color: rgba(0, 0, 0, 0.54);
}

.sidenav .divider {
    margin: 8px 0 0 0;
}

.sidenav .subheader:hover {
    background-color: transparent;
}

.sidenav .subheader {
    cursor: initial;
    pointer-events: none;
    color: rgba(0, 0, 0, 0.54);
    font-size: 14px;
    font-weight: 500;
    line-height: 48px;
}

.sidenav .user-view {
    position: relative;
    padding: 32px 32px 0;
    margin-bottom: 8px;
}

.sidenav .user-view > a:hover {
    background-color: transparent;
}

.sidenav .user-view > a {
    height: auto;
    padding: 0;
}

.sidenav .user-view .background {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.sidenav .user-view .circle,
.sidenav .user-view .name,
.sidenav .user-view .email {
    display: block;
}

.sidenav .user-view .circle {
    height: 64px;
    width: 64px;
}

.sidenav .user-view .name,
.sidenav .user-view .email {
    font-size: 14px;
    line-height: 24px;
}

.sidenav .user-view .name {
    margin-top: 16px;
    font-weight: 500;
}

.sidenav .user-view .email {
    padding-bottom: 16px;
    font-weight: 400;
}

.drag-target.right-aligned {
    right: 0;
}

.drag-target {
    height: 100%;
    width: 10px;
    position: fixed;
    top: 0;
    z-index: 998;
}

.sidenav.sidenav-fixed.right-aligned {
    right: 0;
    left: auto;
}

.sidenav.sidenav-fixed {
    left: 0;
    transform: translateX(0);
    position: fixed;
}

@media (max-width: 850px) {
    .sidenav.sidenav-fixed {
        transform: translateX(-105%);
    }

    .sidenav.sidenav-fixed.right-aligned {
        transform: translateX(105%);
    }

    .sidenav > a {
        padding: 0 16px;
    }

    .sidenav .user-view {
        padding: 16px 16px 0;
    }
}

.sidenav .collapsible-body > ul:not(.collapsible) > li.active,
.sidenav.sidenav-fixed .collapsible-body > ul:not(.collapsible) > li.active {
    background-color: #9dd800;
}

.sidenav .collapsible-body > ul:not(.collapsible) > li.active a,
.sidenav.sidenav-fixed .collapsible-body > ul:not(.collapsible) > li.active a {
    color: #fff;
}

.sidenav .collapsible-body {
    padding: 0;
}

.sidenav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    height: 120vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 997;
    display: none;
}

@font-face {
    font-family: "icon";
  src: url("../fonts/icon.eot?32805198");
  src: url("../fonts/icon.eot?32805198#iefix") format("embedded-opentype"), url("../fonts/icon.woff2?32805198") format("woff2"), url("../fonts/icon.woff?32805198") format("woff"), url("../fonts/icon.ttf?32805198") format("truetype"), url("../fonts/icon.svg?32805198#icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'icon';
    src: url('../font/icon.svg?32805198#icon') format('svg');
  }
}
*/
[class^=i-]:before,
[class*=" i-"]:before {
    font-family: "icon";
    font-style: normal;
    font-weight: normal;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
  /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
    margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.i-clock:before {
    content: "\e800";
} /* '' */
.i-envelope:before {
    content: "\e801";
} /* '' */
.i-graph:before {
    content: "\e803";
} /* '' */
.i-group:before {
    content: "\e804";
} /* '' */
.i-max:before {
    content: "\e805";
} /* '' */
.i-phone:before {
    content: "\e806";
} /* '' */
.i-telegram:before {
    content: "\e807";
} /* '' */
.i-2br:before {
    content: "\e808";
} /* '' */
.i-calendar:before {
    content: "\e809";
} /* '' */
.i-chevron-down:before {
    content: "\e80a";
} /* '' */
.i-chevron-right:before {
    content: "\e80b";
} /* '' */
.i-gerb:before {
    content: "\e80c";
} /* '' */
.i-menu:before {
    content: "\e80d";
} /* '' */
@font-face {
    font-family: "TT Travels Text";
  src: url("../fonts/TT_Travels_Text_Regular.woff2") format("woff2");
  font-weight: normal;
}

@font-face {
    font-family: "TT Travels Text";
  src: url("../fonts/TT_Travels_Text_Bold.woff2") format("woff2");
  font-weight: bold;
}

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

body {
    font-family: "TT Travels Text";
}

body h1 {
    font-size: clamp(26px, 3vw, 72px);
}

body h2, body .h2 {
    font-size: clamp(26px, 3vw, 64px);
    margin: 0.5em 0;
    display: block;
    color: #0e5a67;
}

body {
    font-size: clamp(16px, 1.3vw, 22px);
}

body .col h1:first-of-type, body .col h2:first-of-type, body .col h3:first-of-type, body .col h4:first-of-type, body .col h5:first-of-type {
    margin-top: 0;
}

footer {
    padding: 4vmax 0;
    background-color: #0e5a67;
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a.bttn-outlined {
    border: 1px solid #fff;
    line-height: 3em;
    display: inline-block;
    padding: 0 1.35em;
    box-sizing: border-box;
    transition: background-color 0.2s;
    border-radius: clamp(6px, 1vw, 12px);
}

@media (max-width: 550px) {
    footer a.bttn-outlined {
        width: 80%;
        text-align: center;
    }
}

footer a.bttn-outlined i {
    font-style: normal;
}

@media (max-width: 650px) {
    footer a.bttn-outlined i.info {
        display: none;
    }

    footer a.bttn-outlined i.about {
        text-transform: capitalize;
    }
}

@media (max-width: 460px) {
    footer a.bttn-outlined i.educational {
        display: none;
    }
}

footer a.bttn-outlined:hover {
    background-color: rgba(255, 255, 255, 0.062745098);
}

footer a.bttn-white {
    background-color: rgba(255, 255, 255, 0.8);
    color: #0e5a67;
    display: inline-block;
    line-height: 3em;
    padding: 0 1.35em;
    margin-bottom: 0.5em;
    box-sizing: border-box;
    transition: background-color 0.2s;
    border-radius: clamp(6px, 1vw, 12px);
}

@media (max-width: 550px) {
    footer a.bttn-white {
        width: 80%;
        text-align: center;
    }
}

footer a.bttn-white:hover {
    background-color: #fff;
}

.container {
    margin: 0 auto;
    max-width: 1901px;
    width: 95%;
}

@media (min-width: 850px) {
    .container {
        width: 90%;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 85%;
    }
}

.col .row {
    margin-left: -10px;
    margin-right: -10px;
}

.section {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.section.no-pad {
    padding: 0;
}

.section.no-pad-bot {
    padding-bottom: 0;
}

.section.no-pad-top {
    padding-top: 0;
}

.row {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.row.flex {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}

.row.flex > .col {
    float: none;
}

.row.vcenter {
    align-items: center;
}

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

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

.row .col {
    float: left;
    box-sizing: border-box;
    padding: 0 10px;
    min-height: 1px;
    width: 100%;
}

.row .col[class*=push-], .row .col[class*=pull-] {
    position: relative;
}

@media (max-width: 400px) {
    .row .col.t1 {
        width: 8.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.t2 {
        width: 16.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.t3 {
        width: 25%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.t4 {
        width: 33.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.t5 {
        width: 41.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.t6 {
        width: 50%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.t7 {
        width: 58.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.t8 {
        width: 66.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.t9 {
        width: 75%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.t10 {
        width: 83.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.t11 {
        width: 91.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.t12 {
        width: 100%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.offset-t1 {
        margin-left: 8.3333333333%;
    }

    .row .col.pull-t1 {
        right: 8.3333333333%;
    }

    .row .col.push-t1 {
        left: 8.3333333333%;
    }

    .row .col.offset-t2 {
        margin-left: 16.6666666667%;
    }

    .row .col.pull-t2 {
        right: 16.6666666667%;
    }

    .row .col.push-t2 {
        left: 16.6666666667%;
    }

    .row .col.offset-t3 {
        margin-left: 25%;
    }

    .row .col.pull-t3 {
        right: 25%;
    }

    .row .col.push-t3 {
        left: 25%;
    }

    .row .col.offset-t4 {
        margin-left: 33.3333333333%;
    }

    .row .col.pull-t4 {
        right: 33.3333333333%;
    }

    .row .col.push-t4 {
        left: 33.3333333333%;
    }

    .row .col.offset-t5 {
        margin-left: 41.6666666667%;
    }

    .row .col.pull-t5 {
        right: 41.6666666667%;
    }

    .row .col.push-t5 {
        left: 41.6666666667%;
    }

    .row .col.offset-t6 {
        margin-left: 50%;
    }

    .row .col.pull-t6 {
        right: 50%;
    }

    .row .col.push-t6 {
        left: 50%;
    }

    .row .col.offset-t7 {
        margin-left: 58.3333333333%;
    }

    .row .col.pull-t7 {
        right: 58.3333333333%;
    }

    .row .col.push-t7 {
        left: 58.3333333333%;
    }

    .row .col.offset-t8 {
        margin-left: 66.6666666667%;
    }

    .row .col.pull-t8 {
        right: 66.6666666667%;
    }

    .row .col.push-t8 {
        left: 66.6666666667%;
    }

    .row .col.offset-t9 {
        margin-left: 75%;
    }

    .row .col.pull-t9 {
        right: 75%;
    }

    .row .col.push-t9 {
        left: 75%;
    }

    .row .col.offset-t10 {
        margin-left: 83.3333333333%;
    }

    .row .col.pull-t10 {
        right: 83.3333333333%;
    }

    .row .col.push-t10 {
        left: 83.3333333333%;
    }

    .row .col.offset-t11 {
        margin-left: 91.6666666667%;
    }

    .row .col.pull-t11 {
        right: 91.6666666667%;
    }

    .row .col.push-t11 {
        left: 91.6666666667%;
    }

    .row .col.offset-t12 {
        margin-left: 100%;
    }

    .row .col.pull-t12 {
        right: 100%;
    }

    .row .col.push-t12 {
        left: 100%;
    }
}

@media (min-width: 400px) {
    .row .col.xs1 {
        width: 8.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xs2 {
        width: 16.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xs3 {
        width: 25%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xs4 {
        width: 33.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xs5 {
        width: 41.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xs6 {
        width: 50%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xs7 {
        width: 58.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xs8 {
        width: 66.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xs9 {
        width: 75%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xs10 {
        width: 83.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xs11 {
        width: 91.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xs12 {
        width: 100%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.offset-xs1 {
        margin-left: 8.3333333333%;
    }

    .row .col.pull-xs1 {
        right: 8.3333333333%;
    }

    .row .col.push-xs1 {
        left: 8.3333333333%;
    }

    .row .col.offset-xs2 {
        margin-left: 16.6666666667%;
    }

    .row .col.pull-xs2 {
        right: 16.6666666667%;
    }

    .row .col.push-xs2 {
        left: 16.6666666667%;
    }

    .row .col.offset-xs3 {
        margin-left: 25%;
    }

    .row .col.pull-xs3 {
        right: 25%;
    }

    .row .col.push-xs3 {
        left: 25%;
    }

    .row .col.offset-xs4 {
        margin-left: 33.3333333333%;
    }

    .row .col.pull-xs4 {
        right: 33.3333333333%;
    }

    .row .col.push-xs4 {
        left: 33.3333333333%;
    }

    .row .col.offset-xs5 {
        margin-left: 41.6666666667%;
    }

    .row .col.pull-xs5 {
        right: 41.6666666667%;
    }

    .row .col.push-xs5 {
        left: 41.6666666667%;
    }

    .row .col.offset-xs6 {
        margin-left: 50%;
    }

    .row .col.pull-xs6 {
        right: 50%;
    }

    .row .col.push-xs6 {
        left: 50%;
    }

    .row .col.offset-xs7 {
        margin-left: 58.3333333333%;
    }

    .row .col.pull-xs7 {
        right: 58.3333333333%;
    }

    .row .col.push-xs7 {
        left: 58.3333333333%;
    }

    .row .col.offset-xs8 {
        margin-left: 66.6666666667%;
    }

    .row .col.pull-xs8 {
        right: 66.6666666667%;
    }

    .row .col.push-xs8 {
        left: 66.6666666667%;
    }

    .row .col.offset-xs9 {
        margin-left: 75%;
    }

    .row .col.pull-xs9 {
        right: 75%;
    }

    .row .col.push-xs9 {
        left: 75%;
    }

    .row .col.offset-xs10 {
        margin-left: 83.3333333333%;
    }

    .row .col.pull-xs10 {
        right: 83.3333333333%;
    }

    .row .col.push-xs10 {
        left: 83.3333333333%;
    }

    .row .col.offset-xs11 {
        margin-left: 91.6666666667%;
    }

    .row .col.pull-xs11 {
        right: 91.6666666667%;
    }

    .row .col.push-xs11 {
        left: 91.6666666667%;
    }

    .row .col.offset-xs12 {
        margin-left: 100%;
    }

    .row .col.pull-xs12 {
        right: 100%;
    }

    .row .col.push-xs12 {
        left: 100%;
    }
}

@media (min-width: 600px) {
    .row .col.s1 {
        width: 8.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.s2 {
        width: 16.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.s3 {
        width: 25%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.s4 {
        width: 33.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.s5 {
        width: 41.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.s6 {
        width: 50%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.s7 {
        width: 58.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.s8 {
        width: 66.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.s9 {
        width: 75%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.s10 {
        width: 83.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.s11 {
        width: 91.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.s12 {
        width: 100%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.offset-s1 {
        margin-left: 8.3333333333%;
    }

    .row .col.pull-s1 {
        right: 8.3333333333%;
    }

    .row .col.push-s1 {
        left: 8.3333333333%;
    }

    .row .col.offset-s2 {
        margin-left: 16.6666666667%;
    }

    .row .col.pull-s2 {
        right: 16.6666666667%;
    }

    .row .col.push-s2 {
        left: 16.6666666667%;
    }

    .row .col.offset-s3 {
        margin-left: 25%;
    }

    .row .col.pull-s3 {
        right: 25%;
    }

    .row .col.push-s3 {
        left: 25%;
    }

    .row .col.offset-s4 {
        margin-left: 33.3333333333%;
    }

    .row .col.pull-s4 {
        right: 33.3333333333%;
    }

    .row .col.push-s4 {
        left: 33.3333333333%;
    }

    .row .col.offset-s5 {
        margin-left: 41.6666666667%;
    }

    .row .col.pull-s5 {
        right: 41.6666666667%;
    }

    .row .col.push-s5 {
        left: 41.6666666667%;
    }

    .row .col.offset-s6 {
        margin-left: 50%;
    }

    .row .col.pull-s6 {
        right: 50%;
    }

    .row .col.push-s6 {
        left: 50%;
    }

    .row .col.offset-s7 {
        margin-left: 58.3333333333%;
    }

    .row .col.pull-s7 {
        right: 58.3333333333%;
    }

    .row .col.push-s7 {
        left: 58.3333333333%;
    }

    .row .col.offset-s8 {
        margin-left: 66.6666666667%;
    }

    .row .col.pull-s8 {
        right: 66.6666666667%;
    }

    .row .col.push-s8 {
        left: 66.6666666667%;
    }

    .row .col.offset-s9 {
        margin-left: 75%;
    }

    .row .col.pull-s9 {
        right: 75%;
    }

    .row .col.push-s9 {
        left: 75%;
    }

    .row .col.offset-s10 {
        margin-left: 83.3333333333%;
    }

    .row .col.pull-s10 {
        right: 83.3333333333%;
    }

    .row .col.push-s10 {
        left: 83.3333333333%;
    }

    .row .col.offset-s11 {
        margin-left: 91.6666666667%;
    }

    .row .col.pull-s11 {
        right: 91.6666666667%;
    }

    .row .col.push-s11 {
        left: 91.6666666667%;
    }

    .row .col.offset-s12 {
        margin-left: 100%;
    }

    .row .col.pull-s12 {
        right: 100%;
    }

    .row .col.push-s12 {
        left: 100%;
    }
}

@media (min-width: 850px) {
    .row .col.m1 {
        width: 8.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.m2 {
        width: 16.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.m3 {
        width: 25%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.m4 {
        width: 33.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.m5 {
        width: 41.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.m6 {
        width: 50%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.m7 {
        width: 58.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.m8 {
        width: 66.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.m9 {
        width: 75%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.m10 {
        width: 83.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.m11 {
        width: 91.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.m12 {
        width: 100%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.offset-m1 {
        margin-left: 8.3333333333%;
    }

    .row .col.pull-m1 {
        right: 8.3333333333%;
    }

    .row .col.push-m1 {
        left: 8.3333333333%;
    }

    .row .col.offset-m2 {
        margin-left: 16.6666666667%;
    }

    .row .col.pull-m2 {
        right: 16.6666666667%;
    }

    .row .col.push-m2 {
        left: 16.6666666667%;
    }

    .row .col.offset-m3 {
        margin-left: 25%;
    }

    .row .col.pull-m3 {
        right: 25%;
    }

    .row .col.push-m3 {
        left: 25%;
    }

    .row .col.offset-m4 {
        margin-left: 33.3333333333%;
    }

    .row .col.pull-m4 {
        right: 33.3333333333%;
    }

    .row .col.push-m4 {
        left: 33.3333333333%;
    }

    .row .col.offset-m5 {
        margin-left: 41.6666666667%;
    }

    .row .col.pull-m5 {
        right: 41.6666666667%;
    }

    .row .col.push-m5 {
        left: 41.6666666667%;
    }

    .row .col.offset-m6 {
        margin-left: 50%;
    }

    .row .col.pull-m6 {
        right: 50%;
    }

    .row .col.push-m6 {
        left: 50%;
    }

    .row .col.offset-m7 {
        margin-left: 58.3333333333%;
    }

    .row .col.pull-m7 {
        right: 58.3333333333%;
    }

    .row .col.push-m7 {
        left: 58.3333333333%;
    }

    .row .col.offset-m8 {
        margin-left: 66.6666666667%;
    }

    .row .col.pull-m8 {
        right: 66.6666666667%;
    }

    .row .col.push-m8 {
        left: 66.6666666667%;
    }

    .row .col.offset-m9 {
        margin-left: 75%;
    }

    .row .col.pull-m9 {
        right: 75%;
    }

    .row .col.push-m9 {
        left: 75%;
    }

    .row .col.offset-m10 {
        margin-left: 83.3333333333%;
    }

    .row .col.pull-m10 {
        right: 83.3333333333%;
    }

    .row .col.push-m10 {
        left: 83.3333333333%;
    }

    .row .col.offset-m11 {
        margin-left: 91.6666666667%;
    }

    .row .col.pull-m11 {
        right: 91.6666666667%;
    }

    .row .col.push-m11 {
        left: 91.6666666667%;
    }

    .row .col.offset-m12 {
        margin-left: 100%;
    }

    .row .col.pull-m12 {
        right: 100%;
    }

    .row .col.push-m12 {
        left: 100%;
    }
}

@media (min-width: 1200px) {
    .row .col.l1 {
        width: 8.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.l2 {
        width: 16.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.l3 {
        width: 25%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.l4 {
        width: 33.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.l5 {
        width: 41.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.l6 {
        width: 50%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.l7 {
        width: 58.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.l8 {
        width: 66.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.l9 {
        width: 75%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.l10 {
        width: 83.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.l11 {
        width: 91.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.l12 {
        width: 100%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.offset-l1 {
        margin-left: 8.3333333333%;
    }

    .row .col.pull-l1 {
        right: 8.3333333333%;
    }

    .row .col.push-l1 {
        left: 8.3333333333%;
    }

    .row .col.offset-l2 {
        margin-left: 16.6666666667%;
    }

    .row .col.pull-l2 {
        right: 16.6666666667%;
    }

    .row .col.push-l2 {
        left: 16.6666666667%;
    }

    .row .col.offset-l3 {
        margin-left: 25%;
    }

    .row .col.pull-l3 {
        right: 25%;
    }

    .row .col.push-l3 {
        left: 25%;
    }

    .row .col.offset-l4 {
        margin-left: 33.3333333333%;
    }

    .row .col.pull-l4 {
        right: 33.3333333333%;
    }

    .row .col.push-l4 {
        left: 33.3333333333%;
    }

    .row .col.offset-l5 {
        margin-left: 41.6666666667%;
    }

    .row .col.pull-l5 {
        right: 41.6666666667%;
    }

    .row .col.push-l5 {
        left: 41.6666666667%;
    }

    .row .col.offset-l6 {
        margin-left: 50%;
    }

    .row .col.pull-l6 {
        right: 50%;
    }

    .row .col.push-l6 {
        left: 50%;
    }

    .row .col.offset-l7 {
        margin-left: 58.3333333333%;
    }

    .row .col.pull-l7 {
        right: 58.3333333333%;
    }

    .row .col.push-l7 {
        left: 58.3333333333%;
    }

    .row .col.offset-l8 {
        margin-left: 66.6666666667%;
    }

    .row .col.pull-l8 {
        right: 66.6666666667%;
    }

    .row .col.push-l8 {
        left: 66.6666666667%;
    }

    .row .col.offset-l9 {
        margin-left: 75%;
    }

    .row .col.pull-l9 {
        right: 75%;
    }

    .row .col.push-l9 {
        left: 75%;
    }

    .row .col.offset-l10 {
        margin-left: 83.3333333333%;
    }

    .row .col.pull-l10 {
        right: 83.3333333333%;
    }

    .row .col.push-l10 {
        left: 83.3333333333%;
    }

    .row .col.offset-l11 {
        margin-left: 91.6666666667%;
    }

    .row .col.pull-l11 {
        right: 91.6666666667%;
    }

    .row .col.push-l11 {
        left: 91.6666666667%;
    }

    .row .col.offset-l12 {
        margin-left: 100%;
    }

    .row .col.pull-l12 {
        right: 100%;
    }

    .row .col.push-l12 {
        left: 100%;
    }
}

@media (min-width: 1800px) {
    .row .col.xl1 {
        width: 8.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xl2 {
        width: 16.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xl3 {
        width: 25%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xl4 {
        width: 33.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xl5 {
        width: 41.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xl6 {
        width: 50%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xl7 {
        width: 58.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xl8 {
        width: 66.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xl9 {
        width: 75%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xl10 {
        width: 83.3333333333%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xl11 {
        width: 91.6666666667%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.xl12 {
        width: 100%;
        margin-left: 0;
        left: auto;
        right: auto;
    }

    .row .col.offset-xl1 {
        margin-left: 8.3333333333%;
    }

    .row .col.pull-xl1 {
        right: 8.3333333333%;
    }

    .row .col.push-xl1 {
        left: 8.3333333333%;
    }

    .row .col.offset-xl2 {
        margin-left: 16.6666666667%;
    }

    .row .col.pull-xl2 {
        right: 16.6666666667%;
    }

    .row .col.push-xl2 {
        left: 16.6666666667%;
    }

    .row .col.offset-xl3 {
        margin-left: 25%;
    }

    .row .col.pull-xl3 {
        right: 25%;
    }

    .row .col.push-xl3 {
        left: 25%;
    }

    .row .col.offset-xl4 {
        margin-left: 33.3333333333%;
    }

    .row .col.pull-xl4 {
        right: 33.3333333333%;
    }

    .row .col.push-xl4 {
        left: 33.3333333333%;
    }

    .row .col.offset-xl5 {
        margin-left: 41.6666666667%;
    }

    .row .col.pull-xl5 {
        right: 41.6666666667%;
    }

    .row .col.push-xl5 {
        left: 41.6666666667%;
    }

    .row .col.offset-xl6 {
        margin-left: 50%;
    }

    .row .col.pull-xl6 {
        right: 50%;
    }

    .row .col.push-xl6 {
        left: 50%;
    }

    .row .col.offset-xl7 {
        margin-left: 58.3333333333%;
    }

    .row .col.pull-xl7 {
        right: 58.3333333333%;
    }

    .row .col.push-xl7 {
        left: 58.3333333333%;
    }

    .row .col.offset-xl8 {
        margin-left: 66.6666666667%;
    }

    .row .col.pull-xl8 {
        right: 66.6666666667%;
    }

    .row .col.push-xl8 {
        left: 66.6666666667%;
    }

    .row .col.offset-xl9 {
        margin-left: 75%;
    }

    .row .col.pull-xl9 {
        right: 75%;
    }

    .row .col.push-xl9 {
        left: 75%;
    }

    .row .col.offset-xl10 {
        margin-left: 83.3333333333%;
    }

    .row .col.pull-xl10 {
        right: 83.3333333333%;
    }

    .row .col.push-xl10 {
        left: 83.3333333333%;
    }

    .row .col.offset-xl11 {
        margin-left: 91.6666666667%;
    }

    .row .col.pull-xl11 {
        right: 91.6666666667%;
    }

    .row .col.push-xl11 {
        left: 91.6666666667%;
    }

    .row .col.offset-xl12 {
        margin-left: 100%;
    }

    .row .col.pull-xl12 {
        right: 100%;
    }

    .row .col.push-xl12 {
        left: 100%;
    }
}

@media (max-width: 600px) {
    .hide-s-down {
        display: none !important;
    }
}

@media (min-width: 600px) {
    .hide-s-up {
        display: none !important;
    }
}

@media (min-width: 600px) and (max-width: 850px) {
    .hide-s-only {
        display: none !important;
    }
}

@media (max-width: 850px) {
    .hide-m-down {
        display: none !important;
    }
}

@media (min-width: 850px) {
    .hide-m-up {
        display: none !important;
    }
}

@media (min-width: 850px) and (max-width: 1200px) {
    .hide-m-only {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .hide-l-down {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hide-l-up {
        display: none !important;
    }
}

@media (min-width: 1200px) and (max-width: 1800px) {
    .hide-l-only {
        display: none !important;
    }
}

@media (max-width: 1800px) {
    .hide-xl-down {
        display: none !important;
    }
}

@media (min-width: 1800px) {
    .hide-xl-up {
        display: none !important;
    }
}

@media (min-width: 1800px) and (max-width: 1901px) {
    .hide-xl-only {
        display: none !important;
    }
}

@media (min-width: 1901px) {
    .hide-h {
        display: none;
    }
}

@media (max-width: 600px) {
    .align-left-s-down {
        text-align: left;
    }
}

@media (min-width: 600px) {
    .align-left-s-up {
        text-align: left;
    }
}

@media (min-width: 600px) and (max-width: 850px) {
    .align-left-s-only {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .align-center-s-down {
        text-align: center;
    }
}

@media (min-width: 600px) {
    .align-center-s-up {
        text-align: center;
    }
}

@media (min-width: 600px) and (max-width: 850px) {
    .align-center-s-only {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .align-right-s-down {
        text-align: right;
    }
}

@media (min-width: 600px) {
    .align-right-s-up {
        text-align: right;
    }
}

@media (min-width: 600px) and (max-width: 850px) {
    .align-right-s-only {
        text-align: right;
    }
}

@media (max-width: 850px) {
    .align-left-m-down {
        text-align: left;
    }
}

@media (min-width: 850px) {
    .align-left-m-up {
        text-align: left;
    }
}

@media (min-width: 850px) and (max-width: 1200px) {
    .align-left-m-only {
        text-align: left;
    }
}

@media (max-width: 850px) {
    .align-center-m-down {
        text-align: center;
    }
}

@media (min-width: 850px) {
    .align-center-m-up {
        text-align: center;
    }
}

@media (min-width: 850px) and (max-width: 1200px) {
    .align-center-m-only {
        text-align: center;
    }
}

@media (max-width: 850px) {
    .align-right-m-down {
        text-align: right;
    }
}

@media (min-width: 850px) {
    .align-right-m-up {
        text-align: right;
    }
}

@media (min-width: 850px) and (max-width: 1200px) {
    .align-right-m-only {
        text-align: right;
    }
}

@media (max-width: 1200px) {
    .align-left-l-down {
        text-align: left;
    }
}

@media (min-width: 1200px) {
    .align-left-l-up {
        text-align: left;
    }
}

@media (min-width: 1200px) and (max-width: 1800px) {
    .align-left-l-only {
        text-align: left;
    }
}

@media (max-width: 1200px) {
    .align-center-l-down {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .align-center-l-up {
        text-align: center;
    }
}

@media (min-width: 1200px) and (max-width: 1800px) {
    .align-center-l-only {
        text-align: center;
    }
}

@media (max-width: 1200px) {
    .align-right-l-down {
        text-align: right;
    }
}

@media (min-width: 1200px) {
    .align-right-l-up {
        text-align: right;
    }
}

@media (min-width: 1200px) and (max-width: 1800px) {
    .align-right-l-only {
        text-align: right;
    }
}

@media (max-width: 1800px) {
    .align-left-xl-down {
        text-align: left;
    }
}

@media (min-width: 1800px) {
    .align-left-xl-up {
        text-align: left;
    }
}

@media (min-width: 1800px) and (max-width: 1901px) {
    .align-left-xl-only {
        text-align: left;
    }
}

@media (max-width: 1800px) {
    .align-center-xl-down {
        text-align: center;
    }
}

@media (min-width: 1800px) {
    .align-center-xl-up {
        text-align: center;
    }
}

@media (min-width: 1800px) and (max-width: 1901px) {
    .align-center-xl-only {
        text-align: center;
    }
}

@media (max-width: 1800px) {
    .align-right-xl-down {
        text-align: right;
    }
}

@media (min-width: 1800px) {
    .align-right-xl-up {
        text-align: right;
    }
}

@media (min-width: 1800px) and (max-width: 1901px) {
    .align-right-xl-only {
        text-align: right;
    }
}

@media (min-width: 1901px) {
    .align-left-h {
        text-align: left;
    }
}

@media (min-width: 1901px) {
    .align-center-h {
        text-align: center;
    }
}

@media (min-width: 1901px) {
    .align-right-h {
        text-align: right;
    }
}

@media (max-width: 400px) {
    .order-xs1 {
        order: 1;
    }
}

@media (max-width: 400px) {
    .order-xs2 {
        order: 2;
    }
}

@media (max-width: 400px) {
    .order-xs3 {
        order: 3;
    }
}

@media (max-width: 400px) {
    .order-xs4 {
        order: 4;
    }
}

@media (max-width: 400px) {
    .order-xs5 {
        order: 5;
    }
}

@media (max-width: 400px) {
    .order-xs6 {
        order: 6;
    }
}

@media (max-width: 400px) {
    .order-xs7 {
        order: 7;
    }
}

@media (max-width: 400px) {
    .order-xs8 {
        order: 8;
    }
}

@media (max-width: 400px) {
    .order-xs9 {
        order: 9;
    }
}

@media (max-width: 400px) {
    .order-xs10 {
        order: 10;
    }
}

@media (max-width: 400px) {
    .order-xs11 {
        order: 11;
    }
}

@media (max-width: 600px) {
    .order-s1 {
        order: 1;
    }
}

@media (max-width: 600px) {
    .order-s2 {
        order: 2;
    }
}

@media (max-width: 600px) {
    .order-s3 {
        order: 3;
    }
}

@media (max-width: 600px) {
    .order-s4 {
        order: 4;
    }
}

@media (max-width: 600px) {
    .order-s5 {
        order: 5;
    }
}

@media (max-width: 600px) {
    .order-s6 {
        order: 6;
    }
}

@media (max-width: 600px) {
    .order-s7 {
        order: 7;
    }
}

@media (max-width: 600px) {
    .order-s8 {
        order: 8;
    }
}

@media (max-width: 600px) {
    .order-s9 {
        order: 9;
    }
}

@media (max-width: 600px) {
    .order-s10 {
        order: 10;
    }
}

@media (max-width: 600px) {
    .order-s11 {
        order: 11;
    }
}

@media (max-width: 850px) {
    .order-m1 {
        order: 1;
    }
}

@media (max-width: 850px) {
    .order-m2 {
        order: 2;
    }
}

@media (max-width: 850px) {
    .order-m3 {
        order: 3;
    }
}

@media (max-width: 850px) {
    .order-m4 {
        order: 4;
    }
}

@media (max-width: 850px) {
    .order-m5 {
        order: 5;
    }
}

@media (max-width: 850px) {
    .order-m6 {
        order: 6;
    }
}

@media (max-width: 850px) {
    .order-m7 {
        order: 7;
    }
}

@media (max-width: 850px) {
    .order-m8 {
        order: 8;
    }
}

@media (max-width: 850px) {
    .order-m9 {
        order: 9;
    }
}

@media (max-width: 850px) {
    .order-m10 {
        order: 10;
    }
}

@media (max-width: 850px) {
    .order-m11 {
        order: 11;
    }
}

@media (max-width: 1200px) {
    .order-l1 {
        order: 1;
    }
}

@media (max-width: 1200px) {
    .order-l2 {
        order: 2;
    }
}

@media (max-width: 1200px) {
    .order-l3 {
        order: 3;
    }
}

@media (max-width: 1200px) {
    .order-l4 {
        order: 4;
    }
}

@media (max-width: 1200px) {
    .order-l5 {
        order: 5;
    }
}

@media (max-width: 1200px) {
    .order-l6 {
        order: 6;
    }
}

@media (max-width: 1200px) {
    .order-l7 {
        order: 7;
    }
}

@media (max-width: 1200px) {
    .order-l8 {
        order: 8;
    }
}

@media (max-width: 1200px) {
    .order-l9 {
        order: 9;
    }
}

@media (max-width: 1200px) {
    .order-l10 {
        order: 10;
    }
}

@media (max-width: 1200px) {
    .order-l11 {
        order: 11;
    }
}

@media (max-width: 1800px) {
    .order-xl1 {
        order: 1;
    }
}

@media (max-width: 1800px) {
    .order-xl2 {
        order: 2;
    }
}

@media (max-width: 1800px) {
    .order-xl3 {
        order: 3;
    }
}

@media (max-width: 1800px) {
    .order-xl4 {
        order: 4;
    }
}

@media (max-width: 1800px) {
    .order-xl5 {
        order: 5;
    }
}

@media (max-width: 1800px) {
    .order-xl6 {
        order: 6;
    }
}

@media (max-width: 1800px) {
    .order-xl7 {
        order: 7;
    }
}

@media (max-width: 1800px) {
    .order-xl8 {
        order: 8;
    }
}

@media (max-width: 1800px) {
    .order-xl9 {
        order: 9;
    }
}

@media (max-width: 1800px) {
    .order-xl10 {
        order: 10;
    }
}

@media (max-width: 1800px) {
    .order-xl11 {
        order: 11;
    }
}