/*
  DEVELOPER NOTE:
  The following declarations were originally provided (2023) as is via 3rd party vendor.
  As structured here, they are in REVERSE of what is considered modern, mobile-first
  architecture and approach. Thus any of the declarations NOT encapsulated within
  a media query should be considered as a potential modifier whose specificity
  targets will be affected at any point within the bounds of a users min and max
  viewport widths.
*/
.acf-block-slider.main-carousel {
counter-reset: carousel-cell;
position:relative;
overflow-x: hidden;
}

.acf-block-slider .carousel-cell {
    height: auto;
    width: 100%;
    counter-increment: carousel-cell;
}
.acf-block-slider .carousel-cell:before {
    content: counter(carousel-cell);
    display:none;
}

.acf-block-slider .carousel-cell.bg-image {
    background-position: center;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.70);
    background-blend-mode: multiply;
}
.acf-block-slider .carousel-cell.gallery-images {
    background-color: rgba(0, 0, 0, 0.70);
    background-blend-mode: multiply;
}

.acf-block-slider .carousel-cell .slide-content {
    width:1270px;
    height:600px;
    margin:0 auto;
    padding:70px 0;
    display:flex;
    flex-direction:row;
    justify-items:flex-start;
}

.acf-block-slider .slide-text {
    width: 70%;
    color:#ffffff;
    height:655px;
    max-width: 700px;
}

*:lang(ta-IN) .acf-block-slider .slide-text { /* tamil only */
    width: 80%;
}

*:lang(ta-IN) .acf-block-slider .slide-content .slide-text h2 { /* tamil only */
    font-size: 60px;
}


.acf-block-slider .slide-content .slide-text h2 {
    font-size: 67.5px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    padding-bottom: 0px;
}


.acf-block-slider .slide-content ul {
    display:flex;
    flex-wrap:wrap;
    flex-direction:row;
    padding:20px;
    width:50%;
    margin:0;
    /* height:655px; */
}
.acf-block-slider .slide-content ul li {
    width:33%;
    max-width:300px;
    height:auto;
    max-height:200px;
    list-style-type:none;
    display:flex;
    flex-wrap:nowrap;
    flex-direction:row;
    justify-content: space-around;
}
.acf-block-slider .slide-content ul li img {
    align-self:center;
    mix-blend-mode:multiply;
    width:90%;
    height:auto;
}
.slide-description {margin-bottom:15px; font-size:21.6px;}

*:lang(ta-IN) .slide-description { font-size: 18px; }



.slide-description a {
    color: #ffffff;
}

/* custom slide nav */

.slide-nav {
    width:100%;
    position: relative;
    margin-top: -100px !important;
    margin-bottom: 100px !important;
    display: flex;
    max-width:1270px;
    margin:0 auto;
    /* position:absolute; z-index:10;
    bottom:100px;
    left:100px; */
}
.slide-nav ul.custom-nav{
    display:flex;
    flex-direction:row;
    align-items:flex-start;
    margin-top: 10px;
}
.slide-nav ul.custom-nav li {
    font-size:16px;
    font-weight:500;
    color:white;
    border-bottom: 3px solid var(--wp--preset--color--secondary-light);
    width:auto;
    list-style-type:none;
    font-family: "Open Sans";
    padding: 0 0 4px 0;
    margin-right:30px;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor:pointer;
}

.slide-nav ul.custom-nav li.is-selected,
.slide-nav ul.custom-nav li:hover {border-bottom: 4px solid var(--wp--preset--color--primary-yellow);}

.slide-nav .button { border: 0; height: 50px; margin-right: 6px;  }

.slide-text .nav-term {
    font-size:16px;
    font-weight:500;
    color:var(--wp--preset--color--primary-yellow);
    width:auto;
    font-family: "Open Sans";
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor:pointer;
    padding-bottom: 0;
}

/* .acf-block-slider button { border: 0; } */

.slide-nav .button.previous,
.slide-nav .button.next {
    background: black;
    color: white;
    padding: 0; width: 50px;
}
.slide-nav .button.previous i,
.slide-nav .button.next i{
padding: 15px 0;}

.slide-nav .button.previous:hover,
.slide-nav .button.next:hover {
    background: var(--wp--preset--color--primary-yellow);
    color: black;
    cursor: pointer;
}

.acf-block-slider .yellow-whisker {
    /* width:125px; */
    width:50%;
    transform: translateX(calc(-70% + 125px));
 }