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

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

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

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

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

.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

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

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

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

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

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

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

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

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

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

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

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

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}

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

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

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

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

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

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

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

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

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
}

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

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

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

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}

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

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

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

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

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

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

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

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

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

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

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

.swiper-pagination-white {
    --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
    --swiper-pagination-color: #000000;
}

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

/* Scrollbar */
.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

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

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

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

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.swiper-slide-zoomed {
    cursor: move;
}

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    transform-origin: 100% 0;
}

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

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

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}

.swiper-container-flip {
    overflow: visible;
}

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

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

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

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

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

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(48, 51, 54, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

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

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

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

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

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

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

dt {
    font-weight: 700;
}

dd {
    margin-bottom: .5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

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

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

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

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

pre,
code,
kbd,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
}

figure {
    margin: 0 0 1rem;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
}

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

th {
    text-align: inherit;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

button {
    border-radius: 0;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

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

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

select {
    word-wrap: normal;
}

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

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

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

input[type="radio"],
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    -webkit-appearance: listbox;
}

textarea {
    overflow: auto;
    resize: vertical;
}

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

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

@media (max-width: 1200px) {
    legend {
        font-size: calc(1.275rem + 0.3vw);
    }
}

progress {
    vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

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

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

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

output {
    display: inline-block;
}

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

template {
    display: none;
}

[hidden] {
    display: none !important;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

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

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container, .container-sm, .container-md {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container, .container-sm, .container-md, .container-lg {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1140px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

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

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

.row-cols-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

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

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

.row-cols-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

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

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

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

.col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

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

.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

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

.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

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

.order-first {
    order: -1;
}

.order-last {
    order: 13;
}

.order-0 {
    order: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

.order-5 {
    order: 5;
}

.order-6 {
    order: 6;
}

.order-7 {
    order: 7;
}

.order-8 {
    order: 8;
}

.order-9 {
    order: 9;
}

.order-10 {
    order: 10;
}

.order-11 {
    order: 11;
}

.order-12 {
    order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
    .col-sm {
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

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

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

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

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

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

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

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

    .col-sm-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-sm-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

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

    .col-sm-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-sm-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

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

    .col-sm-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-sm-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

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

    .col-sm-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-sm-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

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

    .order-sm-first {
        order: -1;
    }

    .order-sm-last {
        order: 13;
    }

    .order-sm-0 {
        order: 0;
    }

    .order-sm-1 {
        order: 1;
    }

    .order-sm-2 {
        order: 2;
    }

    .order-sm-3 {
        order: 3;
    }

    .order-sm-4 {
        order: 4;
    }

    .order-sm-5 {
        order: 5;
    }

    .order-sm-6 {
        order: 6;
    }

    .order-sm-7 {
        order: 7;
    }

    .order-sm-8 {
        order: 8;
    }

    .order-sm-9 {
        order: 9;
    }

    .order-sm-10 {
        order: 10;
    }

    .order-sm-11 {
        order: 11;
    }

    .order-sm-12 {
        order: 12;
    }

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
    .col-md {
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

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

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

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

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

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

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

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

    .col-md-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-md-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

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

    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-md-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

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

    .col-md-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-md-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

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

    .col-md-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-md-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

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

    .order-md-first {
        order: -1;
    }

    .order-md-last {
        order: 13;
    }

    .order-md-0 {
        order: 0;
    }

    .order-md-1 {
        order: 1;
    }

    .order-md-2 {
        order: 2;
    }

    .order-md-3 {
        order: 3;
    }

    .order-md-4 {
        order: 4;
    }

    .order-md-5 {
        order: 5;
    }

    .order-md-6 {
        order: 6;
    }

    .order-md-7 {
        order: 7;
    }

    .order-md-8 {
        order: 8;
    }

    .order-md-9 {
        order: 9;
    }

    .order-md-10 {
        order: 10;
    }

    .order-md-11 {
        order: 11;
    }

    .order-md-12 {
        order: 12;
    }

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
    .col-lg {
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

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

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

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

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

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

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

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

    .col-lg-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-lg-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

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

    .col-lg-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

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

    .col-lg-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

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

    .col-lg-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-lg-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

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

    .order-lg-first {
        order: -1;
    }

    .order-lg-last {
        order: 13;
    }

    .order-lg-0 {
        order: 0;
    }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }

    .order-lg-3 {
        order: 3;
    }

    .order-lg-4 {
        order: 4;
    }

    .order-lg-5 {
        order: 5;
    }

    .order-lg-6 {
        order: 6;
    }

    .order-lg-7 {
        order: 7;
    }

    .order-lg-8 {
        order: 8;
    }

    .order-lg-9 {
        order: 9;
    }

    .order-lg-10 {
        order: 10;
    }

    .order-lg-11 {
        order: 11;
    }

    .order-lg-12 {
        order: 12;
    }

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1200px) {
    .col-xl {
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

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

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

    .row-cols-xl-3 > * {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

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

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

    .row-cols-xl-6 > * {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

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

    .col-xl-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-xl-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

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

    .col-xl-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-xl-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

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

    .col-xl-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-xl-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

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

    .col-xl-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-xl-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

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

    .order-xl-first {
        order: -1;
    }

    .order-xl-last {
        order: 13;
    }

    .order-xl-0 {
        order: 0;
    }

    .order-xl-1 {
        order: 1;
    }

    .order-xl-2 {
        order: 2;
    }

    .order-xl-3 {
        order: 3;
    }

    .order-xl-4 {
        order: 4;
    }

    .order-xl-5 {
        order: 5;
    }

    .order-xl-6 {
        order: 6;
    }

    .order-xl-7 {
        order: 7;
    }

    .order-xl-8 {
        order: 8;
    }

    .order-xl-9 {
        order: 9;
    }

    .order-xl-10 {
        order: 10;
    }

    .order-xl-11 {
        order: 11;
    }

    .order-xl-12 {
        order: 12;
    }

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

    .offset-xl-1 {
        margin-left: 8.33333%;
    }

    .offset-xl-2 {
        margin-left: 16.66667%;
    }

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

    .offset-xl-4 {
        margin-left: 33.33333%;
    }

    .offset-xl-5 {
        margin-left: 41.66667%;
    }

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

    .offset-xl-7 {
        margin-left: 58.33333%;
    }

    .offset-xl-8 {
        margin-left: 66.66667%;
    }

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

    .offset-xl-10 {
        margin-left: 83.33333%;
    }

    .offset-xl-11 {
        margin-left: 91.66667%;
    }
}

.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: translate(0, -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 {
    display: flex;
    max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden;
}

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

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
    content: none;
}

.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(48, 51, 54, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #303336;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem 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;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 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 {
        max-height: calc(100% - 3.5rem);
    }

    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 3.5rem);
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .modal-dialog-centered::before {
        height: calc(100vh - 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;
    }
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-ThinItalic.eot");
    src: url("../fonts/Roboto-ThinItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-ThinItalic.woff2") format("woff2"), url("../fonts/Roboto-ThinItalic.woff") format("woff"), url("../fonts/Roboto-ThinItalic.ttf") format("truetype"), url("../fonts/Roboto-ThinItalic.svg#Roboto-ThinItalic") format("svg");
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Thin.eot");
    src: url("../fonts/Roboto-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Thin.woff2") format("woff2"), url("../fonts/Roboto-Thin.woff") format("woff"), url("../fonts/Roboto-Thin.ttf") format("truetype"), url("../fonts/Roboto-Thin.svg#Roboto-Thin") format("svg");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-LightItalic.eot");
    src: url("../fonts/Roboto-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-LightItalic.woff2") format("woff2"), url("../fonts/Roboto-LightItalic.woff") format("woff"), url("../fonts/Roboto-LightItalic.ttf") format("truetype"), url("../fonts/Roboto-LightItalic.svg#Roboto-LightItalic") format("svg");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Regular.eot");
    src: url("../fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.ttf") format("truetype"), url("../fonts/Roboto-Regular.svg#Roboto-Regular") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Italic.eot");
    src: url("../fonts/Roboto-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Italic.woff2") format("woff2"), url("../fonts/Roboto-Italic.woff") format("woff"), url("../fonts/Roboto-Italic.ttf") format("truetype"), url("../fonts/Roboto-Italic.svg#Roboto-Italic") format("svg");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-BoldItalic.eot");
    src: url("../fonts/Roboto-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-BoldItalic.woff2") format("woff2"), url("../fonts/Roboto-BoldItalic.woff") format("woff"), url("../fonts/Roboto-BoldItalic.ttf") format("truetype"), url("../fonts/Roboto-BoldItalic.svg#Roboto-BoldItalic") format("svg");
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-MediumItalic.eot");
    src: url("../fonts/Roboto-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-MediumItalic.woff2") format("woff2"), url("../fonts/Roboto-MediumItalic.woff") format("woff"), url("../fonts/Roboto-MediumItalic.ttf") format("truetype"), url("../fonts/Roboto-MediumItalic.svg#Roboto-MediumItalic") format("svg");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Bold.eot");
    src: url("../fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto-Bold.ttf") format("truetype"), url("../fonts/Roboto-Bold.svg#Roboto-Bold") format("svg");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Medium.eot");
    src: url("../fonts/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto-Medium.woff") format("woff"), url("../fonts/Roboto-Medium.ttf") format("truetype"), url("../fonts/Roboto-Medium.svg#Roboto-Medium") format("svg");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Light.eot");
    src: url("../fonts/Roboto-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Light.woff2") format("woff2"), url("../fonts/Roboto-Light.woff") format("woff"), url("../fonts/Roboto-Light.ttf") format("truetype"), url("../fonts/Roboto-Light.svg#Roboto-Light") format("svg");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --cyan: #C151E1;
    --d-cyan: #009688;
    --l-cyan: #f3f7fd;
    --b-cyan: #d3eeec;
    --orange: #ff9315;
    --d-orange: #f47920;
    --brown: #df7630;
    --black: #000;
    --gray: #f1f1f1;
    --border: #f3f3f3;
    --black: #303336;
    --red: #e93c3c;
}

.quick-link {
    position: fixed;
    top: 100px;
    right: 0;
    background-color: #fff;
    -webkit-box-shadow: 0px 8px 30px rgba(111, 116, 121, 0.5);
    box-shadow: 0px 8px 30px rgba(111, 116, 121, 0.5);
    -webkit-border-radius: 5px 0px 0px 5px;
    border-radius: 5px 0px 0px 5px;
    width: 218px;
    max-width: 100%;
    z-index: 99;
    transition: transform 0.4s ease;
    -ms-transform: translateX(178px);
    -o-transform: translateX(178px);
    -moz-transform: translateX(178px);
    -webkit-transform: translateX(178px);
    transform: translateX(178px);
}

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

.quick-link:hover {
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.quick-link ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.quick-link ul li {
    padding: 14px 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.quick-link ul li + li {
    border-top: 1px solid #EDEDED;
}

.quick-link ul li .icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-right: 20px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.quick-link ul li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}

.quick-link ul li a:hover {
    color: #f47920;
}

body {
    font-family: "Roboto", sans-serif;
    font-display: swap;
    background-color: #f3f7fd;
    font-size: 16px;
    line-height: 1.375;
    letter-spacing: 0.1px;
    overflow-x: hidden;
    max-width: 100%;
}

body.search-show, body.nav-show {
    overflow: hidden;
    max-height: 100vh;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    outline: none;
    transition: color 0.4s ease;
}

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

a:active, a:focus, a:hover {
    outline: none;
    text-decoration: none;
}

textarea,
select,
button,
input {
    box-shadow: none;
    outline: none;
}

textarea:hover, textarea:focus, textarea:active,
select:hover,
select:focus,
select:active,
button:hover,
button:focus,
button:active,
input:hover,
input:focus,
input:active {
    outline: none;
}

[type="hidden"] {
    display: none;
}

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

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

.collapse {
    display: none;
}

.collapse.show {
    display: block;
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 199;
    width: 100vw;
    height: 100vh;
    background-color: #5c5c5c;
}

.backdrop.fade {
    transition: all 0.15s linear;
    opacity: 0;
    visibility: hidden;
}

.backdrop.show {
    opacity: 0.5;
    visibility: visible;
}

.section-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: 0.1px;
    color: #000;
    margin-bottom: 15px;
}

.sub-title {
    font-weight: bold;
    font-size: 26px;
    line-height: 32px;
    color: #000000;
}

.block-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: #000000;
    margin-bottom: 25px;
}

.slick-slide {
    outline: none;
}

.btn-primary {
    cursor: pointer;
    font-size: 15px;
    line-height: 18px;
    text-transform: uppercase;
    padding: 12px 26px;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    border: none;
    background: #ff9900;
    background: -moz-linear-gradient(148.65deg, #ff9900 17.72%, #fc6536 65.19%);
    background: -webkit-linear-gradient(148.65deg, #ff9900 17.72%, #fc6536 65.19%);
    background: linear-gradient(148.65deg, #ff9900 17.72%, #fc6536 65.19%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF9900', endColorstr='#FC6536', GradientType=1);
    position: relative;
    z-index: 0;
    transition: box-shadow 0.4s ease;
}

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

.btn-primary:not(:disabled):hover {
    color: #fff;
    text-decoration: none;
    -webkit-box-shadow: 0px 6px 16px rgba(244, 121, 32, 0.5);
    box-shadow: 0px 6px 16px rgba(244, 121, 32, 0.5);
}

.btn-primary:disabled {
    cursor: not-allowed;
    background: #5c5c5c;
}

.h1 {
    font-weight: bold;
    font-size: 48px;
    line-height: 1.2;
}

.h2 {
    font-weight: 500;
    font-size: 44px;
    line-height: 140%;
}

.h3 {
    font-weight: 500;
    font-size: 32px;
    line-height: 131%;
    letter-spacing: 0.1px;
}

.h4 {
    font-weight: bold;
    font-size: 26px;
    line-height: 1.25;
}

.h5 {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0.2px;
}

.h6 {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.2px;
}

.subtitle-md {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.subtitle-sm {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.28571;
    letter-spacing: 0.1px;
}

.small-md {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.2px;
}

@media (max-width: 767.98px) {
    .h1 {
        font-size: 44px;
        line-height: 140%;
    }

    .h2 {
        font-size: 32px;
        line-height: 131%;
        letter-spacing: 0.1px;
    }

    .h3 {
        font-size: 26px;
        line-height: 1.25;
        letter-spacing: normal;
    }

    .h4 {
        font-size: 20px;
        line-height: 1.3;
        letter-spacing: 0.2px;
    }

    .h5 {
        font-size: 18px;
        line-height: 1.3;
        letter-spacing: 0.2px;
    }

    .h6 {
        font-weight: 500;
        font-size: 16px;
        line-height: 1.25;
    }

    .subtitle-md {
        font-weight: 600;
        font-size: 14px;
        line-height: 1.28571;
        letter-spacing: 0.1px;
    }
}

header {
    width: 1440px;
    margin: 0 auto;
    max-width: 100%;
    padding: 10px 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

header.is-scroll .content {
    -webkit-box-shadow: 0px 6px 10px rgba(37, 40, 43, 0.08);
    box-shadow: 0px 6px 10px rgba(37, 40, 43, 0.08);
}

header .content {
    background-color: #fff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

header .left {
    flex-shrink: 0;
    width: 40%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 15px;
}

header .left .current-persona {
    margin: 0;
    padding-right: 10px;
    padding-left: 28px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #aeaeae;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

header .left .current-persona a {
    display: block;
    margin-right: 8px;
}

header .left .current-persona a svg {
    display: block;
}

header .left .current-persona a svg path {
    transition: stroke 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    header .left .current-persona a svg path {
        transition: none;
    }
}

header .left .current-persona a:hover svg path {
    stroke: #f47920;
}

header .left .current-persona span {
    padding-top: 1px;
    display: inline-block;
    vertical-align: middle;
}

header .btn-nav {
    padding: 19px 27px;
    background-color: transparent;
    border: none;
    border-right: 1px solid #f1f1f1;
}

header .btn-nav span {
    display: block;
    height: 2px;
    width: 20px;
    margin: 0 auto;
    background-color: #000;
    -webkit-border-radius: 1px;
    border-radius: 1px;
    transition: background-color 0.4s ease;
}

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

header .btn-nav span + span {
    margin-top: 4px;
}

header .btn-nav:hover span {
    background-color: #f47920;
}

header .search {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: 24px;
    font-size: 14px;
    line-height: 20px;
    padding-right: 4px;
}

header .search form {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}

header .search input[type="text"] {
    font-size: 16px;
    border: none;
    height: 44px;
    outline: none;
    padding: 0 15px;
    max-width: 300px;
    width: 100%;
    background-image: url("../images/icons/search.png");
    background-position: left 5px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-left: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
}

header .search input[type="text"]::-webkit-input-placeholder {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.1px;
    color: #aeaeae;
}

header .search input[type="text"]:-moz-placeholder {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.1px;
    color: #aeaeae;
}

header .search input[type="text"]::-moz-placeholder {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.1px;
    color: #aeaeae;
}

header .search input[type="text"]:-ms-input-placeholder {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.1px;
    color: #aeaeae;
}

header .search input[type="submit"] {
    display: none;
}

header .right {
    padding-left: 15px;
    flex-shrink: 0;
    width: 40%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: flex-end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

header .right .search {
    padding: 0 15px;
    display: none;
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

header .right .search form {
    width: 1000px;
    max-width: 100%;
    margin: 10px auto 0;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: relative;
}

header .right .search input[type="text"] {
    background-image: none;
    width: 100%;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    max-width: 100%;
    height: 52px;
    background-color: #fff;
    padding-right: 52px;
}

header .right .search button {
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    height: 52px;
    width: 52px;
    border: none;
    padding: 0;
}

header .right .search button svg path {
    transition: stroke 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    header .right .search button svg path {
        transition: none;
    }
}

header .right .search button:hover svg path {
    stroke: #f47920;
}

header .right .btn-search {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
    color: #aeaeae;
    height: 52px;
    padding: 0 12px;
    margin-right: 12px;
    border: none;
    background-color: transparent;
    transition: color 0.4s ease;
}

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

header .right .btn-search svg {
    margin-top: -2px;
    margin-right: 10px;
}

header .right .btn-search svg path {
    transition: stroke 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    header .right .btn-search svg path {
        transition: none;
    }
}

header .right .btn-search:hover {
    color: #f47920;
}

header .right .btn-search:hover svg path {
    stroke: #f47920;
}

header .right .link {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #C151E1;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    padding: 15px 18px;
    -webkit-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
    transition: background-color 0.4s ease;
    white-space: nowrap;
}

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

header .right .link .icon {
    margin-right: 10px;
    height: 22px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

header .right .link .icon img {
    display: block;
    max-height: 100%;
}

header .right .link:hover {
    background-color: #009688;
}

header .logo {
    padding: 0 10px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 0 auto;
    height: 52px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}

header .logo img {
    display: block;
    margin: 0 auto;
    max-height: 30px;
}

header .nav-container {
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    bottom: 0;
    width: 445px;
    max-width: 100%;
    background-color: #fff;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

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

header .nav-container.is-show {
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

header .nav-container .btn-close {
    background-color: #C151E1;
    border: none;
    width: 40px;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 1px;
    min-height: 40px;
    z-index: 20;
    border-left: 1px solid #d3eeec;
    transition: background-color 0.4s ease;
}

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

header .nav-container .btn-close:hover {
    background-color: #f47920;
}

header .nav-container .top-content {
    position: relative;
}

header .nav-container .top-content .nav-tabs {
    flex-shrink: 0;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    padding-right: 40px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    border-bottom: 1px solid #d3eeec;
}

header .nav-container .top-content .nav-tabs li {
    width: 33.3333333333%;
}

header .nav-container .top-content .nav-tabs li + li {
    border-left: 1px solid #d3eeec;
}

header .nav-container .top-content .nav-tabs li a {
    height: 100%;
    background-color: #C151E1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    padding: 10px;
    transition: background-color 0.4s ease, color 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    header .nav-container .top-content .nav-tabs li a {
        transition: none;
    }
}

header .nav-container .top-content .nav-tabs li a:hover {
    background-color: #009688;
}

header .nav-container .top-content .nav-tabs li a.active {
    color: #C151E1;
    background-color: #fff;
}

header .nav-container .search {
    flex-shrink: 0;
    display: none;
    flex-grow: unset;
    border-bottom: 5px solid #f3f7fd;
}

header .nav-container .search input[type="text"] {
    max-width: none;
}

header .nav-container ul {
    margin-bottom: 0;
    list-style: none;
    padding-left: 0;
}

header .nav-container .top-box button {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
    border: none;
    background-color: transparent;
    width: 100%;
    height: 36px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    transition: color 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    header .nav-container .top-box button {
        transition: none;
    }
}

header .nav-container .top-box button span {
    display: block;
}

header .nav-container .top-box button svg {
    transition: transform 0.4s ease;
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
    header .nav-container .top-box button svg {
        transition: none;
    }
}

header .nav-container .top-box button svg path {
    transition: stroke 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    header .nav-container .top-box button svg path {
        transition: none;
    }
}

header .nav-container .top-box button.collapsed svg {
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    -moz-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

header .nav-container .top-box button:hover {
    color: #C151E1;
}

header .nav-container .top-box button:hover svg path {
    stroke: #C151E1;
}

header .nav-container .top-box a {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

header .nav-container .nav-content {
    padding-bottom: 24px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

header .nav-container .nav-content::-webkit-scrollbar-track {
    background-color: #fff;
}

header .nav-container .nav-content::-webkit-scrollbar {
    width: 6px;
    background-color: #fff;
}

header .nav-container .nav-content::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: #d3eeec;
}

header .nav-container .nav-list {
    padding: 16px 24px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #000;
}

header .nav-container .nav-list + .nav-list {
    border-top: 5px solid #f3f7fd;
}

header .nav-container .nav-list.child-list {
    padding: 0;
    font-weight: normal;
}

header .nav-container .nav-list li + li {
    margin-top: 2px;
}

header .nav-container .nav-list li a {
    padding: 8px 0;
    display: block;
    color: inherit;
}

header .nav-container .nav-list li a:hover {
    color: #C151E1;
}

header .nav-container .hotline {
    font-size: 16px;
    line-height: 20px;
    color: #000;
    padding: 8px 24px;
    margin-bottom: 0;
}

header .nav-container .hotline a {
    color: #ff9315;
}

header .nav-container .hotline a:hover {
    color: #C151E1;
}

header .nav-container .languages {
    padding: 0 24px;
    position: relative;
}

header .nav-container .languages img {
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}

header .nav-container .languages .btn-toggle {
    background-color: transparent;
    padding: 8px 5px;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    border: none;
}

header .nav-container .languages .btn-toggle img {
    margin-right: 8px;
}

header .nav-container .languages .btn-toggle span {
    display: inline-block;
    vertical-align: middle;
    text-decoration: underline;
}

header .nav-container .languages .list {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 24px;
    background-color: #fff;
    border-radius: 4px;
    padding: 10px;
    -webkit-box-shadow: 0px 8px 20px rgba(37, 40, 43, 0.08);
    box-shadow: 0px 8px 20px rgba(37, 40, 43, 0.08);
}

header .nav-container .languages .list a {
    display: block;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

header .nav-container .languages .list a img {
    width: 16px;
    margin-right: 10px;
}

header .nav-container .languages .list a svg {
    margin-right: 10px;
}

header .nav-container .languages .list a + a {
    margin-top: 10px;
}

header .nav-container .languages .list a:hover {
    color: #f47920;
}

footer .contact {
    background-color: #fff;
    padding: 32px 0;
}

footer .contact .align-items-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

footer .contact .list {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

footer .contact .list li {
    display: inline-block;
}

footer .contact .list li + li {
    margin-left: 90px;
}

footer .contact .list li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #000000;
}

footer .contact .list li a svg {
    margin-right: 15px;
}

footer .contact .list li a:hover {
    color: #f47920;
}

footer .contact .subcribe-content {
    margin-left: auto;
    width: 611px;
    max-width: 100%;
}

footer .contact .subcribe-content form {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

footer .contact .subcribe-content form .form-group:nth-of-type(1) {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 200px;
}

footer .contact .subcribe-content form .form-group:nth-of-type(1) input {
    width: 100%;
}

footer .contact .subcribe-content form .form-group:last-child {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

footer .contact .subcribe-content form .form-email {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

footer .contact .subcribe-content form input {
    border: 1px solid #cfcfcf;
    height: 44px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1px;
    padding: 0 11px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
}

footer .contact .subcribe-content form input::-webkit-input-placeholder {
    color: #cfcfcf;
}

footer .contact .subcribe-content form input:-moz-placeholder {
    color: #cfcfcf;
}

footer .contact .subcribe-content form input::-moz-placeholder {
    color: #cfcfcf;
}

footer .contact .subcribe-content form input:-ms-input-placeholder {
    color: #cfcfcf;
}

footer .contact .subcribe-content form input::-ms-clear {
    display: none;
}

footer .contact .subcribe-content form select {
    max-width: 250px;
    margin-left: 8px;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../images/icons/arrow-down.svg");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    background-color: #f9f9f9;
    border: 1px solid #f3f3f3;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: 0 30px 0 10px;
    height: 44px;
}

footer .contact .subcribe-content form select::-ms-expand {
    display: none;
}

footer .contact .subcribe-content form .btn-primary {
    margin-left: 8px;
}

footer .contact .subcribe-content .alert {
    width: 100%;
    margin-top: 20px;
}

footer .contact .subcribe-content .alert .icon {
    margin-right: 20px;
}

footer .contact .subcribe-content .alert .icon svg {
    width: 24px;
}

footer .contact .subcribe-content .alert .alert-heading {
    margin: 0;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #C151E1;
}

footer .contact .subcribe-content .alert.error .alert-heading {
    color: #fb4e4e;
}

footer .contact .subcribe-content .has-warning input {
    border-color: #e93c3c;
}

footer .contact .subcribe-content .has-warning input:focus {
    border-color: #e93c3c;
}

footer .contact .subcribe-content .has-warning .form-control-feedback {
    display: block;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.2px;
    color: #e93c3c;
    padding-top: 4px;
}

footer .main-footer {
    background: #f9f9f9;
    padding: 10px 0;
}

footer .main-footer .top-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

footer .main-footer .top-box .personal {
    padding: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #C151E1;
}

footer .main-footer .top-box .btn-collapse {
    position: relative;
    padding: 0;
    padding-left: 25px;
    border: none;
    background-color: transparent;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    transition: color 0.4s ease;
}

footer .main-footer .top-box .btn-collapse .line {
    position: absolute;
    top: 50%;
    margin-top: -1px;
    display: inline-block;
    border: 1px solid #f47920;
    -webkit-border-radius: 1px;
    border-radius: 1px;
    width: 13px;
    left: 0;
    transition: transform 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    footer .main-footer .top-box .btn-collapse .line {
        transition: none;
    }
}

footer .main-footer .top-box .btn-collapse .line + .line {
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

@media (prefers-reduced-motion: reduce) {
    footer .main-footer .top-box .btn-collapse {
        transition: none;
    }
}

footer .main-footer .top-box .btn-collapse:hover {
    color: #f47920;
}

footer .main-footer .top-box .btn-collapse.active .line {
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

footer .main-footer .top-box .btn-collapse.active .line + .line {
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

footer .main-footer .list-content {
    display: none;
    padding: 36px 0 0;
}

footer .main-footer .list-content .footer-col {
    margin-bottom: 24px;
}

footer .main-footer .list-content .footer-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #C151E1;
    margin-bottom: 12px;
}

footer .main-footer .list-content .footer-nav {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

footer .main-footer .list-content .footer-nav li a {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #000000;
}

footer .main-footer .list-content .footer-nav li a:hover {
    color: #f47920;
}

footer .main-footer .list-content .footer-nav li + li {
    margin-top: 13px;
}

footer .main-footer .list-content .footer-nav.highlight li + li {
    margin-top: 9px;
}

footer .main-footer .list-content .footer-nav.highlight li a {
    font-size: 16px;
    line-height: 20px;
    color: #C151E1;
}

footer .main-footer .list-content .footer-nav.highlight li a:hover {
    color: #f47920;
}

footer .main-footer .footer-nav {
    padding: 22px 0;
}

footer .main-footer .footer-nav ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

footer .main-footer .footer-nav ul li {
    position: relative;
}

footer .main-footer .footer-nav ul li + li {
    padding-left: 25px;
    margin-left: 25px;
}

footer .main-footer .footer-nav ul li + li:after {
    content: "";
    position: absolute;
    height: 20px;
    top: 50%;
    margin-top: -10px;
    border-right: 1px solid #aeaeae;
    left: 0;
}

footer .main-footer .footer-nav ul li a {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    text-decoration-line: underline;
    color: #000000;
    transition: color 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    footer .main-footer .footer-nav ul li a {
        transition: none;
    }
}

footer .main-footer .footer-nav ul li a:hover {
    color: #009688;
}

footer .foot {
    background-color: #C151E1;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.2px;
    padding: 22px 0;
}

footer .foot ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

footer .foot ul li a {
    color: #fff;
}

footer .foot ul li a:hover {
    text-decoration: underline;
}

footer .foot .foot-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

footer .foot .logo {
    height: 20px;
    margin-right: 18px;
}

footer .foot .logo img {
    max-height: 20px;
    display: block;
}

footer .foot .copyright {
    margin-bottom: 0;
}

footer .foot .nav {
    margin-left: auto;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

footer .foot .nav li + li {
    position: relative;
    padding-left: 10px;
    margin-left: 10px;
}

footer .foot .nav li + li:after {
    border-left: 1px solid #fff;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -6px;
    bottom: 0;
    height: 12px;
}

footer .foot .socials {
    margin-left: 11px;
}

footer .foot .socials a {
    display: block;
    width: 25px;
    text-align: center;
    height: 25px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    line-height: 26px;
    transition: background-color 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    footer .foot .socials a {
        transition: none;
    }
}

footer .foot .socials a:hover {
    background-color: #ff9315;
}

footer .foot .socials li + li {
    margin-left: 5px;
}

@media (max-width: 375px) {
    footer .main-footer .footer-nav ul li + li {
        padding-left: 20px;
        margin-left: 20px;
    }
}

.hero-banner {
    height: 653px;
    overflow: hidden;
    position: relative;
}

.hero-banner:after {
    content: "";
    z-index: 3;
    width: 284px;
    height: 125px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url("../images/bg/bg.png");
    background-repeat: no-repeat;
    background-position: bottom right;
    pointer-events: none;
}

.hero-banner:before {
    pointer-events: none;
    z-index: 2;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    background: #f47920;
    background: -webkit-gradient(linear, left top, left bottom, from(#ff9315), color-stop(58.33%, #f47920));
    background: -o-linear-gradient(top, #ff9315 0%, #f47920 58.33%);
    background: linear-gradient(180deg, #ff9315 0%, #f47920 58.33%);
    height: 6px;
    position: absolute;
}

.hero-banner .slider-item .wrapper {
    position: relative;
    height: 653px;
}

.hero-banner .slider-item .wrapper .img-box {
    height: 100%;
    overflow: hidden;
}

.hero-banner .slider-item .wrapper .img-box picture {
    height: 100%;
    width: 100%;
    display: block;
}

.hero-banner .slider-item .wrapper .img-box picture img {
    width: 100%;
    height: 100%;
    max-width: none;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero-banner .slider-item .wrapper .info {
    color: #fff;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero-banner .slider-item .wrapper .info .cat {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
    color: #ffffff;
    padding-bottom: 6px;
    margin-bottom: 3px;
}

.hero-banner .slider-item .wrapper .info .cat:hover {
    color: #f47920;
}

.hero-banner .slider-item .wrapper .info .title {
    font-weight: bold;
    font-size: 48px;
    line-height: 53px;
    margin-bottom: 11px;
}

.hero-banner .slider-item .wrapper .info .desc {
    font-size: 16px;
    line-height: 20px;
    padding: 15px 0;
    margin-bottom: 14px;
}

.hero-banner .slider-item .wrapper .info .button-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}

.hero-banner .slider-item .wrapper .info .btn {
    margin-right: 24px;
}

.hero-banner .slider-item .wrapper .info .link {
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #ffffff;
}

.hero-banner .slider-item .wrapper .info .link svg {
    margin-left: 4px;
    margin-top: -2px;
    transition: margin-left 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    .hero-banner .slider-item .wrapper .info .link svg {
        transition: none;
    }
}

.hero-banner .slider-item .wrapper .info .link svg path {
    transition: stroke 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    .hero-banner .slider-item .wrapper .info .link svg path {
        transition: none;
    }
}

.hero-banner .slider-item .wrapper .info .link:hover {
    color: #f47920;
}

.hero-banner .slider-item .wrapper .info .link:hover svg {
    margin-left: 10px;
}

.hero-banner .slider-item .wrapper .info .link:hover svg path {
    stroke: #f47920;
}

.hero-banner .slider-item.has-overlay .wrapper:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1;
    content: "";
}

.hero-banner .slide-dots {
    z-index: 10;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
}

.hero-banner .slide-dots.swiper-pagination-bullets {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.hero-banner .slide-dots.swiper-pagination-bullets .swiper-pagination-bullet {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0;
    width: 8px;
    height: 8px;
    background: #ffb55f;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    margin: 0 5px;
    opacity: 1;
    transition: width 0.4s ease, box-shadow 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    .hero-banner .slide-dots.swiper-pagination-bullets .swiper-pagination-bullet {
        transition: none;
    }
}

.hero-banner .slide-dots.swiper-pagination-bullets .swiper-pagination-bullet:focus {
    outline: none;
}

.hero-banner .slide-dots.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 14px;
    background-color: #ff9315;
    -webkit-box-shadow: 0px 2px 6px #f47920;
    box-shadow: 0px 2px 6px #f47920;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .hero-banner .slider-item .wrapper .img-box picture {
        position: relative;
    }

    .hero-banner .slider-item .wrapper .img-box picture img {
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100%;
        position: absolute;
        right: 50%;
        -ms-transform: translateX(50%);
        -o-transform: translateX(50%);
        -moz-transform: translateX(50%);
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }
}

.home-categories {
    background-color: #fff;
    -webkit-box-shadow: 0px 8px 20px -8px rgba(37, 40, 43, 0.08);
    box-shadow: 0px 8px 20px -8px rgba(37, 40, 43, 0.08);
}

.home-categories .list-slider {
    width: 100%;
}

.home-categories .list-slider .slider-item {
    padding: 20px 0;
    width: auto;
    display: inline-block;
    white-space: nowrap;
    transition: background-color 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    .home-categories .list-slider .slider-item {
        transition: none;
    }
}

.home-categories .list-slider .slider-item:hover {
    background-color: #E9F6F5;
}

.home-categories .list-slider .slider-item .wrapper {
    position: relative;
    padding: 0 15px;
}

.home-categories .list-slider .slider-item .wrapper .link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.home-categories .list-slider .slider-item .icon {
    margin: 0 auto 6px;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.home-categories .list-slider .slider-item .icon img {
    display: block;
    max-height: 100%;
}

.home-categories .list-slider .slider-item .title {
    font-weight: normal;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #000000;
    transition: color 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    .home-categories .list-slider .slider-item .title {
        transition: none;
    }
}

.home-categories .slider-container {
    position: relative;
}

.home-categories .btn-slider {
    background-color: #fff;
    border: 2px solid #C151E1;
    width: 33px;
    height: 33px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: background-color 0.4s ease;
    position: absolute;
    top: 50%;
    margin-top: -16.5px;
    z-index: 5;
    padding: 0;
}

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

.home-categories .btn-slider.swiper-button-disabled {
    display: none;
}

.home-categories .btn-slider.slide-next {
    right: -16.5px;
}

.home-categories .btn-slider.slide-prev {
    left: -16.5px;
}

.home-categories .btn-slider svg path {
    transition: stroke 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    .home-categories .btn-slider svg path {
        transition: none;
    }
}

.home-categories .btn-slider:hover {
    background-color: #C151E1;
}

.home-categories .btn-slider:hover svg path {
    stroke: #fff;
}

.card-promotion {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    transition: box-shadow 0.4s ease;
}

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

.card-promotion .img {
    position: relative;
    height: 200px;
    margin-bottom: 24px;
    overflow: hidden;
}

.card-promotion .img .badge {
    width: 72px;
    text-align: center;
    padding: 4px 13px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    font-weight: bold;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1px;
    color: #ffffff;
    -webkit-border-radius: 5px 0 5px 0;
    border-radius: 5px 0 5px 0;
    background: #ff9315;
    background: -moz-linear-gradient(top, #ff9315 0%, #f47920 100%);
    background: -webkit-linear-gradient(top, #ff9315 0%, #f47920 100%);
    background: linear-gradient(to bottom, #ff9315 0%, #f47920 100%);
}

.card-promotion .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.card-promotion .info .cat {
    padding: 0 12px;
    display: block;
    color: #f47920;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
}

.card-promotion .info .title {
    padding: 0 12px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.2px;
    margin-bottom: 22px;
    color: #303336;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 48px;
}

.card-promotion .info .title a {
    color: inherit;
}

.card-promotion .info .bottom {
    border-top: 1px solid #e9f6f5;
    padding: 11px 12px 12px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.card-promotion .info .desc {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #aeaeae;
}

.card-promotion .info .view-detail {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: #000000;
    display: inline-block;
}

.card-promotion .info .view-detail svg {
    margin-left: 10px;
    margin-top: -2px;
}

.card-promotion .info .view-detail svg path {
    transition: stroke 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    .card-promotion .info .view-detail svg path {
        transition: none;
    }
}

.card-promotion:hover {
    -webkit-box-shadow: 0px 8px 10px rgba(37, 40, 43, 0.08);
    box-shadow: 0px 8px 10px rgba(37, 40, 43, 0.08);
}

.card-promotion:hover .info .title {
    color: #C151E1;
}

.card-promotion:hover .info a.cat {
    color: #df7630;
}

.card-promotion:hover .info .bottom .view-detail {
    color: #f47920;
}

.card-promotion:hover .info .bottom .view-detail svg path {
    stroke: #f47920;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .card-promotion .img {
        position: relative;
    }

    .card-promotion .img img {
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100%;
        position: absolute;
        right: 50%;
        -ms-transform: translateX(50%);
        -o-transform: translateX(50%);
        -moz-transform: translateX(50%);
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }

    .card-promotion:hover .img img {
        -ms-transform: translateX(50%) scale(1.1);
        -o-transform: translateX(50%) scale(1.1);
        -moz-transform: translateX(50%) scale(1.1);
        -webkit-transform: translateX(50%) scale(1.1);
        transform: translateX(50%) scale(1.1);
    }
}

.hot-deal {
    padding: 42px 0;
    overflow: hidden;
}

.hot-deal .slider {
    width: 100%;
}

.hot-deal .slider .slider-content .slider-item {
    padding: 0 15px 15px;
}

.hot-deal .slider .slider-control {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.hot-deal .slider .slider-control .btn-slider {
    outline: none;
    background-color: transparent;
    padding: 0;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.hot-deal .slider .slider-control .btn-slider.swiper-button-disabled {
    opacity: .5;
    cursor: not-allowed;
}

.hot-deal .slider .slider-control .btn-slider.swiper-button-disabled svg path {
    stroke: #c2c6ca;
}

.hot-deal .slider .slider-control .btn-slider svg path {
    transition: stroke 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    .hot-deal .slider .slider-control .btn-slider svg path {
        transition: none;
    }
}

.hot-deal .slider .slider-control .btn-slider:not(.swiper-button-disabled):hover svg path {
    stroke: #f47920;
}

.hot-deal .slider .slider-control .slide-dots.swiper-pagination-bullets {
    position: static;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.hot-deal .slider .slider-control .slide-dots.swiper-pagination-bullets .swiper-pagination-bullet {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0;
    width: 8px;
    height: 8px;
    background: #d3eeec;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    margin: 0 5px;
    opacity: 1;
    transition: width 0.4s ease, box-shadow 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    .hot-deal .slider .slider-control .slide-dots.swiper-pagination-bullets .swiper-pagination-bullet {
        transition: none;
    }
}

.hot-deal .slider .slider-control .slide-dots.swiper-pagination-bullets .swiper-pagination-bullet:focus {
    outline: none;
}

.hot-deal .slider .slider-control .slide-dots.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 14px;
    background-color: #C151E1;
    -webkit-box-shadow: 0px 2px 6px #a4dad6;
    box-shadow: 0px 2px 6px #a4dad6;
}

.hot-deal .slider .slick-dotted.slick-slider {
    margin-bottom: 13px;
}

.hot-deal .title-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 35px;
}

.hot-deal .title-box .section-title {
    margin-bottom: 0;
}

.hot-deal .title-box .btn-viewall {
    font-size: 14px;
    line-height: 24px;
    font-weight: bold;
    color: #515355;
}

.hot-deal .title-box .btn-viewall span {
    display: inline-block;
    vertical-align: middle;
}

.hot-deal .title-box .btn-viewall svg {
    margin-left: 13px;
    vertical-align: middle;
    transition: transform 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    .hot-deal .title-box .btn-viewall svg {
        transition: none;
    }
}

.hot-deal .title-box .btn-viewall:hover {
    color: #f47920;
}

.hot-deal .title-box .btn-viewall:hover svg {
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

@media (min-width: 992px) {
    header {
        max-width: 960px;
    }

    header .right .search form {
        width: 522px;
    }
}

@media (min-width: 1024px) {
    header {
        max-width: 1000px;
    }

    header .right .search form {
        width: 562px;
    }
}

@media (min-width: 1200px) {
    header {
        max-width: 1140px;
    }

    header .right .search form {
        width: 702px;
    }
}

@media (min-width: 1366px) {
    header {
        max-width: 1300px;
    }

    header .right .search form {
        width: 862px;
    }
}

@media (min-width: 1440px) {
    header {
        max-width: 1440px;
    }

    header .right .search form {
        width: 1002px;
    }
}

@media (min-width: 1200px) {
    footer .main-footer .list-content .footer-col {
        max-width: 20%;
        flex: 0 0 20%;
    }
}

@media (max-width: 1199.98px) {
    footer .contact .list li + li {
        margin-left: 15px;
    }

    footer .contact .subcribe-content {
        width: 590px;
    }
}

@media (max-width: 991.98px) {
    header .right .link .icon {
        margin-right: 0;
    }

    header .right .link .text {
        display: none;
    }

    footer .contact .list {
        margin-bottom: 20px;
    }

    footer .contact .subcribe-content {
        width: 100%;
    }

    footer .contact .subcribe-content form select {
        width: auto;
    }
}

@media (max-width: 767.98px) {
    .quick-link {
        display: none;
    }

    .section-title {
        font-weight: bold;
        font-size: 26px;
        line-height: 30px;
    }

    header .left {
        width: auto;
    }

    header .left .current-persona {
        display: none;
    }

    header .btn-nav {
        width: 48px;
        padding: 5px;
        height: 52px;
    }

    header .logo {
        padding: 0;
    }

    header .right {
        width: auto;
    }

    header .right .btn-search,
    header .right > .search {
        display: none;
    }

    header .right .link {
        padding: 5px;
        height: 52px;
        width: 48px;
    }

    header .right .link .icon {
        margin: 0 auto;
    }

    header .nav-container .search {
        display: block;
    }

    footer .contact .list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    footer .contact .list li + li {
        margin-left: 0;
        margin-top: 12px;
    }

    footer .contact .subcribe-content form {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    footer .contact .subcribe-content form .form-group {
        width: 100%;
        margin-bottom: 10px;
    }

    footer .contact .subcribe-content form .form-group input,
    footer .contact .subcribe-content form .form-group select {
        width: 100%;
        max-width: none;
        margin-left: 0;
    }

    footer .contact .subcribe-content form .btn-primary {
        display: block;
        margin: 0 auto;
    }

    footer .foot {
        padding: 20px 0 12px;
    }

    footer .foot .logo {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    footer .foot .copyright {
        width: 100%;
        padding-bottom: 20px;
        border-bottom: 1px solid #a8ddd9;
        margin-bottom: 20px;
    }

    footer .foot .nav {
        margin-left: 0;
        width: 100%;
        margin-bottom: 10px;
    }

    footer .foot .socials {
        margin-left: 0;
    }

    .hero-banner .slider-item .wrapper .info {
        padding-bottom: 93px;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .hero-banner .slider-item .wrapper .info .cat {
        margin-bottom: 0;
    }

    .hero-banner .slider-item .wrapper .info .title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 4px;
    }

    .hero-banner .slider-item .wrapper .info .desc {
        padding: 0;
        font-size: 14px;
        margin-bottom: 14px;
    }

    .home-categories .list-slider .slick-active + .slick-active .slider-item .wrapper {
        border: none;
    }

    .hot-deal {
        padding: 35px 0 45px;
    }

    .hot-deal .title-box {
        margin-bottom: 15px;
    }

    .hot-deal .title-box .btn-viewall img {
        margin-left: 13px;
    }

    .hot-deal .slick-dotted.slick-slider {
        margin-bottom: 10px;
    }
}

@media (max-width: 575.98px) {
    footer .contact {
        padding: 30px 0;
    }

    footer .contact .subcribe-content form select {
        width: 100%;
        margin-bottom: 8px;
    }

    footer .contact .subcribe-content form .btn-primary {
        margin-left: 0;
        width: 100%;
    }

    footer .main-footer {
        padding: 10px 0;
    }

    footer .main-footer .top-box .btn-collapse {
        padding: 10px 0 10px 25px;
    }

    footer .main-footer .list-content {
        border-top: 1px solid #e9f6f5;
        padding-top: 20px;
    }

    footer .main-footer .list-content .footer-col {
        margin-bottom: 20px;
    }

    footer .main-footer .list-content .footer-col .footer-title {
        margin-bottom: 0px;
    }

    footer .main-footer .list-content .footer-col .footer-nav {
        padding-top: 10px;
    }

    footer .main-footer .list-content .footer-col .footer-nav.highlight {
        padding-top: 0;
    }

    footer .main-footer .list-content .footer-col .footer-nav.highlight li + li {
        margin-top: 20px;
    }

    footer .main-footer .list-content .footer-col.has-collapse .footer-title {
        position: relative;
        padding-right: 18px;
    }

    footer .main-footer .list-content .footer-col.has-collapse .footer-title:after, footer .main-footer .list-content .footer-col.has-collapse .footer-title:before {
        content: "";
        position: absolute;
        top: 50%;
        margin-top: -1px;
        display: inline-block;
        border: 1px solid #f47920;
        -webkit-border-radius: 1px;
        border-radius: 1px;
        width: 12px;
        right: 3px;
        -ms-transition: transform 0.4s ease;
        -o-transition: transform 0.4s ease;
        -moz-transition: transform 0.4s ease;
        -webkit-transition: transform 0.4s ease;
        transition: transform 0.4s ease;
    }

    footer .main-footer .list-content .footer-col.has-collapse .footer-title:before {
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    footer .main-footer .list-content .footer-col.has-collapse .footer-title.active:after, footer .main-footer .list-content .footer-col.has-collapse .footer-title.active:before {
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    footer .main-footer .list-content .footer-col.has-collapse .footer-nav {
        display: none;
    }

    footer .foot .socials {
        font-size: 20px;
    }

    footer .foot .socials a {
        width: 30px;
        height: 30px;
        line-height: 32px;
    }

    footer .foot .nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    footer .foot .nav ul li {
        font-size: 14px;
        line-height: 20px;
        font-weight: 500;
    }

    footer .foot .nav ul li + li {
        margin-top: 10px;
        margin-left: 0;
        padding-left: 0;
    }

    footer .foot .nav ul li + li:after {
        content: none;
    }

    .hero-banner {
        height: 550px;
    }

    .hero-banner:after {
        width: 194px;
        height: 86px;
        background-size: auto 86px;
    }

    .hero-banner .slider-item .wrapper {
        height: 550px;
    }

    .home-categories .slider-container .slider-control {
        display: none;
    }

    .hot-deal .slider .slider-control .btn-slider {
        display: none;
    }
}

@media (max-width: 374.98px) {
    header .nav-container .nav-tabs li a {
        font-size: 14px;
        padding: 10px 8px;
    }
}

/* dropdown ngan hang so */
.dropdown-toggle {
    white-space: nowrap
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent
}

.dropdown-toggle:empty::after {
    margin-left: 0
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    padding: .5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem
}

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

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

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

.btn-nhs {
    background-color: transparent !important;
    border: none !important;
    padding: 0 1rem !important;
}

header .right .dropdown .btn-nhs:hover {
    color: #f47920;
}

header .right .menu-nhs li a:hover {
    color: #C151E1;
}