:root {
    --swiper-navigation-size: 34px;
}

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

/* Showcase 2 Styles */
.showcase_2 {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
}

.showcase_2_slider {
    width: 100%;
    position: relative;
}

.showcase_2_slider .swiper-slide {
    width: 100%;
    position: relative;
}

.showcase_2_slider .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase_2_slider .swiper-button-next,
.showcase_2_slider .swiper-button-prev {
    color: #CE0000;
}

.showcase_2_slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #CE0000;
}

@media screen and (max-width: 767px) {
    .showcase_2_slider .swiper-button-prev {
        left: 20px;
    }

    .showcase_2_slider .swiper-button-next {
        right: 20px;
    }
}

/* Banner Slider Styles */
.banner {
    position: relative;
    margin-bottom: 30px;
    background-color: #2a3f67;
}

.banner__slide {
    width: 100%;
    position: relative;
}

.banner__slide-content {
    position: relative;
}

.banner__slide-figure {
    margin: 0;
    padding: 0;
}

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

.banner__slide-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    font-size: 24px;
    line-height: 1.4;
    max-width: 80%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
}

.banner__slide .swiper-button-next,
.banner__slide .swiper-button-prev {
    color: #fff;
}


@media screen and (max-width: 767px) {
    .banner__slide-text {
        font-size: 18px;
        bottom: 20px;
        left: 20px;
        padding: 10px;
    }
}


.banner__slide-figure {
    width: 100%;
    height: 100%;
}

.banner__slide-img {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 139px);
    -o-object-fit: cover;
    object-fit: cover;
}

.banner__slide .swiper-slide {
    height: auto;
}

.banner__slide .swiper-slide:active {
    cursor: -webkit-grab;
    cursor: grab;
}

.banner__slide .swiper-slide-active .banner__slide-text {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.banner__slide-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.banner__slide-text {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: calc(100% - 8rem);
    color: #fff;
    font-size: 35px;
    font-weight: 900;
    line-height: 1.17;
    text-align: center;
    text-shadow: 0 0 43.1px rgba(0, 0, 0, 0.38);
    text-transform: uppercase;
    padding: 1rem 2rem;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, -webkit-transform 1s;
    transition: transform 1s, opacity 1s;
    transition: transform 1s, opacity 1s, -webkit-transform 1s;
    opacity: 0;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

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

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border: solid 2px #dbdee0;
    background-color: rgba(0, 0, 0, 0);
    opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: solid 2px #2a3f67;
    background-color: #2a3f67;
}

.banner__slide .swiper-button-next,
.banner__slide .swiper-button-prev {
  color: #fff;
  width: calc(var(--swiper-navigation-size) * 1.5);
  height: calc(var(--swiper-navigation-size) * 1.5);
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: visibility 0.4s ease, opacity 0.4s ease;
  transition: visibility 0.4s ease, opacity 0.4s ease;
}

@media (max-width: 575px) {
    .banner__slide {
      padding-bottom: 2.5rem;
    }
    .banner__slide-text {
      max-width: 100%;
      position: static;
      font-size: 24px;
      padding: 1rem 0 0.5rem;
      background: none;
      margin: 0 auto !important;
    }
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        border: solid 2px #CE0000;
        background-color: #CE0000;
    }
  }