@charset "UTF-8";
/* CSS Document */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background: transparent;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

:target, input:focus, textarea:focus, select:focus {
  outline: 0;
}

*:active {
  outline: 0 !important;
}

/* COLORS  */
/* FONTS  */
/* Laout (grid.scss)  */
/* HEADER / MENU */
.menu-opener:after, .img-hover img {
  transition: all 0.2s ease-in-out;
}

.no-anim {
  transition: none !important;
}

.img-hover img {
  transform: translateZ(0);
}

.img-hover:hover img, a:hover .img-hover img {
  opacity: 0.9;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/
.animated {
  animation-duration: 1s;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes scaleUp {
  from {
    max-height: 0;
  }
  to {
    max-height: unset;
  }
}
.scaleUp {
  animation-name: scaleUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-36px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(36px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.fadeInScale {
  animation-name: fadeInScale;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-10px, 0, 0);
  }
  25%, 75% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

.spinner {
  margin: 0 auto;
  width: 70px;
  text-align: center;
  opacity: 0.8;
}

.spinner > div {
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.preloader-in-scroll .spinner > div {
  width: 10px;
  height: 10px;
}

#preloader .spinner > div {
  background: #fff;
}

.spinner .bounce1 {
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  animation-delay: -0.16s;
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
/* .ripple */
.click-effect, .click-effect2 {
  position: relative;
  display: block;
  overflow: hidden;
}

.ripple {
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  position: absolute;
  z-index: 9;
  opacity: 1;
}

.click-effect2 .ripple, .top-menu li .ripple, .btn .ripple {
  background: rgba(40, 201, 235, 0.1);
}

.rippleEffect {
  animation: rippleDrop 0.6s linear;
}

@keyframes rippleDrop {
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* mark-target */
@keyframes markTarget {
  0%, 40%, 80% {
    box-shadow: 0 0 30px 0 rgba(68, 186, 50, 0.7);
  }
  20%, 60%, 90% {
    box-shadow: 0 0 15px 0 rgba(68, 186, 50, 0.4);
  }
  100% {
    box-shadow: none;
  }
}
.mark-target {
  animation-name: markTarget;
  animation-duration: 4s;
  animation-fill-mode: both;
}

@-ms-viewport {
  width: device-width;
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  width: 100%;
  padding-right: 32px;
  padding-left: 32px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1460px;
}

.container-small {
  width: 100%;
  padding-right: 32px;
  padding-left: 32px;
  margin-right: auto;
  margin-left: auto;
  max-width: 950px;
}

.container-big {
  width: 100%;
  padding-right: 32px;
  padding-left: 32px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1650px;
}

.container-fluid {
  width: 100%;
  padding-right: 32px;
  padding-left: 32px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -32px;
  margin-left: -32px;
}

.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, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxl,
.col-xxl-auto, .el-5 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding: 32px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

.offset-half {
  margin-left: 4.166666667%;
}

.el-5 {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.row.row-50 {
  margin-left: -50px;
  margin-right: -50px;
}

.row.row-50 > [class*=col], .row.row-50 > [class*=el-] {
  padding: 50px;
}

.row.row-30 {
  margin-left: -30px;
  margin-right: -30px;
}

.row.row-30 > [class*=col], .row.row-30 > [class*=el-] {
  padding: 30px;
}

.row.row-20 {
  margin-left: -20px;
  margin-right: -20px;
}

.row.row-20 > [class*=col], .row.row-20 > [class*=el-] {
  padding: 20px;
}

.row.row-15 {
  margin-left: -15px;
  margin-right: -15px;
}

.row.row-15 > [class*=col], .row.row-15 > [class*=el-] {
  padding: 15px;
}

.row.row-10 {
  margin-left: -10px;
  margin-right: -10px;
}

.row.row-10 > [class*=col], .row.row-10 > [class*=el-] {
  padding: 10px;
}

.row.row-5 {
  margin-left: -5px;
  margin-right: -5px;
}

.row.row-5 > [class*=col], .row.row-5 > [class*=el-] {
  padding: 5px;
}

.column-4 {
  -webkit-column-count: 4; /* Chrome, Safari, Opera */
  -moz-column-count: 4; /* Firefox */
  column-count: 4;
}

.column-3 {
  -webkit-column-count: 3; /* Chrome, Safari, Opera */
  -moz-column-count: 3; /* Firefox */
  column-count: 3;
}

.column-2 {
  -webkit-column-count: 2; /* Chrome, Safari, Opera */
  -moz-column-count: 2; /* Firefox */
  column-count: 2;
}

.column-1 {
  -webkit-column-count: 1; /* Chrome, Safari, Opera */
  -moz-column-count: 1; /* Firefox */
  column-count: 1;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
  .el-sm-5 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row.row-sm-50 {
    margin-left: -50px;
    margin-right: -50px;
  }
  .row.row-sm-50 > [class*=col], .row.row-sm-50 > [class*=el-] {
    padding: 50px;
  }
  .row.row-sm-30 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .row.row-sm-30 > [class*=col], .row.row-sm-30 > [class*=el-] {
    padding: 30px;
  }
  .row.row-sm-20 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .row.row-sm-20 > [class*=col], .row.row-sm-20 > [class*=el-] {
    padding: 20px;
  }
  .row.row-sm-15 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row.row-sm-15 > [class*=col], .row.row-sm-15 > [class*=el-] {
    padding: 15px;
  }
  .row.row-sm-10 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .row.row-sm-10 > [class*=col], .row.row-sm-10 > [class*=el-] {
    padding: 10px;
  }
  .row.row-sm-5 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .row.row-sm-5 > [class*=col], .row.row-sm-5 > [class*=el-] {
    padding: 5px;
  }
  .column-sm-4 {
    -webkit-column-count: 4; /* Chrome, Safari, Opera */
    -moz-column-count: 4; /* Firefox */
    column-count: 4;
  }
  .column-sm-3 {
    -webkit-column-count: 3; /* Chrome, Safari, Opera */
    -moz-column-count: 3; /* Firefox */
    column-count: 3;
  }
  .column-sm-2 {
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
  }
  .column-sm-1 {
    -webkit-column-count: 1; /* Chrome, Safari, Opera */
    -moz-column-count: 1; /* Firefox */
    column-count: 1;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
  .el-md-5 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row.row-md-50 {
    margin-left: -50px;
    margin-right: -50px;
  }
  .row.row-md-50 > [class*=col], .row.row-md-50 > [class*=el-] {
    padding: 50px;
  }
  .row.row-md-30 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .row.row-md-30 > [class*=col], .row.row-md-30 > [class*=el-] {
    padding: 30px;
  }
  .row.row-md-20 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .row.row-md-20 > [class*=col], .row.row-md-20 > [class*=el-] {
    padding: 20px;
  }
  .row.row-md-15 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row.row-md-15 > [class*=col], .row.row-md-15 > [class*=el-] {
    padding: 15px;
  }
  .row.row-md-10 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .row.row-md-10 > [class*=col], .row.row-md-10 > [class*=el-] {
    padding: 10px;
  }
  .row.row-md-5 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .row.row-md-5 > [class*=col], .row.row-md-5 > [class*=el-] {
    padding: 5px;
  }
  .column-md-4 {
    -webkit-column-count: 4; /* Chrome, Safari, Opera */
    -moz-column-count: 4; /* Firefox */
    column-count: 4;
  }
  .column-md-3 {
    -webkit-column-count: 3; /* Chrome, Safari, Opera */
    -moz-column-count: 3; /* Firefox */
    column-count: 3;
  }
  .column-md-2 {
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
  }
  .column-md-1 {
    -webkit-column-count: 1; /* Chrome, Safari, Opera */
    -moz-column-count: 1; /* Firefox */
    column-count: 1;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
  .el-lg-5 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row.row-lg-50 {
    margin-left: -50px;
    margin-right: -50px;
  }
  .row.row-lg-50 > [class*=col], .row.row-lg-50 > [class*=el-] {
    padding: 50px;
  }
  .row.row-lg-30 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .row.row-lg-30 > [class*=col], .row.row-lg-30 > [class*=el-] {
    padding: 30px;
  }
  .row.row-lg-20 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .row.row-lg-20 > [class*=col], .row.row-lg-20 > [class*=el-] {
    padding: 20px;
  }
  .row.row-lg-15 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row.row-lg-15 > [class*=col], .row.row-lg-15 > [class*=el-] {
    padding: 15px;
  }
  .row.row-lg-10 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .row.row-lg-10 > [class*=col], .row.row-lg-10 > [class*=el-] {
    padding: 10px;
  }
  .row.row-lg-5 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .row.row-lg-5 > [class*=col], .row.row-lg-5 > [class*=el-] {
    padding: 5px;
  }
  .column-lg-4 {
    -webkit-column-count: 4; /* Chrome, Safari, Opera */
    -moz-column-count: 4; /* Firefox */
    column-count: 4;
  }
  .column-lg-3 {
    -webkit-column-count: 3; /* Chrome, Safari, Opera */
    -moz-column-count: 3; /* Firefox */
    column-count: 3;
  }
  .column-lg-2 {
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
  }
  .column-lg-1 {
    -webkit-column-count: 1; /* Chrome, Safari, Opera */
    -moz-column-count: 1; /* Firefox */
    column-count: 1;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
  .el-xl-5 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row.row-xl-50 {
    margin-left: -50px;
    margin-right: -50px;
  }
  .row.row-xl-50 > [class*=col], .row.row-xl-50 > [class*=el-] {
    padding: 50px;
  }
  .row.row-xl-30 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .row.row-xl-30 > [class*=col], .row.row-xl-30 > [class*=el-] {
    padding: 30px;
  }
  .row.row-xl-20 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .row.row-xl-20 > [class*=col], .row.row-xl-20 > [class*=el-] {
    padding: 20px;
  }
  .row.row-xl-15 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row.row-xl-15 > [class*=col], .row.row-xl-15 > [class*=el-] {
    padding: 15px;
  }
  .row.row-xl-10 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .row.row-xl-10 > [class*=col], .row.row-xl-10 > [class*=el-] {
    padding: 10px;
  }
  .row.row-xl-5 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .row.row-xl-5 > [class*=col], .row.row-xl-5 > [class*=el-] {
    padding: 5px;
  }
  .column-xl-4 {
    -webkit-column-count: 4; /* Chrome, Safari, Opera */
    -moz-column-count: 4; /* Firefox */
    column-count: 4;
  }
  .column-xl-3 {
    -webkit-column-count: 3; /* Chrome, Safari, Opera */
    -moz-column-count: 3; /* Firefox */
    column-count: 3;
  }
  .column-xl-2 {
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
  }
  .column-xl-1 {
    -webkit-column-count: 1; /* Chrome, Safari, Opera */
    -moz-column-count: 1; /* Firefox */
    column-count: 1;
  }
}
@media (min-width: 1600px) {
  .col-xxl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xxl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xxl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xxl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xxl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xxl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xxl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xxl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xxl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xxl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xxl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xxl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xxl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xxl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xxl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xxl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xxl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xxl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xxl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xxl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xxl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xxl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xxl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xxl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.666667%;
  }
  .el-xxl-5 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row.row-xxl-50 {
    margin-left: -50px;
    margin-right: -50px;
  }
  .row.row-xxl-50 > [class*=col], .row.row-xxl-50 > [class*=el-] {
    padding: 50px;
  }
  .row.row-xxl-30 {
    margin-left: -30px;
    margin-right: -30px;
  }
  .row.row-xxl-30 > [class*=col], .row.row-xxl-30 > [class*=el-] {
    padding: 30px;
  }
  .row.row-xxl-20 {
    margin-left: -20px;
    margin-right: -20px;
  }
  .row.row-xxl-20 > [class*=col], .row.row-xxl-20 > [class*=el-] {
    padding: 20px;
  }
  .row.row-xxl-15 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row.row-xxl-15 > [class*=col], .row.row-xxl-15 > [class*=el-] {
    padding: 15px;
  }
  .row.row-xxl-10 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .row.row-xxl-10 > [class*=col], .row.row-xxl-10 > [class*=el-] {
    padding: 10px;
  }
  .row.row-xxl-5 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .row.row-xxl-5 > [class*=col], .row.row-xxl-5 > [class*=el-] {
    padding: 5px;
  }
  .column-xxl-4 {
    -webkit-column-count: 4; /* Chrome, Safari, Opera */
    -moz-column-count: 4; /* Firefox */
    column-count: 4;
  }
  .column-xxl-3 {
    -webkit-column-count: 3; /* Chrome, Safari, Opera */
    -moz-column-count: 3; /* Firefox */
    column-count: 3;
  }
  .column-xxl-2 {
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
  }
  .column-xxl-1 {
    -webkit-column-count: 1; /* Chrome, Safari, Opera */
    -moz-column-count: 1; /* Firefox */
    column-count: 1;
  }
}
.d-none, .hide, .hidden, .hide-collapse[aria-expanded=true] {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block, .inline-block {
  display: inline-block !important;
}

.d-block, .block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.flex-1 {
  flex: 1;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1600px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1600px) {
  .flex-xxl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xxl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xxl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xxl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xxl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xxl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
/* ##### KLASY POMOCNICZE ##### */
[class*=transform-center], .preloader-in2 .spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.transform-center-x {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.transform-center-y {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.img-max-auto img {
  max-width: 100% !important;
  height: auto !important;
}

.fa-2x {
  vertical-align: -15% !important;
}

.fw-200, .fw-lighter {
  font-weight: 200 !important;
}

.fw-300, .fw-light {
  font-weight: 300 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-400, .fw-normal {
  font-weight: normal !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-700, .fw-bold {
  font-weight: bold !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.tt-uppercase {
  text-transform: uppercase !important;
}

.tt-lowercase {
  text-transform: lowercase !important;
}

.tt-none {
  text-transform: none !important;
}

.clear {
  clear: both !important;
}

.m-center {
  margin: 0 auto;
  float: none !important;
}

.full {
  width: 100% !important;
}

.h-auto {
  height: auto !important;
}

.h-100 {
  height: 100% !important;
}

.wrap {
  overflow: hidden;
}

.no-wrap {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.white-space-nowrap {
  white-space: nowrap;
}

.wrap-anywhere, .overflow-wrap-anywhere {
  overflow-wrap: anywhere;
}

.fixed {
  position: fixed;
}

.vh100 {
  min-height: 100vh;
}

.full-height {
  height: calc(100vh - 100px);
}

.max-full-height {
  max-height: calc(100vh - 100px);
}

.min-full-height {
  min-height: calc(100vh - 100px);
}

.fade {
  transition: opacity 0.15s linear;
}

.table-wrapper {
  overflow-x: auto;
  width: 100%;
  position: relative;
}

.table-fixed {
  table-layout: fixed;
}

.table-hover tbody tr {
  cursor: pointer;
}

.table-hover tbody tr:hover td {
  background: #f4fbff;
}

.table-no-cell-borders td, .table-no-cell-borders th {
  border: 0 !important;
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.fade.show {
  opacity: 1;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.cr-pointer, [data-target], [data-src]:not(img), [onclick], [data-scroll-target] {
  cursor: pointer !important;
}

.cr-default {
  cursor: default !important;
}

.ico-link {
  opacity: 1;
}

.ico-link:hover {
  opacity: 0.7;
}

.text-decoration, .link-underline {
  text-decoration: underline;
}

a.text-decoration:hover, a.text-decoration:focus, .link-underline:hover, .link-underline:focus {
  text-decoration: none;
}

.obj-fit-cover {
  object-fit: cover;
  height: 100%;
}

.list-style-none {
  list-style: none !important;
}

.ws-nowrap {
  white-space: nowrap !important;
}

.ws-prewrap {
  white-space: pre-wrap !important;
}

.mw-initial {
  max-width: initial !important;
}

.mw-50 {
  max-width: 50% !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-initial {
  max-height: initial !important;
}

.mh-50 {
  max-height: 50% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.img-grayscale {
  filter: grayscale(100%);
}

.position-absolute {
  position: absolute !important;
}

.position-relative, .bx-rel, .p-relative {
  position: relative !important;
}

.position-static {
  position: static !important;
}

.position-fixed {
  position: fixed !important;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-3 {
  z-index: 3;
}

.z-4 {
  z-index: 4;
}

.z-5 {
  z-index: 5;
}

.z-6 {
  z-index: 6;
}

.z-7 {
  z-index: 7;
}

.z-8 {
  z-index: 8;
}

.z-9 {
  z-index: 9;
}

.z-10 {
  z-index: 10;
}

.color-primary {
  color: #ee1b24 !important;
}

.color-secondary {
  color: #151b3d !important;
}

.color-white {
  color: #fff !important;
}

.color-black {
  color: #000000 !important;
}

.color-gray {
  color: #e6e7e9 !important;
}

.color-gray2, .color-light-gray {
  color: #666666 !important;
}

.color-gray3 {
  color: #413f3f !important;
}

.color-default {
  color: #333333 !important;
}

.color-disabled {
  color: gray !important;
}

.bg-primary {
  background-color: #ee1b24 !important;
}

.bg-secondary {
  background-color: #151b3d !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-gray {
  background-color: #e6e7e9 !important;
}

.bg-gray2, .bg-light-gray {
  background-color: #666666 !important;
}

.bg-gray3 {
  background-color: #413f3f !important;
}

.bg-default {
  background-color: #333333 !important;
}

.bg-default-gradient {
  background: linear-gradient(119deg, #ee1b24 0.61%, #333333 57.07%);
}

.bg-disabled {
  background-color: gray !important;
}

.bg-transparent {
  background: transparent !important;
}

/* ##### BX-SCROLL ##### */
.bx-scroll-y {
  overflow: hidden;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.bx-scroll-x {
  overflow: hidden;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

[class*=bx-scroll-]::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

[class*=bx-scroll-]::-webkit-scrollbar-thumb {
  height: 50px;
  background-color: #333333;
  border-radius: 4px;
  outline: 2px solid #F1F1F1;
  outline-offset: -2px;
  border: 2px solid #F1F1F1;
}

[class*=bx-scroll-]::-webkit-scrollbar-track-piece {
  background-color: #F1F1F1;
  -webkit-border-radius: 0;
}

[class*=bx-scroll-]::-webkit-scrollbar-track {
  background-color: transparent;
}

[class*=bx-scroll-].scroll-white::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

[class*=bx-scroll-].scroll-white::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: #fff;
  outline: none;
  border: none;
}

[class*=bx-scroll-].scroll-white::-webkit-scrollbar-track-piece {
  background-color: rgba(0, 0, 0, 0.2);
}

[class*=bx-scroll-].scroll-gray::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: #e6e7e9;
  outline: none;
  border: none;
}

[class*=bx-scroll-].scroll-gray::-webkit-scrollbar-track-piece {
  background-color: transparent;
}

[class*=bx-scroll-].scroll-primary::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: #ee1b24;
  outline: none;
  border: none;
}

[class*=bx-scroll-].scroll-primary::-webkit-scrollbar-track-piece {
  background-color: transparent;
}

[class*=bx-scroll-].scroll-sm::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

[class*=bx-scroll-].scroll-sm::-webkit-scrollbar-thumb {
  border: none;
  outline: none;
}

/* ##### ALERT ##### */
.alert {
  padding: 10px;
  border: 1px solid transparent;
  font-size: 15px;
  margin-bottom: 10px;
  text-align: center;
  border-radius: 3px;
}

.alert.fixed {
  position: fixed;
  z-index: 10000;
  width: 400px;
  max-width: 100%;
  font-size: 14px;
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: 0;
}

.alert p a {
  text-decoration: underline;
}

.alert p a:hover {
  text-decoration: none;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alert-success a {
  color: #3c763d !important;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
  overflow: hidden;
}

.alert-info a {
  color: #31708f !important;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

.alert-warning a {
  color: #8a6d3b !important;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.alert-danger a {
  color: #a94442 !important;
}

/* ##### BX-VIDEO ##### */
.bx-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.bx-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ##### FLOAT & ALIGN ##### */
.fl {
  float: left !important;
}

.fr {
  float: right !important;
}

.t-center, .text-center {
  text-align: center !important;
}

.t-right, .text-right {
  text-align: right !important;
}

.t-left, .text-left {
  text-align: left !important;
}

.t-justify, .text-justify {
  text-align: justify !important;
}

/* ##### SHADOWS ##### */
.sh01 {
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.25);
}

/* ##### WIDTH ##### */
.w-inherit {
  width: inherit !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

/* ##### MARGIN & PADDING ##### */
.m-0, .nom {
  margin: 0 !important;
}

.m-1 {
  margin: 1px !important;
}

.m-2 {
  margin: 2px !important;
}

.m-5 {
  margin: 5px !important;
}

.m-10 {
  margin: 10px !important;
}

.m-15 {
  margin: 15px !important;
}

.m-20 {
  margin: 20px !important;
}

.m-30 {
  margin: 30px !important;
}

.m-40 {
  margin: 40px !important;
}

.m-50 {
  margin: 50px !important;
}

.m-60 {
  margin: 60px !important;
}

.m-70 {
  margin: 70px !important;
}

.mt-0, .nom-t {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 1px !important;
}

.mt-2 {
  margin-top: 2px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mr-0, .nom-r {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 1px !important;
}

.mr-2 {
  margin-right: 2px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.ml-0, .nom-l {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 1px !important;
}

.ml-2 {
  margin-left: 2px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.mb-0, .nom-b {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 1px !important;
}

.mb-2 {
  margin-bottom: 2px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.m-auto {
  margin: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-auto {
  margin-bottom: auto;
}

.p-0, .nop {
  padding: 0 !important;
}

.p-5 {
  padding: 5px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-25 {
  padding: 25px !important;
}

.p-30 {
  padding: 30px !important;
}

.p-40 {
  padding: 40px !important;
}

.p-50 {
  padding: 50px !important;
}

.p-60 {
  padding: 60px !important;
}

.pt-0, .nop-t {
  padding-top: 0 !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pr-0, .nop-r {
  padding-right: 0 !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pl-0, .nop-l {
  padding-left: 0 !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pb-0, .nop-b {
  padding-bottom: 0 !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.py-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.py-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.py-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.py-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.px-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.px-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.px-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.px-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.px-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.px-60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

/* ##### FONT SIZE ##### */
.fs-italic {
  font-style: italic !important;
}

.fs-10 {
  font-size: 10px !important;
}

.fs-11 {
  font-size: 11px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-40 {
  font-size: 40px !important;
}

.fs-50 {
  font-size: 50px !important;
}

.fs-60 {
  font-size: 60px !important;
}

.fs-70 {
  font-size: 70px !important;
}

.fs-77 {
  font-size: 77px !important;
}

.fs-100 {
  font-size: 100px !important;
}

/* ##### BORDERS ##### */
.br {
  border: 1px solid #333333 !important;
}

.brt {
  border-top: 1px solid #333333 !important;
}

.brr {
  border-right: 1px solid #333333 !important;
}

.brb {
  border-bottom: 1px solid #333333 !important;
}

.brl {
  border-left: 1px solid #333333 !important;
}

.br-none {
  border: none !important;
}

.brt-none {
  border-top: none !important;
}

.brr-none {
  border-right: none !important;
}

.brb-none {
  border-bottom: none !important;
}

.brl-none {
  border-left: none !important;
}

.outline-none, .outline-none:focus {
  outline: none !important;
}

@media (min-width: 576px) {
  /* ##### FLOAT & ALIGN ##### */
  .fl-sm {
    float: left !important;
  }
  .fr-sm {
    float: right !important;
  }
  .t-sm-center, .text-sm-center {
    text-align: center !important;
  }
  .t-sm-right, .text-sm-right {
    text-align: right !important;
  }
  .t-sm-left, .text-sm-left {
    text-align: left !important;
  }
  .t-sm-justify, .text-sm-justify {
    text-align: justify !important;
  }
  /* ##### WIDTH ##### */
  .w-sm-inherit {
    width: inherit !important;
  }
  .w-sm-25 {
    width: 25% !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
  .w-sm-75 {
    width: 75% !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
  /* ##### MARGIN & PADDING ##### */
  .m-sm-0, .nom-sm {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 1px !important;
  }
  .m-sm-2 {
    margin: 2px !important;
  }
  .m-sm-5 {
    margin: 5px !important;
  }
  .m-sm-10 {
    margin: 10px !important;
  }
  .m-sm-15 {
    margin: 15px !important;
  }
  .m-sm-20 {
    margin: 20px !important;
  }
  .m-sm-30 {
    margin: 30px !important;
  }
  .m-sm-40 {
    margin: 40px !important;
  }
  .m-sm-50 {
    margin: 50px !important;
  }
  .m-sm-60 {
    margin: 60px !important;
  }
  .m-sm-70 {
    margin: 70px !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 1px !important;
  }
  .mt-sm-2 {
    margin-top: 2px !important;
  }
  .mt-sm-5 {
    margin-top: 5px !important;
  }
  .mt-sm-10 {
    margin-top: 10px !important;
  }
  .mt-sm-15 {
    margin-top: 15px !important;
  }
  .mt-sm-20 {
    margin-top: 20px !important;
  }
  .mt-sm-30 {
    margin-top: 30px !important;
  }
  .mt-sm-40 {
    margin-top: 40px !important;
  }
  .mt-sm-50 {
    margin-top: 50px !important;
  }
  .mt-sm-60 {
    margin-top: 60px !important;
  }
  .mt-sm-70 {
    margin-top: 70px !important;
  }
  .mr-sm-0 {
    margin-right: 0 !important;
  }
  .mr-sm-1 {
    margin-right: 1px !important;
  }
  .mr-sm-2 {
    margin-right: 2px !important;
  }
  .mr-sm-5 {
    margin-right: 5px !important;
  }
  .mr-sm-10 {
    margin-right: 10px !important;
  }
  .mr-sm-15 {
    margin-right: 15px !important;
  }
  .mr-sm-20 {
    margin-right: 20px !important;
  }
  .mr-sm-30 {
    margin-right: 30px !important;
  }
  .mr-sm-40 {
    margin-right: 40px !important;
  }
  .mr-sm-50 {
    margin-right: 50px !important;
  }
  .mr-sm-60 {
    margin-right: 60px !important;
  }
  .mr-sm-70 {
    margin-right: 70px !important;
  }
  .ml-sm-0 {
    margin-left: 0 !important;
  }
  .ml-sm-1 {
    margin-left: 1px !important;
  }
  .ml-sm-2 {
    margin-left: 2px !important;
  }
  .ml-sm-5 {
    margin-left: 5px !important;
  }
  .ml-sm-10 {
    margin-left: 10px !important;
  }
  .ml-sm-15 {
    margin-left: 15px !important;
  }
  .ml-sm-20 {
    margin-left: 20px !important;
  }
  .ml-sm-30 {
    margin-left: 30px !important;
  }
  .ml-sm-40 {
    margin-left: 40px !important;
  }
  .ml-sm-50 {
    margin-left: 50px !important;
  }
  .ml-sm-60 {
    margin-left: 60px !important;
  }
  .ml-sm-70 {
    margin-left: 70px !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 1px !important;
  }
  .mb-sm-2 {
    margin-bottom: 2px !important;
  }
  .mb-sm-5 {
    margin-bottom: 5px !important;
  }
  .mb-sm-10 {
    margin-bottom: 10px !important;
  }
  .mb-sm-15 {
    margin-bottom: 15px !important;
  }
  .mb-sm-20 {
    margin-bottom: 20px !important;
  }
  .mb-sm-30 {
    margin-bottom: 30px !important;
  }
  .mb-sm-40 {
    margin-bottom: 40px !important;
  }
  .mb-sm-50 {
    margin-bottom: 50px !important;
  }
  .mb-sm-60 {
    margin-bottom: 60px !important;
  }
  .mb-sm-70 {
    margin-bottom: 70px !important;
  }
  .m-sm-auto {
    margin: auto;
  }
  .ml-sm-auto {
    margin-left: auto;
  }
  .mr-sm-auto {
    margin-right: auto;
  }
  .mt-sm-auto {
    margin-top: auto;
  }
  .mb-sm-auto {
    margin-bottom: auto;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-5 {
    padding: 5px !important;
  }
  .p-sm-10 {
    padding: 10px !important;
  }
  .p-sm-15 {
    padding: 15px !important;
  }
  .p-sm-20 {
    padding: 20px !important;
  }
  .p-sm-25 {
    padding: 25px !important;
  }
  .p-sm-30 {
    padding: 30px !important;
  }
  .p-sm-40 {
    padding: 40px !important;
  }
  .p-sm-50 {
    padding: 50px !important;
  }
  .p-sm-60 {
    padding: 60px !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-5 {
    padding-top: 5px !important;
  }
  .pt-sm-10 {
    padding-top: 10px !important;
  }
  .pt-sm-15 {
    padding-top: 15px !important;
  }
  .pt-sm-20 {
    padding-top: 20px !important;
  }
  .pt-sm-30 {
    padding-top: 30px !important;
  }
  .pt-sm-40 {
    padding-top: 40px !important;
  }
  .pt-sm-50 {
    padding-top: 50px !important;
  }
  .pt-sm-60 {
    padding-top: 60px !important;
  }
  .pr-sm-0 {
    padding-right: 0 !important;
  }
  .pr-sm-5 {
    padding-right: 5px !important;
  }
  .pr-sm-10 {
    padding-right: 10px !important;
  }
  .pr-sm-15 {
    padding-right: 15px !important;
  }
  .pr-sm-20 {
    padding-right: 20px !important;
  }
  .pr-sm-30 {
    padding-right: 30px !important;
  }
  .pr-sm-40 {
    padding-right: 40px !important;
  }
  .pr-sm-50 {
    padding-right: 50px !important;
  }
  .pr-sm-60 {
    padding-right: 60px !important;
  }
  .pl-sm-0 {
    padding-left: 0 !important;
  }
  .pl-sm-5 {
    padding-left: 5px !important;
  }
  .pl-sm-10 {
    padding-left: 10px !important;
  }
  .pl-sm-15 {
    padding-left: 15px !important;
  }
  .pl-sm-20 {
    padding-left: 20px !important;
  }
  .pl-sm-30 {
    padding-left: 30px !important;
  }
  .pl-sm-40 {
    padding-left: 40px !important;
  }
  .pl-sm-50 {
    padding-left: 50px !important;
  }
  .pl-sm-60 {
    padding-left: 60px !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-5 {
    padding-bottom: 5px !important;
  }
  .pb-sm-10 {
    padding-bottom: 10px !important;
  }
  .pb-sm-15 {
    padding-bottom: 15px !important;
  }
  .pb-sm-20 {
    padding-bottom: 20px !important;
  }
  .pb-sm-30 {
    padding-bottom: 30px !important;
  }
  .pb-sm-40 {
    padding-bottom: 40px !important;
  }
  .pb-sm-50 {
    padding-bottom: 50px !important;
  }
  .pb-sm-60 {
    padding-bottom: 60px !important;
  }
  .pb-sm-100 {
    padding-bottom: 100px !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .py-sm-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .py-sm-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .py-sm-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .py-sm-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .py-sm-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-sm-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .py-sm-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .px-sm-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .px-sm-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .px-sm-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .px-sm-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .px-sm-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-sm-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .px-sm-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .px-sm-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .px-sm-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  /* ##### FONT SIZE ##### */
  .fs-sm-10 {
    font-size: 10px !important;
  }
  .fs-sm-11 {
    font-size: 11px !important;
  }
  .fs-sm-12 {
    font-size: 12px !important;
  }
  .fs-sm-13 {
    font-size: 13px !important;
  }
  .fs-sm-14 {
    font-size: 14px !important;
  }
  .fs-sm-15 {
    font-size: 15px !important;
  }
  .fs-sm-16 {
    font-size: 16px !important;
  }
  .fs-sm-18 {
    font-size: 18px !important;
  }
  .fs-sm-20 {
    font-size: 20px !important;
  }
  .fs-sm-22 {
    font-size: 22px !important;
  }
  .fs-sm-24 {
    font-size: 24px !important;
  }
  .fs-sm-26 {
    font-size: 26px !important;
  }
  .fs-sm-28 {
    font-size: 28px !important;
  }
  .fs-sm-30 {
    font-size: 30px !important;
  }
  .fs-sm-36 {
    font-size: 36px !important;
  }
  .fs-sm-40 {
    font-size: 40px !important;
  }
  .fs-sm-50 {
    font-size: 50px !important;
  }
  .fs-sm-60 {
    font-size: 60px !important;
  }
  .fs-sm-100 {
    font-size: 100px !important;
  }
  /* ##### BORDERS ##### */
  .br-sm {
    border: 1px solid #333333 !important;
  }
  .brt-sm {
    border-top: 1px solid #333333 !important;
  }
  .brr-sm {
    border-right: 1px solid #333333 !important;
  }
  .brb-sm {
    border-bottom: 1px solid #333333 !important;
  }
  .brl-sm {
    border-left: 1px solid #333333 !important;
  }
  .br-sm-none {
    border: none !important;
  }
  .brt-sm-none {
    border-top: none !important;
  }
  .brr-sm-none {
    border-right: none !important;
  }
  .brb-sm-none {
    border-bottom: none !important;
  }
  .brl-sm-none {
    border-left: none !important;
  }
}
@media (min-width: 768px) {
  /* ##### FLOAT & ALIGN ##### */
  .fl-md {
    float: left !important;
  }
  .fr-md {
    float: right !important;
  }
  .t-md-center, .text-md-center {
    text-align: center !important;
  }
  .t-md-right, .text-md-right {
    text-align: right !important;
  }
  .t-md-left, .text-md-left {
    text-align: left !important;
  }
  .t-md-justify, .text-md-justify {
    text-align: justify !important;
  }
  /* ##### WIDTH ##### */
  .w-md-inherit {
    width: inherit !important;
  }
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
  /* ##### MARGIN & PADDING ##### */
  .m-md-0, .nom-md {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 1px !important;
  }
  .m-md-2 {
    margin: 2px !important;
  }
  .m-md-5 {
    margin: 5px !important;
  }
  .m-md-10 {
    margin: 10px !important;
  }
  .m-md-15 {
    margin: 15px !important;
  }
  .m-md-20 {
    margin: 20px !important;
  }
  .m-md-30 {
    margin: 30px !important;
  }
  .m-md-40 {
    margin: 40px !important;
  }
  .m-md-50 {
    margin: 50px !important;
  }
  .m-md-60 {
    margin: 60px !important;
  }
  .m-md-70 {
    margin: 70px !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 1px !important;
  }
  .mt-md-2 {
    margin-top: 2px !important;
  }
  .mt-md-5 {
    margin-top: 5px !important;
  }
  .mt-md-10 {
    margin-top: 10px !important;
  }
  .mt-md-15 {
    margin-top: 15px !important;
  }
  .mt-md-20 {
    margin-top: 20px !important;
  }
  .mt-md-30 {
    margin-top: 30px !important;
  }
  .mt-md-40 {
    margin-top: 40px !important;
  }
  .mt-md-50 {
    margin-top: 50px !important;
  }
  .mt-md-60 {
    margin-top: 60px !important;
  }
  .mt-md-70 {
    margin-top: 70px !important;
  }
  .mr-md-0 {
    margin-right: 0 !important;
  }
  .mr-md-1 {
    margin-right: 1px !important;
  }
  .mr-md-2 {
    margin-right: 2px !important;
  }
  .mr-md-5 {
    margin-right: 5px !important;
  }
  .mr-md-10 {
    margin-right: 10px !important;
  }
  .mr-md-15 {
    margin-right: 15px !important;
  }
  .mr-md-20 {
    margin-right: 20px !important;
  }
  .mr-md-30 {
    margin-right: 30px !important;
  }
  .mr-md-40 {
    margin-right: 40px !important;
  }
  .mr-md-50 {
    margin-right: 50px !important;
  }
  .mr-md-60 {
    margin-right: 60px !important;
  }
  .mr-md-70 {
    margin-right: 70px !important;
  }
  .ml-md-0 {
    margin-left: 0 !important;
  }
  .ml-md-1 {
    margin-left: 1px !important;
  }
  .ml-md-2 {
    margin-left: 2px !important;
  }
  .ml-md-5 {
    margin-left: 5px !important;
  }
  .ml-md-10 {
    margin-left: 10px !important;
  }
  .ml-md-15 {
    margin-left: 15px !important;
  }
  .ml-md-20 {
    margin-left: 20px !important;
  }
  .ml-md-30 {
    margin-left: 30px !important;
  }
  .ml-md-40 {
    margin-left: 40px !important;
  }
  .ml-md-50 {
    margin-left: 50px !important;
  }
  .ml-md-60 {
    margin-left: 60px !important;
  }
  .ml-md-70 {
    margin-left: 70px !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 1px !important;
  }
  .mb-md-2 {
    margin-bottom: 2px !important;
  }
  .mb-md-5 {
    margin-bottom: 5px !important;
  }
  .mb-md-10 {
    margin-bottom: 10px !important;
  }
  .mb-md-15 {
    margin-bottom: 15px !important;
  }
  .mb-md-20 {
    margin-bottom: 20px !important;
  }
  .mb-md-30 {
    margin-bottom: 30px !important;
  }
  .mb-md-40 {
    margin-bottom: 40px !important;
  }
  .mb-md-50 {
    margin-bottom: 50px !important;
  }
  .mb-md-60 {
    margin-bottom: 60px !important;
  }
  .mb-md-70 {
    margin-bottom: 70px !important;
  }
  .m-md-auto {
    margin: auto;
  }
  .ml-md-auto {
    margin-left: auto;
  }
  .mr-md-auto {
    margin-right: auto;
  }
  .mt-md-auto {
    margin-top: auto;
  }
  .mb-md-auto {
    margin-bottom: auto;
  }
  .p-md-0, .nop-md {
    padding: 0 !important;
  }
  .p-md-5 {
    padding: 5px !important;
  }
  .p-md-10 {
    padding: 10px !important;
  }
  .p-md-15 {
    padding: 15px !important;
  }
  .p-md-20 {
    padding: 20px !important;
  }
  .p-md-25 {
    padding: 25px !important;
  }
  .p-md-30 {
    padding: 30px !important;
  }
  .p-md-40 {
    padding: 40px !important;
  }
  .p-md-50 {
    padding: 50px !important;
  }
  .p-md-60 {
    padding: 60px !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-5 {
    padding-top: 5px !important;
  }
  .pt-md-10 {
    padding-top: 10px !important;
  }
  .pt-md-15 {
    padding-top: 15px !important;
  }
  .pt-md-20 {
    padding-top: 20px !important;
  }
  .pt-md-30 {
    padding-top: 30px !important;
  }
  .pt-md-40 {
    padding-top: 40px !important;
  }
  .pt-md-50 {
    padding-top: 50px !important;
  }
  .pt-md-60 {
    padding-top: 60px !important;
  }
  .pr-md-0 {
    padding-right: 0 !important;
  }
  .pr-md-5 {
    padding-right: 5px !important;
  }
  .pr-md-10 {
    padding-right: 10px !important;
  }
  .pr-md-15 {
    padding-right: 15px !important;
  }
  .pr-md-20 {
    padding-right: 20px !important;
  }
  .pr-md-30 {
    padding-right: 30px !important;
  }
  .pr-md-40 {
    padding-right: 40px !important;
  }
  .pr-md-50 {
    padding-right: 50px !important;
  }
  .pr-md-60 {
    padding-right: 60px !important;
  }
  .pl-md-0 {
    padding-left: 0 !important;
  }
  .pl-md-5 {
    padding-left: 5px !important;
  }
  .pl-md-10 {
    padding-left: 10px !important;
  }
  .pl-md-15 {
    padding-left: 15px !important;
  }
  .pl-md-20 {
    padding-left: 20px !important;
  }
  .pl-md-30 {
    padding-left: 30px !important;
  }
  .pl-md-40 {
    padding-left: 40px !important;
  }
  .pl-md-50 {
    padding-left: 50px !important;
  }
  .pl-md-60 {
    padding-left: 60px !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-5 {
    padding-bottom: 5px !important;
  }
  .pb-md-10 {
    padding-bottom: 10px !important;
  }
  .pb-md-15 {
    padding-bottom: 15px !important;
  }
  .pb-md-20 {
    padding-bottom: 20px !important;
  }
  .pb-md-30 {
    padding-bottom: 30px !important;
  }
  .pb-md-40 {
    padding-bottom: 40px !important;
  }
  .pb-md-50 {
    padding-bottom: 50px !important;
  }
  .pb-md-60 {
    padding-bottom: 60px !important;
  }
  .pb-md-90 {
    padding-bottom: 90px !important;
  }
  .pb-md-100 {
    padding-bottom: 100px !important;
  }
  .pb-md-120 {
    padding-bottom: 120px !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .py-md-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .py-md-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .py-md-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .py-md-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .py-md-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-md-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .py-md-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .px-md-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .px-md-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .px-md-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .px-md-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .px-md-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-md-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .px-md-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .px-md-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .px-md-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  /* ##### FONT SIZE ##### */
  .fs-md-10 {
    font-size: 10px !important;
  }
  .fs-md-11 {
    font-size: 11px !important;
  }
  .fs-md-12 {
    font-size: 12px !important;
  }
  .fs-md-13 {
    font-size: 13px !important;
  }
  .fs-md-14 {
    font-size: 14px !important;
  }
  .fs-md-15 {
    font-size: 15px !important;
  }
  .fs-md-16 {
    font-size: 16px !important;
  }
  .fs-md-18 {
    font-size: 18px !important;
  }
  .fs-md-20 {
    font-size: 20px !important;
  }
  .fs-md-22 {
    font-size: 22px !important;
  }
  .fs-md-24 {
    font-size: 24px !important;
  }
  .fs-md-26 {
    font-size: 26px !important;
  }
  .fs-md-28 {
    font-size: 28px !important;
  }
  .fs-md-30 {
    font-size: 30px !important;
  }
  .fs-md-36 {
    font-size: 36px !important;
  }
  .fs-md-40 {
    font-size: 40px !important;
  }
  .fs-md-50 {
    font-size: 50px !important;
  }
  .fs-md-60 {
    font-size: 60px !important;
  }
  .fs-md-100 {
    font-size: 100px !important;
  }
  /* ##### BORDERS ##### */
  .br-md {
    border: 1px solid #333333 !important;
  }
  .brt-md {
    border-top: 1px solid #333333 !important;
  }
  .brr-md {
    border-right: 1px solid #333333 !important;
  }
  .brb-md {
    border-bottom: 1px solid #333333 !important;
  }
  .brl-md {
    border-left: 1px solid #333333 !important;
  }
  .br-md-none {
    border: none !important;
  }
  .brt-md-none {
    border-top: none !important;
  }
  .brr-md-none {
    border-right: none !important;
  }
  .brb-md-none {
    border-bottom: none !important;
  }
  .brl-md-none {
    border-left: none !important;
  }
}
@media (min-width: 992px) {
  /* ##### FLOAT & ALIGN ##### */
  .fl-lg {
    float: left !important;
  }
  .fr-lg {
    float: right !important;
  }
  .t-lg-center, .text-lg-center {
    text-align: center !important;
  }
  .t-lg-right, .text-lg-right {
    text-align: right !important;
  }
  .t-lg-left, .text-lg-left {
    text-align: left !important;
  }
  .t-lg-justify, .text-lg-justify {
    text-align: justify !important;
  }
  /* ##### WIDTH ##### */
  .w-lg-inherit {
    width: inherit !important;
  }
  .w-lg-25 {
    width: 25% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
  /* ##### MARGIN & PADDING ##### */
  .m-lg-0, .nom-lg {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 1px !important;
  }
  .m-lg-2 {
    margin: 2px !important;
  }
  .m-lg-5 {
    margin: 5px !important;
  }
  .m-lg-10 {
    margin: 10px !important;
  }
  .m-lg-15 {
    margin: 15px !important;
  }
  .m-lg-20 {
    margin: 20px !important;
  }
  .m-lg-30 {
    margin: 30px !important;
  }
  .m-lg-40 {
    margin: 40px !important;
  }
  .m-lg-50 {
    margin: 50px !important;
  }
  .m-lg-60 {
    margin: 60px !important;
  }
  .m-lg-70 {
    margin: 70px !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 1px !important;
  }
  .mt-lg-2 {
    margin-top: 2px !important;
  }
  .mt-lg-5 {
    margin-top: 5px !important;
  }
  .mt-lg-10 {
    margin-top: 10px !important;
  }
  .mt-lg-15 {
    margin-top: 15px !important;
  }
  .mt-lg-20 {
    margin-top: 20px !important;
  }
  .mt-lg-30 {
    margin-top: 30px !important;
  }
  .mt-lg-40 {
    margin-top: 40px !important;
  }
  .mt-lg-50 {
    margin-top: 50px !important;
  }
  .mt-lg-60 {
    margin-top: 60px !important;
  }
  .mt-lg-70 {
    margin-top: 70px !important;
  }
  .mt-lg-100 {
    margin-top: 100px !important;
  }
  .mr-lg-0 {
    margin-right: 0 !important;
  }
  .mr-lg-1 {
    margin-right: 1px !important;
  }
  .mr-lg-2 {
    margin-right: 2px !important;
  }
  .mr-lg-5 {
    margin-right: 5px !important;
  }
  .mr-lg-10 {
    margin-right: 10px !important;
  }
  .mr-lg-15 {
    margin-right: 15px !important;
  }
  .mr-lg-20 {
    margin-right: 20px !important;
  }
  .mr-lg-30 {
    margin-right: 30px !important;
  }
  .mr-lg-40 {
    margin-right: 40px !important;
  }
  .mr-lg-50 {
    margin-right: 50px !important;
  }
  .mr-lg-60 {
    margin-right: 60px !important;
  }
  .mr-lg-70 {
    margin-right: 70px !important;
  }
  .ml-lg-0 {
    margin-left: 0 !important;
  }
  .ml-lg-1 {
    margin-left: 1px !important;
  }
  .ml-lg-2 {
    margin-left: 2px !important;
  }
  .ml-lg-5 {
    margin-left: 5px !important;
  }
  .ml-lg-10 {
    margin-left: 10px !important;
  }
  .ml-lg-15 {
    margin-left: 15px !important;
  }
  .ml-lg-20 {
    margin-left: 20px !important;
  }
  .ml-lg-30 {
    margin-left: 30px !important;
  }
  .ml-lg-40 {
    margin-left: 40px !important;
  }
  .ml-lg-50 {
    margin-left: 50px !important;
  }
  .ml-lg-60 {
    margin-left: 60px !important;
  }
  .ml-lg-70 {
    margin-left: 70px !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 1px !important;
  }
  .mb-lg-2 {
    margin-bottom: 2px !important;
  }
  .mb-lg-5 {
    margin-bottom: 5px !important;
  }
  .mb-lg-10 {
    margin-bottom: 10px !important;
  }
  .mb-lg-15 {
    margin-bottom: 15px !important;
  }
  .mb-lg-20 {
    margin-bottom: 20px !important;
  }
  .mb-lg-30 {
    margin-bottom: 30px !important;
  }
  .mb-lg-40 {
    margin-bottom: 40px !important;
  }
  .mb-lg-50 {
    margin-bottom: 50px !important;
  }
  .mb-lg-60 {
    margin-bottom: 60px !important;
  }
  .mb-lg-70 {
    margin-bottom: 70px !important;
  }
  .m-lg-auto {
    margin: auto;
  }
  .ml-lg-auto {
    margin-left: auto;
  }
  .mr-lg-auto {
    margin-right: auto;
  }
  .mt-lg-auto {
    margin-top: auto;
  }
  .mb-lg-auto {
    margin-bottom: auto;
  }
  .p-lg-0, .nop-lg {
    padding: 0 !important;
  }
  .p-lg-5 {
    padding: 10px !important;
  }
  .p-lg-10 {
    padding: 10px !important;
  }
  .p-lg-15 {
    padding: 15px !important;
  }
  .p-lg-20 {
    padding: 20px !important;
  }
  .p-lg-25 {
    padding: 25px !important;
  }
  .p-lg-30 {
    padding: 30px !important;
  }
  .p-lg-32 {
    padding: 32px !important;
  }
  .p-lg-40 {
    padding: 40px !important;
  }
  .p-lg-50 {
    padding: 50px !important;
  }
  .p-lg-60 {
    padding: 60px !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-5 {
    padding-top: 5px !important;
  }
  .pt-lg-10 {
    padding-top: 10px !important;
  }
  .pt-lg-15 {
    padding-top: 15px !important;
  }
  .pt-lg-20 {
    padding-top: 20px !important;
  }
  .pt-lg-30 {
    padding-top: 30px !important;
  }
  .pt-lg-40 {
    padding-top: 40px !important;
  }
  .pt-lg-50 {
    padding-top: 50px !important;
  }
  .pt-lg-60 {
    padding-top: 60px !important;
  }
  .pr-lg-0 {
    padding-right: 0 !important;
  }
  .pr-lg-5 {
    padding-right: 5px !important;
  }
  .pr-lg-10 {
    padding-right: 10px !important;
  }
  .pr-lg-15 {
    padding-right: 15px !important;
  }
  .pr-lg-20 {
    padding-right: 20px !important;
  }
  .pr-lg-30 {
    padding-right: 30px !important;
  }
  .pr-lg-40 {
    padding-right: 40px !important;
  }
  .pr-lg-50 {
    padding-right: 50px !important;
  }
  .pr-lg-60 {
    padding-right: 60px !important;
  }
  .pl-lg-0 {
    padding-left: 0 !important;
  }
  .pl-lg-5 {
    padding-left: 5px !important;
  }
  .pl-lg-10 {
    padding-left: 10px !important;
  }
  .pl-lg-15 {
    padding-left: 15px !important;
  }
  .pl-lg-20 {
    padding-left: 20px !important;
  }
  .pl-lg-30 {
    padding-left: 30px !important;
  }
  .pl-lg-40 {
    padding-left: 40px !important;
  }
  .pl-lg-50 {
    padding-left: 50px !important;
  }
  .pl-lg-60 {
    padding-left: 60px !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-5 {
    padding-bottom: 5px !important;
  }
  .pb-lg-10 {
    padding-bottom: 10px !important;
  }
  .pb-lg-15 {
    padding-bottom: 15px !important;
  }
  .pb-lg-20 {
    padding-bottom: 20px !important;
  }
  .pb-lg-30 {
    padding-bottom: 30px !important;
  }
  .pb-lg-40 {
    padding-bottom: 40px !important;
  }
  .pb-lg-50 {
    padding-bottom: 50px !important;
  }
  .pb-lg-60 {
    padding-bottom: 60px !important;
  }
  .pb-lg-90 {
    padding-bottom: 90px !important;
  }
  .pb-lg-100 {
    padding-bottom: 100px !important;
  }
  .pb-lg-120 {
    padding-bottom: 120px !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .py-lg-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .py-lg-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .py-lg-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .py-lg-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .py-lg-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-lg-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .py-lg-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .px-lg-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .px-lg-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .px-lg-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .px-lg-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .px-lg-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-lg-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .px-lg-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .px-lg-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .px-lg-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  /* ##### FONT SIZE ##### */
  .fs-lg-10 {
    font-size: 10px !important;
  }
  .fs-lg-11 {
    font-size: 11px !important;
  }
  .fs-lg-12 {
    font-size: 12px !important;
  }
  .fs-lg-13 {
    font-size: 13px !important;
  }
  .fs-lg-14 {
    font-size: 14px !important;
  }
  .fs-lg-15 {
    font-size: 15px !important;
  }
  .fs-lg-16 {
    font-size: 16px !important;
  }
  .fs-lg-18 {
    font-size: 18px !important;
  }
  .fs-lg-20 {
    font-size: 20px !important;
  }
  .fs-lg-22 {
    font-size: 22px !important;
  }
  .fs-lg-24 {
    font-size: 24px !important;
  }
  .fs-lg-26 {
    font-size: 26px !important;
  }
  .fs-lg-28 {
    font-size: 28px !important;
  }
  .fs-lg-30 {
    font-size: 30px !important;
  }
  .fs-lg-36 {
    font-size: 36px !important;
  }
  .fs-lg-40 {
    font-size: 40px !important;
  }
  .fs-lg-50 {
    font-size: 50px !important;
  }
  .fs-lg-60 {
    font-size: 60px !important;
  }
  .fs-lg-100 {
    font-size: 100px !important;
  }
  /* ##### BORDERS ##### */
  .br-lg {
    border: 1px solid #333333 !important;
  }
  .brt-lg {
    border-top: 1px solid #333333 !important;
  }
  .brr-lg {
    border-right: 1px solid #333333 !important;
  }
  .brb-lg {
    border-bottom: 1px solid #333333 !important;
  }
  .brl-lg {
    border-left: 1px solid #333333 !important;
  }
  .br-lg-none {
    border: none !important;
  }
  .brt-lg-none {
    border-top: none !important;
  }
  .brr-lg-none {
    border-right: none !important;
  }
  .brb-lg-none {
    border-bottom: none !important;
  }
  .brl-lg-none {
    border-left: none !important;
  }
}
@media (min-width: 1200px) {
  /* ##### FLOAT & ALIGN ##### */
  .fl-xl {
    float: left !important;
  }
  .fr-xl {
    float: right !important;
  }
  .t-xl-center {
    text-align: center !important;
  }
  .t-xl-right {
    text-align: right !important;
  }
  .t-xl-left {
    text-align: left !important;
  }
  .t-xl-justify {
    text-align: justify !important;
  }
  /* ##### WIDTH ##### */
  .w-xl-inherit {
    width: inherit !important;
  }
  .w-xl-25 {
    width: 25% !important;
  }
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-75 {
    width: 75% !important;
  }
  .w-xl-100 {
    width: 100% !important;
  }
  /* ##### MARGIN & PADDING ##### */
  .m-xl-0, .nom-xl {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 1px !important;
  }
  .m-xl-2 {
    margin: 2px !important;
  }
  .m-xl-5 {
    margin: 5px !important;
  }
  .m-xl-10 {
    margin: 10px !important;
  }
  .m-xl-15 {
    margin: 15px !important;
  }
  .m-xl-20 {
    margin: 20px !important;
  }
  .m-xl-30 {
    margin: 30px !important;
  }
  .m-xl-40 {
    margin: 40px !important;
  }
  .m-xl-50 {
    margin: 50px !important;
  }
  .m-xl-60 {
    margin: 60px !important;
  }
  .m-xl-70 {
    margin: 70px !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-5 {
    margin-top: 5px !important;
  }
  .mt-xl-1 {
    margin-top: 1px !important;
  }
  .mt-xl-2 {
    margin-top: 2px !important;
  }
  .mt-xl-10 {
    margin-top: 10px !important;
  }
  .mt-xl-15 {
    margin-top: 15px !important;
  }
  .mt-xl-20 {
    margin-top: 20px !important;
  }
  .mt-xl-30 {
    margin-top: 30px !important;
  }
  .mt-xl-40 {
    margin-top: 40px !important;
  }
  .mt-xl-50 {
    margin-top: 50px !important;
  }
  .mt-xl-60 {
    margin-top: 60px !important;
  }
  .mt-xl-70 {
    margin-top: 70px !important;
  }
  .mt-xl-100 {
    margin-top: 100px !important;
  }
  .mt-xl-150 {
    margin-top: 150px !important;
  }
  .mr-xl-0 {
    margin-right: 0 !important;
  }
  .mr-xl-5 {
    margin-right: 5px !important;
  }
  .mr-xl-1 {
    margin-right: 1px !important;
  }
  .mr-xl-2 {
    margin-right: 2px !important;
  }
  .mr-xl-10 {
    margin-right: 10px !important;
  }
  .mr-xl-15 {
    margin-right: 15px !important;
  }
  .mr-xl-20 {
    margin-right: 20px !important;
  }
  .mr-xl-30 {
    margin-right: 30px !important;
  }
  .mr-xl-40 {
    margin-right: 40px !important;
  }
  .mr-xl-50 {
    margin-right: 50px !important;
  }
  .mr-xl-60 {
    margin-right: 60px !important;
  }
  .mr-xl-70 {
    margin-right: 70px !important;
  }
  .ml-xl-0 {
    margin-left: 0 !important;
  }
  .ml-xl-1 {
    margin-left: 1px !important;
  }
  .ml-xl-2 {
    margin-left: 2px !important;
  }
  .ml-xl-5 {
    margin-left: 5px !important;
  }
  .ml-xl-10 {
    margin-left: 10px !important;
  }
  .ml-xl-15 {
    margin-left: 15px !important;
  }
  .ml-xl-20 {
    margin-left: 20px !important;
  }
  .ml-xl-30 {
    margin-left: 30px !important;
  }
  .ml-xl-40 {
    margin-left: 40px !important;
  }
  .ml-xl-50 {
    margin-left: 50px !important;
  }
  .ml-xl-60 {
    margin-left: 60px !important;
  }
  .ml-xl-70 {
    margin-left: 70px !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 1px !important;
  }
  .mb-xl-2 {
    margin-bottom: 2px !important;
  }
  .mb-xl-5 {
    margin-bottom: 5px !important;
  }
  .mb-xl-10 {
    margin-bottom: 10px !important;
  }
  .mb-xl-15 {
    margin-bottom: 15px !important;
  }
  .mb-xl-20 {
    margin-bottom: 20px !important;
  }
  .mb-xl-30 {
    margin-bottom: 30px !important;
  }
  .mb-xl-40 {
    margin-bottom: 40px !important;
  }
  .mb-xl-50 {
    margin-bottom: 50px !important;
  }
  .mb-xl-60 {
    margin-bottom: 60px !important;
  }
  .mb-xl-70 {
    margin-bottom: 70px !important;
  }
  .mb-xl-100 {
    margin-bottom: 100px !important;
  }
  .m-xl-auto {
    margin: auto;
  }
  .ml-xl-auto {
    margin-left: auto;
  }
  .mr-xl-auto {
    margin-right: auto;
  }
  .mt-xl-auto {
    margin-top: auto;
  }
  .mb-xl-auto {
    margin-bottom: auto;
  }
  .p-xl-0, .nop-xl {
    padding: 0 !important;
  }
  .p-xl-5 {
    padding: 5px !important;
  }
  .p-xl-10 {
    padding: 10px !important;
  }
  .p-xl-15 {
    padding: 15px !important;
  }
  .p-xl-20 {
    padding: 20px !important;
  }
  .p-xl-25 {
    padding: 25px !important;
  }
  .p-xl-30 {
    padding: 30px !important;
  }
  .p-xl-40 {
    padding: 40px !important;
  }
  .p-xl-50 {
    padding: 50px !important;
  }
  .p-xl-60 {
    padding: 60px !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-5 {
    padding-top: 5px !important;
  }
  .pt-xl-10 {
    padding-top: 10px !important;
  }
  .pt-xl-15 {
    padding-top: 15px !important;
  }
  .pt-xl-20 {
    padding-top: 20px !important;
  }
  .pt-xl-30 {
    padding-top: 30px !important;
  }
  .pt-xl-40 {
    padding-top: 40px !important;
  }
  .pt-xl-50 {
    padding-top: 50px !important;
  }
  .pt-xl-60 {
    padding-top: 60px !important;
  }
  .pr-xl-0 {
    padding-right: 0 !important;
  }
  .pr-xl-5 {
    padding-right: 5px !important;
  }
  .pr-xl-10 {
    padding-right: 10px !important;
  }
  .pr-xl-15 {
    padding-right: 15px !important;
  }
  .pr-xl-20 {
    padding-right: 20px !important;
  }
  .pr-xl-30 {
    padding-right: 30px !important;
  }
  .pr-xl-40 {
    padding-right: 40px !important;
  }
  .pr-xl-50 {
    padding-right: 50px !important;
  }
  .pr-xl-60 {
    padding-right: 60px !important;
  }
  .pl-xl-0 {
    padding-left: 0 !important;
  }
  .pl-xl-5 {
    padding-left: 5px !important;
  }
  .pl-xl-10 {
    padding-left: 10px !important;
  }
  .pl-xl-15 {
    padding-left: 15px !important;
  }
  .pl-xl-20 {
    padding-left: 20px !important;
  }
  .pl-xl-30 {
    padding-left: 30px !important;
  }
  .pl-xl-40 {
    padding-left: 40px !important;
  }
  .pl-xl-50 {
    padding-left: 50px !important;
  }
  .pl-xl-60 {
    padding-left: 60px !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-5 {
    padding-bottom: 5px !important;
  }
  .pb-xl-10 {
    padding-bottom: 10px !important;
  }
  .pb-xl-15 {
    padding-bottom: 15px !important;
  }
  .pb-xl-20 {
    padding-bottom: 20px !important;
  }
  .pb-xl-30 {
    padding-bottom: 30px !important;
  }
  .pb-xl-40 {
    padding-bottom: 40px !important;
  }
  .pb-xl-50 {
    padding-bottom: 50px !important;
  }
  .pb-xl-60 {
    padding-bottom: 60px !important;
  }
  .pb-xl-90 {
    padding-bottom: 90px !important;
  }
  .pb-xl-100 {
    padding-bottom: 100px !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .py-xl-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .py-xl-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .py-xl-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .py-xl-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .py-xl-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-xl-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .py-xl-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .px-xl-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .px-xl-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .px-xl-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .px-xl-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .px-xl-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-xl-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .px-xl-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .px-xl-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .px-xl-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  /* ##### FONT SIZE ##### */
  .fs-xl-10 {
    font-size: 10px !important;
  }
  .fs-xl-11 {
    font-size: 11px !important;
  }
  .fs-xl-12 {
    font-size: 12px !important;
  }
  .fs-xl-13 {
    font-size: 13px !important;
  }
  .fs-xl-14 {
    font-size: 14px !important;
  }
  .fs-xl-15 {
    font-size: 15px !important;
  }
  .fs-xl-16 {
    font-size: 16px !important;
  }
  .fs-xl-18 {
    font-size: 18px !important;
  }
  .fs-xl-20 {
    font-size: 20px !important;
  }
  .fs-xl-22 {
    font-size: 22px !important;
  }
  .fs-xl-24 {
    font-size: 24px !important;
  }
  .fs-xl-26 {
    font-size: 26px !important;
  }
  .fs-xl-28 {
    font-size: 28px !important;
  }
  .fs-xl-30 {
    font-size: 30px !important;
  }
  .fs-xl-36 {
    font-size: 36px !important;
  }
  .fs-xl-40 {
    font-size: 40px !important;
  }
  .fs-xl-50 {
    font-size: 50px !important;
  }
  .fs-xl-60 {
    font-size: 60px !important;
  }
  .fs-xl-100 {
    font-size: 100px !important;
  }
  /* ##### BORDERS ##### */
  .br-xl {
    border: 1px solid #333333 !important;
  }
  .brt-xl {
    border-top: 1px solid #333333 !important;
  }
  .brr-xl {
    border-right: 1px solid #333333 !important;
  }
  .brb-xl {
    border-bottom: 1px solid #333333 !important;
  }
  .brl-xl {
    border-left: 1px solid #333333 !important;
  }
  .br-xl-none {
    border: none !important;
  }
  .brt-xl-none {
    border-top: none !important;
  }
  .brr-xl-none {
    border-right: none !important;
  }
  .brb-xl-none {
    border-bottom: none !important;
  }
  .brl-xl-none {
    border-left: none !important;
  }
}
@media (min-width: 1600px) {
  /* ##### FLOAT & ALIGN ##### */
  .fl-xxl {
    float: left !important;
  }
  .fr-xxl {
    float: right !important;
  }
  .t-xxl-center {
    text-align: center !important;
  }
  .t-xxl-right {
    text-align: right !important;
  }
  .t-xxl-left {
    text-align: left !important;
  }
  .t-xxl-justify {
    text-align: justify !important;
  }
  /* ##### WIDTH ##### */
  .w-xxl-inherit {
    width: inherit !important;
  }
  .w-xxl-25 {
    width: 25% !important;
  }
  .w-xxl-50 {
    width: 50% !important;
  }
  .w-xxl-75 {
    width: 75% !important;
  }
  .w-xxl-100 {
    width: 100% !important;
  }
  /* ##### MARGIN & PADDING ##### */
  .m-xxl-0, .nom-xxl {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 1px !important;
  }
  .m-xxl-2 {
    margin: 2px !important;
  }
  .m-xxl-5 {
    margin: 5px !important;
  }
  .m-xxl-10 {
    margin: 10px !important;
  }
  .m-xxl-15 {
    margin: 15px !important;
  }
  .m-xxl-20 {
    margin: 20px !important;
  }
  .m-xxl-30 {
    margin: 30px !important;
  }
  .m-xxl-40 {
    margin: 40px !important;
  }
  .m-xxl-50 {
    margin: 50px !important;
  }
  .m-xxl-60 {
    margin: 60px !important;
  }
  .m-xxl-70 {
    margin: 70px !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-5 {
    margin-top: 5px !important;
  }
  .mt-xxl-1 {
    margin-top: 1px !important;
  }
  .mt-xxl-2 {
    margin-top: 2px !important;
  }
  .mt-xxl-10 {
    margin-top: 10px !important;
  }
  .mt-xxl-15 {
    margin-top: 15px !important;
  }
  .mt-xxl-20 {
    margin-top: 20px !important;
  }
  .mt-xxl-30 {
    margin-top: 30px !important;
  }
  .mt-xxl-40 {
    margin-top: 40px !important;
  }
  .mt-xxl-50 {
    margin-top: 50px !important;
  }
  .mt-xxl-60 {
    margin-top: 60px !important;
  }
  .mt-xxl-70 {
    margin-top: 70px !important;
  }
  .mt-xxl-100 {
    margin-top: 100px !important;
  }
  .mt-xxl-150 {
    margin-top: 150px !important;
  }
  .mr-xxl-0 {
    margin-right: 0 !important;
  }
  .mr-xxl-5 {
    margin-right: 5px !important;
  }
  .mr-xxl-1 {
    margin-right: 1px !important;
  }
  .mr-xxl-2 {
    margin-right: 2px !important;
  }
  .mr-xxl-10 {
    margin-right: 10px !important;
  }
  .mr-xxl-15 {
    margin-right: 15px !important;
  }
  .mr-xxl-20 {
    margin-right: 20px !important;
  }
  .mr-xxl-30 {
    margin-right: 30px !important;
  }
  .mr-xxl-40 {
    margin-right: 40px !important;
  }
  .mr-xxl-50 {
    margin-right: 50px !important;
  }
  .mr-xxl-60 {
    margin-right: 60px !important;
  }
  .mr-xxl-70 {
    margin-right: 70px !important;
  }
  .ml-xxl-0 {
    margin-left: 0 !important;
  }
  .ml-xxl-1 {
    margin-left: 1px !important;
  }
  .ml-xxl-2 {
    margin-left: 2px !important;
  }
  .ml-xxl-5 {
    margin-left: 5px !important;
  }
  .ml-xxl-10 {
    margin-left: 10px !important;
  }
  .ml-xxl-15 {
    margin-left: 15px !important;
  }
  .ml-xxl-20 {
    margin-left: 20px !important;
  }
  .ml-xxl-30 {
    margin-left: 30px !important;
  }
  .ml-xxl-40 {
    margin-left: 40px !important;
  }
  .ml-xxl-50 {
    margin-left: 50px !important;
  }
  .ml-xxl-60 {
    margin-left: 60px !important;
  }
  .ml-xxl-70 {
    margin-left: 70px !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 1px !important;
  }
  .mb-xxl-2 {
    margin-bottom: 2px !important;
  }
  .mb-xxl-5 {
    margin-bottom: 5px !important;
  }
  .mb-xxl-10 {
    margin-bottom: 10px !important;
  }
  .mb-xxl-15 {
    margin-bottom: 15px !important;
  }
  .mb-xxl-20 {
    margin-bottom: 20px !important;
  }
  .mb-xxl-30 {
    margin-bottom: 30px !important;
  }
  .mb-xxl-40 {
    margin-bottom: 40px !important;
  }
  .mb-xxl-50 {
    margin-bottom: 50px !important;
  }
  .mb-xxl-60 {
    margin-bottom: 60px !important;
  }
  .mb-xxl-70 {
    margin-bottom: 70px !important;
  }
  .mb-xxl-100 {
    margin-bottom: 100px !important;
  }
  .m-xxl-auto {
    margin: auto;
  }
  .ml-xxl-auto {
    margin-left: auto;
  }
  .mr-xxl-auto {
    margin-right: auto;
  }
  .mt-xxl-auto {
    margin-top: auto;
  }
  .mb-xxl-auto {
    margin-bottom: auto;
  }
  .p-xxl-0, .nop-xxl {
    padding: 0 !important;
  }
  .p-xxl-5 {
    padding: 5px !important;
  }
  .p-xxl-10 {
    padding: 10px !important;
  }
  .p-xxl-15 {
    padding: 15px !important;
  }
  .p-xxl-20 {
    padding: 20px !important;
  }
  .p-xxl-25 {
    padding: 25px !important;
  }
  .p-xxl-30 {
    padding: 30px !important;
  }
  .p-xxl-40 {
    padding: 40px !important;
  }
  .p-xxl-50 {
    padding: 50px !important;
  }
  .p-xxl-60 {
    padding: 60px !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-5 {
    padding-top: 5px !important;
  }
  .pt-xxl-10 {
    padding-top: 10px !important;
  }
  .pt-xxl-15 {
    padding-top: 15px !important;
  }
  .pt-xxl-20 {
    padding-top: 20px !important;
  }
  .pt-xxl-30 {
    padding-top: 30px !important;
  }
  .pt-xxl-40 {
    padding-top: 40px !important;
  }
  .pt-xxl-50 {
    padding-top: 50px !important;
  }
  .pt-xxl-60 {
    padding-top: 60px !important;
  }
  .pr-xxl-0 {
    padding-right: 0 !important;
  }
  .pr-xxl-5 {
    padding-right: 5px !important;
  }
  .pr-xxl-10 {
    padding-right: 10px !important;
  }
  .pr-xxl-15 {
    padding-right: 15px !important;
  }
  .pr-xxl-20 {
    padding-right: 20px !important;
  }
  .pr-xxl-30 {
    padding-right: 30px !important;
  }
  .pr-xxl-40 {
    padding-right: 40px !important;
  }
  .pr-xxl-50 {
    padding-right: 50px !important;
  }
  .pr-xxl-60 {
    padding-right: 60px !important;
  }
  .pl-xxl-0 {
    padding-left: 0 !important;
  }
  .pl-xxl-5 {
    padding-left: 5px !important;
  }
  .pl-xxl-10 {
    padding-left: 10px !important;
  }
  .pl-xxl-15 {
    padding-left: 15px !important;
  }
  .pl-xxl-20 {
    padding-left: 20px !important;
  }
  .pl-xxl-30 {
    padding-left: 30px !important;
  }
  .pl-xxl-40 {
    padding-left: 40px !important;
  }
  .pl-xxl-50 {
    padding-left: 50px !important;
  }
  .pl-xxl-60 {
    padding-left: 60px !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-5 {
    padding-bottom: 5px !important;
  }
  .pb-xxl-10 {
    padding-bottom: 10px !important;
  }
  .pb-xxl-15 {
    padding-bottom: 15px !important;
  }
  .pb-xxl-20 {
    padding-bottom: 20px !important;
  }
  .pb-xxl-30 {
    padding-bottom: 30px !important;
  }
  .pb-xxl-40 {
    padding-bottom: 40px !important;
  }
  .pb-xxl-50 {
    padding-bottom: 50px !important;
  }
  .pb-xxl-60 {
    padding-bottom: 60px !important;
  }
  .pb-xxl-90 {
    padding-bottom: 90px !important;
  }
  .pb-xxl-100 {
    padding-bottom: 100px !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .py-xxl-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .py-xxl-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .py-xxl-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .py-xxl-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .py-xxl-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .py-xxl-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .py-xxl-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .px-xxl-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .px-xxl-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .px-xxl-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .px-xxl-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .px-xxl-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-xxl-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .px-xxl-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .px-xxl-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .px-xxl-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  /* ##### FONT SIZE ##### */
  .fs-xxl-10 {
    font-size: 10px !important;
  }
  .fs-xxl-11 {
    font-size: 11px !important;
  }
  .fs-xxl-12 {
    font-size: 12px !important;
  }
  .fs-xxl-13 {
    font-size: 13px !important;
  }
  .fs-xxl-14 {
    font-size: 14px !important;
  }
  .fs-xxl-15 {
    font-size: 15px !important;
  }
  .fs-xxl-16 {
    font-size: 16px !important;
  }
  .fs-xxl-18 {
    font-size: 18px !important;
  }
  .fs-xxl-20 {
    font-size: 20px !important;
  }
  .fs-xxl-22 {
    font-size: 22px !important;
  }
  .fs-xxl-24 {
    font-size: 24px !important;
  }
  .fs-xxl-26 {
    font-size: 26px !important;
  }
  .fs-xxl-28 {
    font-size: 28px !important;
  }
  .fs-xxl-30 {
    font-size: 30px !important;
  }
  .fs-xxl-36 {
    font-size: 36px !important;
  }
  .fs-xxl-40 {
    font-size: 40px !important;
  }
  .fs-xxl-50 {
    font-size: 50px !important;
  }
  .fs-xxl-60 {
    font-size: 60px !important;
  }
  .fs-xxl-100 {
    font-size: 100px !important;
  }
  /* ##### BORDERS ##### */
  .br-xxl {
    border: 1px solid #333333 !important;
  }
  .brt-xxl {
    border-top: 1px solid #333333 !important;
  }
  .brr-xxl {
    border-right: 1px solid #333333 !important;
  }
  .brb-xxl {
    border-bottom: 1px solid #333333 !important;
  }
  .brl-xxl {
    border-left: 1px solid #333333 !important;
  }
  .br-xxl-none {
    border: none !important;
  }
  .brt-xxl-none {
    border-top: none !important;
  }
  .brr-xxl-none {
    border-right: none !important;
  }
  .brb-xxl-none {
    border-bottom: none !important;
  }
  .brl-xxl-none {
    border-left: none !important;
  }
}
.lh-130 {
  line-height: 1.3;
}

.lh-normal {
  line-height: normal !important;
}

.br-2x {
  border-width: 2px !important;
}

.br-3x {
  border-width: 3px !important;
}

.br-4x {
  border-width: 4px !important;
}

.br-5x {
  border-width: 5px !important;
}

.br-primary {
  border-color: #ee1b24 !important;
}

.br-black {
  border-color: #000000 !important;
}

.br-red {
  border-color: #ee1b24 !important;
}

.br-gray {
  border-color: #e6e7e9 !important;
}

.br-gray2 {
  border-color: #666666 !important;
}

.br-gray3 {
  border-color: #413f3f !important;
}

.br-white {
  border-color: #fff !important;
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media all and (max-width: 1200px) {
  .full-height {
    height: initial;
  }
  .max-full-height {
    max-height: calc(100vh - 60px);
  }
  .min-full-height {
    min-height: calc(100vh - 60px);
  }
}
@media all and (max-width: 400px) {
  .fs-xs-10 {
    font-size: 10px !important;
  }
  .fs-xs-13 {
    font-size: 13px !important;
  }
}
/* ##### LABEL ##### */
.form-field {
  position: relative;
}

.form-field label:not(.error) {
  display: block;
  line-height: normal;
  margin-bottom: 3px;
  font-size: 16px;
  text-transform: uppercase;
}

.form-field.small label:not(.error) {
  font-size: 14px;
}

.form-field .char-count {
  float: right;
  font-size: 12px;
  margin: 5px 0 0 5px;
  color: #e6e7e9;
}

/* ##### INPUT ##### */
.form-field input, .form-field textarea, select {
  height: 40px;
  background: #fff;
  border: 1px solid #e6e7e9;
  display: block;
  padding: 0 15px;
  width: 100%;
  color: #333333;
  font-weight: normal;
  font-size: 16px;
}

.form-field.small input,
.form-field input.small {
  height: 35px;
  font-size: 14px;
}

.form-field.big,
.form-field input.big {
  height: 50px;
  font-size: 18px;
}

.form-field input[type=number] {
  padding-right: 0;
}

.form-field input[type=file] {
  font-size: 13px;
  background-color: transparent !important;
  border: none;
  padding: 0;
  height: auto;
  box-shadow: none !important;
}

input[type=search] {
  box-sizing: border-box;
}

.form-field input[type=color] {
  padding: 0;
}

/* ##### INPUT V-NO-ARROW ##### */
input.v-no-arrow::-webkit-outer-spin-button,
input.v-no-arrow::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input.v-no-arrow[type=number] {
  -moz-appearance: textfield;
} /* Firefox */
.form-field textarea {
  height: 150px;
  padding: 5px 15px;
  max-width: 100%;
}

select option[disabled] {
  display: none;
}

.form-field input:not([disabled]):focus, .form-field textarea:not([disabled]):focus {
  border-color: #333333;
  box-shadow: 0 0 5px rgba(88, 89, 91, 0.3);
  outline: 0;
}

.form-field input.required:not(.no-ico), .form-field textarea.required:not(.no-ico), .form-field select.required,
.form-field input[required]:not(.no-ico), .form-field textarea[required]:not(.no-ico), .form-field select[required] {
  background: url(../img/req-ico.png) no-repeat calc(100% - 5px) 5px #fff;
}

/* ##### CHECKBOX ##### */
.form-field.checkbox input[type=checkbox],
.form-field.checkbox input[type=radio] {
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  left: 5px;
  top: 3px;
}

.form-field.checkbox {
  padding: 0 0 0 25px;
  position: relative;
}

.form-field.checkbox label:not(.error) {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin: 0;
  padding: 0;
  line-height: inherit;
  text-transform: none;
}

.form-field.checkbox.small label:not(.error) {
  font-size: 14px;
}

.form-field.checkbox label:not(.error):before {
  content: "";
  position: absolute;
  left: -25px;
  top: 2px;
  width: 17px;
  height: 17px;
  border: 1px solid #e6e7e9;
  background: #fff;
}

.form-field.checkbox.small label:not(.error):before {
  width: 14px;
  height: 14px;
}

.form-field.checkbox label:not(.error):hover:before {
  border-color: #333333;
}

/* checked mark aspect */
.form-field.checkbox input[type=checkbox] + label:after,
.form-field.checkbox input[type=radio] + label:after {
  content: "\f00c";
  position: absolute;
  top: 2px;
  left: -25px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  color: #333333;
  width: 17px;
  height: 17px;
  font-size: 0;
  line-height: 17px;
  text-align: center;
}

.form-field.checkbox:not(.non-anim) input[type=checkbox] + label:after,
.form-field.checkbox:not(.non-anim) input[type=radio] + label:after {
  transition: font-size 0.2s ease-in-out;
}

.form-field.checkbox.small input[type=checkbox] + label:after,
.form-field.checkbox.small input[type=radio] + label:after {
  width: 14px;
  height: 14px;
  line-height: 14px;
}

.form-field.checkbox input[type=checkbox]:checked + label:after,
.form-field.checkbox input[type=radio]:checked + label:after {
  font-size: 21px;
}

.form-field.checkbox.small input[type=checkbox]:checked + label:after,
.form-field.checkbox.small input[type=radio]:checked + label:after {
  font-size: 17px;
}

.form-field.checkbox input[type=checkbox].error + label {
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.form-field.checkbox input[type=checkbox][disabled] + label,
.form-field.checkbox input[type=checkbox][readonly] + label {
  opacity: 0.8;
  cursor: not-allowed;
}

/* ##### RADIO ##### */
.form-field.radio input[type=radio] {
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  left: 5px;
  top: 3px;
}

.form-field.radio {
  padding: 0 0 0 30px;
  position: relative;
}

.form-field.radio label:not(.error) {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin: 0;
  padding: 0;
  line-height: inherit;
}

.form-field.radio.small label:not(.error) {
  font-size: 14px;
}

.form-field.radio label:not(.error):before {
  content: "";
  position: absolute;
  left: -25px;
  top: 2px;
  width: 17px;
  height: 17px;
  border: 1px solid #BEBEBE;
  border-radius: 50%;
}

.form-field.radio.small label:not(.error):before {
  width: 14px;
  height: 14px;
}

.form-field.radio input[type=radio]:checked + label:before {
  border-color: #88888e;
}

/* checked mark aspect changes */
.form-field.radio input[type=radio]:checked + label:after {
  content: "";
  position: absolute;
  top: 6px;
  left: -21px;
  background: #333333;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.form-field.radio.small input[type=radio]:checked + label:after {
  width: 6px;
  height: 6px;
}

.form-field.radio input[type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

.form-field.radio input[type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

.form-field.radio input[type=radio].error + label {
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

/* ##### VALIDATE ERROR ##### */
input.error:not([disabled]), textarea.error:not([disabled]), select.error {
  border-color: #333333 !important;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

label.error {
  display: none;
  color: #ee1b24;
  font-size: 12px;
  font-weight: normal;
  margin: 2px 0 0 5px;
  opacity: 0.7;
}

.hidden-submit {
  left: -10000px;
  opacity: 0;
  position: absolute;
  top: -10000px;
}

input[readonly=readonly], input[readonly], input[disabled=disabled], input[disabled], textarea[readonly=readonly], textarea[readonly], textarea[disabled=disabled], textarea[disabled], select[readonly=readonly], select[readonly], select[disabled=disabled], select[disabled] {
  background-color: #F6F6F6 !important;
  color: #989593 !important;
  border-color: #bcbec0 !important;
  cursor: not-allowed !important;
}

::-webkit-input-placeholder {
  color: #c2c2c2;
  font-size: 14px;
}

:-moz-placeholder {
  color: #878787;
  font-size: 14px;
}

::-moz-placeholder {
  color: #878787;
  font-size: 14px;
}

:-ms-input-placeholder {
  color: #878787;
  font-size: 14px;
}

.btn {
  background-color: #fff;
  text-align: center;
  color: #333333;
  font-size: 18px;
  line-height: 1.3;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  font-weight: 700;
  padding: 0 30px;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
  max-width: 100%;
  border-radius: 5px;
  outline: none !important;
  transition: 0.2s background-color, color, border;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
}
.btn:hover, .btn:focus, .btn.active, a:hover .btn {
  background-color: #ee1b24;
  color: #fff;
  border-color: #ee1b24;
  cursor: pointer;
}
.btn {
  /* ##### BTN MULTI-LINED ##### */
}
.btn.btn-multi-lined {
  white-space: normal;
  min-height: 40px;
  padding-top: 5px;
  padding-bottom: 5px;
  height: auto !important;
}

/* Pozostałe style dla różnych wariantów przycisków */
.btn.btn-outline {
  background-color: transparent;
  color: #151b3d;
  border-color: #151b3d;
}

.btn.btn-primary {
  background-color: #ee1b24;
  color: #fff;
}

.btn.btn-outline-primary {
  background-color: transparent;
  color: #ee1b24;
  border-color: #ee1b24;
}

.btn.btn-secondary {
  background-color: #151b3d;
  color: #fff;
}

.btn.btn-outline-secondary {
  background-color: transparent;
  color: #151b3d;
  border-color: #151b3d;
}

.btn.btn-white {
  background-color: #fff;
  color: #ee1b24;
  border-color: #fff;
}

.btn.btn-outline-white {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.btn.btn-link {
  background-color: transparent;
  color: #151b3d;
  border-color: transparent;
  box-shadow: none !important;
}

.btn.btn-link-black {
  background-color: transparent;
  color: #000000;
  border-color: transparent;
  box-shadow: none !important;
}

.btn.big,
.btn.btn-lg {
  height: 50px;
  font-size: 24px;
}

.btn.small,
.btn.btn-sm {
  height: 35px;
  padding: 0 20px;
  font-size: 14px;
}

.btn.small2,
.btn.btn-xs {
  font-size: 12px;
  height: 30px;
  padding: 0 15px;
}

.btn.btn-disabled,
.btn[disabled] {
  background-color: #666666 !important;
  color: #fff !important;
  border-color: transparent !important;
  cursor: not-allowed !important;
}

.btn.btn-br-0,
.btn.btn-br-0x {
  border-width: 0 !important;
}

.btn.btn-br-1,
.btn.btn-br-1x {
  border-width: 1px !important;
}

.btn.btn-br-2,
.btn.btn-br-2x {
  border-width: 2px !important;
}

.btn.btn-br-3,
.btn.btn-br-3x {
  border-width: 3px !important;
}

.btn.btn-br-4,
.btn.btn-br-4x {
  border-width: 4px !important;
}

.btn.btn-br-5,
.btn.btn-br-5x {
  border-width: 5px !important;
}

@media all and (max-width: 991px) {
  .btn {
    font-size: 16px;
    padding: 0 20px;
  }
  .big,
  .btn-lg {
    font-size: 18px;
    height: 40px;
    padding: 0 20px;
  }
  .big.btn-multi-lined,
  .btn-lg.btn-multi-lined {
    min-height: 40px;
  }
}
html {
  --color-primary: $color-primary;
  --color-secondary: $color-secondary;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #333333;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -webkit-print-color-adjust: exact !important;
  counter-reset: my-counter;
}

h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
  font-family: "Montserrat", sans-serif;
  color: #333333;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.4;
}

h1, .h1 {
  font-size: 48px;
  letter-spacing: 3.5px;
}

h2, .h2 {
  font-size: 48px;
  line-height: 1.4;
  font-style: italic;
  font-weight: 700;
  color: #fff;
}

h3, .h3 {
  font-size: 22px;
  font-style: italic;
}

h4, .h4 {
  font-size: 18px;
  color: #ee1b24;
  font-weight: 700;
}

h5, .h5 {
  font-size: 20px;
}

h6, .h6 {
  font-size: 18px;
}

h1 a, h2 a, h3 a, h4 a, h5 a,
a h1, a h2, a h3, a h4, a h5 {
  color: #ee1b24;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover,
a:hover h1, a:hover h2, a:hover h3, a:hover h4, a:hover h5 {
  color: #ee1b24;
}

p {
  margin: 30px 0;
}

.html-editor [style*=font-size]:not(.btn) {
  /*line-height: normal;*/
  display: inline-block;
}

a {
  text-decoration: none;
  color: #151b3d;
}

a:hover {
  color: #0d122b;
}

p a, label a, table a:not(.btn), li a {
  color: #151b3d;
  text-decoration: none;
}

p a:hover, label a:hover, table a:not(.btn):hover, li a:hover,
p a:focus, label a:focus, table a:not(.btn):focus, li a:focus {
  color: #0d122b;
}

img {
  max-width: 100%;
  vertical-align: middle;
  max-height: 100%;
}

strong, b {
  font-weight: 600;
}

hr {
  border: none;
  border-top: 1px solid #000000;
  margin: 30px 0;
  height: 1px;
}

.html-editor ul:not([role=tablist]):not(.sp-tabs):not(.ul-custom) ul {
  margin: 5px 0;
}

.html-editor ul:not([role=tablist]):not(.sp-tabs):not(.ul-custom) li {
  margin-bottom: 5px;
}

.html-editor ul:not([role=tablist]):not(.sp-tabs):not(.ul-custom) {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 15px;
}

.html-editor ol {
  padding-left: 20px;
  list-style-type: decimal;
  margin-bottom: 15px;
}

.html-editor ol ol {
  list-style-type: lower-alpha;
  padding-left: 25px;
  margin-bottom: 10px;
}

.cke_editable .no-edit {
  display: none;
}

table {
  width: 100%;
  background: #fff;
}

table td, table th {
  vertical-align: top;
  padding: 10px 15px;
}

table.table-vertical-align-top td, table.table-vertical-align-top th {
  vertical-align: top;
}

table.table-vertical-align-middle td, table.table-vertical-align-middle th {
  vertical-align: middle;
}

table.table-bordered th {
  border: 1px solid #fff;
}

table.table-bordered td {
  border: 1px solid #f2f2f6;
}

table th {
  background: #f2f2f6;
  font-weight: 700;
  font-size: 14px;
}

table td {
  border: 1px solid #f2f2f6;
}

table td p:last-child, table th p:last-child {
  margin: 0;
}

/* ##### ONLY IN WYSIWIG EDITOR ##### */
.wysiwyg-editor img {
  max-width: 100% !important;
  height: auto !important;
}

.wysiwyg-editor a:hover {
  text-decoration: underline;
}

@media all and (max-width: 991px) {
  body {
    font-size: 18px;
  }
  h1, .h1 {
    font-size: 36px;
  }
  h2, .h2 {
    font-size: 30px;
  }
  h3, .h3 {
    font-size: 24px;
  }
  h4, .h4 {
    font-size: 20px;
  }
  h5, .h5 {
    font-size: 14px;
  }
}
/* COLORS  */
/* FONTS  */
/* Laout (grid.scss)  */
/* HEADER / MENU */
.bx-opening-new {
  padding-top: 40px;
  padding-bottom: 40px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), linear-gradient(302.2deg, #232E69 0.11%, #232E69 22.09%, #FA0000 22.17%, #FA0000 41.83%, #232E69 41.86%, #232E69 64.09%, #FA0000 64.13%, #FA0000 84.96%, #232E69 85.02%);
}

.bx-opening-new .i-top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.bx-opening-new .i-meta-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border: 1px solid #fff;
  border-radius: 2px;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
}

.bx-opening-new .i-main-image {
  position: relative;
  z-index: 3;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.bx-opening-new .i-main-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bx-opening-new .i-intro-text {
  margin: 0 0 12px;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.78);
}
.bx-opening-new .i-intro-text p {
  margin: 0;
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.65);
  border-bottom: 2px solid rgba(255, 255, 255, 0.65);
  transform: translateX(-50%) rotate(45deg);
  z-index: 4;
  cursor: pointer;
  animation: scrollPulse 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.55;
    transform: translateX(-50%) rotate(45deg) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) rotate(45deg) translateY(4px);
  }
}
@media (max-width: 768px) {
  .bx-opening-new .i-top-bar {
    margin-bottom: 10px;
  }
  .bx-opening-new .i-top-bar .i-meta-chip {
    font-size: 14px;
    padding: 4px 6px;
  }
}
body.menu-open {
  overflow: hidden;
  height: 100vh;
}
body.menu-open .bx-header__top {
  background: #333333;
}

.bx-header {
  --header-top-offset: 48px;
  --header-menu-height: 250px;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1100;
  pointer-events: none;
}
.bx-header__top {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  height: 108px;
  transition: background-color 0.2s ease;
  padding: 0 20px;
}
.bx-header__capsule,
.bx-header .i-hamburger {
  pointer-events: auto;
}
.bx-header__capsule {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 10px 24px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.bx-header__nav {
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  background: #323234;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}
.bx-header__nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.bx-header__nav-inner {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  padding-top: 108px;
  background: #2a3170;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.i-brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.i-brand-link img {
  display: block;
  width: auto;
}
.i-brand-link--wp img {
  height: 40px;
}
.i-brand-link--partner img {
  height: auto;
}

.i-brand-label {
  display: inline-flex;
  align-items: center;
  color: #7a7f86;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.i-separator {
  width: 1px;
  height: 12px;
  background: #d7dbe2;
}

.i-hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.i-hamburger:hover {
  transform: translateY(-1px);
}
.i-hamburger:active {
  transform: translateY(0);
}
.i-hamburger__line {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: transparent;
}
.i-hamburger__line::before, .i-hamburger__line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #323234;
  transition: top 0.2s ease, transform 0.2s ease, width 0.2s ease, background-color 0.2s ease;
}
.i-hamburger__line::before {
  top: -4px;
}
.i-hamburger__line::after {
  top: 4px;
}
.i-hamburger.is-active, .i-hamburger.open, .i-hamburger:hover {
  background: #ee1b24;
}
.i-hamburger.is-active .i-hamburger__line::before, .i-hamburger.is-active .i-hamburger__line::after, .i-hamburger.open .i-hamburger__line::before, .i-hamburger.open .i-hamburger__line::after, .i-hamburger:hover .i-hamburger__line::before, .i-hamburger:hover .i-hamburger__line::after {
  background: #fff;
}
.i-hamburger.is-active .i-hamburger__line::before, .i-hamburger.is-active .i-hamburger__line::after, .i-hamburger.open .i-hamburger__line::before, .i-hamburger.open .i-hamburger__line::after {
  top: 0;
}
.i-hamburger.is-active .i-hamburger__line::before, .i-hamburger.open .i-hamburger__line::before {
  transform: rotate(45deg);
}
.i-hamburger.is-active .i-hamburger__line::after, .i-hamburger.open .i-hamburger__line::after {
  transform: rotate(-45deg);
}

.i-article-grid {
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  visibility: hidden;
  overflow: hidden;
}
.i-article-grid.slick-initialized {
  visibility: visible;
  display: block;
}
.i-article-grid .slick-list,
.i-article-grid .slick-track {
  height: 100% !important;
}
.i-article-grid .slick-list {
  padding-left: 3px;
  padding-right: 3px;
}
.i-article-grid .slick-track {
  display: flex !important;
}
.i-article-grid .slick-slide {
  height: auto;
  display: flex !important;
  outline: none;
}
.i-article-grid .slick-slide > div {
  display: flex;
  width: 100%;
  height: 100%;
  padding-left: 3px;
  padding-right: 3px;
  box-sizing: border-box;
}

.i-menu-slide {
  display: flex;
  width: 100%;
  height: 100%;
}

.i-article-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 8px;
  background: #2a3170;
  color: #fff;
  text-decoration: none;
  outline: 0;
  transition: background-color 0.2s ease;
  border-right: 2px solid #333333;
}
.i-article-card:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.28);
}
.i-article-card.is-previewed {
  background: #313a82;
}
.i-article-card.is-active, .i-article-card[aria-current=true] {
  background: #ee1b24;
}
.i-article-card__img-wrapper {
  width: 100%;
  height: 185px;
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.12);
}
.i-article-card__img-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 575px) {
  .i-article-card__img-wrapper {
    height: 120px;
  }
}
.i-article-card__info {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.i-article-card__num {
  color: rgba(255, 255, 255, 0.72);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}
.i-article-card:hover, .i-article-card:focus-visible {
  background: #c7161e;
  color: #fff;
}
.i-article-card:hover .i-article-card__description, .i-article-card:focus-visible .i-article-card__description {
  text-decoration: underline;
  color: #fff;
}
.i-article-card:hover .i-article-card__num, .i-article-card:focus-visible .i-article-card__num {
  color: rgba(255, 255, 255, 0.72);
}
.i-article-card.is-active .i-article-card__title, .i-article-card.is-active .i-article-card__description, .i-article-card.is-active .i-article-card__num, .i-article-card[aria-current=true] .i-article-card__title, .i-article-card[aria-current=true] .i-article-card__description, .i-article-card[aria-current=true] .i-article-card__num, .i-article-card.is-previewed .i-article-card__title, .i-article-card.is-previewed .i-article-card__description {
  color: #fff;
}

.i-menu-footer {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  pointer-events: none;
}

.i-chapter-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  padding: 0;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.05;
  background: #2a3170;
  outline: 0;
  overflow: hidden;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.i-chapter-btn:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.22);
}
.i-chapter-btn:active {
  background: rgba(255, 255, 255, 0.08);
}
.i-chapter-btn__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  white-space: nowrap;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}
.i-chapter-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 60px;
  height: 36px;
  background: #fff;
  color: #333333;
  overflow: hidden;
  transition: background-color 0.2s ease, color 0.15s ease, width 0.25s ease;
}
.i-chapter-btn__icon::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}
.i-chapter-btn__icon::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  margin: 0 -3px;
}
.i-chapter-btn__arrow {
  display: none;
}
.i-chapter-btn--prev {
  border-left: 0;
  border-radius: 0 8px 8px 0;
  padding: 8px 8px 8px 0;
}
.i-chapter-btn--prev .i-chapter-btn__icon {
  order: 0;
  border-radius: 0 6px 6px 0;
  flex-direction: row-reverse;
}
.i-chapter-btn--prev .i-chapter-btn__icon::after {
  transform: rotate(-135deg);
}
.i-chapter-btn--prev .i-chapter-btn__label {
  order: 1;
  min-width: 88px;
  text-align: left;
  padding-left: 0;
}
.i-chapter-btn--next {
  border-right: 0;
  border-radius: 8px 0 0 8px;
  padding: 8px 0 8px 8px;
}
.i-chapter-btn--next .i-chapter-btn__label {
  order: 1;
  min-width: 98px;
  text-align: right;
  padding-right: 0;
}
.i-chapter-btn--next .i-chapter-btn__icon {
  order: 2;
  border-radius: 6px 0 0 6px;
  flex-direction: row;
}
.i-chapter-btn--next .i-chapter-btn__icon::after {
  transform: rotate(45deg);
}
.i-chapter-btn:hover .i-chapter-btn__icon, .i-chapter-btn:focus-visible .i-chapter-btn__icon {
  background: #ee1b24;
  color: #fff;
  width: 96px;
}
.i-chapter-btn:hover .i-chapter-btn__icon::before, .i-chapter-btn:focus-visible .i-chapter-btn__icon::before {
  width: 36px;
}
.i-chapter-btn:hover .i-chapter-btn__label, .i-chapter-btn:focus-visible .i-chapter-btn__label {
  color: #fff;
}

@media (max-width: 991px) {
  .bx-header {
    --header-top-offset: 44px;
    --header-menu-height: 226px;
  }
  .bx-header__top {
    padding-right: 14px;
    padding-left: 14px;
  }
  .i-article-card__info {
    gap: 8px;
  }
  .i-article-card__num {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .bx-header {
    --header-top-offset: 42px;
    --header-menu-height: 196px;
  }
  .bx-header__top {
    gap: 6px;
    padding-right: 10px;
    padding-left: 10px;
  }
  .bx-header__capsule {
    gap: 6px;
    min-height: 36px;
    padding: 0 12px;
  }
  .bx-header__capsule .tt-uppercase {
    margin-left: auto;
    white-space: nowrap;
  }
  .i-brand-link--wp img {
    height: 30px;
  }
  .i-brand-link--partner img {
    max-height: 18px;
  }
  .i-brand-label {
    font-size: 6px;
  }
  .i-article-card {
    padding: 7px;
  }
  .i-article-card__info {
    gap: 6px;
    padding-top: 7px;
  }
  .i-article-card__title, .i-article-card__description {
    font-size: 16px !important;
  }
  .i-article-card__num {
    font-size: 24px;
  }
  .i-menu-footer {
    padding-bottom: 10px;
  }
  .i-chapter-btn {
    font-size: 7px;
    gap: 10px;
  }
  .i-chapter-btn__label {
    display: none;
  }
  .i-chapter-btn__label br {
    display: none;
  }
  .i-chapter-btn__icon {
    width: 40px;
    transition: background-color 0.2s ease, color 0.2s ease, width 0.2s ease;
  }
  .i-chapter-btn__arrow {
    width: 18px;
    height: 9px;
  }
  .i-chapter-btn:hover .i-chapter-btn__icon, .i-chapter-btn:focus-visible .i-chapter-btn__icon {
    width: 48px;
  }
}
/* COLORS  */
/* FONTS  */
/* Laout (grid.scss)  */
/* HEADER / MENU */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  border: none;
  outline: none;
  z-index: 5;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  color: #333333;
  transition: width 0.25s ease, background 0.2s ease, color 0.15s ease;
}
.slick-prev::before,
.slick-next::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}
.slick-prev::after,
.slick-next::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  margin: 0 -6px;
}
.slick-prev:hover,
.slick-next:hover {
  width: 96px;
  background: rgba(238, 27, 36, 0.9);
  color: #fff;
}
.slick-prev:hover::before,
.slick-next:hover::before {
  width: 36px;
}
.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.slick-prev {
  left: 0;
  flex-direction: row-reverse;
  border-radius: 0 4px 4px 0;
}
.slick-prev::after {
  transform: rotate(-135deg);
}

.slick-next {
  right: 0;
  flex-direction: row;
  border-radius: 4px 0 0 4px;
}
.slick-next::after {
  transform: rotate(45deg);
}

.gallery-slick01 {
  position: relative;
}
.gallery-slick01 .slick-list {
  overflow: hidden;
}
.gallery-slick01 .item .i-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.gallery-slick01 .item .i-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-slick02 {
  position: relative;
  overflow: hidden;
}
.gallery-slick02 .slick-list {
  overflow: visible;
  padding-right: 10% !important;
}
.gallery-slick02 .slick-slide > div {
  padding-right: 10px;
}
.gallery-slick02 .item {
  margin-right: 20px;
}
.gallery-slick02 .item .i-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.gallery-slick02 .item .i-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 575px) {
  .gallery-slick02 .slick-list {
    overflow: hidden;
    padding-right: 0 !important;
  }
  .gallery-slick02 .slick-slide > div {
    padding-right: 0;
  }
  .gallery-slick02 .item {
    margin-right: 0;
  }
  .gallery-slick02 .item .i-img {
    aspect-ratio: unset;
    height: 356px;
  }
}

.bx-slider-wrap {
  position: relative;
}

.bx-slider .slick-list {
  overflow: visible;
  padding-right: 20% !important;
}
.bx-slider .slick-slide > div {
  padding-right: 8px;
}
.bx-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/9;
}

.bx-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #2a3170;
  border: 1px solid rgba(255, 255, 255, 0.55);
  overflow: hidden;
  width: 52px;
  height: 52px;
  transition: border-color 0.2s ease;
}
.bx-slide-btn--prev {
  left: 0;
  border-left: 0;
  border-radius: 0 6px 6px 0;
}
.bx-slide-btn--prev .bx-slide-btn__arrow {
  transform: scaleX(-1);
}
.bx-slide-btn--next {
  right: 0;
  border-right: 0;
  border-radius: 6px 0 0 6px;
}
.bx-slide-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: background-color 0.2s ease;
}
.bx-slide-btn__arrow {
  width: 24px;
  height: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}
.bx-slide-btn__arrow path:first-child {
  opacity: 0;
  stroke-dasharray: 22;
  stroke-dashoffset: 22;
  transition: opacity 0.2s ease, stroke-dashoffset 0.25s ease;
}
.bx-slide-btn__arrow path:last-child {
  transition: transform 0.2s ease;
}
.bx-slide-btn:hover .bx-slide-btn__icon {
  background: #ee1b24;
}
.bx-slide-btn:hover .bx-slide-btn__arrow path:first-child {
  opacity: 1;
  stroke-dashoffset: 0;
}
@media (max-width: 575px) {
  .bx-slide-btn {
    width: 40px;
    height: 40px;
  }
  .bx-slide-btn__arrow {
    width: 18px;
    height: 10px;
  }
}

.bx-hover-photo {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  max-height: 520px;
  z-index: 15;
}
.bx-hover-photo .i-ico {
  background-color: white;
  width: 80px;
  height: 40px;
  line-height: 40px;
  font-size: 41px;
  position: absolute;
  left: calc(50% - 40px);
  bottom: 10px;
  text-align: center;
  color: #333333;
  z-index: 10;
  transition: all 0.4s;
}
.bx-hover-photo .i-ico span {
  display: block;
  transition: transform 0.3s ease;
}
.bx-hover-photo .i-desc {
  padding: 40px;
  text-align: left;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), linear-gradient(302.2deg, #232E69 0.11%, #232E69 22.09%, #FA0000 22.17%, #FA0000 41.83%, #232E69 41.86%, #232E69 64.09%, #FA0000 64.13%, #FA0000 84.96%, #232E69 85.02%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  transition: all 0.2s ease-in-out;
  z-index: 6;
  animation: fadeIn 0.4s linear;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding-bottom: 50px;
}
.bx-hover-photo .i-desc h3, .bx-hover-photo .i-desc h4, .bx-hover-photo .i-desc p {
  color: #fff;
  margin-bottom: 15px;
}
.bx-hover-photo:hover .i-ico, .bx-hover-photo:focus .i-ico {
  background-color: #ee1b24;
  color: white;
}
.bx-hover-photo:hover .i-ico span, .bx-hover-photo:focus .i-ico span {
  transform: rotate(45deg);
}
.bx-hover-photo:hover .i-desc, .bx-hover-photo:focus .i-desc {
  display: flex;
}
.bx-hover-photo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.bx-hover-photo:hover img {
  transform: scale(1.05);
}
@media (min-width: 992px) {
  .bx-hover-photo.v2 .i-desc {
    top: auto;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 88%;
  }
}

/* ##### DROPDOWN-MENU ##### */
.dropdown {
  position: relative;
}

.btn-group {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  min-width: 100%;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  text-align: left;
  list-style: none;
  background-color: var(--color-white);
  background-clip: padding-box;
  border: 1px solid transparent;
  padding: 1px 0;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.3);
}

.dropdown-menu.arrow {
  margin-top: 10px;
}

.dropdown-menu.arrow::after, .dropdown-menu.arrow::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-default);
}

.dropdown-menu.arrow::before {
  top: -9px;
  left: 20px;
  border-bottom-color: rgba(0, 0, 0, 0.15);
}

.dropdown-menu.arrow.dropdown-menu-right::after {
  left: auto;
  right: 20px;
}

.dropdown-menu.arrow.dropdown-menu-right::before {
  left: auto;
  right: 20px;
}

.dropdown-menu.show {
  display: block;
}

ul.dropdown-menu.inner {
  position: static;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  border-radius: 0;
}

ul.dropdown-menu li {
  border: none;
  font-size: 15px;
  border-top: 1px solid transparent;
  padding: 0 2px;
  text-align: left;
  margin: 0 !important;
  position: relative;
}

ul.dropdown-menu li.disabled {
  opacity: 0.5;
  display: none;
}

ul.dropdown-menu li a {
  display: block;
  color: var(--color-default);
  padding: 5px 10px;
  text-decoration: none;
  cursor: pointer;
}

ul.dropdown-menu li a:hover,
ul.dropdown-menu li a:focus,
ul.dropdown-menu li.active a,
ul.dropdown-menu li.selected a {
  background: #d6e0ec;
  text-decoration: none;
  color: var(--color-default);
}

.dropup .dropdown-menu {
  margin-top: 0;
}

ul.dropdown-menu li i {
  text-align: center;
  width: 1.25em;
}

.dropdown-menu .divider {
  height: 2px;
  overflow: hidden;
  background-color: var(--color-gray);
}

.dropdown-menu ul {
  border-bottom: 2px solid var(--color-gray);
}

ul.dropdown-menu li.dropdown-header {
  background: var(--color-default);
  padding: 5px 10px;
  text-align: center;
}

.fancybox-active .bhr-chat-container, .open-menu .bhr-chat-container {
  display: none;
}

.is-apple-mobile .fancybox-content {
  vertical-align: top !important;
}

.fancybox-slide--ajax > div {
  width: 1100px;
  max-width: 95% !important;
}

.fancybox-slide--inline > div {
  max-width: 95% !important;
}

.fancybox-infobar {
  color: #fff !important;
}

body .fancybox-container {
  font-family: "Stolzl-regular", sans-serif;
}

body .fancybox-close-small {
  position: fixed;
}

body :not(.fancybox-close-white) .fancybox-close-small:after {
  background: #f6f6f6;
  font: inherit;
  font-size: 17px;
  line-height: 29px;
}

.fancybox-close-white .fancybox-close-small:after {
  color: #fff;
}

@media all and (max-width: 767px) {
  .fancybox-slide--iframe {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .fancybox-content {
    max-width: 95% !important;
    width: 95% !important;
  }
}
/********* NAVS *********/
.tab-content > .tab-pane {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.tab-content > .active {
  height: auto;
  visibility: visible;
  overflow: inherit;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  padding: 0;
  white-space: normal;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: var(--color-default);
  max-width: 95%;
  font-size: 14px;
  line-height: 18px;
  background-color: #fff;
  border: 3px solid var(--color-secondary-hover);
  margin: 10px 0;
}

.popover-body .bx-popover-partner {
  width: 700px;
  max-width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  min-height: 140px;
  padding: 10px;
}

.popover-body .bx-popover-partner .i-in1 {
  flex: 0 0 40%;
  max-width: 40%;
  padding: 10px;
  text-align: center;
}

.popover-body .bx-popover-partner .i-in1 img {
  max-width: 100%;
}

.popover-body .bx-popover-partner .i-in2 {
  padding: 10px;
}

.popover-body .bx-popover-partner .i-in2 h2 {
  font-family: "Mulish", sans-serif;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 10px;
  color: var(--color-secondary-hover);
}

.popover-body .bx-popover-partner .i-in2 p {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

@media all and (max-width: 991px) {
  .popover-content .bx-popover-partner .i-in2 h2 {
    font-size: 18px;
    line-height: 24px;
  }
  .popover-content .bx-popover-media h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
[data-toggle=tooltip]:not(a) {
  cursor: help;
}

.btn[data-toggle=tooltip] {
  cursor: pointer;
}

.tooltip {
  position: absolute;
  z-index: 99999;
  padding: 7px 10px;
  font-size: 14px;
  line-height: normal;
  opacity: 0;
}

.tooltip.show {
  opacity: 1;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: var(--color-gray);
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: var(--color-gray);
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: var(--color-gray);
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: var(--color-gray);
}

.tooltip-inner {
  min-width: 100px;
  max-width: 800px;
  padding: 4px 10px 5px 10px;
  color: var(--color-default);
  text-align: center;
  background-color: var(--color-gray);
  border-radius: 3px;
}

.bx-sticky {
  position: sticky;
  top: 150px;
}

/* --------------------------------------------
   Grid 4 zdjęć (z projektu Figma)
   -------------------------------------------- */
.bx-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .bx-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .bx-grid-4 {
    grid-template-columns: 1fr;
  }
}
.bx-grid-4 .i-grid-item {
  position: relative;
  overflow: hidden;
}
.bx-grid-4 .i-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.bx-grid-4 .i-grid-item:hover img {
  transform: scale(1.05);
}

/* --------------------------------------------
   Hotpointy na zdjęciu
   -------------------------------------------- */
.bx-hotpoints {
  position: relative;
}
.bx-hotpoints .i-hotpoint {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ee1b24;
  border: 3px solid #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bx-hotpoints .i-hotpoint:hover {
  transform: scale(1.2);
  background: #151b3d;
}
.bx-hotpoints .i-hotpoint .i-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #333333;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.bx-hotpoints .i-hotpoint .i-tooltip:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #fff;
}
.bx-hotpoints .i-hotpoint:hover .i-tooltip {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 10px);
}

/* --------------------------------------------
   Collage produktowy
   -------------------------------------------- */
.bx-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.bx-collage.v-4-images {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.bx-collage.v-4-images .i-collage-item:nth-child(1) {
  grid-row: 1/3;
}
.bx-collage .i-collage-item {
  position: relative;
  overflow: hidden;
}
.bx-collage .i-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------
   FAQ Section
   -------------------------------------------- */
.bx-faq .i-faq-item {
  border-bottom: 1px solid #e6e7e9;
  padding: 20px 0;
}
.bx-faq .i-faq-item .i-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
}
.bx-faq .i-faq-item .i-question:after {
  content: "+";
  font-size: 24px;
  color: #ee1b24;
  transition: transform 0.3s;
}
.bx-faq .i-faq-item .i-question.active:after {
  transform: rotate(45deg);
}
.bx-faq .i-faq-item .i-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 16px;
  line-height: 1.6;
}
.bx-faq .i-faq-item .i-answer.active {
  max-height: 500px;
  padding-top: 15px;
}

/* --------------------------------------------
   Podwójne zdjęcia (jak w L2)
   -------------------------------------------- */
.bx-double-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .bx-double-images {
    grid-template-columns: 1fr;
  }
}
.bx-double-images .i-image-big {
  grid-row: span 2;
}
.bx-double-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------
   Box z zdjęciem i tekstem
   -------------------------------------------- */
.bx-image-box {
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .bx-image-box {
    flex-direction: column;
  }
}
.bx-image-box.v-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .bx-image-box.v-reverse {
    flex-direction: column;
  }
}
.bx-image-box .i-image {
  flex: 0 0 50%;
}
.bx-image-box .i-image img {
  width: 100%;
  height: auto;
}
.bx-image-box .i-content {
  flex: 1;
}

/* --------------------------------------------
   Podświetlenie tekstu (accent)
   -------------------------------------------- */
.bx-highlight {
  background: linear-gradient(to bottom, transparent 60%, #ee1b24 60%);
  padding: 0 4px;
}

.bx-sticky.i-full-height-pic {
  top: 0;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ee1b24;
  z-index: 9999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.anchor {
  position: relative;
  top: -100px;
  display: block;
  visibility: hidden;
  pointer-events: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* --------------------------------------------
   NOWY ARTICLE OPENING (Zgodnie z Image 1)
   -------------------------------------------- */
.bx-article-opening {
  min-height: 100vh;
  padding: 120px 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), linear-gradient(302.2deg, #151b3d 0.11%, #151b3d 22.09%, #ee1b24 22.17%, #ee1b24 41.83%, #151b3d 41.86%, #151b3d 64.09%, #ee1b24 64.13%, #ee1b24 84.96%, #151b3d 85.02%);
}
.bx-article-opening .i-top-bar {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.bx-article-opening .i-top-bar span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.bx-article-opening .i-title {
  max-width: 1100px;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  text-align: left;
  margin-bottom: 40px;
  color: #fff;
  font-style: italic;
  text-transform: none;
}
@media (max-width: 768px) {
  .bx-article-opening .i-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.bx-article-opening .i-main-image {
  width: 100%;
  max-width: 1100px;
  height: auto;
  aspect-ratio: 16/9;
  margin-bottom: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.bx-article-opening .i-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .bx-article-opening .i-main-image {
    margin-bottom: 20px;
  }
}
.bx-article-opening .i-intro-text {
  max-width: 800px;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}
.bx-article-opening .i-intro-text p {
  margin: 0;
}
.bx-article-opening .i-share-box {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
}
.bx-article-opening .i-share-box .i-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  transition: all 0.3s;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.bx-article-opening .i-share-box .i-btn svg {
  width: 16px;
  height: 16px;
}
.bx-article-opening .i-share-box .i-btn.i-fb svg path {
  fill: #151b3d;
}
.bx-article-opening .i-share-box .i-btn.i-x {
  background: #ee1b24;
}
.bx-article-opening .i-share-box .i-btn.i-x svg path {
  fill: #fff;
}
.bx-article-opening .i-share-box .i-btn:hover {
  background: #C8E6EF;
}
.bx-article-opening .i-share-box .i-btn:hover.i-x {
  background: #c7171f;
}

/* --------------------------------------------
   Sekcje Double Column (Modern Flex)
   -------------------------------------------- */
.bx-double-column {
  display: flex;
  background: #fff;
  width: 100%;
}
.bx-double-column .i-left {
  width: 50%;
  padding: 100px 60px;
  background: #C8E6EF;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.bx-double-column .i-left .i-sticky {
  position: sticky;
  top: 140px;
  width: 100%;
  max-width: 800px;
}
.bx-double-column .i-right {
  width: 50%;
  padding: 100px 100px 100px 60px;
  max-width: 900px;
}
@media (max-width: 1150px) {
  .bx-double-column {
    flex-direction: column-reverse;
  }
  .bx-double-column .i-left, .bx-double-column .i-right {
    width: 100%;
    padding: 40px 20px;
    max-width: none;
  }
}

/* --------------------------------------------
   Elementy wspólne (bx- / i-)
   -------------------------------------------- */
.bx-accent {
  position: relative;
  display: inline;
  box-shadow: inset 0 -0.5em 0 0 #ee1b24;
  padding: 0 5px;
  box-decoration-break: clone;
}
.bx-accent.v-light {
  box-shadow: inset 0 -0.5em 0 0 #C8E6EF;
}

.bx-lead {
  font-weight: 800;
  font-size: 24px;
  line-height: 1.4;
  margin: 30px 0;
}

.bx-text-under {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
  font-size: 14px;
  color: #413f3f;
}
.bx-text-under .bx-rectangle {
  margin-top: 5px;
}

.bx-rectangle {
  display: inline-block;
  min-width: 60px;
  height: 10px;
  background: #ee1b24;
  margin-right: 15px;
}

.bx-custom-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.bx-custom-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.bx-custom-list li .bx-rectangle {
  min-width: 30px;
  margin-top: 10px;
}
.bx-custom-list li p {
  margin: 0;
}

.bx-spacer {
  position: relative;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 40px;
}
.bx-spacer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}
.bx-spacer h3 {
  z-index: 2;
  position: relative;
  color: #fff;
}

.bx-hero {
  position: relative;
  overflow: hidden;
}
.bx-hero img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .bx-hero {
    height: 100vh;
  }
  .bx-hero img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    object-position: 100% 100%;
  }
}

.ico-go-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background-color: #ee1b24;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='18 15 12 9 6 15'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  display: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: filter 0.2s ease, transform 0.2s ease, bottom 0.3s ease;
}
.ico-go-top:hover {
  filter: brightness(0.85);
  transform: translateY(-4px);
}

/* Slick fixes */
.slick-initialized .i-menu-slide {
  display: block;
}

.bx-gallery-section {
  background: #fff;
  padding: 80px 0;
}
.bx-gallery-section h3 {
  margin-bottom: 40px;
}

.bx-gallery-nav {
  position: relative;
  overflow: hidden;
}
.bx-gallery-nav .i-gallery-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 20px;
}
.bx-gallery-nav .i-gallery-item {
  flex: 0 0 auto;
  width: 70vw;
  max-width: 1000px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .bx-gallery-nav .i-gallery-item {
    width: 85vw;
  }
}
.bx-gallery-nav .i-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
.bx-gallery-nav .i-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: #ee1b24;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s ease;
}
.bx-gallery-nav .i-gallery-btn::before {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.bx-gallery-nav .i-gallery-btn.i-btn-prev {
  left: 0;
  background: #fff;
}
.bx-gallery-nav .i-gallery-btn.i-btn-prev::before {
  transform: rotate(-135deg) translate(2px, -2px);
  border-top-color: #151b3d;
  border-right-color: #151b3d;
}
.bx-gallery-nav .i-gallery-btn.i-btn-prev:hover {
  background: rgba(255, 255, 255, 0.85);
}
.bx-gallery-nav .i-gallery-btn.i-btn-next {
  right: 0;
}
.bx-gallery-nav .i-gallery-btn.i-btn-next::before {
  transform: rotate(45deg) translate(-2px, 2px);
}
.bx-gallery-nav .i-gallery-btn.i-btn-next:hover {
  background: #c7171f;
}
@media (max-width: 768px) {
  .bx-gallery-nav .i-gallery-btn {
    width: 44px;
    height: 44px;
  }
  .bx-gallery-nav .i-gallery-btn.i-btn-prev {
    left: 10px;
  }
  .bx-gallery-nav .i-gallery-btn.i-btn-next {
    right: 10px;
  }
}

.bx-video-section {
  position: relative;
  width: 100%;
  background: #000000;
  overflow: hidden;
  cursor: pointer;
}
.bx-video-section .i-video-thumb {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bx-video-section:hover .i-video-thumb {
  transform: scale(1.03);
}
.bx-video-section .i-video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid #fff;
  overflow: hidden;
  pointer-events: none;
}
.bx-video-section .i-video-overlay .i-video-label {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 22px;
  background: rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}
.bx-video-section .i-video-overlay .i-video-play {
  width: 52px;
  height: 52px;
  background: #ee1b24;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bx-video-section .i-video-overlay .i-video-play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 16px solid #fff;
  margin-left: 3px;
}
.bx-video-section .i-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.bx-video-section .i-video-container iframe, .bx-video-section .i-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bx-seperator {
  flex: 1;
  height: 1px;
  background: #e6e7e9;
}
.bx-seperator.v1 {
  background: #ee1b24;
  height: 2px;
}
.bx-seperator.v2 {
  background: #151b3d;
}
.bx-seperator.v3 {
  background: #fff;
}
.bx-seperator.v4 {
  background: rgba(255, 255, 255, 0.3);
}
.bx-seperator.v5 {
  background: #666666;
}

.bx-grid-section {
  background: #fff;
}

.bx-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.bx-quote .i-quote {
  width: 50px;
  margin-bottom: 24px;
  opacity: 0.9;
}
.bx-quote .i-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  font-style: italic;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .bx-quote .i-text {
    font-size: 18px;
  }
}
.bx-quote .i-author {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.75);
}
.bx-quote.v-small {
  text-align: left;
  margin: 30px 0;
}
.bx-quote.v-small .i-quote {
  width: 36px;
  margin-bottom: 16px;
}
.bx-quote.v-small .i-text {
  font-size: 17px;
  font-style: italic;
  color: #333333;
}
.bx-quote.v-small .i-author {
  font-size: 13px;
  color: #666666;
}

.bx-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 30px;
}
.bx-socials .i-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #151b3d;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.bx-socials .i-social-icon svg {
  width: 14px;
  height: auto;
}
.bx-socials .i-social-icon:hover {
  background: #ee1b24;
}
.bx-socials .i-author {
  font-size: 13px;
  color: #666666;
  margin: 0;
}

.bx-chart-bar-horizontal .d-flex.align-items-center {
  margin-bottom: 16px;
  gap: 12px;
}
.bx-chart-bar-horizontal .i-labels {
  min-width: 80px;
  text-align: right;
}
.bx-chart-bar-horizontal .i-labels .i-first-label {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #ee1b24;
  line-height: 1;
}
.bx-chart-bar-horizontal .i-labels .i-second-label {
  font-size: 11px;
  color: #666666;
  margin: 0;
  line-height: 1.3;
}
.bx-chart-bar-horizontal .i-bar {
  flex: 1;
  height: 8px;
  background: #ee1b24;
  width: var(--bar-width, 100%);
  max-width: var(--bar-width, 100%);
  transition: max-width 0.8s ease;
}

.i-right-inside {
  max-width: 620px;
}
.i-right-inside h2.bx-accent {
  margin-bottom: 20px;
}
.i-right-inside p {
  font-size: 17px;
  line-height: 1.75;
  color: #333333;
}

.footer {
  background: #EFEFEF;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 1600px) {
  .footer {
    gap: 100px;
    padding: 49px 120px;
  }
}
@media screen and (min-width: 1100px) {
  .footer {
    gap: 40px;
    padding: 49px 70px;
  }
}
.footer .i-partner {
  gap: 10px;
}
.footer .i-partner span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer .i-text {
  font-size: 14px;
  text-align: center;
}
.footer .i-text p {
  margin: 0;
}
.footer .i-logo, .footer .i-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .t-right {
  text-align: center;
}

.bx-opening-new .i-share-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  overflow: hidden;
}
.bx-opening-new .i-share-box .i-share-box__label {
  font-size: 13px;
  font-weight: 400;
  padding: 0 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.bx-opening-new .i-share-box .i-share-box__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  color: #333333;
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease;
}
.bx-opening-new .i-share-box .i-share-box__btn:hover {
  background: #ee1b24;
  color: #fff;
}

.bg-alt {
  background-color: #C8E6EF;
}

.bg-secondary {
  background-color: #151b3d;
}

.bg-primary {
  background-color: #ee1b24;
}

.bx-spacer.bg-alt {
  background-image: none !important;
  background-color: #C8E6EF;
  background-attachment: scroll;
}
.bx-spacer.bg-alt::after {
  display: none;
}

.bx-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000000;
}
.bx-video iframe,
.bx-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.text-accent-dot {
  position: relative;
  padding-left: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: #333333;
}
.text-accent-dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ee1b24;
  flex-shrink: 0;
}

.bx-border-desc {
  font-size: 14px;
  border: 1px solid #333333;
  border-radius: 4px;
  width: max-content;
  padding: 8px 16px;
}

.bx-desc {
  border-left: 3px solid #ee1b24;
  padding: 14px 20px;
  font-size: 17px;
  line-height: 1.65;
  color: #333333;
  margin: 24px 0;
  background: rgba(238, 27, 36, 0.04);
}

.bx-text-image .i-image.v-left {
  float: left;
  width: 42%;
  margin: 4px 32px 20px 0;
}
.bx-text-image .i-image.v-right {
  float: right;
  width: 42%;
  margin: 4px 0 20px 32px;
}
.bx-text-image .i-image img {
  width: 100%;
  height: auto;
  display: block;
}
.bx-text-image::after {
  content: "";
  display: table;
  clear: both;
}
.bx-text-image p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .bx-text-image .i-image.v-left,
  .bx-text-image .i-image.v-right {
    float: none;
    width: 100%;
    margin: 0 0 20px;
  }
}

.bx-mosaic {
  display: grid;
  gap: 4px;
  width: 100%;
}
.bx-mosaic .i-mosaic-item {
  overflow: hidden;
  position: relative;
}
.bx-mosaic .i-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.bx-mosaic .i-mosaic-item:hover img {
  transform: scale(1.04);
}
.bx-mosaic.v-2 {
  grid-template-columns: 1fr 1fr;
}
.bx-mosaic.v-2 .i-mosaic-item {
  aspect-ratio: 3/2;
}
@media (max-width: 576px) {
  .bx-mosaic.v-2 {
    grid-template-columns: 1fr;
  }
}
.bx-mosaic.v-3 {
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
}
.bx-mosaic.v-3 .i-mosaic-item:first-child {
  grid-row: span 2;
}
.bx-mosaic.v-3 .i-mosaic-item:not(:first-child) {
  aspect-ratio: 3/2;
}
@media (max-width: 768px) {
  .bx-mosaic.v-3 {
    grid-template-columns: 1fr;
  }
  .bx-mosaic.v-3 .i-mosaic-item:first-child {
    grid-row: auto;
  }
  .bx-mosaic.v-3 .i-mosaic-item {
    aspect-ratio: 3/2;
  }
}
.bx-mosaic.v-4 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: auto;
}
.bx-mosaic.v-4 .i-mosaic-item:first-child {
  grid-row: span 2;
}
.bx-mosaic.v-4 .i-mosaic-item:nth-child(2) {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.bx-mosaic.v-4 .i-mosaic-item:nth-child(3),
.bx-mosaic.v-4 .i-mosaic-item:nth-child(4) {
  aspect-ratio: 4/3;
}
@media (max-width: 991px) {
  .bx-mosaic.v-4 {
    grid-template-columns: 1fr 1fr;
  }
  .bx-mosaic.v-4 .i-mosaic-item:first-child {
    grid-row: auto;
  }
  .bx-mosaic.v-4 .i-mosaic-item:nth-child(2) {
    grid-column: auto;
    aspect-ratio: 4/3;
  }
  .bx-mosaic.v-4 .i-mosaic-item {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 576px) {
  .bx-mosaic.v-4 {
    grid-template-columns: 1fr;
  }
}

.section-py {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .section-py {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.bx-main-in-left {
  padding-left: 192px;
}

.bx-main-in-right {
  padding-right: 192px;
}

@media (max-width: 1200px) {
  .bx-main-in-left {
    padding-left: 120px;
  }
  .bx-main-in-right {
    padding-right: 120px;
  }
}
@media (max-width: 991px) {
  .bx-main-in-left {
    padding-left: 0;
  }
  .bx-main-in-right {
    padding-right: 0;
  }
}
.bx-float-paragraph .i-left,
.bx-float-paragraph .i-right {
  width: 480px;
  max-width: 100%;
  margin-bottom: 30px;
  margin-top: 10px;
}
.bx-float-paragraph .i-left::after,
.bx-float-paragraph .i-right::after {
  clear: both;
}
.bx-float-paragraph .i-right {
  float: right;
  margin-left: 40px;
}
.bx-float-paragraph .i-left {
  float: left;
  margin-right: 40px;
}
.bx-float-paragraph .i-text {
  margin-top: -20px;
}
@media (max-width: 768px) {
  .bx-float-paragraph .i-right,
  .bx-float-paragraph .i-left {
    float: unset;
    margin: 0 0;
    width: 100%;
  }
  .bx-float-paragraph .i-text {
    margin-top: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1250px) {
  .bx-float-paragraph .i-right {
    margin-right: 20px;
  }
}

.section-padding {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .section-padding {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
