/* Carousel */

.s-block:nth-of-type(1) {
    margin-top: 0 !important;
    margin-bottom: 3rem !important
}

.s-block--photos-slider .s-slider-block__title-nav {
    display: none !important;
}

.s-block--photos-slider * {
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.s-block--photos-slider .swiper-slide {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}

.NG-categories .lg\:grid-cols-4 {
    grid-template-columns: repeat(3,minmax(0,1fr));
    max-width: 800px;
    margin: auto;
}

.NG-categories .card-back-overlay {
    background: transparent;
}

@media(max-width:768px){
  .NG-categories .lg\:grid-cols-4 {
    gap:0.5rem !Important
}
  .NG-categories-1 .card-inner {
    height: 200px;
}
}

section.NG-categories-1.NG-categories.ng-s-block {
    background: url(https://i.ibb.co/d0HxZVp9/Group-1.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
}

/* Categories */

.s-block--banners .grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3rem !Important
}
.s-block--banners .lazy__bg {
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.s-block--banners .banner-entry {
    height: 300px;
}
.s-block--banners .banner-entry:nth-child(3) {
    grid-column: 1/3 !Important;
    width:100% !Important;
    height: 550px !important;
}
@media (max-width: 992px) {
    .s-block--banners .banner-entry {
        height: 200px;
    }
}
@media (max-width: 480px) {
    .s-block--banners .banner-entry {
        height: 100px;
    }
    .s-block--banners .banner-entry:nth-child(3) {
    height: 170px !important;
}
  .s-block--banners .grid {
    row-gap: 0 !important;
}
}
@media (min-width: 640px) {
    .two-row .banner-entry:first-child {
        grid-row: span 1 / span 1;
    }

}

/* Transparent Banner */
.banner-entry,
.banner--fixed img {
    background-color: transparent !important;
}

.GL-promotional-banner .object-cover {
    -o-object-fit: fill;
    object-fit: fill;
}

@media (max-width: 1023px) {
    .GL-promotional-banner .img-height:first-child {
        height: 280px;
    }
}

.NG-testimonials .container  {
    background: #3e0557;
    padding: 1rem;
    border-radius: 1rem;
}

.NG-testimonials .subtext ,
.NG-testimonials #testimonials-heading-7{
  color:#fff !Important
}

/* Hover Effect */

.banner-entry > div {
    background-repeat: no-repeat;
    display: inline-block;
    transition: 0.3s;
}

.banner-entry > div:after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.13) 77%,
        rgba(255, 255, 255, 0.5) 92%,
        rgba(255, 255, 255, 0) 100%
    );
}

.banner-entry > div:hover:after {
    opacity: 1;
    left: 130%;
    transition-property: left, top, opacity;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-timing-function: ease;
}

.banner-entry > div:active:after {
    opacity: 0;
}