/********** Template CSS **********/

/* @import url(./scss.scss); */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
    --panel: #787878;
    /* --bs-dark-primary: #011a65; */
    --bs-primary-tp-25: rgb(34, 78, 209, .15);
    /* --bs-dark-primary: #100352 */
    /* --bs-secondary: #1A1A1A; */
   --bs-accent: #Ff6600;
   --bs-accent-tp-50: rgb(255, 102, 0, .5);
   --bs-accent-tp: #FFF0E6;
   --bs-accent2: #FF6F0F;
   --bs-dark-accent2: #bd4c00;
   /* --bs-primary: #FF6F0F;
    --bs-dark-primary: #bd4c00; */
    /* --bs-secondary: #FFF0E6; */
    --dark-secondary: #fabb9252;
    --light: #F8F8F9;
    --dark: #001D23;
    --body: var(--dark);
    --light-body: rgb(238, 238, 238);
    --danger: #dc3545;
    --gray: #e9e9ef;
}

.remove-gutters-xy {
    --bs-gutter-x:0;
    --bs-gutter-y:0;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.text-shadow { text-shadow: 0 2px 3px rgba(0, 0, 0, .35); }
.text-justify { text-align: justify; }
.text-accent { color: var(--bs-accent); }
.text-accent-50 { color: var(--bs-accent-tp-50) !important; }
.letter-spacing-1 { letter-spacing: .25rem; }
.letter-spacing-2 { letter-spacing: .5rem; }
.letter-spacing-3 { letter-spacing: 1rem; }
.letter-spacing-1px { letter-spacing: 1px; }
.ftr-p { font-size: 1.2rem; }
.quoted {
    &::before, &::after {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-family: "Font Awesome 5 Free";
        font-style: normal;
        font-weight: 600;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
    }
    &::before { 
        margin-right: .15rem;
        content: '\f10d'; 
    }
    &::after { 
        margin-left: .15rem;
        content: '\f10e'; 
    }
}
.modal:has(.md-quote) {
    & .modal-header {
        border-bottom: 1px solid var(--bs-primary)!important;
        font-weight: bold!important;
        & i, & .modal-title { color: var(--bs-primary)!important;}
    }
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.bg-accent { background-color: var(--bs-accent); }
.bg-accent-tp { background-color: var(--bs-accent-tp); }
.bg-primary-tp { background-color: var(--bs-primary-tp); }
.bg-primary-tp-25 { background-color: var(--bs-primary-tp-25); }

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,.btn.btn-dark-primary,
.btn.btn-outline-primary:hover,.btn.btn-outline-dark-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: var(--bs-primary);
    background: transparent;
}
.btn.btn-dark-primary:hover {
    color: var(--bs-dark-primary);
    background: transparent;
}

.btn-accent{color:white;background-color:var(--bs-accent);border-color:var(--bs-accent)}
.btn-accent:hover{color:white;background-color:var(--bs-accent2);border-color:var(--bs-dark-accent2)}
.btn-accent:active{color:white;background-color:var(--bs-dark-accent2);border-color:var(--bs-dark-accent2)}
.btn-check:focus+.btn-accent,.btn-accent:focus{color:white;background-color:var(--bs-accent);border-color:var(--bs-accent);box-shadow:0 0 0 .25rem var(--bs-accent-tp);}

.btn-outline-accent {
    color:var(--bs-accent);border-color:var(--bs-accent);
    & div {
        background-color: var(--bs-accent);
        color: white;
    }
}
.btn-outline-accent:hover{
    color:white;background-color:var(--bs-accent);border-color:var(--bs-accent);
}
.btn-check:focus+.btn-outline-accent,.btn-outline-accent:focus{box-shadow:0 0 0 .25rem rgba(255,111,15,0.5)}
.btn-check:checked+.btn-outline-accent,.btn-check:active+.btn-outline-accent,.btn-outline-accent:active,.btn-outline-accent.active,.btn-outline-accent.dropdown-toggle.show{color:#000;background-color:var(--bs-accent);border-color:var(--bs-accent)}
.btn-check:checked+.btn-outline-accent:focus,.btn-check:active+.btn-outline-accent:focus,.btn-outline-accent:active:focus,.btn-outline-accent.active:focus,.btn-outline-accent.dropdown-toggle.show:focus{box-shadow:0 0 0 .25rem rgba(255,111,15,0.5)}.btn-outline-accent:disabled,.btn-outline-accent.disabled{color:var(--bs-accent);background-color:transparent}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.signup-btn, .btn.login-btn {}
.btn.signup-btn {
    border-top-right-radius: 0%;
    border-bottom-right-radius: 0%;
}
.btn.login-btn {
    border-top-left-radius: 0%;
    border-bottom-left-radius: 0%;
}

.border-start-only {
    border-top: none!important;
    border-right: none!important;
    border-bottom: none!important;
}
.border-end-only {
    border-top: none!important;
    border-left: none!important;
    border-bottom: none!important;
}
.border-top-only {
    border-left: none!important;
    border-right: none!important;
    border-bottom: none!important;
}
.border-bottom-only {
    border-top: none!important;
    border-right: none!important;
    border-left: none!important;
}
.border-x-only {
    border-top: none!important;
    border-bottom: none!important;
}
.border-y-only {
    border-left: none!important;
    border-right: none!important;
}
.rounded-top-only {
	border-bottom-left-radius: 0!important;
	border-bottom-right-radius: 0!important;
}
.rounded-bottom-only {
	border-top-left-radius: 0!important;
	border-top-right-radius: 0!important;
}
.rounded-start-only {
	border-top-right-radius: 0!important;
	border-bottom-right-radius: 0!important;
}
.rounded-end-only {
	border-top-left-radius: 0!important;
	border-bottom-left-radius: 0!important;
}

a.qhse-btn {
    background-image: var(--bs-gradient);
    display: flex;
    display: none;
    align-items: center;
    line-height: normal;
    &::before {
        margin-left: 0;
        margin-right: .25rem;
        padding: .35rem;
        content: "\f12a";
        height: 100%;
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        font-size: .575rem;
        line-height: 1;
        vertical-align: middle;
        color: white;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
        border: 1px solid #F8F8F9;
        background-image: var(--bs-gradient);
        background-color: steelblue;
    }
    &:hover {
        color: var(--bs-dark-primary);
        background-color: var(--bs-secondary);
        text-decoration: underline;
    }
    &:active {
        color: var(--bs-primary);
        background-color: var(--bs-secondary);
    }
}

/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.navbar-dark .navbar-toggler, .navbar-light .navbar-toggler {
    /* --bs-primary: #224ED1;
    --bs-dark-primary: #011a65; */
    color: var(--bs-primary);
    color: rgba(34, 78, 209, 0.55);
    border-color: rgba(34, 78, 209, 0.1);
}
/* .navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.1);
} */
/* .navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.55);
    border-color: rgba(0, 0, 0, 0.1);
} */

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--bs-accent);
}
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
    text-shadow: 0 2px 3px rgba(0, 0, 0, .35);
    text-decoration: underline;
    line-height: 1;
}

.navbar .navbar-nav {
    & .nav-link { 
        color: var(--bs-dark-primary);
        font-size: 20px;
        font-weight: 600;
    }
}


/*** Header ***/
.elementor-background-overlay {
    inset: 0;
    position: absolute;
}
/* #100352 */
.elementor-background-overlay {
    background-color: transparent;
    background-image: linear-gradient(360deg, var(--bs-dark-primary) 0%, rgba(46, 57, 111, 0.28) 100%);
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background: rgba(0, 29, 35, .8); */
    z-index: 1;
}

.carousel-control-prev, .carousel-control-next { 
    width: 15%;
    /* display: none; */
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

div#header-carousel {
    &:not(:hover) {
        & .carousel-control-prev, & .carousel-control-next {
            display: none;
        }
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .8)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    & h1 {
        text-shadow: 0 2px 3px rgba(0, 0, 0, .35);
    }
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}

/* Contacts */
.contacts {
    & .cp-items-wrapper {
        & .sm-btn {
            /* border: 1px solid #dee2e6 ; */
            /* &:hover {
                color: var(--bs-primary);
                border-color: 1px solid var(--bs-primary);
            } */
            &:active {
                /* color: var(--bs-dark-primary); */
                background-color: var(--bs-dark-primary);
                border-color: 1px solid var(--bs-dark-primary);
            }
        }
        & .cp-item { font-size: 1rem; }
    }
}

/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--bs-primary);
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
    text-shadow: 0 2px 3px rgba(0, 0, 0, .35);
    color: white;
    & h5, & p {
        margin: 0 1rem 1rem;
        color: white;
    }
    & h5 {
        font-size: 1.5rem;
        font-weight: 600;
    }
    & p {
        font-family: var(--secondary-font);
        font-size: 1rem;
        text-align: center;
    }
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}

.cause-title-sm, .cause-title-lg {
    background-image: var(--bs-gradient) !important;
    background-color: white !important;
    color: var(--bs-dark-primary) !important;
    text-shadow: 0 2px 3px rgba(0, 0, 0, .35);
}
.causes-item img.icon-img {
    margin-right: .25rem;
    object-fit: contain;
    aspect-ratio: 1/1;
    width: 45px;
}


/*** Service ***/
.services, .structure, .retainer, .recruitmt, .outsource, .resume {
    & .price-quote {
        &::before, &::after {
            -moz-osx-font-smoothing: grayscale;
            -webkit-font-smoothing: antialiased;
            display: inline-block;
            font-family: "Font Awesome 5 Free";
            font-style: normal;
            font-weight: 900;
            font-variant: normal;
            text-rendering: auto;
            line-height: 1;
        }
        &::before { content: '\f10d'; }
        &::after { content: '\f10e'; }
    }
    & .service-item, & .struct-item, & .retnr-item, & .recrtmt-item {
        & .service-toggler, & a.struct-toggler, & a.retnr-toggler, & a.recrtmt-toggler {
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            font-size: 1.3rem;
            transition: all .3s;
            cursor: default;
            &::before {
                position: relative;
                content: "\f105";
                font-family: "Font Awesome 5 Free";
                font-size: smaller;
                font-weight: 600;
                color: var(--bs-primary);
                margin-right: 10px;
                transition: transform .3s;
            }
            &:hover {
                color: #696868;
                letter-spacing: 1px;
                box-shadow: none;
            }
        }
        & .service-toggler, & a.struct-toggler {
            &[aria-expanded=true]::before { transform: rotate(90deg); }
        }
        & .service-content, & .struct-content, & .retnr-content, & .recrtmt-content {
            font-family: var(--secondary-font);
            font-size: 1.1rem;
        }
    }
}

.services {
    & .service-item { 
        position: relative;
        & .service-sub-item {
            padding-left: .5rem;
            padding-bottom: .15rem;
            padding-right: .25rem;
            position: relative;
            transition: letter-spacing .3s, height .3s;
            &::before {
                display: inline-block;
                position: absolute;
                top: .1rem;
                left: -.5rem;
                z-index: 1;
                content: "\f105";
                font-family: "Font Awesome 5 Free";
                font-size: smaller;
                font-weight: 600;
                color: var(--bs-primary);
                transition: transform .3s;
            }
            & span {
                position: relative;
                z-index: 1;
                font-size: 1.1rem;
            }
            & overlay, & .overlay {
                background-image: var(--bs-gradient);
                background-color: var(--bs-accent-tp);
                border-bottom: 2px solid var(--bs-accent);
                /* opacity: .3; */
                position: absolute;
                top: 0;
                left: 4rem;
                bottom: 0;
                transition: all 5s;
            }
            &:not([aria-expanded=true]):hover {
                letter-spacing: 1.5px;
                color: var(--dark);
                /* text-shadow: 0 2px 3px rgba(0, 0, 0, .35); */
                & overlay, & .overlay {
                    animation: overlay-slide-out .800s ease-out forwards;
                }
            }
            &[aria-expanded=true] {
                letter-spacing: 1.5px;
                color: var(--dark);
                & overlay, & .overlay {
                    right: 0;
                }
            }
        }
        & .service-cat {
            padding: .1rem;
            border-bottom: 2px solid var(--body);
            position: absolute;
            top: .25rem;
            left: .25rem;
        }
        /* & .btn-primary:hover {
            color: white;
            background-color: var(--bs-light-primary);
            border-color: var(--bs-light-primary);
        }
        & .btn-primary:active {
            color: white;
            background-color: var(--bs-dark-primary);
            border-color: var(--bs-dark-primary);
        } */
    }    
}
@keyframes overlay-slide-out {
    0% {
        right: calc(100% - 4rem);        
    }
    100% {
        right: 0;
    }
}

.service-item, .causes-item { 
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}

/*  Tech */
.slide-body {
    & .slide-wrapper {
        &.sliding {
            position: relative;
        }
        & .tech-item, & .blog-item {
            &:not(:first-of-type) {
                border: none;
                border-left: 1px solid var(--gray);
            }
            & img {
                max-width: 100%;
                max-height: 50px;
                object-fit: contain;
            }
        }        
    }
}
@keyframes slide-right-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/*** Enquiry ***/
.enquiry {
    background: rgba(0, 29, 35, .8);
    & h1, & p {
        text-shadow: 0 2px 3px rgba(0, 0, 0, .35);
    }
    & input.form-control, & .form-floating:has(textarea.form-control) { 
        background-color: #F8F8F9;
        border: 1px solid #78787869;
        &:focus {
            background-image: var(--bs-gradient);
            background-color: #fdfdfd;
        }
    }
    & .form-floating:has(textarea.form-control) { border-radius: 6px; }
    & textarea { 
        margin-top: 1.925rem!important;
        padding-top: 0!important;
        border: none; 
        background-color: #F8F8F9;
        /* border: 1px solid #78787869; */
        &:focus {
            background-image: var(--bs-gradient);
            background-color: #fdfdfd;
        }
    }
    .form-floating>label {
        line-height: 1;
        &[for=email], &[for=phone] { margin-left: .5rem; }
    }    
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.form-check {
    aspect-ratio: 1/1;
    width: 20px;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-primary);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 6px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.bullet-point {
    padding-left: 1rem;
    position: relative;
    /* &::before {
        position: absolute;
        left: 0;
        background-color: red;
        font-family: "Font Awesome 5 Free";
        font-size: smaller;
        font-weight: 600;
    } */
}
.upld-btn:active { background-color: var(--bs-dark-primary); }
/* .bullet-point[class^="fa-"]::before, .bullet-point[class^="bi-"]::before {
    content: "\f068";
} */

/*** Team ***/

.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--bs-primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--bs-primary);
}


/*** Testimonial ***/

.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-text {
    background-image: var(--bs-gradient);
    background-color: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background-image: var(--bs-gradient);
    background-color: var(--bs-primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text *:not(span.index-no) {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background-image: var(--bs-gradient);
    background-color: var(--bs-primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-item {
    & .testimonial-text {
        position: relative;
        & span.index-no {
            position: absolute;
            left: .25rem;
            top: 0;
            transform: translateY(-100%);
            color: var(--bs-dark-primary)!important;
            font-size: large;
        }
    }
}

.bbox-shadow {
	box-shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0, rgba(60, 64, 67, 0.15) 0 1px 3px 1px !important;
}

/*** Footer ***/

.footer {
    background-image: var(--bs-gradient);
    background-color: var(--bs-dark-primary);
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-size:1.2rem;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
}

.footer .btn.btn-square:hover {
    color: var(--bs-accent-tp);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--bs-secondary);
}

.footer .copyright a:hover {
    color: var(--bs-primary);
}

.modal {
    font-size: 1rem;
    & p#dialog-msg {
    	white-space: pre-wrap!important;
    }
}

/* Media Queries */

@media (min-width: 228px) {
    .gap-xxs-0{gap:0 !important}.gap-xxs-1{gap:.25rem !important}.gap-xxs-2{gap:.5rem !important}.gap-xxs-3{gap:1rem !important}.gap-xxs-4{gap:1.5rem !important}.gap-xxs-5{gap:3rem !important}
}

@media (min-width: 376px) {
    .gap-xs-0{gap:0 !important}.gap-xs-1{gap:.25rem !important}.gap-xs-2{gap:.5rem !important}.gap-xs-3{gap:1rem !important}.gap-xs-4{gap:1.5rem !important}.gap-xs-5{gap:3rem !important}
    .col-xs-10vw {
        flex: 0 0 auto;
        width: 83.33333333333333vw;
    }
    .w-xs-25 {
        width: 25%;
    }
    .w-xs-50 {
        width: 50%;
    }
    .w-xs-75 {
        width: 75%;
    }
    .w-xs-100 {
        width: 100%;
    }
}

@media (min-width: 420px) {
    .causes-item .causes-overlay {
        & h5 {
            font-size: 2rem;
            /* font-weight: 600; */
        }
        & p {
            /* font-family: var(--secondary-font); */
            font-size: 1.5rem;
            /* text-align: center; */
        }
    }
}
@media (min-width: 576px) {
    .col-sm-6vw {
        flex: 0 0 auto;
        width: 50vw;
    }
    .w-sm-25 {
        width: 25%;
    }
    .w-sm-50 {
        width: 50%;
    }
    .w-sm-75 {
        width: 75%;
    }
    .w-sm-100 {
        width: 100%;
    }
}

/* @Max-Medium */
@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* @Min-Medium */
@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
    .col-md-4vw {
        flex: 0 0 auto;
        width: 33.33333333333333vw;
    }
    .pos-md-abs { position: absolute; }
    .pos-md-top-start {
        top: 0;
        left: 0;
    }
    .pos-md-top-center {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .pos-md-top-end {
        top: 0;
        right: 0;
    }
    .pos-md-bottom-start {
        bottom: 0;
        left: 0;
    }
    .pos-md-bottom-center {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .pos-md-bottom-end {
        bottom: 0;
        right: 0;
    }
    .why-us .row {
        & .col-md-6 {
            /* flex-shrink: 0;
            width: 100%;
            max-width: 100%; */
            padding-top: calc(var(--bs-gutter-x) / 2);
            padding-bottom: calc(var(--bs-gutter-x) / 2);
            & .causes-item {
                border-radius: 6px !important;
            }
            & .cause-title-lg {
                position: absolute;
                justify-content: center;
                align-items: center;
                & small {
                    font-size: 1.7rem;
                }
            }
        }
        & .col-md-6:nth-of-type(3), & .col-md-6:nth-of-type(4) {
            margin-top: 0;
            margin-bottom: var(--bs-gutter-y);
            & .causes-item {
                /* border-top border-5 border-primary rounded-top */
                border-top: none !important;
                border-bottom: 5px solid;
                /* border-radius: 0 0 6px 6px; */
                flex-direction: column-reverse !important;
                & .text-center { 
                    padding: 1.5rem !important;
                    padding-bottom: 0 !important;
                    display: flex;
                    flex-direction: column-reverse !important;
                    align-items: center;
                    & div:has(>small) {
                        /* pb-1 px-3 mb-4 */
                        margin: 0 !important;
                        margin-top: 1.5rem !important;
                        /* padding: .25rem 0 1rem !important; */
                        border-radius: 6px 6px 0 0 !important;
                    }
                    & .causes-progress {
                        padding: 1rem !important;
                        padding-bottom: 0 !important;
                        width: 100%;
                        width: -webkit-fill-available;
                        display: flex;
                        flex-direction: column;
                        & div.d-flex {
                            order: 2;
                            & p.text-dark-primary {
                                padding-top: .5rem;
                            }
                        }
                        & div.progress-bar {
                            order: 1;
                        }
                    }
                }
            }
        }
    }
    .w-md-25 {
        width: 25%;
    }
    .w-md-50 {
        width: 50%;
    }
    .w-md-75 {
        width: 75%;
    }
    .w-md-100 {
        width: 100%;
    }
}

/* @Max-Large */
@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background-image: var(--bs-gradient);
        background-color: white;
    }
    .navbar .navbar-brand img { height: 35px; }
    .navbar .navbar-nav .nav-link { padding: 10px 0; }
}

/* @Min-Large */
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
    .col-lg-2vw {
        flex: 0 0 auto;
        width: 16.33333333333333vw;
    }
    .w-lg-25 {
        width: 25%;
    }
    .w-lg-50 {
        width: 50%;
    }
    .w-lg-75 {
        width: 75%;
    }
    .w-lg-100 {
        width: 100%;
    }
    .pos-lg-top-start {
        top: 0;
        left: 0;
    }
    .pos-lg-top-center {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .pos-lg-top-end {
        top: 0;
        right: 0;
    }
    .pos-lg-bottom-start {
        bottom: 0;
        left: 0;
    }
    .pos-lg-bottom-center {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .pos-lg-bottom-end {
        bottom: 0;
        right: 0;
    }
}

/* @Min-X-Large */
@media (min-width: 1200px) {
    /* .why-us .row {
        & .cause-title-lg:nth-of-type(1), & .cause-title-lg:nth-of-type(2) {
            border-top-left-radius: 6px;
            border-top-right-radius: 6px;
        }
        & .cause-title-lg:nth-of-type(3), & .cause-title-lg:nth-of-type(4) {
            border-bottom-left-radius: 6px;
            border-bottom-right-radius: 6px;
        }
    } */
    .pos-xl-top-start {
        top: 0;
        left: 0;
    }
    .pos-xl-top-center {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .pos-xl-top-end {
        top: 0;
        right: 0;
    }
    .pos-xl-bottom-start {
        bottom: 0;
        left: 0;
    }
    .pos-xl-bottom-center {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .pos-xl-bottom-end {
        bottom: 0;
        right: 0;
    }    
}