:root {
    --primary: #ef00a1;
    --primary_dark: #bd007e;
    
    --secondary: #0072bc;

    --black: #000000;
    --white: #ffffff;


}





/*==================================================
    HERO - PRIMARY
==================================================*/

.hero-wrapper{
    position:relative;
    min-height:100vh;
    /* background:#fff; */
    overflow:hidden;
    isolation:isolate;
}

.hero-wrapper .container{
    min-height:100vh;
    padding-top:100px;
    padding-bottom:130px;
}

.hero-bg{
    position:absolute;
    inset:0;

    background-image:url("../images/hero_bg_desktop.jpg");
    background-position: center bottom;
    background-size:cover;
    background-repeat:no-repeat;

    opacity:1;
    z-index:-1;

    transform:scale(1);
    transform-origin: center bottom;
    will-change:transform;
}

.hero-wrapper > *:not(.hero-bg){
    position:relative;
    z-index:2;
}

/* Mobile */
@media (max-width: 991.98px){
    .hero-bg{
        background-image:url("../images/hero_bg_mobile.jpg");
    }
}



/* CONTENT */
.hero-subtitle{
    padding-top: 5rem;
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:18px;
    font-weight:500;
    margin-bottom:30px;
}

.hero-subtitle i{
    color:var(--primary);
}

.hero-title{
    font-size:clamp(48px,7vw,70px);
    line-height:1.05;
    font-weight:700;
    margin-bottom:30px;
}

.hero-title span{
    color:var(--primary);
}

.hero-description{
    max-width:700px;
    margin:0 auto;
    font-size:20px;
    line-height:1.8;
}

/* SCROLL DOWN */
.hero-scroll{
    display:inline-flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin-top:60px;
    text-decoration:none;
}

.hero-scroll i{
    color:var(--primary);
    font-size:30px;
    line-height:1;
}

/* First Arrow */
.hero-scroll i:first-child{
    animation:heroArrow1 1.8s infinite;
}

/* Second Arrow */
.hero-scroll i:last-child{
    margin-top:-12px;
    animation:heroArrow2 1.8s infinite;
}

/* MARQUEE */
.hero-marquee{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    overflow:hidden;
    background:var(--primary);
    color:#fff;
    padding:18px 0;
}

.hero-track{
    display:flex;
    align-items:center;
    gap:70px;
    width:max-content;
    flex-wrap:nowrap;
    will-change:transform;
}

.hero-point{
    display:flex;
    align-items:center;
    gap:14px;
    white-space:nowrap;
    font-size:20px;
    font-weight:500;
}

.hero-point i{
    font-size:28px;
}

/* ANIMATIONS */
@keyframes heroArrow1{
    
    0%{
        transform:translateY(0);
        opacity:1;
    }

    60%{
        transform:translateY(14px);
        opacity:.3;
    }

    100%{
        transform:translateY(0);
        opacity:1;
    }
}

@keyframes heroArrow2{

    0%{
        transform:translateY(-10px);
        opacity:0;
    }

    50%{
        transform:translateY(8px);
        opacity:1;
    }

    100%{
        transform:translateY(20px);
        opacity:0;
    }
}

/* RESPONSIVE */
@media(max-width:991px){

    .hero-wrapper .container{
        padding-top:80px;
        padding-bottom:110px;
    }

    .hero-description{
        font-size:18px;
    }

    .hero-point{
        font-size:18px;
    }

    .hero-point i{
        font-size:24px;
    }
}





/*==================================================
    HERO - SUBPAGES
==================================================*/

.hero-subpage-wrapper{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    isolation:isolate;
}

.hero-subpage-wrapper .container{
    min-height:100vh;
    position:relative;
    z-index:2;
}

.hero-subpage-wrapper .row{
    min-height:100vh;
    padding-bottom:90px;   /* Distance from bottom */
}

.hero-subpage-bg{
    position:absolute;
    inset:0;

    /* background-image:url("../images/core_pages/about_intro.jpg"); */
    background-position:center bottom;
    background-size:cover;
    background-repeat:no-repeat;

    transform:scale(1);
    transform-origin:center bottom;
    will-change:transform;

    z-index:0;
}

/* Black Overlay */
.hero-subpage-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(
        0deg,
        rgba(0,0,0,.9) 0%,
        rgba(0,0,0,.6) 35%,
        rgba(0,0,0,.1) 55%,
        rgba(0,0,0,.1) 100%
    ) !important;
    pointer-events:none;
}

.hero-subpage-wrapper > *:not(.hero-subpage-bg){
    position:relative;
    z-index:2;
}

/* Mobile */
@media (max-width:991.98px){

    .hero-subpage-bg{
        /* background-image:url("../images/core_pages/about_intro.jpg"); */
    }

}

/* CONTENT */

.hero-subpage-subtitle{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:18px;
    font-weight:500;
    margin-bottom:25px;
    color:#fff !important;
}

.hero-subpage-subtitle i{
    color:#fff !important;
}

.hero-subpage-title{
    font-size:clamp(48px,7vw,70px);
    line-height:1.05;
    font-weight:700;
    color:#fff !important;
}

.hero-subpage-title span{
    font-weight:400;
    color:#fff !important;
}

.hero-subpage-description{
    max-width:650px;
    font-size:20px;
    line-height:1.8;
    color:rgba(255,255,255,.92);
}

@media(max-width:991px){

    .hero-subpage-wrapper,
    .hero-subpage-wrapper .container,
    .hero-subpage-wrapper .row{
        min-height:80vh;
        height:80vh;
    }

    .hero-subpage-wrapper .row{
        padding-bottom:60px;
    }

    .hero-subpage-title{
        font-size:42px;
    }

    .hero-subpage-description{
        font-size:18px;
    }

    .hero-subpage-point{
        font-size:18px;
    }

    .hero-subpage-point i{
        font-size:24px;
    }
}




/*==================================================
    HEADER
==================================================*/

/* .site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:#fff;
    transition:all .35s ease;
} */

.site-header{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    width:min(1600px,calc(100% - 80px));
    background:#fff;
    z-index:9999;
    transition:.35s;
    border-radius: 50px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* .site-header.scrolled{
    border-bottom:1px solid #e9e9e9;
} */

.site-header.scrolled{
    top:0;
    width:100%;
    max-width:none;
    transform:translateX(-50%);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-radius: 0 0 25px 25px;
}

/* HEADER LAYOUT */
.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:90px;
    position:relative;
}

/* LOGO */
.site-logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.site-logo img{
    height:55px;
    width:auto;
}

/* NAVIGATION */
.site-nav{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
}

.site-menu{
    display:flex;
    align-items:center;
    list-style:none;
    margin:0;
    padding:0;
}

.site-menu>li{
    position:relative;
    margin:0 18px;
}

.site-menu>li>a{
    display:block;
    padding:34px 0;
    color:#222;
    font-size:16px;
    font-weight:500;
    text-decoration:none;
    transition:.3s;
}

.site-menu>li>a:hover{
    color:var(--primary);
}

/* DROPDOWN*/
.sub-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:250px;
    background:#fff;
    list-style:none;
    margin:0;
    padding:12px 0;
    border-radius:12px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.3s;
    z-index:100;
}

.menu-item-has-children:hover>.sub-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.sub-menu li{
    position:relative;
}

.sub-menu a{
    display:block;
    padding:12px 22px;
    color:#333;
    text-decoration:none;
    transition:.3s;
}

.sub-menu a:hover{
    background:#f8f8f8;
    color:var(--primary);
}

/* Nested */
.sub-menu .sub-menu{
    left:100%;
    top:0;
}

/* CTA */
.header-action{
    margin-left:auto;
}

/* TOGGLE */
.site-toggle{
    display:none;
    width:42px;
    height:42px;
    padding:0;
    border:none;
    background:none;
    cursor:pointer;
    position:relative;
}

.site-toggle span{
    position:absolute;
    left:8px;
    width:26px;
    height:2px;
    background:#222;
    transition:.35s;
}

.site-toggle span:first-child{
    top:15px;
}

.site-toggle span:last-child{
    top:25px;
}

/* Animated Toggle */
.site-toggle.active span:first-child{
    top:20px;
    transform:rotate(45deg);
}

.site-toggle.active span:last-child{
    top:20px;
    transform:rotate(-45deg);
}


/* MOBILE */
@media(max-width:991px){

    .header-inner{
        min-height:75px;
    }

    .site-logo img{
        height:46px;
    }

    .header-action{
        display:none;
    }

    .site-toggle{
        display:block;
    }

    .site-nav{
        position:absolute;
        left:0;
        right:0;
        top:100%;
        transform:none;
        background:#fff;
        border-bottom:1px solid #ececec;
        max-height:0;
        overflow:hidden;
        transition:max-height .45s ease;
    }

    .site-nav.open{
        max-height:90vh;
        /* display:block; */
    }

    .site-menu{
        display:block;
    }

    .site-menu>li{
        margin:0;
        border-top:1px solid #f2f2f2;
    }

    .site-menu>li>a{
        padding:16px 20px;
    }

    .sub-menu{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        border-radius:0;
        display:none;
        padding:0;
        min-width:100%;
    }

    .sub-menu.open{
        display:block;
    }

    .sub-menu a{
        padding-left:40px;
    }

    .sub-menu .sub-menu a{
        padding-left:60px;
    }
}




/*==================================================
    INFO WRAPPER
==================================================*/

.info-wrapper{
    padding:100px 0;
}

/* IMAGE */
.info-image{
    width:100%;
    min-height:100%;
    border-radius:20px;
    overflow:hidden;
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
    transition:transform .6s ease;
}

.info-image:hover{
    transform:scale(1.08);
}

/* CONTENT */
.info-content{
    padding-left:30px;
}

.info-content .section-subtitle {
    display:inline-block;
    margin-bottom:20px;
    font-size:14px;
    letter-spacing:2px;
}

.info-content .section-subtitle i{
    color: #ef00a1;
}

.info-content h2{
    font-size:46px;
    line-height:1.3;
    font-weight:700;
    margin-bottom:25px;
}

.info-content h2 span{
    font-size:52px;
    font-weight:400;
}

.info-content p{
    margin-bottom:25px;
}

/* HIGHLIGHT CARD */
.info-highlight{
    padding:40px;
    border-radius:20px;
    background:linear-gradient(135deg, #ff4fb2, var(--primary));
    color:#fff;
}

.info-highlight .bi-quote{
    display:inline-block;
    font-size:36px;
    margin-bottom:10px;
}

.info-highlight p{
    color:#fff;
    font-size:18px;
    margin-bottom:35px;
}

/* AUTHOR */
.highlight-author{
    display:flex;
    align-items:center;
}

.highlight-author img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    object-position:center;
    margin-right:18px;
    filter: grayscale(100%);
}

.highlight-author h6{
    margin:0;
    font-size:18px;
    color:#fff !important;
}

.highlight-author span{
    display:block;
    margin-top:4px;
    color:rgba(255,255,255,.85);
    font-size:15px;
}

/* RESPONSIVE */

/* Tablet and Mobile */
@media (max-width: 991.98px) {

    .info-wrapper{
        padding:80px 0;
    }
    .info-content{
        padding-left:0;
    }
    .info-content h2{
        font-size:35px !important;
        line-height: 1.3;
    }
    .info-content h2 span{
        font-size:35px;
    }
    .info-content h4 {
        padding-bottom: 5px;
        font-size: 20px;
    }
    .info-image{
        min-height:420px;
    }
    .info-highlight{
        padding:30px;
    }
    .info-highlight p{
        font-size:16px;
    }
    .highlight-author h6{
        font-size:16px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {

}





/*==================================================
    PARALAX CARDS WRAPPER
==================================================*/
.paralax-cards-wrapper{
    position:relative;
    padding:120px 0;
    overflow:visible;
}

/* LEFT SECTION */
.paralax-content{
    position:sticky;
    top:100px;
}

.paralax-content .section-subtitle {
    display:inline-block;
    margin-bottom:20px;
    font-size:14px;
    letter-spacing:2px;
}

.paralax-content .section-subtitle i{
    color: #ef00a1;
}

.paralax-content h2{
    font-size:46px;
    line-height:1.3;
    font-weight:700;
    margin-bottom:25px;
}

.paralax-content h2 span{
    font-size:52px;
    font-weight:400;
}

.paralax-content p{
    margin-bottom:30px;
}


/* RIGHT SECTION */
.paralax-cards{
    position: static;
    margin-top: 0;
}

/* STACK CARD */
.stack-card{
    position:relative;
    margin-bottom:35px;
    overflow:hidden;
    transform-origin:center top;
    will-change:transform;
}

/* Card Content */
.card-inner{
    height:100%;
    padding-left:50px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* Card Image */
.card-image-wrapper {
    height:350px;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow:hidden;
}

.card-image-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform .6s ease;
}


/* STACK EFFECT */
.stack-card:nth-child(1){
    z-index:1;
}

.stack-card:nth-child(2){
    z-index:2;
}

.stack-card:nth-child(3){
    z-index:3;
}

.stack-card:nth-child(4){
    z-index:4;
}

.stack-card.active{
    transform:translateY(-40px) scale(.96);
}


/* RESPONSIVE */

/* Tablet and Mobile */
@media (max-width: 991.98px) {

    .paralax-cards-wrapper{
        padding:80px 0;
    }
    .paralax-content{
        position:relative;
        top:auto;
        margin-bottom:60px;
    }
    .paralax-content h2{
        font-size:35px !important;
        line-height: 1.3;
    }
    .paralax-content h2 span{
        font-size:35px;
    }
    .stack-card{
        position:relative;
        top:auto;
        height:auto;
        margin-bottom:30px;
        transform:none !important;
    }
    .card-inner{
        padding-left:20px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {

}

/* Setting Dark Colors */

.paralax-cards-wrapper-dark {
    background-color: #161a33;
}

.paralax-cards-wrapper-dark .paralax-content .section-subtitle {
    color: #fff;
}

.paralax-cards-wrapper-dark .paralax-content .section-subtitle i{
    color: #ef00a1;
}

.paralax-cards-wrapper-dark .paralax-content h2{
    color: #fff !important;
}

.paralax-cards-wrapper-dark .paralax-content h2 span{
    font-weight:300;
    color: #fff;
}

.paralax-cards-wrapper-dark .paralax-content p{
    color: rgba(255, 255, 255, 0.8);
}

.paralax-cards-wrapper-dark .paralax-cards .paralax-icon {
    color: #ef00a1;
}

.paralax-cards-wrapper-dark .paralax-cards h3 {
    color: #ef00a1 !important;
}

.paralax-cards-wrapper-dark .paralax-cards p {
    color: rgba(255, 255, 255, 0.8);
}




/*==================================================
    PROMISE WRAPPER
==================================================*/
.promise-wrapper{
    padding:120px 0;
}

.promise-content {
    
}

.promise-content .section-subtitle {
    display:inline-block;
    margin-bottom:20px;
    font-size:14px;
    letter-spacing:2px;
}

.promise-content .section-subtitle i{
    color: #ef00a1;
}

.promise-content h2{
    font-size:46px;
    line-height:1.3;
    font-weight:700;
    margin-bottom:25px;
}

.promise-content h2 span{
    font-size:52px;
    font-weight:400;
}

.promise-content p{
    margin-bottom:30px;
}

.promise-card {
    display: flex;
}

.promise-card h4 {
    padding-bottom: 10px;
    font-size: 22px;
}

.promise-card p {
    padding-bottom: 30px;
}

.promise-icon {
    padding: 0 20px;
    font-size: 30px;
    color: #ef00a1;
}

/* RESPONSIVE */

/* Tablet and Mobile */
@media (max-width: 991.98px) {

    .promise-wrapper{
        padding:80px 0;
    }
    .promise-content {
        margin-bottom:60px;
    }
    .promise-content h2{
        font-size:35px !important;
        line-height: 1.3;
    }
    .promise-content h2 span{
        font-size:35px;
    }
    .promise-content p {
        margin-bottom:30px;
    }
    .promise-card p {
        padding-bottom: 30px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {

}


/* Setting Dark Colors */

.promise-wrapper-dark {
    background-color: #161a33;
}

.promise-wrapper-dark .promise-content .section-subtitle {
    color: #fff;
}

.promise-wrapper-dark .promise-content .section-subtitle i{
    color: #ef00a1;
}

.promise-wrapper-dark .promise-content h2{
    color: #fff !important;
}

.promise-wrapper-dark .promise-content h2 span{
    font-weight:300;
    color: #fff;
}

.promise-wrapper-dark .promise-content p{
    color: rgba(255, 255, 255, 0.8);
}

.promise-wrapper-dark .promise-card .promise-icon {
    color: #ef00a1;
}

.promise-wrapper-dark .promise-card h4 {
    color: #fff !important;
}

.promise-wrapper-dark .promise-card p {
    color: rgba(255, 255, 255, 0.8);
}




/*==================================================
    WHY WRAPPER
==================================================*/
.why-wrapper{
    padding:120px 0;
}

.why-content {
    margin-bottom:80px;
}

.why-content .section-subtitle {
    display:inline-block;
    margin-bottom:20px;
    font-size:14px;
    letter-spacing:2px;
}

.why-content .section-subtitle i{
    color: #ef00a1;
}

.why-content h2{
    font-size:46px;
    line-height:1.3;
    font-weight:700;
    text-align: center;
}

.why-content h2 span{
    font-size:52px;
    font-weight:400;
}

.why-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.why-card {
    display: flex;
}

.why-card .why-number {
    padding: 0 20px;
    font-size: 25px;
    font-weight: 600;
    color: #ef00a1 !important;
}

.why-card h4 {
    padding-bottom: 10px;
    font-size: 22px;
}

.why-card p {
    padding-bottom: 30px;
}

/* RESPONSIVE */

/* Tablet and Mobile */
@media (max-width: 991.98px) {

    .why-wrapper{
        padding:80px 0;
    }
    .why-content {
        margin-bottom:60px;
    }
    .why-content h2{
        font-size:35px !important;
        line-height: 1.3;
        text-align: start;
    }
    .why-content h2 span{
        font-size:35px;
    }
    .why-card h4 {
        
    }
    .why-card p {
        padding-bottom: 30px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {

}


/* Setting Dark Colors */

.why-wrapper-dark {
    background-color: #161a33;
}

.why-wrapper-dark .why-content .section-subtitle {
    color: #fff;
}

.why-wrapper-dark .why-content .section-subtitle i{
    color: #ef00a1;
}

.why-wrapper-dark .why-content h2{
    color: #fff !important;
}

.why-wrapper-dark .why-content h2 span{
    font-weight:300;
    color: #fff;
}

.why-wrapper-dark .why-content p{
    color: rgba(255, 255, 255, 0.8);
}

.why-wrapper-dark .why-card .why-number {
    color: #ef00a1;
}

.why-wrapper-dark .why-card h4 {
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.why-wrapper-dark .why-card p {
    color: rgba(255, 255, 255, 0.8);
    padding-bottom: 50px;
}





/*==================================================
    LOGO MARQUEE
==================================================*/

.logo-marquee-wrapper{
    position:relative;
    padding:70px 0;
    overflow:hidden;
    background:#fff;
}

/* MARQUEE CONTAINER */
.logo-marquee{
    position:relative;
    width:100%;
    overflow:hidden;

    /* Edge Fade */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 8%,
        black 92%,
        transparent
    );

    mask-image: linear-gradient(
        to right,
        transparent,
        black 8%,
        black 92%,
        transparent
    );
}

/* TRACK */
.logo-track{
    display:flex;
    align-items:center;
    flex-wrap:nowrap;
    width:max-content;
    gap:80px;
    will-change:transform;
}

/* LOGO */
.logo-item{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* IMAGE */
.logo-item img{
    display:block;
    height:90px;
    width:auto;
    max-width:180px;
    object-fit:contain;
    filter: grayscale(100%) brightness(1.05) contrast(1.1);
    opacity:.65;
    transition:
        filter .35s ease,
        opacity .35s ease,
        transform .35s ease;
}

/* Hover */
.logo-item:hover img{
    filter:grayscale(0);
    opacity:1;
    transform:scale(1.06);
}

/* RESPONSIVE MARQUEE*/

/* Tablet and Mobile */
@media (max-width: 991.98px) {

    .logo-track{
        gap:55px;
    }
    .logo-item img{
        height:90px;
        max-width:140px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {

    .logo-track{
        gap:40px;
    }
    .logo-item img{
        height:90px;
        max-width:120px;
    }
}






/*==================================================
    GALLERY MARQUEE WRAPPER
==================================================*/

.gallery-marquee-wrapper{
    position:relative;
    padding:100px 0;
    background:#fff;
    overflow:hidden;
}

/* HEADER */
.gallery-header{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:30px;
    margin-bottom:30px;
}

.gallery-heading h2{
    font-size:46px;
    line-height:1.3;
    font-weight:700;
    margin-bottom:25px;
}

.gallery-heading h2 span{
    font-size:52px;
    font-weight:400;
}

.gallery-action{
    flex-shrink:0;
}

/* MARQUEE */
.gallery-marquee{
    position:relative;
    overflow:hidden;
    width:100%;

    -webkit-mask-image:linear-gradient(
        to right,
        transparent,
        black 8%,
        black 92%,
        transparent
    );

    mask-image:linear-gradient(
        to right,
        transparent,
        black 8%,
        black 92%,
        transparent
    );
}

/* TRACK */
.gallery-track{
    display:flex;
    align-items:center;
    gap:0px;
    width:max-content;
    flex-wrap:nowrap;
    will-change:transform;
}

/* IMAGE CARD */
.gallery-item{
    position:relative;
    flex:0 0 auto;
    height:300px;
    overflow:hidden;
    /* border-radius:22px; */
    cursor:pointer;
}

/* Different Widths */
.gallery-item.small{
    width:260px;
}

.gallery-item.medium{
    width:360px;
}

.gallery-item.large{
    width:480px;
}


/* IMAGE */
.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
    /* filter: contrast(1.15) brightness(.95) saturate(.75); */
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* Optional subtle shadow */
.gallery-item{
    box-shadow:
        0 15px 45px rgba(0,0,0,.08);
}

/* RESPONSIVE */

/* Tablet and Mobile */
@media (max-width: 991.98px) {

    .gallery-marquee-wrapper{
        padding:80px 0;
    }
    .gallery-header{
        flex-direction:column;
        align-items:flex-start;
    }
    .gallery-header h2{
        font-size:35px !important;
        line-height: 1.3;
    }
    .gallery-header h2 span{
        font-size:35px;
    }
    .gallery-item{
        height:220px;
    }
    .gallery-item.small{
        width:180px;
    }
    .gallery-item.medium{
        width:250px;
    }
    .gallery-item.large{
        width:320px;
    }
}






/*==================================================
    GALLERY MARQUEE WRAPPER
==================================================*/

.testimonial-marquee-wrapper {
    position: relative;
    overflow: hidden;
    padding: 30px 0 60px;
}

.testimonial-marquee {
    width: 100%;
    overflow: hidden;
    cursor: grab;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
}

.testimonial2-card {
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.testimonial2-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.testimonial2-author h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.testimonial2-author p {
    margin: 4px 0 0;
    color: #888;
    font-size: .9rem;
}


/* RESPONSIVE */

/* Tablet and Mobile */
@media (max-width: 991.98px) {

}

/* Mobile */
@media (max-width: 767.98px) {

    .testimonial2-card{
        flex:0 0 320px;
    }

}




/*==================================================
    TESTIMONIAL2 WRAPPER DESIGN
==================================================*/

.testimonial2-card{
    width:100%;
    min-height:auto;

    background:#fff;
    padding:40px;
    margin:25px 0;
    
    display:flex;
    flex-direction:column;
    justify-content:space-between;

    box-shadow:0 5px 20px rgba(0,0,0,.07);
    transition:.3s;
}

.testimonial2-card:hover{
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.testimonial2-content{
    color:#999;
    margin-bottom:20px;
}

.testimonial2-author h6{
    font-weight:500;
    margin-bottom:10px;
    color:#222733;
}

.testimonial2-author p{
    font-size: 12px;
    margin:0;
    color:#999;
    line-height:1.6;
}

.owl-stage{
    display:flex;
}

.owl-item{
    display:flex;
}

/* RESPONSIVE */

/* Tablet and Mobile */
@media (max-width: 991.98px) {

}

/* Mobile */
@media (max-width: 767.98px) {

}




/*==================================================
    BLOG CARD DESIGN
==================================================*/

.blog-card{
    /* border-bottom:1px solid rgba(0,0,0,.1); */
    padding:2.5rem 0;
}

.blog-card-link{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.blog-content{
    flex:1;
    padding-right:3rem;
}

.blog-date{
    color:#666;
    margin-bottom:1rem;
}

.blog-title{
    margin-bottom:1.5rem;
    line-height:1.3;
}

.blog-summary{
    color:#666;
    line-height:1.8;
    margin-bottom:1.5rem;
}

.blog-readmore{
    transition:all .3s ease;
}

.blog-card:hover .blog-readmore{
    transform:scale(1.08);
}

.blog-image-wrapper{
    width:100%;
    height:220px;
    overflow:hidden;
}

.blog-image{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform .6s ease;
}


/* RESPONSIVE */

/* Tablet and Mobile */
@media (max-width: 991.98px) {

    .blog-card-link{
        display:block;
    }
    .blog-content{
        padding-right:0;
    }
    .blog-title{
        font-size: 1.1rem;
        line-height: 1.5;
    }
    .blog-image-wrapper{
        height:150px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {

    .blog-card-link{
        display:block;
    }
    .blog-content{
        padding-right:0;
    }
    .blog-title{
        font-size: 1.1rem;
        line-height: 1.5;
    }
    .blog-image-wrapper{
        height:150px;
    }
}



/*==================================================
    BLOGPAGE DESIGN
==================================================*/

.blogpage-content h1,
.blogpage-content h2,
.blogpage-content h3,
.blogpage-content h4,
.blogpage-content h5,
.blogpage-content h6 {
    font-weight: 600;
    margin-top: 2rem;
}

.blogpage-content p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

.blogpage-content ul,
.blogpage-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blogpage-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid #dee2e6;
    background: #f8f9fa;
    font-style: italic;
}

.blogpage-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 0.375rem;
    display: none;
}

.blogpage-content iframe {
    max-width: 100%;
    width: 100%;
    border: 0;
    display: none;
}

.blogpage-content table {
    width: 100%;
    margin: 1.5rem 0;
    border: 1px solid #dee2e6;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
}

.blogpage-content table th,
.blogpage-content table td {
    padding: 0.75rem !important;
}

.blogpage-content table th {
    background: #f6f6f6;
    font-weight: 600;
}

.blogpage-content table tr:last-child td {
    border-bottom: 0;
}

.blogpage-content table th:last-child,
.blogpage-content table td:last-child {
    border-right: 0;
}

.blogpage-content pre {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    overflow-x: auto;
}

.blogpage-content code {
    padding: 0.15rem 0.35rem;
    background: #f8f9fa;
    border-radius: 0.25rem;
    font-size: 0.9em;
}

.blogpage-content pre code {
    padding: 0;
    background: transparent;
}

.blogpage-content a {
    text-decoration: underline;
}

.blogpage-content a:hover {
    text-decoration: none;
}

/* RESPONSIVE */

/* Tablet and Mobile */
@media (max-width: 991.98px) {

}

/* Mobile */
@media (max-width: 767.98px) {

}






/*==================================================
    EVENT CARD DESIGN
==================================================*/

 .event-card{
    /* position:relative; */
    min-height:400px;
    box-shadow:0 5px 20px rgba(0,0,0,.09);
}

.event-card-link{
    display:block;
    height:100%;
    background-color:#fff;
}

.event-image-wrapper{
    position:relative;
    width:100%;
    height:250px;
    overflow:hidden;
}

.event-image{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform .6s ease;
}

.event-label{
    position:absolute;
    top:1.5rem;
    left:1.5rem;
    z-index:3;
    display:inline-block;
    background:#00c853;
    color:#fff;
    font-size:10px;
    font-weight:600;
    text-transform:uppercase;
    padding:5px 20px;
    border-radius:50px;
    transition:.3s;
}

.event-content{
    padding:1.5rem;
}

.event-title{
    margin-bottom:1rem;
    font-weight:200;
    line-height:1.3;
}

.event-date{
    margin-bottom:1rem;
    color:rgba(0,0,0,.9);
}

.event-date i{
    margin-right:.5rem;
}

.event-summary{
    color:rgba(0,0,0,.85);
    margin-bottom:0;
}

.event-readmore{
    display:inline-block;
    margin-top:1rem;
    font-weight:500;
    opacity:0;
    transform:translateY(10px);
    transition:.3s;
}

.event-card:hover .event-image{
    transform:scale(1.08);
}

.event-card:hover .event-label{
    background:#1f2937; /* dark navy */
}

.event-card:hover .event-readmore{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */

/* Tablet and Mobile */
@media (max-width: 991.98px) {

}

/* Mobile */
@media (max-width: 767.98px) {

}






/*==================================================
    CTA - FLOATING CALL BUTTON
==================================================*/

.btn-floating-call {
	position: fixed;
	right: 10px;
	bottom: 15px;
	padding: 0;
	height: 50px;
	width: 50px;
	-webkit-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	transition: all .2s ease-in;
	z-index: 1120;
    background-color: #2A1458;
    color: #fff;
}

.btn-floating-call span {
	font-size: 23px
}

.btn-floating-call:hover {
	background-color: #2A1458;
    color: #fff;
    transform:scale(1.1);
}


/*==================================================
    CTA - FLOATING EMAIL BUTTON
==================================================*/

.btn-floating-email {
	position: fixed;
	right: 10px;
	bottom: 15px;
	padding: 0;
	height: 50px;
	width: 50px;
	-webkit-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	transition: all .2s ease-in;
	z-index: 1120;
    background-color: #2A1458;
    color: #fff;
}

.btn-floating-email span {
	font-size: 23px
}

.btn-floating-email:hover {
	background-color: #2A1458;
    color: #fff;
    transform:scale(1.1);
}




/*==================================================
    CTA - FLOATING WHATSAPP BUTTON
==================================================*/

.btn-floating-chat {
	position: fixed;
	right: 10px;
	bottom: 75px;
	padding: 0;
	height: 50px;
	width: 50px;
	-webkit-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	transition: all .2s ease-in;
	z-index: 1120;
    background-color: #2A1458;
    color: #fff;
}

.btn-floating-chat span {
	font-size: 23px;
}

.btn-floating-chat:hover {
	background-color: #2A1458;
    color: #fff;
    transform:scale(1.1);
}




/*==================================================
    CTA - CALL RESTRICTION POPUP DESIGN
==================================================*/

.callPopup-overlay {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 99998;
}

.callPopup-content {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 15px;
    z-index: 9999;
    text-align: center;
}










.custom-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.custom-list li::before {
    font-family: "bootstrap-icons";
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 2px;
}

.custom-list::after {
    content: "";
    display: block;
    clear: both;
}

.twin-col li {
    width: 48%;
    float: left;
}
@media (max-width: 768px) {
    .twin-col li {
        width: 100%;
    }
}


.list-default li::before {
    content: "\f26a"; /* bi-check-circle-fill */
    color: #1A374D;
}

.list-check li::before {
    content: "\f26a"; /* bi-check-circle-fill */
    color: #198754;
}

.list-cross li::before {
    content: "\f622"; /* bi-x-circle-fill */
    color: #dc3545;
}







.gray-section {
    background: #f6f6f6 !important;
}

.cta-footer {
    background: #f6f6f6;
}


.aspect-ratio-1-1{
    aspect-ratio:1 / 1;
}

.admin-action-btn {
    display: flex;
    height: 30px;
    width: 30px;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 15px;
    border: 0;
}





/*=========================================
  IMAGE CARD
=========================================*/

.image-card{
    position:relative;
    width:100%;
    max-width:430px;
    aspect-ratio:3 / 4;
    border-radius:20px;
    overflow:visible;
}

/* Image */
.image-card img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    border-radius:20px;
    transition:transform .6s ease;
}

.image-card:hover img{
    transform:scale(1.08);
}


/* Label */
.image-card-label{
    position:absolute;
    width:min(82%, 360px);
    background:linear-gradient(135deg, #ff42ba, #f00093);
    color:#fff;
    padding:22px 24px;
    border-radius:14px;
    z-index:2;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.image-card-label h4{
    margin:0 0 6px;
    font-size:1.5rem;
    line-height:1.2;
}

.image-card-label p{
    margin:0;
    font-size:.95rem;
    opacity:.95;
}


/*=========================================
  VARIANT 1
  Label slightly inside & offset right
=========================================*/

.image-card-inside .image-card-label{
    left:50%;
    bottom:36px;
    transform:translateX(-18%);
}


/*=========================================
  VARIANT 2
  Label hanging below image
=========================================*/

.image-card-outside{
    margin-bottom:78px;
}

.image-card-outside .image-card-label{
    left:50%;
    bottom:-40px;
    transform:translateX(-50%);
}


/*=========================================
  Responsive
=========================================*/

@media (max-width:767.98px){

    .image-card{
        max-width:100%;
    }

    .image-card-label{
        width:88%;
        padding:18px;
    }

    .image-card-label h4{
        font-size:1.2rem;
    }

    .image-card-label p{
        font-size:.9rem;
    }

    .image-card-inside .image-card-label{
        left:50%;
        bottom:20px;
        transform:translateX(-50%);
    }

    .image-card-outside{
        margin-bottom:60px;
    }

    .image-card-outside .image-card-label{
        bottom:-30px;
    }
}


/*==================================================
    PARALLAX BANNER
==================================================*/
/*==================================================
    PARALLAX BANNER
==================================================*/
.parallax-banner-wrapper{

    position:relative;

    min-height:70vh;

    display:flex;
    align-items:center;

    color:#fff;

    background-image:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.55)
        ),
        url("../images/core_pages/about_intro.jpg");

    background-position:center center;
    background-repeat:no-repeat;
    background-size:cover;

    background-attachment:fixed;

}




