﻿
/*----- HOME BANNER ------*/
.home-banner-slider {
    height: 270px;
}

  .home-banner-slider .splide__track,
  .home-banner-slider-with-image .splide__track {
    height: 100%;
  }

  .home-banner-slider .home-banner-slider__slide,
  .home-banner-slider-with-image .home-banner-slider__slide {
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    pointer-events: auto;
  }


.home-banner-slider__slide__container{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    pointer-events: auto;

}

.home-banner-slider .splide__pagination,
.home-banner-slider-with-image .splide__pagination {
  bottom: 12px;
}

    .home-banner-slider .image-box {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

        .home-banner-slider .image-box .round-area {
            position: absolute;
            bottom: -80px;
            left: 50%;
            transform: translateX(-50%);
            width: 560px;
            height: 560px;
            border-radius: 50%;
            background-color: #fff;
            z-index: 1;
            animation: round-shape-anim 1s linear infinite;
            filter: drop-shadow(-1px 3px 65px rgba(237, 237, 237, 0.35));
        }


        .home-banner-slider .image-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            vertical-align: middle;
            position: absolute;
            bottom: 0px;
            left: 0;
            z-index: 2;
        }

    .home-banner-slider .slider-details {
        height: 100%;
    }

        .home-banner-slider .slider-details .slider-details__heading {
            font-size: 24px;
            line-height: 24px;
            text-transform: uppercase;
            text-align: center;
        }

        .home-banner-slider .slider-details .slider-details__info {
            max-width: 100%;
            margin: 16px 0;
            font-size: 14px;
            line-height: 24px;
            text-align: center;
        }

        .home-banner-slider .slider-details .slider-details__button__container{
            display: flex;
            justify-content: center;
            margin-top: 1.5rem;
        }
.home-banner-slider .home-banner-slider__slide__content__left {
  padding: 0 10px;
}
.home-banner-slider .home-banner-slider__slide__content__right {
    height: 100%;
    display: none;
}

.home-banner-slider .slider-details__button__item {
  width: 100%;
  background-color: #4ab2f1;
  text-align: center;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  padding: 10px;
}
  .home-banner-slider .slider-details__button__item:hover {
  
    background-color: #248ece;
  }
.home-banner-slider .slider-details__button__item .icon {
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .4s;
}

.home-banner-slider .button--primary{
    display: flex;
    align-items: center;
}

.home-banner-slider .slider-details__button__item .icon .bx-chevron-right:before{
    font-size: 20px;
}

@keyframes round-shape-anim-tab {
  0% {
        -webkit-box-shadow: 0 0 0 0 rgba(194, 167, 78, .08), 0 0 0 15px rgba(194, 167, 78, .08), 0 0 0 35px rgba(194, 167, 78, .08);
        box-shadow: 0 0 0 0 rgba(194, 167, 78, .08), 0 0 0 15px rgba(194, 167, 78, .08), 0 0 0 35px rgba(194, 167, 78, .08);
    }

    100% {
        -webkit-box-shadow: 0 0 0 15px rgba(194, 167, 78, .08), 0 0 0 35px rgba(194, 167, 78, .08), 0 0 0 55px transparent;
        box-shadow: 0 0 0 15px rgba(194, 167, 78, .08), 0 0 0 35px rgba(194, 167, 78, .08), 0 0 0 55px transparent;
    }
}

@keyframes round-shape-anim {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(194, 167, 78, .08), 0 0 0 20px rgba(194, 167, 78, .08), 0 0 0 40px rgba(194, 167, 78, .08);
        box-shadow: 0 0 0 0 rgba(194, 167, 78, .08), 0 0 0 20px rgba(194, 167, 78, .08), 0 0 0 40px rgba(194, 167, 78, .08);
    }

    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(194, 167, 78, .08), 0 0 0 40px rgba(194, 167, 78, .08), 0 0 0 60px transparent;
        box-shadow: 0 0 0 20px rgba(194, 167, 78, .08), 0 0 0 40px rgba(194, 167, 78, .08), 0 0 0 60px transparent;
    }
}

.slider-image-without-content{
    width: 100%;
    height: 100%;
}

.home-banner-slider__slide .image-desktop {
  display: none;
}

.home-banner-slider__slide .image-mobile {
  display: block;
}