@charset "UTF-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*Slick Slider*/
.slick-track > * {
  outline: none;
  box-shadow: none;
}

/*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;
}
.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%;
  min-height: 1px;
  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;
  bottom: 0;
  font-size: 0;
  line-height: 0;
  z-index: 1;
  color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.slick-prev:before,
.slick-next:before {
  content: "";
  display: inline-block;
}

.slick-arrow {
  background-color: #EA1D2D;
  width: 50px;
  height: 50px;
  top: 50%;
  left: inherit;
  bottom: inherit;
  border: 1px solid transparent;
  margin: 0;
  padding: 0;
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.slick-arrow::before {
  width: 14px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.slick-arrow.slick-prev {
  left: 25px;
}
@media (max-width: 991px) {
  .slick-arrow.slick-prev {
    left: 0;
  }
}
.slick-arrow.slick-prev::before {
  background-image: url("../images/icon/left-arrow.svg");
}
.slick-arrow.slick-next {
  right: 25px;
}
@media (max-width: 991px) {
  .slick-arrow.slick-next {
    right: 0;
  }
}
.slick-arrow.slick-next::before {
  background-image: url("../images/icon/right-arrow.svg");
}

.slick-prev.slick-disabled:before {
  opacity: 0.25;
}

.slick-next.slick-disabled:before {
  opacity: 0.25;
}

/*Dots*/
.slick-dots {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 0;
  padding: 0;
  list-style-type: none;
}
.slick-dots li button {
  display: block;
  background-color: #ffffff;
  width: 10px;
  height: 10px;
  border-radius: 0;
  padding: 0;
  border: none;
  text-indent: -9999px;
}
.slick-dots li.slick-active button {
  background-color: #EA1D2D;
}

/*Slick Lightbox*/
.slick-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9) !important;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.slick-lightbox .slick-loading .slick-list {
  background-color: transparent;
}
.slick-lightbox .slick-arrow {
  width: 26px;
  height: 47px;
  padding: 0;
}
.slick-lightbox .slick-arrow::before {
  width: 100%;
  height: 100%;
}
.slick-lightbox .slick-prev {
  left: 20px;
}
.slick-lightbox .slick-prev::before {
  background-image: url("../images/arrow-previous-white.svg");
}
.slick-lightbox .slick-next {
  right: 20px;
}
.slick-lightbox .slick-next::before {
  background-image: url("../images/arrow-next-white.svg");
}

.slick-lightbox-hide {
  opacity: 0;
}

.slick-lightbox-hide.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-hide-init {
  position: absolute;
  top: -9999px;
  opacity: 0;
}

.slick-lightbox-hide-init.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-lightbox-slick-item {
  text-align: center;
  overflow: hidden;
}
.slick-lightbox-slick-item:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  display: block;
  text-align: center;
}

.slick-lightbox-slick-item-inner {
  max-width: 90%;
  display: inline-block;
  vertical-align: middle;
}
.slick-lightbox-slick-item-inner .slick-lightbox-slick-img {
  width: 100%;
  max-width: 70%;
  display: block;
  margin: 0 auto;
}
.slick-lightbox-slick-item-inner .slick-lightbox-slick-caption {
  width: 100%;
  max-width: 70%;
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-align: left;
  margin: 10px auto 0;
}
@media (max-width: 991px) {
  .slick-lightbox-slick-item-inner .slick-lightbox-slick-caption {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .slick-lightbox-slick-item-inner .slick-lightbox-slick-caption {
    font-size: 13px;
  }
}
@media (max-width: 479px) {
  .slick-lightbox-slick-item-inner .slick-lightbox-slick-caption {
    font-size: 12px;
  }
}

.slick-lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  height: 60px;
  width: 60px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
}
.slick-lightbox-close:focus {
  outline: none;
}
.slick-lightbox-close:before {
  content: "×";
  font-family: "slick";
  font-size: 60px;
  line-height: 60px;
  color: #ffffff;
  opacity: 0.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --bs-gutter-x: 15px;
  --bs-gutter-y: 0;
}

.container,
.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x);
  padding-left: var(--bs-gutter-x);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1300px) {
  .container {
    max-width: 1240px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1310px;
  }
}

.small-container {
  width: 100%;
  max-width: 80%;
  margin-inline: auto;
}
@media (max-width: 991px) {
  .small-container {
    max-width: 100%;
  }
}

.row {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-1 * var(--bs-gutter-x));
  margin-left: calc(-1 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: var(--bs-gutter-x);
  padding-left: var(--bs-gutter-x);
  margin-top: var(--bs-gutter-y);
}

@media (min-width: 1306px) {
  /*New*/
  .g-0 {
    --bs-gutter-x: 0;
  }
  .gy-0 {
    --bs-gutter-y: 0;
  }
  .g-1,
  .gx-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-1,
  .gy-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-2,
  .gx-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-2,
  .gy-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-3,
  .gx-3 {
    --bs-gutter-x: 1rem;
  }
  .g-3,
  .gy-3 {
    --bs-gutter-y: 1rem;
  }
  .g-4,
  .gx-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-4,
  .gy-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-5,
  .gx-5 {
    --bs-gutter-x: 3rem;
  }
  .g-5,
  .gy-5 {
    --bs-gutter-y: 3rem;
  }
}
.col {
  -webkit-box-flex: 0;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

.row-cols-auto > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

/*Max Style*/
@media (max-width: 575px) {
  .col-xs {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xs-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xs-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xs-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xs-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xs-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xs-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xs-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xs-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xs-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xs-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xs-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xs-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xs-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xs-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xs-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xs-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xs-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xs-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xs-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xs-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
/*Min Style*/
@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1199px) {
  .col-xl {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1499px) {
  .col-xxl {
    -webkit-box-flex: 0;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
/* CSS Document */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  margin: 0;
  padding: 0;
  color: #363B40;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  font-family: "Work Sans", sans-serif;
  overflow-x: hidden;
  box-sizing: border-box;
  word-wrap: break-word;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
}
body.scroll {
  overflow: hidden;
}
@media (max-width: 991px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  body {
    font-size: 14px;
  }
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

main,
header,
section,
footer {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 15px;
  font-weight: 700;
}
@media (max-width: 767px) {
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6 {
    margin: 0 0 10px;
  }
}

h1,
.h1 {
  font-size: 48px;
}
@media (max-width: 991px) {
  h1,
  .h1 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  h1,
  .h1 {
    font-size: 28px;
  }
}

h2,
.h2 {
  font-size: 40px;
}
@media (max-width: 991px) {
  h2,
  .h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  h2,
  .h2 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  h2,
  .h2 {
    font-size: 24px;
  }
}

h3,
.h3 {
  font-size: 35px;
}
@media (max-width: 991px) {
  h3,
  .h3 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  h3,
  .h3 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  h3,
  .h3 {
    font-size: 22px;
  }
}

h4,
.h4 {
  font-size: 30px;
}
@media (max-width: 991px) {
  h4,
  .h4 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  h4,
  .h4 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  h4,
  .h4 {
    font-size: 20px;
  }
}

h5,
.h5 {
  font-size: 24px;
}
@media (max-width: 991px) {
  h5,
  .h5 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  h5,
  .h5 {
    font-size: 20px;
  }
}

h6,
.h6 {
  font-size: 20px;
}

p {
  color: #000000;
  margin: 0 0 15px;
  line-height: 1.8;
}
@media (max-width: 1299px) {
  p {
    line-height: 1.6;
  }
}
@media (max-width: 991px) {
  p {
    line-height: 1.4;
  }
}
p strong {
  font-weight: 700;
}
p a {
  color: #EA1D2D;
}
p a:hover {
  text-decoration: underline;
}

.largeParagraph p {
  font-size: 22px;
}
@media (max-width: 991px) {
  .largeParagraph p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .largeParagraph p {
    font-size: 16px;
  }
}

section li strong {
  font-weight: 700;
}
section li a {
  color: #EA1D2D;
}
section li a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
}

figure {
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  text-decoration: none;
  outline: none !important;
  color: inherit;
}

ul {
  list-style: disc;
}

ul,
ol {
  padding-left: 20px;
  margin: 0 0 15px;
}
ul li,
ol li {
  color: #000000;
  line-height: 1.8;
}
@media (max-width: 1299px) {
  ul li,
  ol li {
    line-height: 1.6;
  }
}
@media (max-width: 991px) {
  ul li,
  ol li {
    line-height: 1.4;
  }
}
ul li + li,
ol li + li {
  margin-top: 10px;
}

.no-bullets ul, .no-bullets ol {
  list-style: none;
  padding: 0;
}

a,
button {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  outline: none;
}

button {
  background: none;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
}

a:hover,
a:focus,
a:visited,
button,
button:hover,
button:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input {
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=submit] {
  transition: ease 0.3s;
  -webkit-transition: ease 0.3s;
  -moz-transition: ease 0.3s;
  text-decoration: none !important;
  outline: none !important;
}

*:-webkit-autofill,
*:-webkit-autofill:hover,
*:-webkit-autofill:focus,
*:-webkit-autofill:active {
  transition: all 5000s ease-in-out 0s;
  transition-property: background-color, color;
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  -webkit-text-fill-color: #888F8F;
  font-weight: 300 !important;
}

/*Number Field*/
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea:focus,
input:focus,
select:focus,
a:focus,
button:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.full-width {
  width: 100%;
}

.w-100 {
  width: 100% !important;
}

.text-white * {
  color: #ffffff;
}

/*Bootstrap CSS*/
.d-none {
  display: none !important;
}

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

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

@media (min-width: 992px) {
  .ps-2 {
    padding-left: 2rem !important;
  }
  .pe-2 {
    padding-right: 2rem !important;
  }
  .ps-3 {
    padding-left: 3rem !important;
  }
  .pe-3 {
    padding-right: 3rem !important;
  }
  .ps-4 {
    padding-left: 4rem !important;
  }
  .pe-4 {
    padding-right: 4rem !important;
  }
  .ps-5 {
    padding-left: 5rem !important;
  }
  .pe-5 {
    padding-right: 5rem !important;
  }
}
@media (max-width: 991px) {
  .mt-md-1 {
    margin-top: 1rem;
  }
  .mt-md-2 {
    margin-top: 2rem;
  }
  .mt-md-3 {
    margin-top: 3rem;
  }
  .mt-md-4 {
    margin-top: 4rem;
  }
}
.align-item-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-item-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.d-flex {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
}

.d-inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/*Common Padding*/
.extraPT {
  padding-top: 10rem;
}
@media (max-width: 1299px) {
  .extraPT {
    padding-top: 6rem;
  }
}
@media (max-width: 1199px) {
  .extraPT {
    padding-top: 4rem;
  }
}

.extraPB {
  padding-bottom: 10rem;
}
@media (max-width: 1299px) {
  .extraPB {
    padding-bottom: 6rem;
  }
}
@media (max-width: 1199px) {
  .extraPB {
    padding-bottom: 4rem;
  }
}

.extraPY {
  padding-block: 10rem;
}
@media (max-width: 1299px) {
  .extraPY {
    padding-block: 6rem;
  }
}
@media (max-width: 1199px) {
  .extraPY {
    padding-block: 4rem;
  }
}

.commonPYExtra {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 1399px) {
  .commonPYExtra {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .commonPYExtra {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .commonPYExtra {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.commonPTExtra {
  padding-top: 100px;
}
@media (max-width: 1399px) {
  .commonPTExtra {
    padding-top: 80px;
  }
}
@media (max-width: 991px) {
  .commonPTExtra {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .commonPTExtra {
    padding-top: 50px;
  }
}

.commonPBExtra {
  padding-bottom: 100px;
}
@media (max-width: 1399px) {
  .commonPBExtra {
    padding-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .commonPBExtra {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .commonPBExtra {
    padding-bottom: 50px;
  }
}

.commonPY {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media (max-width: 1199px) {
  .commonPY {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.commonPT {
  padding-top: 70px;
}
@media (max-width: 1199px) {
  .commonPT {
    padding-top: 50px;
  }
}

.commonPB {
  padding-bottom: 70px;
}
@media (max-width: 1199px) {
  .commonPB {
    padding-bottom: 50px;
  }
}

/*Heading Text*/
.headingText > * {
  font-family: "Big Shoulders", sans-serif;
  color: #363B40;
  margin-bottom: 0;
}
.headingText > * span {
  color: #EA1D2D;
}
.headingText h1, .headingText .h1 {
  font-size: 170px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 1299px) {
  .headingText h1, .headingText .h1 {
    font-size: 150px;
  }
}
@media (max-width: 1199px) {
  .headingText h1, .headingText .h1 {
    font-size: 130px;
  }
}
@media (max-width: 991px) {
  .headingText h1, .headingText .h1 {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .headingText h1, .headingText .h1 {
    font-size: 60px;
  }
}
.headingText h2, .headingText .h2 {
  font-size: 130px;
  font-weight: 700;
}
@media (max-width: 1299px) {
  .headingText h2, .headingText .h2 {
    font-size: 120px;
  }
}
@media (max-width: 1199px) {
  .headingText h2, .headingText .h2 {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .headingText h2, .headingText .h2 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .headingText h2, .headingText .h2 {
    font-size: 50px;
  }
}
.headingText h3, .headingText .h3 {
  font-size: 100px;
  font-weight: 800;
}
@media (max-width: 1299px) {
  .headingText h3, .headingText .h3 {
    font-size: 80px;
  }
}
@media (max-width: 1199px) {
  .headingText h3, .headingText .h3 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .headingText h3, .headingText .h3 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .headingText h3, .headingText .h3 {
    font-size: 35px;
  }
}
.headingText h4, .headingText .h4 {
  font-size: 40px;
  font-weight: 800;
  line-height: 45px;
}
@media (max-width: 1299px) {
  .headingText h4, .headingText .h4 {
    font-size: 35px;
    line-height: 40px;
  }
}
@media (max-width: 1199px) {
  .headingText h4, .headingText .h4 {
    font-size: 30px;
    line-height: 35px;
  }
}
@media (max-width: 991px) {
  .headingText h4, .headingText .h4 {
    font-size: 26px;
    line-height: 31px;
  }
}
@media (max-width: 767px) {
  .headingText h4, .headingText .h4 {
    font-size: 22px;
    line-height: 28px;
  }
}
.headingText--mb {
  margin-bottom: 1rem;
}
.headingText--mb2 {
  margin-bottom: 2rem;
}
.headingText--mb3 {
  margin-bottom: 3rem;
}
.headingText--mb4 {
  margin-bottom: 4rem;
}
.headingText--black * {
  color: #000000;
}
.headingText--white * {
  color: #ffffff;
}
.headingText--uppercase h2, .headingText--uppercase h3, .headingText--uppercase h4 {
  text-transform: uppercase;
}
.headingText--lineHeight h2, .headingText--lineHeight h3, .headingText--lineHeight h4 {
  line-height: 100%;
}
.headingText--regular h2, .headingText--regular h3, .headingText--regular h4 {
  font-weight: 400;
}

.smallheadingtext.headingText h3,
.smallheadingtext.headingText .h3 {
  font-size: 60px;
  font-weight: 700;
}
@media (max-width: 1299px) {
  .smallheadingtext.headingText h3,
  .smallheadingtext.headingText .h3 {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  .smallheadingtext.headingText h3,
  .smallheadingtext.headingText .h3 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .smallheadingtext.headingText h3,
  .smallheadingtext.headingText .h3 {
    font-size: 35px;
  }
}

/*Count Column*/
.countColumn {
  column-count: 2;
  column-gap: 40px;
}
@media (max-width: 767px) {
  .countColumn {
    column-count: 1;
  }
}

/*Link Button*/
.linkButton {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: inherit;
  font-weight: 700;
  gap: 15px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.linkButton:hover {
  gap: 20px;
}

/*Common Button*/
.buttonOuter {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .buttonOuter {
    margin-top: 30px;
  }
}

.btn {
  position: relative;
  z-index: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  color: #ffffff;
  font-weight: 600 !important;
  text-align: center;
  text-transform: uppercase;
  padding-inline: 35px;
  height: 50px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn:before {
  content: "";
  background-color: #EA1D2D;
  position: absolute;
  inset: 0;
  z-index: -1;
  -moz-transform: skew(-20deg, 0deg);
  -o-transform: skew(-20deg, 0deg);
  -ms-transform: skew(-20deg, 0deg);
  -webkit-transform: skew(-20deg, 0deg);
  transform: skew(-20deg, 0deg);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .btn {
    padding-inline: 25px;
    height: 45px;
  }
}
@media (max-width: 991px) {
  .btn {
    font-size: 14px;
    padding-inline: 20px;
  }
}
.btn.wide {
  min-width: 250px;
}
.btn i {
  font-size: 16px;
}
.btn img {
  width: 24px;
  margin-left: 15px;
}
@media (max-width: 991px) {
  .btn img {
    width: 15px;
    margin-left: 8px;
  }
}
.btn.btn-primary:hover:before {
  -moz-transform: skew(20deg, 0deg);
  -o-transform: skew(20deg, 0deg);
  -ms-transform: skew(20deg, 0deg);
  -webkit-transform: skew(20deg, 0deg);
  transform: skew(20deg, 0deg);
}
.btn.arrowButton {
  clip-path: none;
  padding-inline: 20px;
}
.btn.arrowButton:hover {
  clip-path: none;
}

.btn-sm {
  height: 45px;
}

/*Common Table*/
.commonTable {
  margin: 15px 0;
}

.table {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 767px) {
  .table {
    border-collapse: separate;
    border-spacing: 15px 10px;
  }
  .table thead {
    display: none;
  }
  .table tbody,
  .table th,
  .table td,
  .table tr {
    width: 100%;
    display: block;
  }
  .table tr {
    margin-bottom: 0;
    padding: 0;
    border: 0;
  }
  .table tr + tr {
    border-top: 1px solid #EA1D2D;
  }
}
.table th, .table td {
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
  white-space: nowrap;
}
.table th {
  background-color: #EA1D2D;
  color: #ffffff;
  font-weight: 700;
}
.table td {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .table td {
    position: relative;
    text-align: right;
    padding-left: 50%;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .table td:last-child {
    border-bottom: 0;
  }
  .table td::before {
    content: attr(data-title);
    position: absolute;
    left: 0;
    width: 45%;
    color: #000000;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
  }
}

/*Form*/
.form-group {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .form-group {
    margin-top: 15px;
  }
}
.form-group .subLabel {
  display: block;
  font-size: 14px;
  color: #888F8F;
  margin-bottom: 10px;
}
.form-group .form-control {
  width: 100%;
  height: 55px;
  background-color: #F5F5F5;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  border: 0;
  border-left: #CECECE 2px solid;
  padding: 10px 20px;
}
.form-group .form-control::placeholder {
  /* Firefox fix */
  color: #000000;
  opacity: 1;
}
.form-group .form-control:-ms-input-placeholder {
  color: #000000;
}
.form-group .form-control::-ms-input-placeholder {
  color: #000000;
}
.form-group select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../images/icon/select-arrow.svg");
  background-position: calc(100% - 15px) center;
  background-repeat: no-repeat;
  background-size: 10px;
  cursor: pointer;
}
.form-group textarea.form-control {
  height: 140px;
  padding-top: 20px;
  resize: none;
}
@media (max-width: 767px) {
  .form-group textarea.form-control {
    height: 120px;
  }
}

/*Select2 Style*/
.select2.select2-container {
  width: 100% !important;
}
.select2.select2-container .select2-selection {
  width: 100%;
  height: 55px;
  background-color: transparent;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  color: #888F8F;
  font-weight: 300;
  border: none;
  border: 1px solid #E4E8EC;
  border-radius: 3px;
  padding: 10px 20px;
  outline: none !important;
  transition: all 0.15s ease-in-out;
}
.select2.select2-container .select2-selection .select2-selection__rendered {
  width: 100%;
  color: #888F8F;
  line-height: 32px;
  padding: 0;
}
.select2.select2-container .select2-selection .select2-selection__arrow {
  background: transparent;
  border-left: 0;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  height: 55px;
  width: 55px;
}
.select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
  background-color: transparent;
}
.select2.select2-container.select2-container--open .select2-selection.select2-selection--single .select2-selection__arrow {
  -webkit-border-radius: 0 3px 0 0;
  -moz-border-radius: 0 3px 0 0;
  border-radius: 0 3px 0 0;
}
.select2.select2-container .select2-selection--multiple {
  position: relative;
  height: auto;
  min-height: 55px;
}
.select2.select2-container .select2-selection--multiple .select2-search--inline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.select2.select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
  width: 100% !important;
  height: 100%;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  color: #888F8F;
  font-weight: 300;
  margin-top: 0;
  margin-left: 0;
  padding-block: 15px;
  padding-inline: 20px;
}
.select2.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 100%;
}
.select2.select2-container .select2-selection--multiple .select2-selection__choice {
  position: relative;
  background-color: transparent;
  display: flex;
  align-items: center;
  height: 30px;
  font-size: 16px;
  border: 1px solid #E4E8EC;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin: 0;
  padding: 0 5px 0 25px;
  line-height: 100%;
  z-index: 1;
}
.select2.select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 22px;
  margin: 0;
  text-align: center;
  color: #EA1D2D;
  font-weight: 700;
  font-size: 16px;
  border-color: #E4E8EC;
}

.form-group .select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #E4E8EC;
}

/*Results Options*/
.select2-container .select2-dropdown {
  width: 100%;
  display: block;
  background: #ffffff;
  border-color: #E4E8EC;
  border-radius: 4px;
  box-sizing: border-box;
  position: absolute;
  left: -100000px;
  z-index: 1051;
}
.select2-container .select2-dropdown .select2-search--dropdown {
  display: block;
  padding: 10px;
}
.select2-container .select2-dropdown .select2-search--dropdown .select2-search__field {
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  height: 35px;
  border-color: #E4E8EC;
  padding-inline: 15px;
}
.select2-container .select2-results {
  padding: 0;
}
.select2-container .select2-results ul {
  background: #ffffff;
  border: inherit;
}
.select2-container .select2-results ul .select2-results__option--highlighted[aria-selected] {
  background-color: #E4E8EC;
}

.select2-container.select2-container--default .select2-results__option--selected {
  background-color: #E4E8EC;
}

/*Scroll Down*/
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.freeform-row input, .freeform-row textarea, .freeform-row select {
  width: 100% !important;
  height: 55px !important;
  background-color: #F5F5F5 !important;
  font-family: "Work Sans", sans-serif !important;
  font-size: 16px !important;
  color: #000000;
  font-weight: 400;
  border: 0;
  border-left-width: 0px !important;
  border-left-style: none !important;
  border-left-color: currentcolor !important;
  border-left: #CECECE 2px solid !important;
  padding: 10px 20px;
  border-top: 0px !important;
  border-bottom: 0px !important;
  border-right: 0px !important;
  border-radius: 0px !important;
  border-radius: 0px !important;
}

.freeform-input {
  width: 100% !important;
  height: 55px !important;
  background-color: #F5F5F5 !important;
  font-family: "Work Sans", sans-serif !important;
  font-size: 16px !important;
  color: #000000 !important;
  font-weight: 400;
  border: 0;
  border-left-width: 0px !important;
  border-left-style: none !important;
  border-left-color: currentcolor !important;
  border-left: #CECECE 2px solid !important;
  padding: 10px 20px !important;
  border-top: 0px !important;
  border-bottom: 0px !important;
  border-right: 0px !important;
  border-radius: 0px !important;
}

.freeform-label {
  font-size: 14px !important;
  color: #333333 !important;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 6px;
}

.freeform-form button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  gap: 15px !important;
  font-family: "Work Sans", sans-serif !important;
  font-size: 15px !important;
  background-color: #EA1D2D !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  padding-inline: 35px !important;
  height: 50px !important;
  border-radius: 0px !important;
  border: 1px solid transparent !important;
  cursor: pointer !important;
  -webkit-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}

.freeform-form button:hover {
  background-color: #EA1D2D !important;
}

.freeform-row [class*=freeform-col-] select:not(select[multiple]) {
  background-image: linear-gradient(45deg, transparent 50%, #6c757d 50%), linear-gradient(135deg, #6c757d 50%, transparent 50%) !important;
  background-position: calc(100% - 20px) calc(1em + 7px), calc(100% - 15px) calc(1em + 7px), calc(100% - 2.5em) 0.5em !important;
}

/*Header*/
.header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 100;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header.show {
  background-color: #000000;
}
.header.sticky {
  background-color: #000000;
}
.header.sticky .logo {
  width: 270px;
}
@media (max-width: 1199px) {
  .header.sticky .logo {
    width: 250px;
  }
}
@media (max-width: 991px) {
  .header.sticky .logo {
    width: 210px;
  }
}
@media (max-width: 767px) {
  .header.sticky .logo {
    width: 190px;
  }
}
@media (max-width: 991px) {
  .header .container {
    max-width: 100%;
  }
}
.header__inner {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .header__inner {
    padding-block: 15px;
  }
}
.header .logo {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header .logo a {
  display: block;
}
.header .logo img {
  max-width: 100%;
  max-height: 73px;
}
@media (max-width: 1199px) {
  .header .logo img {
    max-height: 60px;
  }
}
@media (max-width: 991px) {
  .header .logo img {
    max-height: 50px;
  }
}
.header.active .logo {
  z-index: 101;
}
.header.hide {
  z-index: -1;
}

.navigation {
  margin-left: auto;
}
.navigation__inner {
  background-color: transparent;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) {
  .navigation__inner {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .navigation__inner {
    background: #000000;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    display: block;
    pointer-events: none;
    opacity: 0;
    -webkit-box-shadow: 2px 0 10px 0 rgba(255, 255, 255, 0.1);
    box-shadow: 2px 0 10px 0 rgba(255, 255, 255, 0.1);
    -moz-transform: translate(0, -100%);
    -o-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .navigation__inner > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    margin-top: 40px;
  }
  .navigation__inner.toggle {
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: all;
  }
  .navigation__inner .btn {
    font-size: 18px;
    font-weight: 600 !important;
    padding-block: 10px;
    padding-inline: 30px;
    height: auto;
  }
}
@media (max-width: 991px) {
  .navigation #navbar {
    height: calc(100vh - 110px);
    margin-top: 80px;
    margin-bottom: 30px;
    padding: 20px 15px;
    overflow-y: auto;
  }
}
.navigation #navbar > ul {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  gap: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .navigation #navbar > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
}
.navigation #navbar > ul > li {
  height: 122px;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 14px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navigation #navbar > ul > li:last-child {
  padding-right: 0;
}
@media (max-width: 1199px) {
  .navigation #navbar > ul > li {
    padding: 0 8px;
  }
}
@media (max-width: 991px) {
  .navigation #navbar > ul > li {
    width: 100%;
    height: auto;
    padding: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.navigation #navbar li {
  margin: 0;
}
.navigation #navbar li > a {
  position: relative;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  color: #ffffff;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}
.navigation #navbar li > a.btn {
  font-size: 15px;
  height: 50px;
  font-weight: 600 !important;
  padding-inline: 35px;
}
@media (max-width: 1199px) {
  .navigation #navbar li > a.btn {
    padding-inline: 25px;
    height: 45px;
  }
}
@media (max-width: 991px) {
  .navigation #navbar li > a.btn {
    height: auto;
    font-size: 14px;
    padding: 10px 25px;
  }
}
.navigation #navbar li > a.active::before {
  content: "";
  background-color: #EA1D2D;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navigation #navbar li > a.show::before {
  content: "";
  background-color: #EA1D2D;
  position: absolute;
  top: 100%;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 0;
  margin: auto;
  z-index: 100;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .navigation #navbar li > a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .navigation #navbar li > a {
    font-size: 20px;
    display: block;
  }
}
@media (max-width: 991px) {
  .navigation #navbar li .dropdownMenu .container {
    padding-inline: 0;
  }
  .navigation #navbar li .dropdownMenu .container .row {
    margin-inline: 0;
  }
  .navigation #navbar li .dropdownMenu .container .row > * {
    padding-inline: 0;
  }
  .navigation #navbar li .dropdownMenu .col-12.mb-1 {
    display: none;
  }
}
.navigation #navbar li .dropdownMenu ul {
  column-count: 2;
  column-gap: 5rem;
}
@media (max-width: 1199px) {
  .navigation #navbar li .dropdownMenu ul {
    column-gap: 2rem;
  }
}
@media (max-width: 479px) {
  .navigation #navbar li .dropdownMenu ul {
    column-count: 1;
    column-gap: 0;
  }
}
.navigation #navbar li .dropdownMenu ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.navigation #navbar li .dropdownMenu ul li a {
  padding-block: 18px;
}
@media (max-width: 991px) {
  .navigation #navbar li .dropdownMenu ul li a {
    font-size: 15px;
    color: #ffffff;
    padding-block: 10px;
  }
}
.navigation #navbar li .dropdownMenu ul li a:hover {
  color: #EA1D2D;
}
.navigation #navbar li .dropdownMenu ul li a::after {
  content: none;
}
.navigation #navbar li:hover > a {
  color: #EA1D2D;
}
.navigation #navbar li:hover > a.btn {
  color: #ffffff;
}
@media (min-width: 992px) {
  .navigation #navbar li:hover .navbar_menuCarot svg {
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}
.navigation #navbar li.dropdoenHolder > a:after {
  content: "";
  border-top: #ffffff 5px solid;
  border-left: transparent 5px solid;
  border-right: transparent 5px solid;
  vertical-align: middle;
  margin-left: 10px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .navigation #navbar li.dropdoenHolder > a:after {
    margin-left: 6px;
  }
}
@media (max-width: 991px) {
  .navigation #navbar li.dropdoenHolder > a:after {
    display: none;
  }
}
.navigation #navbar li.dropdoenHolder:hover > a:after {
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.navigation #navbar li .navbar_menuCarot {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 15px;
  margin-block: auto;
  display: none;
}
@media (max-width: 991px) {
  .navigation #navbar li .navbar_menuCarot {
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
  }
}
.navigation #navbar li .navbar_menuCarot svg {
  width: 12px;
  fill: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .navigation #navbar li.dropdoenHolder .dropdownMenu {
    background-color: #000000;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    padding-top: 2rem;
    padding-bottom: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    -moz-transform: translate(0, 30px);
    -o-transform: translate(0, 30px);
    -ms-transform: translate(0, 30px);
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px);
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    z-index: 99;
  }
  .navigation #navbar li.dropdoenHolder:hover .active::before {
    display: none;
  }
  .navigation #navbar li.dropdoenHolder:hover .show::before {
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    height: 60px;
  }
  .navigation #navbar li.dropdoenHolder:hover .dropdownMenu {
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: all;
  }
}
@media (max-width: 991px) {
  .navigation #navbar li.dropdoenHolder {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .navigation #navbar li.dropdoenHolder .navbar_menuCarot {
    top: 5px;
    right: 0;
    background-color: transparent;
    width: 18px;
    height: 18px;
    text-align: center;
    cursor: pointer;
    border-radius: 2px;
    margin-block: 0;
  }
  .navigation #navbar li.dropdoenHolder .navbar_menuCarot svg {
    width: 10px;
  }
  .navigation #navbar li.dropdoenHolder .navbar_menuCarot.active svg {
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .navigation #navbar li.dropdoenHolder .dropdownMenu {
    display: none;
    width: 100%;
    padding: 1rem 0;
  }
  .navigation #navbar li.dropdoenHolder .dropdownMenu::before {
    content: none;
  }
  .navigation #navbar li.dropdoenHolder:hover .navbar__menuCarot svg {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.navigation .buttonOuter {
  margin-left: auto;
  text-align: center;
}
@media (max-width: 991px) {
  .navigation .buttonOuter {
    text-align: left;
  }
}

.sticky #navbar > ul > li {
  height: 100px;
}
@media (max-width: 991px) {
  .sticky #navbar > ul > li {
    height: auto;
  }
}

/*Boldx Text*/
.boldxPart {
  position: relative;
  text-align: right;
}
@media (max-width: 991px) {
  .boldxPart {
    display: none;
  }
}
.boldxPart::after {
  content: "";
  background: #1E2022;
  background: linear-gradient(90deg, rgb(30, 32, 34) 0%, rgba(30, 32, 34, 0) 55%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4rem;
  width: 100%;
  height: 100%;
  min-height: 300px;
  clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%);
  margin-block: auto;
  pointer-events: none;
}
@media (max-width: 1199px) {
  .boldxPart::after {
    left: 1rem;
  }
}
.boldxPart::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 1.5rem;
  left: 8rem;
  background-color: #EA1D2D;
  width: 30px;
  height: 100%;
  min-height: 375px;
  margin-block: auto;
  pointer-events: none;
  -moz-transform: rotate(25deg) skew(0deg, -25deg);
  -o-transform: rotate(25deg) skew(0deg, -25deg);
  -ms-transform: rotate(25deg) skew(0deg, -25deg);
  -webkit-transform: rotate(25deg) skew(0deg, -25deg);
  transform: rotate(25deg) skew(0deg, -25deg);
  z-index: 1;
}
@media (max-width: 1499px) {
  .boldxPart::before {
    width: 25px;
    left: 6rem;
  }
}
@media (max-width: 1199px) {
  .boldxPart::before {
    min-height: 350px;
    left: 4rem;
    -moz-transform: rotate(15deg) skew(0deg, -15deg);
    -o-transform: rotate(15deg) skew(0deg, -15deg);
    -ms-transform: rotate(15deg) skew(0deg, -15deg);
    -webkit-transform: rotate(15deg) skew(0deg, -15deg);
    transform: rotate(15deg) skew(0deg, -15deg);
  }
}
.boldxPart__content {
  position: relative;
  display: inline-block;
  text-align: center;
  z-index: 1;
}
.boldxPart .boldxText {
  font-family: "Big Shoulders", sans-serif;
  font-size: 85px;
  color: #ffffff;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 1399px) {
  .boldxPart .boldxText {
    font-size: 75px;
  }
}
@media (max-width: 1299px) {
  .boldxPart .boldxText {
    font-size: 65px;
  }
}
@media (max-width: 1199px) {
  .boldxPart .boldxText {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  .boldxPart .boldxText {
    font-size: 45px;
  }
}
.boldxPart .boldxText span {
  color: #EA1D2D;
}

/*Mobile Navigation*/
.menuIcon {
  position: relative;
  width: 30px;
  height: 25px;
  display: none;
  cursor: pointer;
  margin-left: auto;
}
@media (max-width: 991px) {
  .menuIcon {
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}
.menuIcon span {
  position: relative;
  background-color: #ffffff;
  width: 100%;
  height: 2px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 2px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.menuIcon span:nth-child(2) {
  width: 80%;
  margin: 8px 0;
  margin-left: auto;
}
.menuIcon.active {
  z-index: 101;
}
.menuIcon.active span:nth-child(1) {
  -moz-transform: rotate(45deg) translate(8px, 8px);
  -o-transform: rotate(45deg) translate(8px, 8px);
  -ms-transform: rotate(45deg) translate(8px, 8px);
  -webkit-transform: rotate(45deg) translate(8px, 8px);
  transform: rotate(45deg) translate(8px, 8px);
}
.menuIcon.active span:nth-child(2) {
  opacity: 0;
}
.menuIcon.active span:nth-child(3) {
  -moz-transform: rotate(-45deg) translate(7px, -7px);
  -o-transform: rotate(-45deg) translate(7px, -7px);
  -ms-transform: rotate(-45deg) translate(7px, -7px);
  -webkit-transform: rotate(-45deg) translate(7px, -7px);
  transform: rotate(-45deg) translate(7px, -7px);
}

/*Footer*/
.footer {
  background: #1E2022;
  margin-top: -1px;
}
.footer__inner {
  padding-top: 15rem;
}
@media (max-width: 1299px) {
  .footer__inner {
    padding-top: 10rem;
  }
}
@media (max-width: 991px) {
  .footer__inner {
    padding-top: 5rem;
  }
}
@media (max-width: 575px) {
  .footer__inner {
    padding-top: 4rem;
  }
}
@media (max-width: 991px) {
  .footer__top {
    text-align: center;
  }
}
.footer__body {
  padding-bottom: 35px;
}
@media (max-width: 991px) {
  .footer__body {
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  .footer__body .footerLogo {
    text-align: center;
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .footer__body .footerLogo {
    margin-bottom: 2rem;
  }
}
@media (max-width: 479px) {
  .footer__body .footerLogo {
    margin-bottom: 0;
  }
}
.footer__body .footerLogo a {
  display: inline-block;
}
.footer__body .footerLogo a img {
  max-width: 100%;
  max-height: 73px;
}
@media (max-width: 1199px) {
  .footer__body .footerLogo a img {
    max-height: 60px;
  }
}
.footer__body .info h6 {
  font-size: 14px;
  color: #888F8F;
  font-weight: 400;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (max-width: 479px) {
  .footer__body .info h6 {
    margin-bottom: 5px;
  }
}
.footer__body .info__text {
  font-size: 20px;
  color: #ffffff;
  font-weight: 400;
}
@media (max-width: 1199px) {
  .footer__body .info__text {
    font-size: 17px;
  }
}
.footer__body .info__text a {
  color: #ffffff;
}
.footer__body .info__text a:hover {
  color: #EA1D2D;
}
@media (max-width: 767px) {
  .footer__body .info br {
    display: none;
  }
}
@media (max-width: 479px) {
  .footer__body .info {
    text-align: center;
    margin-top: 2rem;
  }
}
.footer__body ul {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 479px) {
  .footer__body ul::before {
    content: "Links";
    display: inline-block;
    font-size: 14px;
    color: #888F8F;
    font-weight: 400;
    margin-bottom: 5px;
    text-transform: uppercase;
  }
}
.footer__body ul li {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  text-align: left;
  line-height: normal;
}
.footer__body ul li + li {
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .footer__body ul li + li {
    margin-top: 15px;
  }
}
@media (max-width: 479px) {
  .footer__body ul li + li {
    margin-top: 10px;
  }
}
.footer__body ul li a {
  color: #ffffff;
}
.footer__body ul li a:hover {
  color: #EA1D2D;
}
@media (max-width: 479px) {
  .footer__body ul li {
    text-align: center;
  }
}
@media (max-width: 479px) {
  .footer__body .col-4 {
    width: 100%;
  }
}
.footer__bottom {
  padding-block: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__bottom .certification {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 1299px) {
  .footer__bottom .certification {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .footer__bottom .certification {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .footer__bottom .certification {
    margin-top: 1rem;
  }
}
.footer__bottom .certification__logo a {
  display: block;
}
.footer__bottom .certification__logo a img {
  max-height: 90px;
}
@media (max-width: 1299px) {
  .footer__bottom .certification__logo a img {
    max-height: 60px;
    max-width: 120px;
  }
}
@media (max-width: 991px) {
  .footer__bottom .certification__logo a img {
    max-height: 45px;
    max-width: 90px;
  }
}
@media (max-width: 479px) {
  .footer__bottom .certification__logo a img {
    max-height: 40px;
    max-width: 80px;
  }
}
.footer .copyrightText {
  font-size: 12px;
  color: #ffffff;
  font-weight: 400;
  text-align: right;
}
@media (max-width: 767px) {
  .footer .copyrightText {
    margin-top: 1rem;
    text-align: center;
  }
}

/*Social Media*/
.socialMedia {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}
@media (max-width: 991px) {
  .socialMedia {
    gap: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .socialMedia {
    width: 100%;
    gap: 20px;
  }
}
.socialMedia a {
  font-size: 18px;
  color: #ffffff;
  display: inline-block;
  padding: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.socialMedia a:hover {
  color: #EA1D2D;
}

/*Shapes Gradient*/
.shapeGradient {
  position: relative;
}
.shapeGradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px;
  background: #F5F5F5;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgb(255, 255, 255) 100%);
  clip-path: polygon(0% 40%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1299px) {
  .shapeGradient::before {
    height: 480px;
  }
}
@media (max-width: 1199px) {
  .shapeGradient::before {
    height: 320px;
  }
}
@media (max-width: 575px) {
  .shapeGradient::before {
    height: 220px;
  }
}
.shapeGradient--commonBg {
  background-color: #1E2022;
}
.shapeGradient--commonBgTint1::before {
  background: #363B40;
  background: linear-gradient(180deg, rgba(54, 59, 64, 0.5) 0%, rgba(54, 59, 64, 0) 100%);
}
.shapeGradient--gradient-none {
  background-color: transparent;
}
.shapeGradient--gradient-none::before {
  background: #F5F5F5;
}
.shapeGradient--index3::before {
  z-index: 3;
}
.shapeGradient__inner > * {
  position: relative;
  z-index: 3;
}
.shapeGradient__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgb(255, 255, 255) 100%);
  clip-path: polygon(0% 0%, 100% 280px, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 1299px) {
  .shapeGradient__inner::after {
    clip-path: polygon(0% 0%, 100% 180px, 100% 100%, 0% 100%);
  }
}
@media (max-width: 1199px) {
  .shapeGradient__inner::after {
    clip-path: polygon(0% 0%, 100% 120px, 100% 100%, 0% 100%);
  }
}
@media (max-width: 575px) {
  .shapeGradient__inner::after {
    clip-path: polygon(0% 0%, 100% 90px, 100% 100%, 0% 100%);
  }
}
.shapeGradient__inner--whiteBg::after {
  background: #ffffff;
}
.shapeGradient__inner--commonBg::after {
  background: #1E2022;
}
.shapeGradient__inner--commonBgTint1::after {
  background: #363B40;
  background: linear-gradient(180deg, rgba(54, 59, 64, 0.5) 0%, rgba(54, 59, 64, 0) 100%);
}

/*Min Height*/
.min-height {
  min-height: 35rem;
}
@media (max-width: 991px) {
  .min-height {
    min-height: 25rem;
  }
}

/*Hero Section*/
.heroBanner {
  background-color: #000000;
  position: relative;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100dvh;
  min-height: 850px;
  padding-top: 120px;
  padding-bottom: 60px;
  /*Hero Banner Video*/
  /*Inner Pages Banner*/
}
@media (max-width: 991px) {
  .heroBanner {
    height: auto;
    min-height: 650px;
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .heroBanner {
    min-height: 550px;
  }
}
.heroBanner video,
.heroBanner iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  vertical-align: middle;
}
.heroBanner .placeholderImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}
.heroBanner .z-index {
  position: relative;
  z-index: 2;
}
.heroBanner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8rem;
  left: 60rem;
  background-color: #EA1D2D;
  width: 30px;
  height: 100%;
  min-height: 420px;
  max-height: 500px;
  clip-path: polygon(0% 0%, 100% 3%, 100% 100%, 0% 97%);
  pointer-events: none;
  margin: 0 auto;
  pointer-events: none;
  -moz-transform: rotate(-25deg);
  -o-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
  -webkit-transform: rotate(-25deg);
  transform: rotate(-25deg);
  z-index: 1;
}
@media (max-width: 1299px) {
  .heroBanner::after {
    width: 25px;
    bottom: -5rem;
    left: 55rem;
    min-height: 350px;
    max-height: 350px;
  }
}
@media (max-width: 1199px) {
  .heroBanner::after {
    bottom: -3rem;
    left: 46rem;
  }
}
@media (max-width: 991px) {
  .heroBanner::after {
    width: 20px;
    max-height: 200px;
    min-height: 200px;
    left: 30rem;
    bottom: -5rem;
  }
}
@media (max-width: 767px) {
  .heroBanner::after {
    left: 20rem;
  }
}
@media (max-width: 479px) {
  .heroBanner::after {
    width: 12px;
    max-height: 120px;
    min-height: 120px;
    left: 15rem;
    bottom: -3rem;
  }
}
@media (max-width: 330px) {
  .heroBanner::after {
    left: 12rem;
  }
}
.heroBanner > * {
  position: relative;
  z-index: 1;
}
.heroBanner__bgImage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.heroBanner.opacity::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: #1E2022;
  background: linear-gradient(0deg, rgb(30, 32, 34) 0%, rgba(30, 32, 34, 0.5) 90%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.heroBanner__content {
  position: relative;
}
.heroBanner .headingWrap {
  width: 100%;
  max-width: 78%;
}
@media (max-width: 1199px) {
  .heroBanner .headingWrap {
    max-width: 70%;
  }
}
@media (max-width: 991px) {
  .heroBanner .headingWrap {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .heroBanner .headingWrap {
    max-width: 100%;
  }
}
.heroBanner .headingWrap .headingText h1 {
  font-size: 110px;
  line-height: 110px;
}
@media (max-width: 1299px) {
  .heroBanner .headingWrap .headingText h1 {
    font-size: 100px;
    line-height: 100px;
  }
}
@media (max-width: 1199px) {
  .heroBanner .headingWrap .headingText h1 {
    font-size: 80px;
    line-height: 80px;
  }
}
@media (max-width: 991px) {
  .heroBanner .headingWrap .headingText h1 {
    font-size: 65px;
    line-height: 65px;
  }
}
@media (max-width: 767px) {
  .heroBanner .headingWrap .headingText h1 {
    font-size: 55px;
    line-height: 55px;
  }
}
.heroBanner .headingWrap__info {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  gap: 40px;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .heroBanner .headingWrap__info {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }
}
.heroBanner .headingWrap--border {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid #363B40;
}
.heroBanner .headingWrap--border h4 {
  font-weight: 600;
}
.heroBanner .headingWrap p {
  font-size: 22px;
  color: #ffffff;
  line-height: 30px;
}
@media (max-width: 1299px) {
  .heroBanner .headingWrap p {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .heroBanner .headingWrap p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .heroBanner .headingWrap p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .heroBanner .headingWrap p {
    line-height: 25px;
  }
}
.heroBanner--video::after {
  z-index: 3;
}
.heroBanner--video.opacity::before {
  height: calc(100% + 1px);
  z-index: 2;
}
.heroBanner--bgImage {
  height: auto;
  min-height: 100%;
  display: block;
  padding: 0;
}
.heroBanner--bgImage::after {
  top: 12rem;
  bottom: 0;
  margin-block: auto;
}
@media (max-width: 991px) {
  .heroBanner--bgImage::after {
    display: none;
  }
}
.heroBanner--bgImage .heroBanner__content {
  padding-top: 10rem;
  padding-bottom: 2rem;
}
@media (max-width: 1199px) {
  .heroBanner--bgImage .heroBanner__content {
    padding-top: 5rem;
    padding-bottom: 0;
  }
}
.heroBanner--bgImage .downScrollButton {
  bottom: -5rem;
}
@media (max-width: 1299px) {
  .heroBanner--bgImage .downScrollButton {
    bottom: -4rem;
  }
}
@media (max-width: 1199px) {
  .heroBanner--bgImage .downScrollButton {
    bottom: -2rem;
  }
}
@media (max-width: 767px) {
  .heroBanner--bgImage .downScrollButton {
    bottom: -1rem;
  }
}
.heroBanner__inner {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
  padding-top: 120px;
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .heroBanner__inner {
    height: auto;
    min-height: 650px;
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .heroBanner__inner {
    min-height: 100%;
  }
}
.heroBanner__inner > * {
  position: relative;
  z-index: 1;
}
.heroBanner__inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: #000000;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  pointer-events: none;
}
.heroBanner__inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #1E2022;
  background: linear-gradient(180deg, rgba(30, 32, 34, 0) 0%, rgb(30, 32, 34) 100%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/*Intro*/
.intro {
  position: relative;
  background-color: #1E2022;
}
.intro h3 {
  line-height: 100%;
}
@media (max-width: 991px) {
  .intro .headingText {
    text-align: center;
  }
}

.downScrollButton {
  position: absolute;
  bottom: -70px;
  left: 50%;
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 4;
}
@media (max-width: 1299px) {
  .downScrollButton {
    bottom: -50px;
  }
}
@media (max-width: 991px) {
  .downScrollButton {
    bottom: -30px;
  }
}
@media (max-width: 767px) {
  .downScrollButton {
    bottom: -20px;
  }
}
@media (max-width: 479px) {
  .downScrollButton {
    bottom: 0;
  }
}
.downScrollButton img {
  max-width: 102px;
}
@media (max-width: 767px) {
  .downScrollButton img {
    max-width: 80px;
  }
}
@media (max-width: 479px) {
  .downScrollButton img {
    max-width: 65px;
  }
}

/*Features*/
.features {
  position: relative;
  background: #1E2022;
  background: linear-gradient(180deg, rgb(30, 32, 34) 50%, rgb(255, 255, 255) 50%);
}
.features::before, .features::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
}
.features::before {
  background-color: #363B40;
  clip-path: polygon(0% 50%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.6;
}
.features::after {
  background-color: #F5F5F5;
  top: inherit;
  bottom: 0;
  clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 100%);
}
.features__inner {
  position: relative;
  clip-path: polygon(0% 0%, 100% 25%, 100% 100%, 0% 75%);
  z-index: 1;
}
.features .container-fluid,
.features .col {
  padding-inline: 0;
}
.features .row {
  margin-inline: 0;
}
.features a {
  display: block;
}
.features__grid {
  background-color: #EA1D2D;
  position: relative;
  height: 100%;
  overflow: hidden;
}
.features__grid::before, .features__grid::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.features__grid::before {
  background-color: #EA1D2D;
}
.features__grid::after {
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 50%, rgb(234, 29, 45) 100%);
  z-index: 1;
}
.features__grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.features__grid h4 {
  position: absolute;
  right: 0;
  left: 0;
  font-family: "Big Shoulders", sans-serif;
  font-size: 40px;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.features__grid h4.one {
  bottom: 30%;
}
.features__grid h4.two {
  bottom: 20%;
}
.features__grid h4.three {
  bottom: 10%;
}
@media (max-width: 1399px) {
  .features__grid h4 {
    font-size: 35px;
  }
}
@media (max-width: 1199px) {
  .features__grid h4 {
    font-size: 25px;
  }
}
@media (max-width: 991px) {
  .features__grid h4 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .features__grid h4 {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .features__grid h4 {
    font-size: 16px;
  }
}
@media (max-width: 360px) {
  .features__grid h4 {
    font-size: 15px;
  }
}
.features__grid:hover img {
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.features__grid:hover h4.one {
  bottom: 32%;
}
.features__grid:hover h4.two {
  bottom: 22%;
}
.features__grid:hover h4.three {
  bottom: 12%;
}

/*Innovations*/
.innovations {
  background-color: #F5F5F5;
}
.innovations__inner {
  position: relative;
  background-color: #ffffff;
}
.innovations__body {
  position: relative;
  z-index: 1;
}
.innovations__body--fixHeight {
  min-height: 600px;
}
.innovations__body .leftMinusImg {
  max-height: 520px;
}
@media (max-width: 991px) {
  .innovations__body .leftMinusImg {
    max-height: 420px;
    max-width: 80%;
    margin: 0 auto 3rem;
  }
}
@media (max-width: 767px) {
  .innovations__body .leftMinusImg {
    max-height: 360px;
    max-width: 70%;
  }
}
@media (max-width: 575px) {
  .innovations__body .leftMinusImg {
    max-height: 320px;
  }
}
@media (max-width: 479px) {
  .innovations__body .leftMinusImg {
    max-height: 280px;
  }
}
.innovations__head {
  position: relative;
  text-align: center;
  z-index: 1;
}
.innovations__head p {
  font-size: 22px;
  line-height: 30px;
}
@media (max-width: 1299px) {
  .innovations__head p {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .innovations__head p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .innovations__head p {
    font-size: 16px;
    line-height: 25px;
  }
}
.innovations__content {
  position: relative;
  padding-top: 35px;
}

.subtitle {
  position: relative;
  text-align: center;
}
.subtitle::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 1px;
  margin: auto 0;
}
.subtitle .btn {
  position: relative;
  cursor: auto;
  z-index: 1;
}

/*Accordion*/
.accordionImage img {
  width: 100%;
}

.accordion__block {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-block: 30px;
}
.accordion__block:first-child {
  border-top: 0;
  padding-block-start: 0;
}
@media (max-width: 767px) {
  .accordion__block {
    padding-block: 25px;
  }
}
@media (max-width: 575px) {
  .accordion__block {
    padding-block: 20px;
  }
}
@media (max-width: 479px) {
  .accordion__block {
    padding-block: 15px;
  }
}
.accordion .accordion-btn {
  width: 100%;
  font-family: "Big Shoulders", sans-serif;
  font-size: 40px;
  color: #000000;
  font-weight: 800;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 0;
}
@media (max-width: 1299px) {
  .accordion .accordion-btn {
    font-size: 35px;
  }
}
@media (max-width: 1199px) {
  .accordion .accordion-btn {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .accordion .accordion-btn {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .accordion .accordion-btn {
    font-size: 22px;
  }
}
.accordion .accordion-btn span {
  -webkit-box-flex: 0;
  -ms-flex: 1;
  flex: 1;
}
.accordion .accordion-btn i, .accordion .accordion-btn img {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  color: #EA1D2D;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordion .accordion-btn.active i {
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.accordion .accordion-content {
  padding-block-start: 25px;
}
@media (max-width: 1299px) {
  .accordion .accordion-content {
    padding-block-start: 15px;
  }
}

/*Tabs*/
.tabs-wrapper .tabs {
  margin-bottom: 8rem;
}
@media (max-width: 991px) {
  .tabs-wrapper .tabs {
    margin-bottom: 2rem;
  }
}
.tabs-wrapper .tab-buttons {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  gap: 40px;
  overflow-y: hidden;
  overflow-x: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 1199px) {
  .tabs-wrapper .tab-buttons {
    gap: 35px;
  }
}
@media (max-width: 991px) {
  .tabs-wrapper .tab-buttons {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .tabs-wrapper .tab-buttons {
    gap: 25px;
  }
}
@media (max-width: 575px) {
  .tabs-wrapper .tab-buttons {
    gap: 20px;
  }
}
@media (max-width: 479px) {
  .tabs-wrapper .tab-buttons {
    gap: 15px;
  }
}
.tabs-wrapper .tab-buttons .tab-btn {
  position: relative;
  width: 100%;
  font-family: "Big Shoulders", sans-serif;
  font-size: 30px;
  color: #000000;
  font-weight: 400;
  text-align: left;
  padding: 0 0 20px;
  text-transform: uppercase;
}
@media (max-width: 1299px) {
  .tabs-wrapper .tab-buttons .tab-btn {
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  .tabs-wrapper .tab-buttons .tab-btn {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .tabs-wrapper .tab-buttons .tab-btn {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .tabs-wrapper .tab-buttons .tab-btn {
    font-size: 18px;
    padding: 0 0 15px;
  }
}
@media (max-width: 479px) {
  .tabs-wrapper .tab-buttons .tab-btn {
    font-size: 16px;
  }
}
.tabs-wrapper .tab-buttons .tab-btn::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #EA1D2D;
  width: 0;
  height: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tabs-wrapper .tab-buttons .tab-btn.active, .tabs-wrapper .tab-buttons .tab-btn:hover {
  color: #EA1D2D;
}
.tabs-wrapper .tab-buttons .tab-btn.active::before, .tabs-wrapper .tab-buttons .tab-btn:hover::before {
  width: 100%;
}
.tabs-wrapper .tab-content .headingText h4 {
  font-size: 60px;
  font-weight: 500;
}
@media (max-width: 1299px) {
  .tabs-wrapper .tab-content .headingText h4 {
    font-size: 55px;
  }
}
@media (max-width: 1199px) {
  .tabs-wrapper .tab-content .headingText h4 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .tabs-wrapper .tab-content .headingText h4 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .tabs-wrapper .tab-content .headingText h4 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .tabs-wrapper .tab-content {
    text-align: center;
  }
}

/*Common Image Shapes with Slice*/
.commonImgShape {
  position: relative;
  text-align: left;
}
@media (max-width: 991px) {
  .commonImgShape {
    max-width: 420px;
    margin: 5rem auto 0;
  }
}
@media (max-width: 575px) {
  .commonImgShape {
    max-width: 350px;
  }
}
.commonImgShape img {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 380px;
  -o-object-fit: cover;
  object-fit: cover;
  clip-path: polygon(25% 0, 100% 0, 75% 100%, 0% 100%);
  z-index: 1;
}
.commonImgShape::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.05);
  width: 100%;
  height: 450px;
  margin-block: auto;
  pointer-events: none;
  clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%);
}
@media (max-width: 991px) {
  .commonImgShape::after {
    height: 115%;
  }
}
.commonImgShape::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8.5rem;
  bottom: 0;
  background-color: #EA1D2D;
  width: 35px;
  height: 100%;
  min-height: 520px;
  margin-block: auto;
  pointer-events: none;
  z-index: 2;
  -moz-transform: rotate(25deg) skew(0deg, -25deg);
  -o-transform: rotate(25deg) skew(0deg, -25deg);
  -ms-transform: rotate(25deg) skew(0deg, -25deg);
  -webkit-transform: rotate(25deg) skew(0deg, -25deg);
  transform: rotate(25deg) skew(0deg, -25deg);
}
@media (max-width: 991px) {
  .commonImgShape::before {
    width: 25px;
    min-height: 125%;
    right: 5rem;
  }
}
@media (max-width: 575px) {
  .commonImgShape::before {
    right: 4rem;
  }
}
.commonImgShape--left::before {
  right: inherit;
  left: 8.5rem;
}
@media (max-width: 991px) {
  .commonImgShape--left::before {
    right: inherit;
    left: 5rem;
  }
}
@media (max-width: 575px) {
  .commonImgShape--left::before {
    left: 4rem;
  }
}
.commonImgShape--dark::after {
  background-color: rgba(0, 0, 0, 0.2);
}

/*Industries*/
.industries__inner {
  padding-top: 18rem;
}
@media (max-width: 1299px) {
  .industries__inner {
    padding-top: 13rem;
  }
}
@media (max-width: 991px) {
  .industries__inner {
    padding-top: 10rem;
  }
}
@media (max-width: 767px) {
  .industries__inner {
    padding-top: 8rem;
  }
}
@media (max-width: 575px) {
  .industries__inner {
    padding-top: 7rem;
  }
}

/*X-Factor*/
.xfactor__inner {
  padding-top: 10rem;
}
@media (max-width: 1299px) {
  .xfactor__inner {
    padding-top: 7rem;
  }
}
@media (max-width: 991px) {
  .xfactor__inner {
    padding-top: 5rem;
  }
}
.xfactor__content {
  padding-top: 3rem;
}
@media (max-width: 991px) {
  .xfactor__content {
    padding-top: 2rem;
    text-align: center;
  }
}
.xfactor__content .headingText h4 {
  font-size: 60px;
  line-height: 65px;
  font-weight: 500;
}
@media (max-width: 1299px) {
  .xfactor__content .headingText h4 {
    font-size: 50px;
    line-height: 55px;
  }
}
@media (max-width: 1199px) {
  .xfactor__content .headingText h4 {
    font-size: 45px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .xfactor__content .headingText h4 {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .xfactor__content .headingText h4 {
    font-size: 35px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  .xfactor .commonImgShape {
    margin-top: 0;
    margin-bottom: 3rem;
  }
}

/*Big Stats*/
@media (max-width: 991px) {
  .bigStats__block {
    padding-top: 10px;
  }
}
.bigStats__block h6 {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 20px;
}
@media (max-width: 575px) {
  .bigStats__block h6 {
    margin-bottom: 0;
  }
}
.bigStats__block h6:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  background-color: #EA1D2D;
  width: 10px;
  height: 10px;
}
.bigStats__block h3 {
  font-size: 95px;
  font-weight: 800;
  line-height: 72px;
}
@media (max-width: 1299px) {
  .bigStats__block h3 {
    font-size: 76px;
  }
}
@media (max-width: 991px) {
  .bigStats__block h3 {
    font-size: 68px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .bigStats__block h3 {
    font-size: 58px;
  }
}
@media (max-width: 575px) {
  .bigStats__block h3 {
    font-size: 46px;
  }
}
.bigStats__block p {
  line-height: 1.4;
}
@media (max-width: 479px) {
  .bigStats .col-6 {
    width: 100%;
  }
}

/*AdvantageX*/
.advantageX {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/*Content Block*/
.contentBlock--bgColor .contentBlock__inner {
  background-color: #F5F5F5;
}
@media (max-width: 991px) {
  .contentBlock--bgColor .contentBlock__inner + .contentBlock__inner {
    margin-top: 30px;
  }
}
.contentBlock__inner:nth-child(even) .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.contentBlock__inner .row {
  margin-inline: 0;
}
.contentBlock__inner .row > * {
  padding-inline: 0;
}
.contentBlock__image {
  height: 100%;
}
.contentBlock__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.contentBlock__image iframe {
  width: 100%;
  vertical-align: middle;
  background-color: #EAEAEA;
  padding: 20px;
}
@media (min-width: 992px) {
  .contentBlock__image iframe {
    height: 600px;
  }
}
.contentBlock__text {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 2rem 5rem;
}
@media (max-width: 1199px) {
  .contentBlock__text {
    padding: 1.5rem 3rem;
  }
}
@media (max-width: 991px) {
  .contentBlock__text {
    padding: 1.5rem 2rem;
  }
}
@media (max-width: 575px) {
  .contentBlock__text {
    padding: 1rem 1.5rem;
  }
}

/*Our Principles*/
.ourPrinciples {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .ourPrinciples .headingText {
    margin-bottom: 15px;
  }
}
.ourPrinciples .headingText h3 {
  font-weight: 500;
}
@media (min-width: 1200px) {
  .ourPrinciples .headingText h3 {
    font-size: 60px;
  }
}
.ourPrinciples .headingText h4 {
  font-weight: 500;
}
@media (min-width: 1200px) {
  .ourPrinciples .headingText h4 {
    font-size: 30px;
  }
}
.ourPrinciples__block {
  border-width: 0 0 0 1px;
  border-style: solid;
  border-color: #EA1D2D;
  padding: 0 0 0 30px;
}
@media (max-width: 991px) {
  .ourPrinciples__block {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .ourPrinciples__block {
    padding-left: 15px;
  }
}
.ourPrinciples__block + * {
  margin-top: 4rem;
}
@media (max-width: 991px) {
  .ourPrinciples__block + * {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .ourPrinciples__block + * {
    margin-top: 1.5rem;
  }
}

/*Our Facility*/
.ourFacility .headingText h3 {
  font-weight: 500;
}
@media (min-width: 1200px) {
  .ourFacility .headingText h3 {
    font-size: 60px;
  }
}
.ourFacility__inner {
  padding-top: 18rem;
}
@media (max-width: 1299px) {
  .ourFacility__inner {
    padding-top: 13rem;
  }
}
@media (max-width: 1199px) {
  .ourFacility__inner {
    padding-top: 8rem;
  }
}
@media (max-width: 991px) {
  .ourFacility__inner {
    padding-top: 6rem;
  }
}

/*Common Slider*/
.commonSlider .slick-arrow {
  background-color: #EA1D2D;
  width: 50px;
  height: 50px;
  top: inherit;
  bottom: 10px;
  transform: none;
}
@media (max-width: 991px) {
  .commonSlider .slick-arrow {
    width: 42px;
    height: 42px;
  }
}
.commonSlider .slick-arrow.slick-prev {
  left: inherit;
  right: 68px;
}
.commonSlider .slick-arrow.slick-next {
  right: 15px;
}
.commonSlider .slick-dots {
  width: calc(100% - 125px);
  position: absolute;
  bottom: 30px;
  left: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .commonSlider .slick-dots {
    width: calc(100% - 115px);
    bottom: 25px;
  }
}
.commonSlider .slick-dots li {
  position: relative;
  margin: 0;
  z-index: 1;
}
.commonSlider .slick-dots::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 100%;
  height: 1px;
  margin-block: auto;
  z-index: 0;
}
.commonSlider .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*History*/
.history__inner {
  padding-top: 10rem;
}
@media (max-width: 1199px) {
  .history__inner {
    padding-top: 7rem;
  }
}

/*Mask Images*/
.maskSlider .slider-item {
  position: relative;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 700px;
}
@media (max-width: 991px) {
  .maskSlider .slider-item {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .maskSlider .slider-item {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .maskSlider .slider-item {
    height: 400px;
  }
}
.maskSlider .slider-item .line {
  background-color: #ffffff;
  width: 3px;
  height: 100%;
  position: absolute;
  left: 50%;
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.maskSlider .img-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.maskSlider .img-wrapper:nth-child(2) {
  clip-path: inset(0px 0px 0px 50%);
}
.maskSlider .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.maskSlider input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  position: absolute;
  width: calc(100% + 2.25rem);
  height: 100%;
  left: -1.12rem;
}
.maskSlider input[type=range]:active::-webkit-slider-thumb, .maskSlider input[type=range]:active::-moz-range-thumb {
  cursor: grabbing;
}
.maskSlider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 85px;
  height: 30px;
  background: url("../images/icon/double-arrows.svg") center no-repeat;
  background-size: contain;
  cursor: grab;
}
.maskSlider input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 85px;
  height: 30px;
  background: url("../images/icon/double-arrows.svg") center no-repeat;
  background-size: contain;
  cursor: grab;
}
.maskSlider input[type=range]::-ms-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 85px;
  height: 30px;
  background: url("../images/icon/double-arrows.svg") center no-repeat;
  background-size: contain;
  cursor: grab;
}
.maskSlider .slick-arrow.slick-prev {
  left: 0;
}
.maskSlider .slick-arrow.slick-next {
  right: 0;
}

/*Our Providers & Staff*/
.leadershipWrap {
  z-index: 4;
}

.leadership .openBio {
  cursor: pointer;
}
.leadership .col {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .leadership .col {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .leadership .col {
    margin-bottom: 20px;
  }
}
.leadership__image {
  height: 430px;
  border-radius: 0;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media (max-width: 1199px) {
  .leadership__image {
    height: 380px;
  }
}
@media (max-width: 991px) {
  .leadership__image {
    height: 340px;
  }
}
@media (max-width: 767px) {
  .leadership__image {
    height: 300px;
  }
}
@media (max-width: 479px) {
  .leadership__image {
    height: 250px;
  }
}
.leadership__image img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -o-object-fit: cover;
  object-fit: cover;
}
.leadership__image:hover img {
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.leadership__bio {
  position: relative;
  padding: 25px 0 0 30px;
}
.leadership__bio::after {
  content: "";
  background-color: #EA1D2D;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 60px;
}
.leadership__bio h4 {
  font-family: "Big Shoulders", sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #000000;
  margin: 0;
}
@media (max-width: 1199px) {
  .leadership__bio h4 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .leadership__bio h4 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .leadership__bio h4 {
    font-size: 16px;
  }
}
.leadership__bio h6 {
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 991px) {
  .leadership__bio h6 {
    font-size: 14px;
  }
}

/*Leadership and Staff Asidebar*/
.staffInfo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: right 0.5s ease, opacity 0.5s ease;
}
.staffInfo .overlay {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.staffInfo .closeButton {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  z-index: 103;
}
.staffInfo .closeButton img {
  width: 100%;
}
.staffInfo .staffInfoInner {
  position: absolute;
  top: 0;
  right: -100%;
  background-color: #363B40;
  width: 100%;
  max-width: 700px;
  height: 100%;
  padding: 70px 0 40px;
  z-index: 102;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .staffInfo .staffInfoInner {
    max-width: 580px;
  }
}
@media (max-width: 767px) {
  .staffInfo .staffInfoInner {
    max-width: 480px;
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .staffInfo .staffInfoInner {
    max-width: 90%;
    padding-bottom: 20px;
  }
}
.staffInfo .informationData {
  height: 100%;
  padding: 0 50px;
  overflow: auto;
}
@media (max-width: 767px) {
  .staffInfo .informationData {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 575px) {
  .staffInfo .informationData {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 479px) {
  .staffInfo .informationData {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.staffInfo .informationData__image img {
  width: 100%;
  max-width: 300px;
  border-radius: 0;
}
@media (max-width: 1199px) {
  .staffInfo .informationData__image img {
    max-width: 250px;
  }
}
@media (max-width: 479px) {
  .staffInfo .informationData__image img {
    max-width: 220px;
  }
}
.staffInfo .informationData__bio {
  padding: 30px 0 0;
}
.staffInfo .informationData__bio > * {
  color: #ffffff;
}
.staffInfo .informationData__bio > * a {
  color: #ffffff;
  text-decoration: underline;
}
.staffInfo .informationData__bio > * a:hover {
  text-decoration: none;
}
.staffInfo .informationData__bio h4 {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  font-family: "Big Shoulders", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
  padding-bottom: 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1199px) {
  .staffInfo .informationData__bio h4 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .staffInfo .informationData__bio h4 {
    font-size: 30px;
  }
}
.staffInfo .informationData__bio h6 {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 30px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .staffInfo .informationData__bio h6 {
    font-size: 13px;
    margin: 0 0 20px;
  }
}
.staffInfo .informationData__bio .socialIcon {
  display: inline-block;
}
.staffInfo .informationData__bio .socialIcon img {
  width: 24px;
  height: 24px;
}
.staffInfo.active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.staffInfo.active .overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.staffInfo.active .staffInfoInner {
  right: 0;
}

/*Detail Page*/
.detail_page_block {
  padding-top: 200px;
}
@media (max-width: 1299px) {
  .detail_page_block {
    padding-top: 130px;
  }
}
@media (max-width: 1199px) {
  .detail_page_block {
    padding-top: 80px;
  }
}

.common_content .innovations__head {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .common_content .innovations__head {
    margin-bottom: 25px;
  }
}
.common_content p {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .common_content p {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .common_content p {
    margin-bottom: 15px;
  }
}
.common_content p:last-child {
  margin-bottom: 0;
}
.common_content a:not(.btn) {
  color: #EA1D2D;
}
.common_content a:not(.btn):hover {
  text-decoration: underline;
}
.common_content ul li,
.common_content ol li {
  margin-bottom: 10px;
  text-align: left;
}
@media (min-width: 576px) {
  .common_content.two_column_list ul,
  .common_content.two_column_list ol {
    column-count: 2;
    column-gap: 40px;
  }
}

.video_wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .video_wrapper {
    margin-bottom: 40px;
  }
}
.video_wrapper video,
.video_wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  display: block;
}

.machine_block_tab.tabs-wrapper .tab-content .headingText h4 {
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .machine_block_tab.tabs-wrapper .tab-content .headingText h4 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .machine_block_tab.tabs-wrapper .tab-content .headingText h4 {
    font-size: 26px;
  }
}
.machine_block .tabs_buttons button {
  font-size: 30px;
  font-family: "Big Shoulders", sans-serif;
  border-bottom: #D9D9D9 1px solid;
  padding-block: 15px;
  display: block;
  width: 100%;
  text-align: left;
  position: relative;
}
@media (max-width: 991px) {
  .machine_block .tabs_buttons button {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .machine_block .tabs_buttons button {
    font-size: 22px;
    padding-block: 12px;
  }
}
@media (max-width: 575px) {
  .machine_block .tabs_buttons button {
    font-size: 20px;
  }
}
.machine_block .tabs_buttons button:after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  -webkit-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  transition: ease 0.3s;
}
.machine_block .tabs_buttons button.active {
  border-bottom-color: #EA1D2D;
  color: #EA1D2D;
}
.machine_block .tabs_buttons button.active:after {
  background-color: #EA1D2D;
  width: 100%;
}

.detail_faq_block .accordion .accordion-btn h4,
.detail_faq_block .accordion .accordion-btn .h4 {
  font-weight: 500;
}
.detail_faq_block .accordion .accordion-content {
  padding-top: 15px;
}

@media (max-width: 1305px) {
  .capabilities_block .g-5, .capabilities_block .gy-5 {
    --bs-gutter-y: 1.5rem;
  }
}
.capabilities_block_image {
  position: relative;
  overflow: hidden;
}
.capabilities_block_image:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #1E2022;
  background: linear-gradient(180deg, rgba(30, 32, 34, 0) 0%, rgba(30, 32, 34, 0.8) 100%);
  pointer-events: none;
}
.capabilities_block_image > img {
  -webkit-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  transition: ease 0.3s;
}
.capabilities_block_image:hover > img {
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.capabilities_block_image:hover:after {
  background: linear-gradient(180deg, rgba(30, 32, 34, 0) 0%, rgba(30, 32, 34, 0.9) 100%);
}
.capabilities_block_text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  z-index: 1;
}
.capabilities_block_text_title {
  position: relative;
  width: 100%;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  font-family: "Big Shoulders", sans-serif;
  font-size: 26px;
  color: #ffffff;
  font-weight: 500;
  padding-left: 40px;
  padding-block: 12px;
  border-top: rgba(255, 255, 255, 0.2) 1px solid;
}
@media (max-width: 767px) {
  .capabilities_block_text_title {
    font-size: 18px;
  }
}
.capabilities_block_text_title:before {
  content: "";
  background-image: url("../images/icon/right-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #EA1D2D;
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/*News page*/
.news_heroBanner {
  background-color: transparent;
}
@media (min-width: 1199px) {
  .news_heroBanner:after {
    max-height: 380px;
  }
}
.news_heroBanner > * {
  z-index: unset;
}
.news_heroBanner .newsbanner_contentblock {
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .news_heroBanner .newsbanner_contentblock {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.news_heroBanner .newsbanner_contentblock__image {
  height: 100%;
  clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
}
.news_heroBanner .newsbanner_contentblock__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.news_heroBanner .newsbanner_contentblock__text .headingText h4 {
  font-size: 45px;
  font-weight: 500;
  line-height: 1;
  font-family: "Big Shoulders", sans-serif;
}
@media (max-width: 1199px) {
  .news_heroBanner .newsbanner_contentblock__text .headingText h4 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .news_heroBanner .newsbanner_contentblock__text .headingText h4 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .news_heroBanner .newsbanner_contentblock__text .headingText h4 {
    font-size: 30px;
  }
}
.news_heroBanner .newsbanner_contentblock__text .headingText .label {
  font-size: 20px;
  font-weight: 700;
  font-family: "Big Shoulders", sans-serif;
  text-transform: uppercase;
  margin-block: 10px;
}
@media (max-width: 1199px) {
  .news_heroBanner .newsbanner_contentblock__text .headingText .label {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .news_heroBanner .newsbanner_contentblock__text .headingText .label {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .news_heroBanner .newsbanner_contentblock__text .headingText .label {
    font-size: 15px;
  }
}
.news_heroBanner .newsbanner_contentblock__text .headingText .label.primary {
  color: #EA1D2D;
}
.news_heroBanner .newsbanner_contentblock__text p {
  font-size: 16px;
}
.news_heroBanner .heroBanner__content.commonPT {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .news_heroBanner .heroBanner__content.commonPT {
    padding-top: 70px;
  }
}
@media (max-width: 575px) {
  .news_heroBanner .heroBanner__content.commonPT {
    padding-top: 50px;
  }
}
.news_heroBanner .news_detail_banner {
  margin-bottom: 45px;
}
.news_heroBanner .news_detail_banner .label {
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Big Shoulders", sans-serif;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .news_heroBanner .news_detail_banner .label {
    font-size: 35px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .news_heroBanner .news_detail_banner .label {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .news_heroBanner .news_detail_banner .label {
    font-size: 25px;
  }
}
.news_heroBanner .news_detail_banner .label.primary {
  color: #EA1D2D;
}
.news_heroBanner .news_detail_banner p {
  line-height: 1.5;
}
.news_heroBanner .news_detail_banner .h3 {
  font-size: 60px;
  font-weight: 500;
  font-family: "Big Shoulders", sans-serif;
  line-height: 1.1;
  margin-bottom: 25px;
}
@media (max-width: 1299px) {
  .news_heroBanner .news_detail_banner .h3 {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  .news_heroBanner .news_detail_banner .h3 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .news_heroBanner .news_detail_banner .h3 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .news_heroBanner .news_detail_banner .h3 {
    font-size: 30px;
  }
}
.news_heroBanner .news_detail_banner__date {
  font-size: 14px;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.news_block {
  margin-top: -150px;
  padding-top: 200px;
  z-index: 0;
}
@media (max-width: 1199px) {
  .news_block {
    margin-top: 0;
    padding-top: 100px;
  }
}
.news_block_item_detail {
  padding-top: 15px;
}
.news_block_item_detail h4 {
  font-weight: 600;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .news_block_item_detail h4 {
    font-size: 26px;
  }
}
@media (min-width: 575px) {
  .news_block_item_detail h4 {
    font-size: 20px;
  }
}
.news_block_item:hover h4 {
  color: #EA1D2D;
}
.news_block_item__date {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
}
.news_block__pagination {
  margin-top: 100px;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2px;
}
@media (max-width: 991px) {
  .news_block__pagination {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .news_block__pagination {
    margin-top: 40px;
  }
}
.news_block__pagination__link {
  background-color: #EA1D2D;
  width: 50px;
  height: 50px;
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.news_block__pagination__link:hover {
  opacity: 0.7;
}

@media (max-width: 1305px) {
  .news_block_list .g-5, .news_block_list .gy-5 {
    --bs-gutter-y: 1.5rem;
  }
}

/*# sourceMappingURL=style.css.map */
