﻿
/*----- 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 .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%;
  text-align: center;
  font-size: 15px;
  color: var(--primary-p400);
  border: 1px solid var(--primary-p400);
  text-transform: uppercase;
  padding: 10px;
}

.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-with-image .image-desktop {
  display: none;
}

.home-banner-slider-with-image .image-mobile {
  display: block;
}


/*================ Medium devices (tablets, 768px and up) ================*/
@media only screen and (min-width: 768px) {
  .home-banner-slider-with-image .image-desktop {
    display: block;
  }

  .home-banner-slider-with-image .image-mobile {
    display: none;
  }

  /*************** HOME BANNER SLIDER ****************/
  .home-banner-slider__slide__container {
    justify-content: start;
  }

  .home-banner-slider .home-banner-slider__slide {
    background-image: url('@(banner.BackgroundUrl)');
  }

  .home-banner-slider .home-banner-slider__slide__content__left {
    width: 50%;
    padding: 0;
  }

  .home-banner-slider .slider-details .slider-details__heading {
    font-size: 24px;
    line-height: 28px;
    text-align: start;
  }

  .home-banner-slider .slider-details .slider-details__button__container {
    justify-content: start;
  }



  .home-banner-slider .slider-details .slider-details__info {
    text-align: start;
    line-height: 22px;
  }

  .home-banner-slider .image-box .round-area {
    width: 260px;
    height: 260px;
    animation: round-shape-anim-tab 1s linear infinite;
  }

  .home-banner-slider .home-banner-slider__slide__content__right {
    width: 50%;
    display: block;
  }
}

/*================ Large devices (desktops, 992px and up) ================*/
@media only screen and (min-width: 992px) {
  /*************** HOME BANNER SLIDER ****************/
  .home-banner-slider {
    height: 370px;
  }

    .home-banner-slider .slider-details .slider-details__heading {
      font-size: 42px;
      line-height: 45px;
    }

    .home-banner-slider .image-box .round-area {
      width: 360px;
      height: 360px;
    }
}

/*================ X-Large devices (large desktops, 1200px and up) ================*/
@media only screen and (min-width: 1200px) {
  /*************** HOME BANNER SLIDER ****************/
  .home-banner-slider {
    height: 462px;
  }

    .home-banner-slider .splide__pagination,
    .home-banner-slider-with-image .splide__pagination {
      bottom: 24px;
    }

    .home-banner-slider .slider-details .slider-details__heading {
      font-size: 58px;
      line-height: 68px;
    }

    .home-banner-slider .slider-details .slider-details__info {
      max-width: 90%;
      margin: 30px 0;
      font-size: 18px;
      line-height: 30px;
      text-align: start;
    }

    .home-banner-slider .image-box .round-area {
      width: 436px;
      height: 436px;
    }
}






.home-banner.section {
  padding-top: 0px;
  background-color: var(--primary-p100);
}

.home-banner-slider {
  height: 324px;
}

.home-banner-slider .home-banner-slider__slide__content__left {
  margin-left: 0;
}

.home-banner-slider .slider-details .slider-details__heading {
  color: var(--primary-p400);
  line-height: 32px;
  font-weight: 600;
}

.home-banner-slider .slider-details__button__item {
  font-size: 14px;
  padding: 6px 10px;
}

.home-banner-slider .slider-details__button__item:hover {
  color: #fff;
  background-color: var(--primary-p400);
}

  .home-banner-slider .swiper-button-next svg,
  .home-banner-slider .swiper-button-prev svg {
    width: 24px;
  }

@media only screen and (min-width: 768px) {
  .home-banner-slider .slider-details .slider-details__heading {
    font-size: 24px;
    line-height: 32px;
  }
}

@media only screen and (min-width: 992px) {
  .home-banner-slider {
    height: 370px;
  }

    .home-banner-slider .slider-details .slider-details__heading {
      font-size: 32px;
      line-height: 42px;
    }
}

@media only screen and (min-width: 1200px) {
  .home-banner-slider .slider-details .slider-details__heading {
    font-size: 42px;
    line-height: 60px;
  }

  .home-banner-slider .slider-details__button__item {
    font-size: 16px;
    color: var(--primary-p400);
    padding: 12px 24px;
  }
}

@media only screen and (min-width: 1400px) {
  .home-banner-slider .image-box .round-area {
    width: 560px;
    height: 560px;
  }

  .home-banner-slider .slider-details .slider-details__heading {
    font-size: 48px;
    line-height: 64px;
  }

  .home-banner-slider {
    height: 570px;
  }
}