@charset "UTF-8";
@keyframes down {
  0% {
    transform: translate(-50%, 0);
  }
  20% {
    transform: translate(-50%, 15px);
  }
  40% {
    transform: translate(-50%, 0);
  }
}
@-webkit-keyframes down {
  0% {
    transform: translate(-50%, 0);
  }
  20% {
    transform: translate(-50%, 15px);
  }
  40% {
    transform: translate(-50%, 0);
  }
}
@keyframes appendAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes appendAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes calendarLoading {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch !important;
  display: flex !important;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Dots */
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: 2.5rem;
  list-style: none;
  text-align: center;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  width: 1.5rem !important;
  height: 1.5rem !important;
  padding: 0;
  background: rgba(255, 255, 255, 0.36);
  border-radius: 100%;
  text-indent: -9999px;
  cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li.slick-active button {
  background: #fff;
}
.products-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 7.2rem;
  height: 7.2rem;
  background: #fff;
  border-radius: 50%;
  border: solid 0.1rem #ff8200;
  z-index: 3;
  cursor: pointer;
}
.products-arrow:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  width: 1.8rem;
  height: 3.5rem;
  transform: translate(-50%, -50%);
  background-size: contain;
  z-index: 2;
}
.products-arrow.prev {
  left: 1rem;
}
.products-arrow.prev:after {
  background-image: url('../img/ico/arrow-left.svg');
}
.products-arrow.next {
  right: 1rem;
}
.products-arrow.next:after {
  background-image: url('../img/ico/arrow-right.svg');
}
.products-arrow-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
  width: 100%;
  max-width: 1460px;
}
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font: inherit;
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
}
*,
*:after,
*:before {
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 1rem;
  height: 1rem;
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #ff8200;
}
::-moz-selection {
  background: rgba(255, 130, 0, 0.4);
}
::selection {
  background: rgba(255, 130, 0, 0.4);
}
html {
  font-size: 62.5%;
}
body {
  font: 400 1.6rem/1.3 'Poppins', sans-serif;
  background: #fff;
  color: #210107;
  overflow-x: hidden;
  padding-top: 13rem;
  min-width: 320px;
  max-width: 100vw;
  display: block;
}
strong {
  font-weight: 700;
}
.hide {
  display: none;
}
.box-shadow-29 {
  -webkit-box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.16);
}
.mw-px {
  width: var(--mw);
  max-width: 100%;
}
.link-under {
  position: relative;
  cursor: pointer;
  display: inline-block;
  color: #000;
  z-index: 1;
}
.link-under:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: .3rem;
  background: rgba(255, 130, 0, 0.4);
  z-index: -1;
  transition: .3s;
}
.link-under:hover:before {
  height: 50%;
  transition: .3s;
}
.oh {
  overflow: hidden;
}
.relative {
  position: relative;
}
.h-100 {
  height: 100%;
}
.w-100 {
  width: 100%;
}
figure img {
  display: block;
}
figure.center img {
  margin-left: auto;
  margin-right: auto;
}
.border-radius-10 {
  border-radius: 1rem;
}
.bg-primary {
  background: #ff8200;
}
.bg-gray {
  background: #F1F1F1;
}
.text-underline {
  text-decoration: underline;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-medium {
  font-weight: 500;
}
.text-upper {
  text-transform: uppercase;
}
.text-light {
  font-weight: 300;
}
.text-regular {
  font-weight: 400;
}
.text-semibold {
  font-weight: 500;
}
.text-bold {
  font-weight: 700;
}
.text-xbold {
  font-weight: 900;
}
.text-primary {
  color: #ff8200;
}
.text-secondary {
  color: #ff8200;
}
.text-white {
  color: #fff;
}
.text-red {
  color: #e74c3c;
}
.text-green {
  color: #27ae60;
}
.text-dark {
  color: #0e0003;
}
sup,
sub,
small {
  font-size: 70%;
}
video {
  display: block;
  width: 100%;
}
p {
  margin: 1rem 0;
}
.fontsize-12 {
  font-size: 1.2rem;
}
.fontsize-14 {
  font-size: 1.4rem;
}
.fontsize-18 {
  font-size: 1.8rem;
}
.fontsize-20 {
  font-size: 2rem;
}
.fontsize-25 {
  font-size: 2.5rem;
}
.mar-0 {
  margin: 0;
}
.mat-0 {
  margin-top: 0;
}
.mat-05 {
  margin-top: .5rem;
}
.mat-1 {
  margin-top: 1rem;
}
.mat-2 {
  margin-top: 2rem;
}
.mat-3 {
  margin-top: 3rem;
}
.mat-4 {
  margin-top: 4rem;
}
.mat-6 {
  margin-top: 6rem;
}
.mab-0 {
  margin-bottom: 0rem;
}
.mab-1 {
  margin-bottom: 1rem;
}
.mab-15 {
  margin-bottom: 1.5rem;
}
.mab-2 {
  margin-bottom: 2rem;
}
.mab-25 {
  margin-bottom: 2.5rem;
}
.mab-3 {
  margin-bottom: 3rem;
}
.mab-4 {
  margin-bottom: 4rem;
}
.mab-45 {
  margin-bottom: 4.5rem;
}
.mab-5 {
  margin-bottom: 5rem;
}
.mab-6 {
  margin-bottom: 6rem;
}
.mab-6-4 {
  margin-bottom: 6rem;
}
.mab-7 {
  margin-bottom: 7rem;
}
.mab-7-4 {
  margin-bottom: 7rem;
}
.mab-75 {
  margin-bottom: 7.5rem;
}
.mab-8 {
  margin-bottom: 8rem;
}
.mab-10-5 {
  margin-bottom: 10rem;
}
.mab-10-6 {
  margin-bottom: 10rem;
}
.mab-minus-2 {
  margin-bottom: -2rem;
}
.mab-minus-3 {
  margin-bottom: -3rem;
}
.mh-404 {
  min-height: calc(100vh - 48rem);
}
.pad-section-3 {
  padding: 3rem 0;
}
.pad-section-6 {
  padding: 6rem 0;
}
.pad-section-10 {
  padding: 10rem 0;
}
.title {
  color: #ff8200;
  font-size: 3.5rem;
  font-weight: 700;
}
.title-big {
  font-size: 4.5rem;
  color: #0e0003;
  font-weight: 700;
}
.title-small {
  font-size: 3rem;
  color: #0e0003;
  font-weight: 700;
}
.title-small.text-red {
  color: #e74c3c;
}
.title--white {
  color: #fff;
}
.flash-message {
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  border-radius: .5rem;
  padding: 2rem 2rem 2rem 6.5rem;
  z-index: 199;
  animation: appendAnimation 0.3s ease-in-out;
  -webkit-animation: appendAnimation 0.3s ease-in-out;
}
.flash-message:before {
  position: absolute;
  content: '';
  left: 5.5rem;
  top: 50%;
  transform: translate(0, -50%);
  width: .1rem;
  height: 50%;
  background: #fff;
}
.flash-message:after {
  position: absolute;
  content: '';
  left: 1rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 3.5rem;
  height: 3.5rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.flash-message.flash-error {
  background: #e74c3c;
}
.flash-message.flash-error:after {
  background-image: url('../img/ico/error.svg');
}
.flash-message.flash-warning {
  background: #f39c12;
}
.flash-message.flash-warning:after {
  background-image: url('../img/ico/warning.svg');
}
.flash-message.flash-success {
  background: #27ae60;
}
.flash-message.flash-success:after {
  background-image: url('../img/ico/success.svg');
}
.error {
  background: #e74c3c;
  color: #fff;
  margin-top: 1rem;
  display: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}
.breadcrumbs {
  margin-left: -1rem;
}
.breadcrumbs li {
  display: inline-block;
  font-weight: 400;
  font-size: 1.5rem;
  padding: 0 1rem;
  list-style: none;
  position: relative;
  color: #000;
}
.breadcrumbs li:not(:last-child):after {
  position: absolute;
  content: '>';
  right: -0.4rem;
  top: 50%;
  transform: translate(0, -50%);
}
.breadcrumbs li a {
  position: relative;
  color: #000;
}
.breadcrumbs li a:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.1rem;
  background: #757575;
  transition: 0.3s;
}
.breadcrumbs li a:hover:after {
  width: 100%;
  transition: 0.3s;
}
.breadcrumbs-current {
  color: #ff8200;
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1330px;
}
.container-fluid.full {
  max-width: unset;
}
.container-fluid.no-pad {
  padding-left: 0;
  padding-right: 0;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1230px;
  }
}
.container-big {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1400px;
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.row-pad-2 {
  margin-right: -2px;
  margin-left: -2px;
}
.row-pad-2 > .col,
.row-pad-2 > [class*="col-"] {
  padding-right: 2px;
  padding-left: 2px;
}
.row-pad-5 {
  margin-right: -5px;
  margin-left: -5px;
}
.row-pad-5 > .col,
.row-pad-5 > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}
.row-pad-6 {
  margin-right: -6px;
  margin-left: -6px;
}
.row-pad-6 > .col,
.row-pad-6 > [class*="col-"] {
  padding-right: 6px;
  padding-left: 6px;
}
.row-pad-7 {
  margin-right: -7.5px;
  margin-left: -7.5px;
}
.row-pad-7 > .col,
.row-pad-7 > [class*="col-"] {
  padding-right: 7.5px;
  padding-left: 7.5px;
}
.row-pad-10 {
  margin-right: -10px;
  margin-left: -10px;
}
.row-pad-10 > .col,
.row-pad-10 > [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
}
.col-calendar,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.col-calendar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 14.28%;
  flex: 0 0 14.28%;
  max-width: 14.28%;
}
.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
}
.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}
.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}
.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}
.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}
.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}
.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}
.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}
.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}
.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
}
.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}
.calendar-offset-1 {
  margin-left: 14.28%;
}
.calendar-offset-2 {
  margin-left: 28.56%;
}
.calendar-offset-3 {
  margin-left: 42.84%;
}
.calendar-offset-4 {
  margin-left: 57.12%;
}
.calendar-offset-5 {
  margin-left: 71.4%;
}
.calendar-offset-6 {
  margin-left: 85.68%;
}
.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%;
}
@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-6-custom-53 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 53%;
    flex: 0 0 53%;
    max-width: 53%;
  }
  .col-sm-6-custom-47 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 47%;
    flex: 0 0 47%;
    max-width: 47%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -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%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-6-custom-53 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 53%;
    flex: 0 0 53%;
    max-width: 53%;
  }
  .col-md-6-custom-47 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 47%;
    flex: 0 0 47%;
    max-width: 47%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -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%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -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%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -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%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xxl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xxl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xxl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xxl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xxl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xxl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xxl-12 {
    -webkit-box-ordinal-group: 13;
    -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%;
  }
}
@media (min-width: 1600px) {
  .col-xxxl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xxxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xxxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xxxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xxxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xxxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xxxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xxxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xxxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xxxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxxl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xxxl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xxxl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xxxl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xxxl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xxxl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xxxl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xxxl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xxxl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xxxl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xxxl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xxxl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xxxl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xxxl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xxxl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xxxl-0 {
    margin-left: 0;
  }
  .offset-xxxl-1 {
    margin-left: 8.333333%;
  }
  .offset-xxxl-2 {
    margin-left: 16.666667%;
  }
  .offset-xxxl-3 {
    margin-left: 25%;
  }
  .offset-xxxl-4 {
    margin-left: 33.333333%;
  }
  .offset-xxxl-5 {
    margin-left: 41.666667%;
  }
  .offset-xxxl-6 {
    margin-left: 50%;
  }
  .offset-xxxl-7 {
    margin-left: 58.333333%;
  }
  .offset-xxxl-8 {
    margin-left: 66.666667%;
  }
  .offset-xxxl-9 {
    margin-left: 75%;
  }
  .offset-xxxl-10 {
    margin-left: 83.333333%;
  }
  .offset-xxxl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-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: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-inline-flex {
  display: -webkit-inline-box !important;
  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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1400px) {
  .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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -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;
}
.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.justify-content-between {
  -webkit-box-pack: justify !important;
  -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 {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}
.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}
.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}
.align-items-stretch {
  -webkit-box-align: stretch !important;
  -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 {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -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;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -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 {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -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 {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -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;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -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 {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -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 {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -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;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -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 {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -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 {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -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;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -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 {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -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: 1400px) {
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -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;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
    -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 {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
    -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;
  }
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.svg-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.full-size {
  margin-left: -15px !important;
  margin-right: -15px !important;
}
.mb-auto {
  margin-bottom: auto;
}
.btn {
  color: #fff;
  font-size: 1.8rem;
  padding: 1.5rem 3rem;
  transition: .3s;
  cursor: pointer;
  display: inline-block;
  position: relative;
  border-radius: 2.5rem;
  background: #ff8200;
}
.btn:hover {
  background: #0e0003;
  transition: .3s;
}
.btn-header {
  background: #fff;
  color: #0e0003;
  padding: 1.5rem 6rem 1.5rem 3rem;
}
.btn-header:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 2.5rem;
  transform: translate(0, -50%);
  width: 1.9rem;
  aspect-ratio: 19/23;
  background: #0e0003;
  -webkit-mask: url('../img/ico/calendar.svg') no-repeat;
  mask: url('../img/ico/calendar.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: .3s;
}
.btn-header:hover {
  color: #fff;
  background: #ff8200;
}
.btn-header:hover:after {
  background: #fff;
  transition: .3s;
}
.btn-contact {
  padding: 1.5rem 6rem 1.5rem 3rem;
}
.btn-contact:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 2.5rem;
  transform: translate(0, -50%);
  width: 1.9rem;
  aspect-ratio: 27/35;
  background: #fff;
  -webkit-mask: url('../img/ico/map-point.svg') no-repeat;
  mask: url('../img/ico/map-point.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: .3s;
}
.btn.gray {
  background: #c6c6c6;
}
.btn.red {
  background: #e74c3c;
}
.btn--add {
  padding: 1.5rem 3rem 1.5rem 5.5rem;
}
.btn--add:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 1.5rem;
  transform: translate(0, -50%);
  width: 3rem;
  aspect-ratio: 1/1;
  background: #fff;
  -webkit-mask: url('../img/ico/add.svg') no-repeat;
  mask: url('../img/ico/add.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: .3s;
}
.btn--addsmall {
  padding: 1rem 3rem 1rem 5rem;
  font-size: 1.6rem;
  text-align: center;
}
.btn--addsmall:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 1.5rem;
  transform: translate(0, -50%);
  width: 2.5rem;
  aspect-ratio: 1/1;
  background: #fff;
  -webkit-mask: url('../img/ico/add.svg') no-repeat;
  mask: url('../img/ico/add.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: .3s;
}
.btn--delete {
  padding: 1rem 3rem 1rem 5rem;
  font-size: 1.6rem;
  background: #e74c3c;
}
.btn--delete:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 1.5rem;
  transform: translate(0, -50%);
  width: 2.5rem;
  aspect-ratio: 1/1;
  background: #fff;
  -webkit-mask: url('../img/ico/delete.svg') no-repeat;
  mask: url('../img/ico/delete.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: .3s;
}
.btn--deletebig {
  padding: 1.5rem 3rem 1.5rem 5rem;
  font-size: 1.6rem;
  background: #e74c3c;
}
.btn--deletebig:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 1.5rem;
  transform: translate(0, -50%);
  width: 2.5rem;
  aspect-ratio: 1/1;
  background: #fff;
  -webkit-mask: url('../img/ico/delete.svg') no-repeat;
  mask: url('../img/ico/delete.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: .3s;
}
.btn--small {
  padding: 1rem 3rem;
}
.btn--document {
  padding: 1.5rem 3rem 1.5rem 5rem;
}
.btn--document:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 1.5rem;
  transform: translate(0, -50%);
  width: 2.5rem;
  aspect-ratio: 1/1;
  background: #fff;
  -webkit-mask: url('../img/ico/document.svg') no-repeat;
  mask: url('../img/ico/document.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: .3s;
}
.btn--warehouse {
  padding: 1.5rem 3rem 1.5rem 5rem;
}
.btn--warehouse:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 1.5rem;
  transform: translate(0, -50%);
  width: 2.5rem;
  aspect-ratio: 1/1;
  background: #fff;
  -webkit-mask: url('../img/ico/warehouse.svg') no-repeat;
  mask: url('../img/ico/warehouse.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: .3s;
}
.btn--exit {
  padding: 1.5rem 3rem 1.5rem 5rem;
}
.btn--exit:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 1.5rem;
  transform: translate(0, -50%);
  width: 2.5rem;
  aspect-ratio: 1/1;
  background: #fff;
  -webkit-mask: url('../img/ico/exit-two.svg') no-repeat;
  mask: url('../img/ico/exit-two.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: .3s;
}
.btn--person {
  padding: 1.5rem 3rem 1.5rem 5rem;
}
.btn--person:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 1.5rem;
  transform: translate(0, -50%);
  width: 2.5rem;
  aspect-ratio: 1/1;
  background: #fff;
  -webkit-mask: url('../img/ico/person.svg') no-repeat;
  mask: url('../img/ico/person.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: .3s;
}
.btn--white {
  background: #fff;
  color: #ff8200;
}
.btn--white:hover {
  background: #0e0003;
  color: #fff;
}
/***************************/
/**        HEADER         **/
/***************************/
.navbar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 13rem;
  padding: 3rem 0;
  z-index: 10;
  background: #0e0003;
  transition: all .3s;
}
.navbar-logo img {
  transition: all .3s;
}
.navbar.sticky {
  padding: 1rem 0;
  min-height: 90px;
  transition: .3s;
}
.navbar.sticky .navbar-logo img {
  max-width: 150px;
  transition: all .3s;
}
.navbar-menu {
  list-style: none;
  display: contents;
}
.navbar-menu li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 1.8rem;
}
.navbar-menu li a {
  position: relative;
  display: block;
  padding: 1rem 0;
  color: #fff;
}
.navbar-menu li a:after {
  position: absolute;
  content: '';
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
  width: 0;
  height: .2rem;
  background: #fff;
  transition: .3s;
}
.navbar-menu li a.active:after {
  width: 100%;
}
.navbar-menu li a:hover:after {
  width: 100%;
  transition: .3s;
}
.navbar-menu-icon {
  position: relative;
  display: block;
  width: 3.2rem;
  height: 3.2rem;
}
.navbar-menu-icon:before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2.6rem;
  height: 2.6rem;
  background: #fff;
}
.navbar-menu-icon:after {
  display: none;
}
.navbar-menu-icon--logout:before {
  -webkit-mask: url('../img/ico/logout.svg') no-repeat;
  mask: url('../img/ico/logout.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.navbar-menu-icon--notifications:before {
  -webkit-mask: url('../img/ico/notifications.svg') no-repeat;
  mask: url('../img/ico/notifications.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.navbar-menu-notifications-amount {
  position: absolute;
  top: -1rem;
  right: -1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff8200;
  border-radius: 50%;
  color: #fff;
  width: 2.2rem;
  height: 2.2rem;
  font-size: 1.2rem;
}
.navbar-hamburger {
  background: none;
  display: none;
  cursor: pointer;
  position: absolute;
  transition: 0.3s;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
  width: 3rem;
  height: 3rem;
  z-index: 9;
}
.navbar-hamburger.active .navbar-hamburger-ico {
  position: absolute;
  left: 0;
  top: 35%;
  transition: 0.3s;
  background: #fff;
}
.navbar-hamburger.active .navbar-hamburger-ico:nth-child(1) {
  transform: rotate(45deg);
  width: 3rem;
}
.navbar-hamburger.active .navbar-hamburger-ico:nth-child(2) {
  transform: rotate(-45deg);
  width: 3rem;
}
.navbar-hamburger.active .navbar-hamburger-ico:nth-child(3) {
  display: none;
}
.navbar-hamburger-ico {
  height: 3px;
  display: block;
  background: #fff;
  margin: 0.6rem 0;
  transition: 0.3s;
  margin-left: auto;
}
.navbar-hamburger-ico:nth-child(1) {
  width: 2.9rem;
}
.navbar-hamburger-ico:nth-child(2) {
  width: 2.9rem;
}
.navbar-hamburger-ico:nth-child(3) {
  width: 2rem;
}
.header {
  position: relative;
  padding: 12rem 0;
  background-image: url('../img/header.webp');
  background-size: cover;
  background-position: center;
  width: 100%;
  aspect-ratio: 640/231;
  z-index: 1;
}
.header:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #210107;
  background: linear-gradient(100deg, #210107 10%, rgba(255, 255, 255, 0.3) 100%);
  z-index: -1;
}
.header-title {
  font-size: 6rem;
  color: #fff;
  font-weight: 700;
}
.header-description {
  font-size: 2rem;
  color: #fff;
}
.header-home-container {
  width: 100%;
  max-width: 850px;
}
.header.page {
  aspect-ratio: unset;
  padding: 8rem 0;
}
/***************************/
/**         HOME          **/
/***************************/
.home-calendar-section {
  padding: 12rem 0;
}
.home-calendar-text-container {
  padding: 0 0 0 3rem;
  width: 100%;
  max-width: 65rem;
}
.home-calendar-info {
  padding: 0 0 0 3rem;
  text-transform: uppercase;
  color: #ff8200;
  letter-spacing: .8px;
  font-weight: 500;
  position: relative;
}
.home-calendar-info:after {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 1.8rem;
  aspect-ratio: 18/14;
  background: #ff8200;
  -webkit-mask: url('../img/ico/arrow.svg') no-repeat;
  mask: url('../img/ico/arrow.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home-services-section {
  padding: 7rem 0;
  background: #f9fafb;
}
.home-services-box {
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.16);
  border-radius: 1.5rem;
  height: calc(100% - 5rem);
  margin-top: 5rem;
  padding: 8rem 3rem 3rem 3rem;
  width: 100%;
  max-width: 320px;
}
.home-services-box figure {
  position: absolute;
  left: 50%;
  top: -5rem;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 10rem;
  background: #ff8200;
  border-radius: 50%;
  border: solid 3px #fff;
}
.home-advantages-section {
  padding: 7rem 0;
}
.home-advantages-box {
  padding: 4rem 3rem 0 3rem;
  background: #0e0003;
  color: #fff;
  border-radius: 1.5rem;
  height: 100%;
}
.home-advantages-title {
  font-size: 2.8rem;
  font-weight: 700;
}
.home-advantages-number {
  font-size: 7rem;
  font-weight: 700;
  margin-top: 2rem;
  color: #0e0003;
  -webkit-text-stroke: 1px #ff8200;
}
.home-realizations-section {
  padding: 7rem 0;
  background: #f9fafb;
}
.home-realizations-img {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
}
.home-realizations-img:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 130, 0, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}
.home-realizations-box {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  height: 100%;
}
.home-contact-section {
  padding: 6rem 0 0 0;
}
.home-contact-map {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 945/839;
}
.home-contact-content {
  padding: 4rem 7rem;
}
.home-contact-icon {
  position: relative;
  width: 7rem;
  height: 7rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.home-contact-icon .img-fluid {
  max-width: 35%;
}
.home-contact-socials {
  position: relative;
  display: block;
  width: 5rem;
  background: #ff8200;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transition: .3s;
}
.home-contact-socials:before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  width: 3rem;
  height: 3rem;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
  background: #fff;
}
.home-contact-socials:hover {
  background: #0e0003;
  transition: .3s;
}
.home-contact-socials--fb:before {
  -webkit-mask: url('../img/ico/socials/fb.svg') no-repeat;
  mask: url('../img/ico/socials/fb.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home-contact-socials--instagram:before {
  -webkit-mask: url('../img/ico/socials/instagram.svg') no-repeat;
  mask: url('../img/ico/socials/instagram.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home-contact-socials--allegro:before {
  -webkit-mask: url('../img/ico/socials/allegro.svg') no-repeat;
  mask: url('../img/ico/socials/allegro.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home-contact-socials--olx:before {
  -webkit-mask: url('../img/ico/socials/olx.svg') no-repeat;
  mask: url('../img/ico/socials/olx.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home-contact-socials-container {
  position: relative;
  padding: 4rem 0 0 0;
}
.home-contact-socials-container:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #e5e7eb;
}
.home-announcement {
  background: #B23948;
  padding: 2.5rem 0;
}
.home-announcement p {
  color: #fff;
  text-align: center;
  margin: 0;
  font-size: 2.2rem;
}
.home-announcement ::-moz-selection {
  background: rgba(33, 1, 7, 0.4);
}
.home-announcement ::selection {
  background: rgba(33, 1, 7, 0.4);
}
.home-form-section {
  background: #ff8200;
  padding: 4rem 0;
}
.home-form-section ::-moz-selection {
  background: rgba(33, 1, 7, 0.4);
}
.home-form-section ::selection {
  background: rgba(33, 1, 7, 0.4);
}
.calendar-box {
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.16);
  border-radius: 1.5rem;
  padding: 3rem;
  width: 100%;
  overflow: hidden;
  min-height: 50rem;
  max-width: 65rem;
  transition: .3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.calendar-box-dayname {
  margin: 2rem 0;
  font-size: 1.6rem;
  color: #ff8200;
  font-weight: 600;
}
.calendar-box-day {
  display: block;
  position: relative;
  margin: 2rem 0;
  cursor: pointer;
  font-size: 1.8rem;
  transition: .3s;
  z-index: 1;
}
.calendar-box-day.disabled {
  color: rgba(14, 0, 3, 0.4);
  cursor: inherit;
  text-decoration: line-through;
}
.calendar-box-day.sunday {
  color: #e74c3c;
  cursor: inherit;
}
.calendar-box-day.today:after {
  position: absolute;
  content: '';
  left: 50%;
  bottom: -1.5rem;
  transform: translate(-50%, 0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff8200;
  transition: .3s;
}
.calendar-box-day.today.sunday:after {
  background: #e74c3c;
}
.calendar-box-day:before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #ff8200;
  z-index: -1;
  opacity: 0;
  transition: .3s;
}
.calendar-box-day:not(.disabled):not(.sunday) {
  font-weight: 600;
}
.calendar-box-day:not(.disabled):not(.sunday):hover {
  color: #fff;
  transition: .3s;
}
.calendar-box-day:not(.disabled):not(.sunday):hover:before {
  opacity: 1;
  transition: .3s;
}
.calendar-box-day:not(.disabled):not(.sunday):hover:after {
  opacity: 0;
  transition: .3s;
}
.calendar-box:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 12, 16, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: -1;
  opacity: 0;
}
.calendar-box:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  aspect-ratio: 1/1;
  background: #fff;
  -webkit-mask: url('../img/ico/loading.svg') no-repeat;
  mask: url('../img/ico/loading.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  animation: calendarLoading 3.5s linear infinite;
  z-index: -1;
  opacity: 0;
}
.calendar-box--pending:before,
.calendar-box--pending:after {
  z-index: 10;
  opacity: 1;
  transition: .3s;
}
.calendar-title {
  font-size: 3rem;
  font-weight: 700;
}
.calendar-arrow {
  position: relative;
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: solid 1px #E6E6E6;
  cursor: pointer;
  transition: .3s;
}
.calendar-arrow:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.6rem;
  aspect-ratio: 9/7;
  background: #0e0003;
  -webkit-mask: url('../img/ico/arrow.svg') no-repeat;
  mask: url('../img/ico/arrow.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: .3s;
}
.calendar-arrow.next:after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.calendar-arrow:hover {
  background: #ff8200;
}
.calendar-arrow:hover:after {
  background: #fff;
  transition: .3s;
}
.calendar-arrow.disabled {
  cursor: inherit;
}
.calendar-arrow.disabled:hover {
  background: none !important;
}
.calendar-arrow.disabled:after {
  background: #E6E6E6 !important;
}
.footer {
  display: block;
  background: #0e0003;
  padding: 2rem 0;
  color: #888;
}
.footer-menu {
  list-style: none;
}
.footer-menu li {
  position: relative;
  display: inline-block;
  padding: 1rem;
}
.footer-menu li a {
  position: relative;
  color: #888;
  transition: .3s;
}
.footer-menu li a:hover {
  color: #fff;
  transition: .3s;
}
.footer-socials {
  position: relative;
  display: block;
  width: 2.5rem;
  aspect-ratio: 1/1;
}
.footer-socials:before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 1/1;
  background: #888;
  transition: .3s;
}
.footer-socials:hover:before {
  background: #ff8200;
  transition: .3s;
}
.footer-socials--fb:before {
  -webkit-mask: url('../img/ico/socials/fb.svg') no-repeat;
  mask: url('../img/ico/socials/fb.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.footer-socials--instagram:before {
  -webkit-mask: url('../img/ico/socials/instagram.svg') no-repeat;
  mask: url('../img/ico/socials/instagram.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.footer-socials--allegro:before {
  -webkit-mask: url('../img/ico/socials/allegro.svg') no-repeat;
  mask: url('../img/ico/socials/allegro.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.footer-socials--olx:before {
  -webkit-mask: url('../img/ico/socials/olx.svg') no-repeat;
  mask: url('../img/ico/socials/olx.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.services-section {
  padding: 8rem 0;
}
.services-items-box {
  background: #fff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.16);
  border-radius: 1.5rem;
  overflow: hidden;
}
.services-items-box-text {
  margin: 0;
  padding: 2rem 2.5rem;
  font-size: 1.8rem;
  color: #0e0003;
}
.services-items-box-text.text-white {
  color: #fff;
}
.services-items-box-text.price {
  text-align: right;
}
.services-items-row {
  padding: 2.5rem 2rem;
}
/***************************/
/**         POPUP         **/
/***************************/
.overlay {
  position: fixed;
  left: 0;
  top: 100%;
  right: 0;
  bottom: 0;
  overflow: auto;
  background: rgba(14, 0, 3, 0);
  z-index: -1;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.overlay.open {
  top: 0;
  z-index: 100;
  background: rgba(14, 0, 3, 0.7);
  display: block;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.overlay.open .overlay-container {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: .3s;
}
.overlay-curtain {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 130, 0, 0);
  z-index: 1;
}
.overlay-container {
  display: block;
  opacity: .7;
  -webkit-transition: all 0.3s cubic-bezier(0.6, 0, 0.5, 1.5);
  transition: all 0.3s cubic-bezier(0.6, 0, 0.5, 1.5);
  position: relative;
  z-index: 2;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
  max-width: 600px;
  margin-top: 5rem;
  margin-bottom: 5rem;
  opacity: 0;
  transition: .3s;
}
.overlay-container--medium {
  max-width: 730px;
}
.overlay-container--big {
  max-width: 1200px;
}
.overlay-container--xbig {
  max-width: 1330px;
}
.overlay-box {
  background: #fff;
  padding: 5rem;
}
.overlay-exit {
  position: relative;
  display: block;
  margin-left: auto;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
}
.overlay-exit:after {
  position: absolute;
  content: '';
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 3rem;
  height: 3rem;
  background: #fff;
  -webkit-mask: url('../img/ico/exit.svg') no-repeat;
  mask: url('../img/ico/exit.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.custom-select {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-select-label {
  background: none;
  width: 100%;
  padding: 1.5rem 3.5rem 1.5rem 1.5rem;
  font-size: 18px;
  border-radius: 1rem;
  color: rgba(14, 0, 3, 0.6);
  border: 0.1rem solid rgba(14, 0, 3, 0.2);
  cursor: pointer;
  position: relative;
  transition: .3s;
}
.custom-select-label:before {
  position: absolute;
  content: '';
  right: -0.1rem;
  top: -0.1rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  width: 5.1rem;
  height: calc(100% + .2rem);
  background: #0e0003;
}
.custom-select-label:after {
  position: absolute;
  content: '';
  right: 1.85rem;
  top: 50%;
  width: 14px;
  height: 9px;
  transform: translate(0, -50%);
  background-image: url('../img/ico/arrow-select.svg');
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.3s;
}
.custom-select-label--primary:before {
  background: #ff8200;
}
.custom-select-label.active {
  border-bottom-left-radius: 0;
  border-bottom: solid .1rem #fff;
  transition: .3s;
}
.custom-select-label.active:after {
  transform: translate(0, -50%) rotate(180deg);
  transition: 0.3s;
}
.custom-select-label.used {
  color: #0e0003;
}
.custom-select-option {
  padding: 1rem 2.7rem;
  font-size: 1.4rem;
  cursor: pointer;
  transition: 0.3s;
}
.custom-select-option:not(:last-child) {
  position: relative;
}
.custom-select-option:not(:last-child):after {
  position: absolute;
  content: '';
  left: 2rem;
  bottom: 0;
  width: 11rem;
  height: 0.1rem;
  max-width: calc(100% - 4rem);
  background: rgba(14, 0, 3, 0.2);
}
.custom-select-option:hover {
  background: #ff8200;
  color: #fff;
  transition: 0.3s;
}
.custom-select-option-container {
  position: absolute;
  top: 0;
  max-height: 15rem;
  overflow-y: auto;
  width: calc(100% - 5.1rem);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-right: solid 0.1rem rgba(14, 0, 3, 0.2);
  border-left: solid 0.1rem rgba(14, 0, 3, 0.2);
  border-bottom: solid 0.1rem rgba(14, 0, 3, 0.2);
  background: #fff;
  z-index: 100;
  display: none;
}
.custom-select-relative {
  position: relative;
}
.textarea-limit {
  display: block;
  font-size: 1.4rem;
}
.textarea-count-container.limit {
  color: #e74c3c;
  font-weight: 700;
}
input,
textarea,
select {
  background: #fff;
  width: 100%;
  padding: 1.5rem;
  border: solid 1px rgba(14, 0, 3, 0.2);
  border-radius: 1rem;
  font-size: 18px;
  color: #000;
  outline: 0;
  resize: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: rgba(14, 0, 3, 0.6);
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder,
select::-ms-input-placeholder {
  color: rgba(14, 0, 3, 0.6);
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: rgba(14, 0, 3, 0.6);
}
.reservation-step {
  display: none;
}
.reservation-step.active {
  display: block;
}
.checkbox {
  position: relative;
  min-width: 2rem;
  min-height: 2rem;
  margin-bottom: 2rem;
}
.checkbox.marker input:checked + .checkbox-content {
  background: #0065B1;
  border: 2px solid #0065B1;
}
.checkbox.marker input:checked + .checkbox-content:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 0.8rem;
  background-image: url('/gfx/ico/marker.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
}
.checkbox.access .checkbox-content {
  border: 1px solid #707070;
  border-radius: 50%;
}
.checkbox.access .checkbox-content:before {
  border-radius: 50%;
}
.checkbox.access .checkbox-content:after {
  border-radius: 50%;
}
.checkbox.access .checkbox-label {
  color: #312133;
  font-size: 1.6rem;
  line-height: 1.9rem;
}
.checkbox.quiz .checkbox-content {
  border: 1px solid #707070;
  border-radius: 50%;
}
.checkbox.quiz .checkbox-content:before {
  border-radius: 50%;
}
.checkbox.quiz .checkbox-content:after {
  border-radius: 50%;
}
.checkbox.quiz .checkbox-label {
  color: #312133;
  font-size: 1.6rem;
  line-height: 1.9rem;
}
.checkbox.quiz input:checked + .checkbox-content:after {
  background: #D47F1F;
}
.checkbox.quiz input:checked + .checkbox-content:before {
  background-color: rgba(212, 127, 31, 0.25);
}
.checkbox input,
.checkbox .checkbox-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
}
.checkbox input {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.checkbox input[disabled] {
  cursor: inherit !important;
}
.checkbox input[disabled] ~ div {
  opacity: 0.5;
  cursor: inherit !important;
}
.checkbox input[disabled] ~ label {
  opacity: 0.5;
  cursor: inherit;
}
.checkbox-content {
  border: 1px solid #D9D9D9;
  background: bottom no-repeat;
  border-radius: 3px;
  transition: 0.5s;
}
.checkbox-content:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border: 0px solid #D47F1F;
  transition: 0.3s;
}
.checkbox input:checked + .checkbox-content:after {
  width: 12px;
  height: 12px;
  background: #D47F1F;
  transition: 0.3s;
}
.checkbox input:checked + .checkbox-content:before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation: animatecheck 0.8s ease-out;
  animation: animatecheck 0.8s ease-out;
  background-color: rgba(212, 127, 31, 0.25);
}
.checkbox-label {
  padding-left: 4rem;
  font-family: 'Montserrat', sans-serif;
  display: block;
  cursor: pointer;
  color: #000;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.9rem;
}
.checkbox-middle input,
.checkbox-middle .checkbox-content {
  top: 50%;
  transform: translate(0, -50%);
}
.checkbox-radio .checkbox-content {
  border-radius: 50%;
}
.checkbox-radio .checkbox-content:after {
  border-radius: 50%;
}
.checkbox-radio input {
  margin-bottom: 0;
}
.checkbox.correct-active .checkbox-content {
  border: 1px solid #6BB90B;
  opacity: 1;
}
.checkbox.correct-active .checkbox-content:after {
  width: 12px;
  height: 12px;
  transition: 0.3s;
  background: #6BB90B !important;
}
.checkbox.correct-active .checkbox-label {
  color: #6BB90B;
  opacity: 1;
}
.checkbox.uncorrect-active .checkbox-content {
  border: 1px solid #C20518;
  opacity: 1;
}
.checkbox.uncorrect-active .checkbox-content:after {
  width: 12px;
  height: 12px;
  transition: 0.3s;
  background: #C20518 !important;
}
.checkbox.uncorrect-active .checkbox-label {
  color: #C20518;
  opacity: 1;
}
.admin-panel-section {
  padding: 4rem 0 8rem 0;
  min-height: 49rem;
}
.admin-panel-box-disabled {
  position: relative;
  opacity: 0.5;
}
.admin-panel-box-disabled:after {
  position: absolute;
  content: 'Ten dzień już się odbył';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #0e0003;
}
.admin-panel-box-disabled-container {
  opacity: .5;
}
.admin-panel-box-action {
  position: relative;
  background: #e74c3c;
  color: #fff;
  border-radius: 1.5rem;
  padding: 1rem 2rem 1rem 4rem;
  display: inline-block;
  cursor: pointer;
}
.admin-panel-box-action:after {
  position: absolute;
  content: '';
  left: 1rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 2rem;
  height: 2rem;
}
.admin-panel-box-action.orange {
  background: #ff8200;
}
.admin-panel-box-action.add:after {
  width: 2.4rem;
  height: 2.4rem;
  background: #fff;
  -webkit-mask: url('../img/ico/add.svg') no-repeat;
  mask: url('../img/ico/add.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.admin-panel-box-action.delete:after {
  background: #fff;
  -webkit-mask: url('../img/ico/delete.svg') no-repeat;
  mask: url('../img/ico/delete.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.admin-panel-box-action.block:after {
  background: #fff;
  -webkit-mask: url('../img/ico/block.svg') no-repeat;
  mask: url('../img/ico/block.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.storage-room-box {
  background: #fff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.16);
  border-radius: 1.5rem;
  padding: 3rem;
  width: 100%;
  transition: .3s;
}
.storage-room-pagination-item {
  position: relative;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.6rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #0e0003;
  border: solid 1px #0e0003;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: .3s;
  z-index: 1;
}
.storage-room-pagination-item:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #0e0003;
  z-index: -1;
  transition: .3s;
}
.storage-room-pagination-item:hover {
  color: #fff;
  transition: .3s;
}
.storage-room-pagination-item:hover:before {
  width: 100%;
  transition: .3s;
}
.storage-room-pagination-item.active {
  color: #fff;
  cursor: unset;
}
.storage-room-pagination-item.active:before {
  width: 100%;
}
.storage-room-pagination-arrow {
  position: relative;
  width: 3rem;
  height: 3rem;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: .3s;
}
.storage-room-pagination-arrow:before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 17px;
  background: #0e0003;
  -webkit-mask: url('../img/ico/arrow-rounded.svg') no-repeat;
  mask: url('../img/ico/arrow-rounded.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.storage-room-pagination-arrow.prev:before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.storage-room-pagination-arrow.disable {
  cursor: unset;
  transition: .3s;
}
.storage-room-pagination-arrow.disable:before {
  background: rgba(14, 0, 3, 0.24);
}
.form-fieldset {
  background: #F1F1F1;
  padding: 1.5rem;
  border-radius: 1rem;
}
.form-error {
  background: #e74c3c;
  color: #fff;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
}
.form-error.hide {
  display: none;
}
.input-list {
  position: absolute;
  left: 0;
  top: 100%;
  opacity: .0;
  z-index: 1;
  background: #333;
  color: #fafaff;
  max-height: 0;
  overflow: hidden;
  width: 100%;
  margin-top: 0;
  transition: .5s all;
}
.input-list-container {
  position: relative;
}
.input-list.show {
  opacity: 1;
  max-height: 20rem;
  overflow-y: auto;
}
.input-list.loading:after {
  content: '...';
  padding: 1rem;
  display: block;
}
.input-list-item {
  padding: 1rem;
  cursor: pointer;
}
.input-list-item.active,
.input-list-item:hover {
  background: #444;
}
.signaturepad-container {
  position: relative;
  border: solid 5px #ff8200;
  border-radius: 1rem;
  overflow: hidden;
}
.signaturepad-container canvas {
  display: block;
  transition: .3s;
}
.signaturepad-title {
  padding: 1.5rem 2rem;
  color: #fff;
  background: #ff8200;
}
.table {
  min-width: 800px;
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}
.table tr:nth-child(odd) {
  background: #F1F1F1;
}
.table th {
  padding: 2rem 1.5rem;
  font-size: 1.8rem;
  background: #ff8200;
  color: #fff;
}
.table td {
  margin: 0;
  padding: 2rem 1.5rem;
  font-size: 1.8rem;
  color: #0e0003;
}
.table-container {
  border-radius: 1.5rem;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.16);
  overflow-x: auto;
}
.filtration-prefix label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #ff8200;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  color: #fff;
  padding: .5rem 1rem;
}
.filtration-prefix input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.tire-ico {
  position: relative;
  display: inline-block;
  padding: 0 0 0 3rem;
}
.tire-ico:after {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 2.4rem;
  height: 2.4rem;
  background: #000;
  transition: .3s;
}
.tire-ico--winter:after {
  -webkit-mask: url('../img/ico/winter.svg') no-repeat;
  mask: url('../img/ico/winter.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.tire-ico--sun:after {
  -webkit-mask: url('../img/ico/sun.svg') no-repeat;
  mask: url('../img/ico/sun.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.horizontalcalendar-box {
  position: relative;
  display: flex;
  background: #0e0003;
  padding: 0 4rem;
}
.horizontalcalendar-month {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  text-transform: uppercase;
  font-size: 2.6rem;
  font-weight: 600;
  color: #fff;
}
.horizontalcalendar-day {
  display: inline-flex;
  justify-content: center;
  padding: 2rem 0;
  text-align: center;
  transition: .3s;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.horizontalcalendar-day:hover {
  color: #fff;
  background: #ff8200;
  transition: .3s;
}
.horizontalcalendar-day:hover:after {
  background: #fff;
}
.horizontalcalendar-day-container {
  display: flex;
  padding: 0 1rem;
  width: 100%;
  justify-content: end;
}
.horizontalcalendar-day--choosed {
  position: relative;
}
.horizontalcalendar-day--choosed:after {
  position: absolute;
  content: '';
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 1rem;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.horizontalcalendar-day--sunday {
  color: #ff9185;
}
.horizontalcalendar-day--sunday:after {
  background: #ff9185;
}
.horizontalcalendar-scroll {
  display: flex;
  width: 100%;
}
.horizontalcalendar-scroll-container {
  display: flex;
  width: 100%;
}
.horizontalcalendar-arrow {
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 11px;
  height: 17px;
  cursor: pointer;
  background: #fff;
  -webkit-mask: url('../img/ico/arrow-rounded.svg') no-repeat;
  mask: url('../img/ico/arrow-rounded.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: .3s;
}
.horizontalcalendar-arrow--prev {
  left: 1rem;
  transform: translate(0, -50%) rotate(180deg);
}
.horizontalcalendar-arrow--next {
  right: 1rem;
}
.realizations-section {
  position: relative;
  padding: 5rem 0;
  background: #f9fafb;
  border-top: solid 1px #e5e7eb;
}
.realizations-category {
  display: inline-block;
  font-size: 1.8rem;
  padding: 1.5rem 3rem;
  transition: .3s;
  border-radius: 2.5rem;
  cursor: pointer;
  background: #f3f4f6;
}
.realizations-category--active {
  background: #ff8200 !important;
  color: #fff !important;
  transition: .3s;
}
.realizations-category:hover {
  background: #e5e7eb;
  transition: .3s;
}
.realizations-photobox {
  position: relative;
  height: 100%;
  max-height: 40rem;
  border-radius: 2.4rem;
  overflow: hidden;
  cursor: pointer;
}
.realizations-photobox:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 12, 16, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  z-index: 1;
  transition: .3s;
}
.realizations-photobox:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 9rem;
  aspect-ratio: 1/1;
  background: #fff;
  -webkit-mask: url('../img/ico/search.svg') no-repeat;
  mask: url('../img/ico/search.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 2;
  opacity: 0;
  transition: .3s;
}
.realizations-photobox:hover .realizations-photobox-img {
  transform: scale(1.05);
  transition: .3s;
}
.realizations-photobox:hover:before,
.realizations-photobox:hover:after {
  opacity: 1;
  transition: .3s;
}
.realizations-photobox-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: .3s;
}
.realizations-popup-slider-container {
  position: relative;
}
.realizations-popup-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  cursor: pointer;
}
.realizations-popup-slider-arrow:before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.5rem;
  aspect-ratio: 11/17;
  cursor: pointer;
  background: #fff;
  -webkit-mask: url('../img/ico/arrow-rounded.svg') no-repeat;
  mask: url('../img/ico/arrow-rounded.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.realizations-popup-slider-arrow--prev {
  left: 1.5rem;
}
.realizations-popup-slider-arrow--prev:before {
  transform: translate(-50%, -50%) rotate(-180deg);
}
.realizations-popup-slider-arrow--next {
  right: 1.5rem;
}
.notification-check {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
  cursor: pointer;
}
.notification-check:before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #ff8200;
  -webkit-mask: url('../img/ico/check.svg') no-repeat;
  mask: url('../img/ico/check.svg') no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.notification-check--disabled {
  cursor: unset;
}
.notification-check--disabled:before {
  background: #c6c6c6;
}
@media only screen and (max-width: 1199px) {
  html {
    font-size: 9px;
  }
}
@media only screen and (max-height: 768px) {
  html {
    font-size: 9px;
  }
}
@media only screen and (max-width: 480px) {
  html {
    font-size: 8px;
  }
}
@media only screen and (max-width: 1199px) {
  .navbar-menu li {
    padding: 1rem 1.5rem;
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 991px) {
  .navbar {
    padding: 2rem 0;
  }
  .navbar-logo img {
    max-width: 150px;
  }
  .navbar-menu {
    display: block;
    position: absolute;
    top: 14rem;
    left: 0;
    width: 100%;
  }
  .navbar-menu-box {
    position: fixed;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 0, 3, 0.9);
    z-index: 5;
    transition: .5s;
  }
  .navbar-menu-box-layer {
    position: fixed;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 130, 0, 0.7);
    transition: .7s;
    z-index: 2;
  }
  .navbar-menu-box-layer.active {
    transform: translate(-100%, 0);
    transition: .4s;
  }
  .navbar-menu-box.active {
    transform: translate(-100%, 0);
    transition: .5s;
  }
  .navbar-menu li {
    display: block;
    text-align: center;
  }
  .navbar-menu li a {
    display: inline-block;
    color: #fff;
  }
  .navbar-menu li a:after {
    background: #fff;
  }
  .navbar-hamburger {
    display: block;
  }
  .home-contact-section {
    padding: 0 0 6rem 0;
  }
  .home-contact-map {
    max-height: 60rem;
    aspect-ratio: 16/11;
  }
  .home-contact-content {
    padding: 4rem 7rem 0 7rem;
    width: 100%;
  }
  .home-calendar-text-container {
    padding: 5rem 0 0 0;
  }
  .home-calendar-info:after {
    transform: translate(0, -50%) rotate(90deg);
  }
  .horizontalcalendar-scroll {
    overflow-x: scroll;
    margin-bottom: 1rem;
  }
  .horizontalcalendar-scroll-container {
    width: 100rem;
    margin-bottom: .5rem;
  }
  .horizontalcalendar-scroll ::-webkit-scrollbar {
    height: 1rem;
    background: #fff;
    border-radius: 1rem;
  }
  .horizontalcalendar-scroll ::-webkit-scrollbar-thumb {
    background-color: #7e7f89;
    border-radius: 1rem;
  }
  .horizontalcalendar-day {
    width: 35px !important;
    padding: 2rem 0;
  }
  .mab-to-lg-3 {
    margin-bottom: 3rem;
  }
  .mat-to-lg-3 {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-title {
    font-size: 4.5rem;
  }
  .header-description {
    font-size: 1.8rem;
  }
  .header.page {
    padding: 6rem 0;
  }
  .mab-6-4 {
    margin-bottom: 4rem;
  }
  .mab-7-4 {
    margin-bottom: 4rem;
  }
  .mab-10-6 {
    margin-bottom: 6rem;
  }
  .mab-10-5 {
    margin-bottom: 5rem;
  }
  .mab-to-md-2 {
    margin-bottom: 2rem;
  }
  .home-announcement {
    padding: 2rem 0;
  }
  .home-announcement p {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 575px) {
  .header:after {
    background: linear-gradient(100deg, #210107 10%, rgba(255, 255, 255, 0.2) 100%);
  }
  .home-contact-content {
    padding: 4rem 15px 0 15px;
  }
  .home-announcement p {
    font-size: 1.8rem;
  }
  .services-items-box-text {
    padding: .5rem 0;
  }
  .services-items-box-text.mobile {
    padding: 2rem 2.5rem;
  }
  .storage-room-box {
    padding: 1.5rem;
  }
  .mab-to-sm-2 {
    margin-bottom: 2rem;
  }
  .footer-menu li {
    display: block;
    text-align: center;
  }
}
