
:root {
    --thm-font: "Sora", sans-serif;
    --thm-font-2: "reeyregular";
    --thm-base: #f2b516;
    --thm-base-rgb: 242, 181, 22;
    --thm-gray: #515151;
    --thm-gray-rgb: 81, 81, 81;
    --thm-white: #ffffff;
    --thm-white-rgb: 255, 255, 255;
    --thm-black: #202020;
    --thm-black-rgb: 32, 32, 32;
    --thm-primary: #e04f44;
    --thm-primary-rgb: 12, 178, 207;
    --thm-gray-bg: #f4f5f9;
    --thm-gray-bg-rgb: 244, 245, 249;
    --thm-main-bg: #02142a;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

body {
    font-family: var(--thm-font);
    color: #272727;
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--thm-gray);
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-black);
    font-family: var(--thm-font);
    font-weight: 700;
    margin: 0;
}

p {
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1320px;
    }
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

ol,
li {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
}

/* Form validation styles */
input:focus,
textarea:focus,
select:focus {
    border-color: #43c3ea;
    outline: none;
}

#contact-form input[type="text"].error {
    border-color: red;
}

#contact-form input[type="email"].error {
    border-color: red;
}

#contact-form select.error {
    border-color: red;
}

#contact-form textarea.error {
    border-color: red;
}

#contact-form label.error {
    display: none !important;
}

/** Thm Social Link **/
.thm-social-link {
    position: relative;
    display: block;
    padding-top: 30px;
}

.thm-social-link ul {
    position: relative;
    display: block;
}

.thm-social-link ul li {
    position: relative;
    float: left;
    margin-right: 10px;
}

.thm-social-link ul li:last-child {
    margin-right: 0;
}

.thm-social-link ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: rgba(var(--thm-black-rgb), 1);
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.thm-social-link ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: rgba(var(--thm-base-rgb), 1);
    border-radius: 5px;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.thm-social-link ul li:hover a:before {
    opacity: 1;
    transform: scale(1);
}

.thm-social-link ul li:hover a {
    color: #ffffff;
}




/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
    position: fixed;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    cursor: url(../images/icon/cross-out.png), pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 99999999;
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: 0.9;
    visibility: visible;
    transition-delay: 0.3s;
    right: 100%;
    background-color: #000000;
}

.xs-sidebar-widget {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    max-width: 460px;
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all 700ms ease 100ms;
    visibility: hidden;
    opacity: 1;
    z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    right: 0;
    transition: all 500ms ease 800ms;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 700ms ease 1500ms;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.8;
    z-index: 0;
    background-color: #000000;
}

.sidebar-textwidget {
    padding: 50px 45px;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px;
}

.xs-sidebar-group .widget-heading a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--thm-black);
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
    color: var(--thm-base);
    border-color: var(--thn-base);
}

.xs-sidebar-group .content-inner .logo {
    position: relative;
    display: block;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
    position: relative;
    display: inline-block;
}

.xs-sidebar-group .content-inner h3 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 35px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: var(--thm-font);
    margin-bottom: 22px;
}

.xs-sidebar-group .content-inner .content-box {
    position: relative;
    display: block;
    padding-top: 33px;
    padding-bottom: 47px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
    position: relative;
    display: block;
}

.xs-sidebar-group .content-inner .content-box p {
    color: var(--thm-gray);
}

.xs-sidebar-group .content-inner .sidebar-contact-info {
    position: relative;
    display: block;
}

.xs-sidebar-group .content-inner .sidebar-contact-info h3 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 27px;
}

.sidebar-contact-info ul {
    position: relative;
    display: block;
}

.sidebar-contact-info ul li {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.sidebar-contact-info ul li:last-child {
    margin-bottom: 0;
}

.sidebar-contact-info ul li .inner {
    position: relative;
    display: block;
    padding-left: 45px;
}

.sidebar-contact-info ul li .inner .icon {
    position: absolute;
    top: 0px;
    left: 0;
}

.sidebar-contact-info ul li .inner .icon span {
    position: relative;
    display: block;
    color: var(--thm-base);
    font-size: 27px;
    line-height: 27px;
    font-weight: 500;
}

.sidebar-contact-info ul li .inner .icon span.map-marker {
    position: relative;
    top: 8px;
    font-size: 32px;
}

.sidebar-contact-info ul li .inner .text {
    position: relative;
    display: block;
}

.sidebar-contact-info ul li .inner .text p {
    line-height: 24px;
}

.sidebar-contact-info ul li .inner .text p a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-contact-info ul li .inner .text p a:hover {
    color: var(--thm-base);
    text-shadow: -0.45px -0.45px 0 var(--thm-base), 0.45px 0.45px var(--thm-base);
}

.xs-sidebar-group .content-inner .side-content-newsletter-box {
    position: relative;
    display: block;
    padding-top: 49px;
}

.xs-sidebar-group .content-inner .side-content-newsletter-box h3 {
    color: var(--thm-black);
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 24px;
}

.side-content-newsletter-box .form-group input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    background-color: rgb(248, 248, 248);
    border: 1px solid #e3dfdf;
    padding-left: 30px;
    padding-right: 20px;
    border-radius: 6px;
    font-family: var(--thm-font);
}

.side-content-newsletter-box .form-group button {
    margin-top: 30px;
}




/*== Review Css ======*/
.review-box {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 15px;
}

.review-box ul {
    display: block;
    overflow: hidden;
}

.review-box ul li {
    display: inline-block;
    float: left;
    margin-right: 4px;
    cursor: pointer;
}

.review-box ul li:last-child {
    margin-right: 0px;
}

.review-box ul li i {
    color: #febd2f;
    font-size: 15px;
}

/*== Section Title Css ======*/
.sec-title {
    position: relative;
    display: block;
    margin-top: -3px;
    padding-bottom: 33px;
}

.sec-title.withtext {
    padding-bottom: 62px;
}

.sec-title .sub-title {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 30px;
    margin-bottom: 25px;
}

.sec-title .sub-title.center {
    justify-content: center;
}

.sec-title .sub-title.item-center {
    justify-content: center;
}

.sec-title .sub-title h4 {
    position: relative;
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--thm-primary);
    z-index: 1;
}

.sec-title .sub-title h4:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    right: 0;
    height: 8px;
    background: rgba(var(--thm-base-rgb), 0.3);
}

.sec-title .sub-title .big-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-family: var(--thm-font);
    font-weight: 600;
    font-size: 128px;
    line-height: 110px;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: #f5f5f5;
    z-index: -1;
}

.sec-title h2 {
    color: var(--thm-black);
    font-size: 26px;
    line-height: 1.2em;
    font-weight: 600;
    letter-spacing: -0.02em;
   
}

.sec-title p {
    line-height: 30px;
    margin: 9px 0 0;
}

/*== Btn One Css ======*/
.btn-box {
    position: relative;
    display: inline-block;
    line-height: 0;
}

.btn-one {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-top: 3px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 1px;
    background-color: transparent;
    color: #ffffff;
    font-size: 18px;
    line-height: 55px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 5px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-family: var(--thm-font);
    z-index: 2;
}

.btn-one:before {
    position: absolute;
    top: 0px;
    left: 100%;
    right: -50px;
    content: "";
    background: var(--thm-black);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    border-radius: 0%;
    transition-duration: 800ms;
    z-index: 1;
    bottom: 0;
}

.btn-one:hover:before {
    left: 0;
    right: 0px;
}

.btn-one:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    opacity: 1;
    transform: scaleX(1);
    transition-duration: 800ms;
    background-color: var(--thm-base);
    z-index: -1;
}

.btn-one:hover:after {
    transform: scaleX(0);
    transition-duration: 1500ms;
}

.btn-one .txt {
    position: relative;
    z-index: 1;
}

.btn-one:hover,
.btn-one:focus {
    color: #ffffff;
}

.btn-one i {
    position: relative;
    top: 0px;
    display: inline-block;
    padding-right: 5px;
    font-size: 15px;
}

.btn-two {
    position: relative;
    display: flex;
    align-items: center;
    color: #1a6fe1;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.btn-two span {
    position: relative;
    top: -1px;
    display: inline-block;
    padding-left: 10px;
    color: var(--thm-black);
    font-size: 16px;
}

.btn-two:hover {
    color: var(--thm-black);
    letter-spacing: 0.05em;
}




/*== Owl Dot Style One Css ======*/
.owl-carousel.owl-dot-style1 .owl-dots {
    position: relative;
    text-align: center;
    line-height: 0;
    margin-top: 0px !important;
    display: block;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #D9D9D9;
    ;
    border: 1px solid #D9D9D9;
    ;
    margin: 0px 10px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active {
    background-color: var(--thm-primary);
    border-color: var(--thm-primary);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: var(--thm-primary);
    border-radius: 50%;
    transform: scale(0);
    transition: all 500ms ease;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active:before {
    transform: scale(1);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot span {
    display: none;
}





/*== Owl Dot Style Two Css ======*/
.owl-carousel.owl-dot-style2 .owl-dots {
    position: relative;
    text-align: center;
    line-height: 0;
    margin-top: 30px !important;
    display: block;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 5px solid #ffffff;
    margin: 0px 5px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    border: 1px solid var(--thm-base);
    border-radius: 50%;
    transform: scale(0);
    transition: all 500ms ease;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot.active {
    border: 5px solid #1a1c23;
    background-color: var(--thm-base);
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot.active:before {
    transform: scale(1);
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot span {
    display: none;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot.active span {}

/*== Owl Nav Style One Css ======*/
.owl-nav-style-one {}

.owl-nav-style-one .owl-controls {}

.owl-nav-style-one.owl-theme .owl-stage-outer {
    position: relative;
    display: block;
    padding-top: 0px;
    padding-bottom: 40px;
}

.owl-nav-style-one.owl-theme .owl-nav {
    position: relative;
    display: block;
    line-height: 0;
    margin: 0;
    z-index: 10;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 2px solid #909090;
    border-radius: 50%;
    margin: 0 10px;
    padding: 0;
    z-index: 1;
    transition: all 700ms ease 0s;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: -2px;
    background-color: var(--thm-base);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(0);
    -ms-transform: perspective(400px) rotateX(0deg) scale(0);
    transform: perspective(400px) rotateX(0deg) scale(0);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover::before {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) scale(1);
    -ms-transform: perspective(400px) rotateX(0deg) scale(1);
    transform: perspective(400px) rotateX(0deg) scale(1);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    position: relative;
    display: block;
    color: #909090;
    font-size: 18px;
    line-height: 46px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-prev {
    transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav .owl-next {
    transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover {}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover span {
    color: #ffffff;
}



/*== Scrool To Top Css ======*/

.scroll-to-top {
    position: fixed;
    right: -10px;
    bottom: 80px;
    transform: rotate(90deg);
    z-index: 99999999999;
}

.scroll-to-top .visible {
    visibility: visible !important;
    opacity: 1 !important;
}

.scroll-to-top .scroll-top-inner {
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top .scroll-top-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.scroll-to-top .scroll-bar {
    width: 50px;
    height: 4px;
    margin-right: 10px;
    position: relative;
}

.scroll-to-top .scroll-bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--thm-base);
    opacity: 1;
}

.scroll-to-top .scroll-bar .bar-inner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: var(--thm-primary);
}

.scroll-to-top .scroll-bar-text {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--thm-base);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-to-top .scroll-bar-text:hover {
    background: var(--thm-primary);
    transform: scale(1.1);
}

.scroll-to-top .scroll-bar-text i {
	color:#fff;
    transform: rotate(-90deg);
}




/*== Styled Pagination Css ======*/
.styled-pagination {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 20px;
}

.styled-pagination.pdtop0 {
    padding-top: 0;
}

.styled-pagination li {
    position: relative;
    display: block;
    float: left;
    margin-right: 10px;
}

.styled-pagination li:last-child {
    margin-right: 0;
}

.styled-pagination li a {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    background: transparent;
    border: 1px solid #D9D9D9;
    color: var(--thm-black);
    font-size: 17px;
    line-height: 60px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    z-index: 1;
}

.styled-pagination li a span:before {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 58px;
}

.styled-pagination li.prev a span:before {
    position: relative;
    display: inline-block;
}

.styled-pagination li.next a span:before {
    position: relative;
    display: inline-block;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
    color: #ffffff;
    border-color: var(--thm-base);
    background: var(--thm-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
    width: 60px;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
    color: #ffffff;
}




/*== checked Css Css ======*/
.checked-box1 {
    position: relative;
    display: block;
    min-height: 20px;
}

.checked-box1 label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--thm-black);
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    cursor: pointer;
    min-height: 20px;
    font-family: var(--thm-font-3);
}

.checked-box1 input[type="checkbox"] {
    display: none;
}

.checked-box1 input[type="checkbox"]+label span {
    position: absolute;
    top: 2px;
    left: 0;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid #f2ece7;
    cursor: pointer;
    border-radius: 0px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box1 label span:before {
    font-family: "icomoon" !important;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    content: "\e938";
    color: var(--thm-base);
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border: 1px solid #8e8f8f;
    margin: 0px;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checked-box1 input[type="checkbox"]:checked+label span {
    border-color: #8e8f8f;
}

.checked-box1 input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}


/*== Accordion Box Css ======*/
.accordion-box {
    position: relative;
    display: block;
}

.accordion-box .block {
    position: relative;
    display: block;
    margin-bottom: 20px;
    transition: all 500ms ease;
}

.accordion-box .block:last-child {
    margin-bottom: 0px;
}

.accordion-box .block .acc-btn {
    position: relative;
    display: block;
    cursor: pointer;
    background: #ffffff;
    padding-top: 9px;
    padding-left: 55px;
    padding-bottom: 9px;
    padding-right: 20px;
    border: 1px solid #d4d4d4;
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active {
    background: #ffffff;
    border-bottom: 1px solid transparent;
}

.accordion-box .block .acc-btn h3 {
    color: var(--thm-black);
    font-size: 19px;
    line-height: 30px;
    font-weight: 600;
    font-family: var(--thm-font);
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active h3 {
    color: var(--thm-base);
}

.accordion-box .block .acc-btn .icon-outer {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 20px;
    height: 20px;
    color: var(--thm-black);
    font-size: 18px;
    text-align: left;
    line-height: 20px;
    cursor: pointer;
    transform: translateY(-50%) rotate(0deg);
    transition: all 500ms ease;
    z-index: 1;
}

.accordion-box .block .acc-btn.active .icon-outer {
    color: var(--thm-base);
    transform: translateY(-50%) rotate(0deg);
}

.accordion-box .block .acc-btn .icon-outer i:before {
    font-weight: 700;
}

.accordion-box .block .acc-btn.active .icon-outer i:before {
    content: "\e90b";
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
    padding-top: 1px;
    padding-left: 55px;
    padding-bottom: 21px;
    padding-right: 20px;
    border: 1px solid #d4d4d4;
    border-top: 1px solid transparent;
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .acc-content p {
    margin: 0;
}




/* Accordion Box Style1 Css */
.accordion-box-style1 {
    position: relative;
    display: block;
}

.accordion-box-style1 .accordion {
    position: relative;
    display: block;
    background: #F5F5F5;
    padding: 0px 50px 0px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.accordion-box-style1 .accordion.mar0 {
    margin: 0;
}

.accordion-box-style1 .accordion .accord-btn {
    position: relative;
    display: block;
    cursor: pointer;
    padding-top: 35px;
    padding-right: 50px;
    padding-bottom: 35px;
    transition: all 500ms ease;
}

.accordion-box-style1 .accordion .accord-btn h4 {
    color: var(--thm-black);
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    font-family: var(--thm-font);
    transition: all 500ms ease;
}

.accordion-box-style1 .accordion .accord-btn::after {
    font-family: "icomoon" !important;
    position: absolute;
    content: "\e91f";
    top: 50%;
    right: 0px;
    margin-top: 0px;
    color: var(--thm-primary);
    font-size: 20px;
    line-height: 20px;
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    transition: all 500ms ease 0s;
}

.accordion-box-style1 .accordion .accord-btn.active {
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.accordion-box-style1 .accordion .accord-btn.active h4 {
    color: var(--thm-primary);
}

.accordion-box-style1 .accordion .accord-btn.active:after {
    color: var(--thm-black);
    content: "\e92d";
}

.accordion-box-style1 .accordion .accord-content {
    position: relative;
    padding-top: 0px;
    padding-bottom: 30px;
    padding-left: 0px;
    padding-right: 70px;
    display: none;
    margin-top: -16px;
}

.accordion-box-style1 .accordion .accord-content.collapsed {
    display: block;
}

.accordion-box-style1 .accordion .accord-content p {
    color: var(--thm-gray);
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    margin: 0;
}






/*== Search Popup Css ======*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.75;
    cursor: pointer;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
}

.search-popup__content form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0px;
    overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
}

.search-popup__content .thm-btn {
    padding: 0;
    width: 68px;
    height: 68px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--thm-base);
    border: 0;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.search-popup__content .thm-btn i {
    background-color: transparent;
    margin-left: 0;
}

.search-popup__content .thm-btn:hover {
    color: #ffffff;
    background-color: var(--thm-black);
}

/* Preloader */
.handle-preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    z-index: 9999999;
}

.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    margin: 0 auto 45px auto;
    animation: spinner 1s infinite linear;
}

.handle-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
    position: relative;
    display: inline-block;
    font-family: var(--thm-font-3);
    font-weight: 700;
    letter-spacing: 15px;
    font-size: 70px;
    line-height: 70px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    animation: letters-loading 4s infinite;
    content: attr(data-text-preloader);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.3s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 0.5s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 0.7s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
    animation-delay: 0.8s;
}

.handle-preloader .loader-section {
    background-color: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    color: #ffffff;
}

.handle-preloader .animation-preloader .spinner {
    border: 3px solid #ffffff;
    border-top-color: rgba(255, 255, 255, 0.7);
}

/* AnimaciĆĀ³n del preloader */
@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}






.footer-social-link-style1 {
    position: relative;
    display: block;
}

.footer-social-link-style1 ul {
    position: relative;
    display: block;
}

.footer-social-link-style1 ul li {
    position: relative;
    float: left;
    margin-right: 10px;
}

.footer-social-link-style1 ul li:last-child {
    margin-right: 0;
}

.footer-social-link-style1 ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background: #ffffff;
    border: 1px solid #f2ece7;
    border-radius: 50%;
    color: #a5a2a0;
    font-size: 14px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.footer-social-link-style1 ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--thm-base);
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.footer-social-link-style1 ul li:hover a:before {
    opacity: 1;
    transform: scale(1);
}

.footer-social-link-style1 ul li:hover a {
    color: #ffffff;
    border-color: var(--thm-base);
}

@-webkit-keyframes pulse10 {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ee212b;
        box-shadow: 0 0 0 0 #ee212b;
    }

    40% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    70% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    }
}

@keyframes pulse10 {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ee212b;
        box-shadow: 0 0 0 0 #ee212b;
    }

    40% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    70% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    }
}

.legal-status-box{
    background:#ffffff;
    border-radius:18px;
    padding:35px 40px;
    box-shadow:0 8px 30px rgba(0,0,0,0.05);
    border:1px solid #ffc107;
}

.legal-main-title{
    color:#a55b16;
    font-weight:700;
    text-decoration:underline;
    margin-bottom:22px;
}

.legal-sub-title{
    color:#a55b16;
    font-weight:700;
    margin-top:28px;
    margin-bottom:18px;
}

.legal-text p{
    margin-bottom:2px;
}

.legal-content p{
    margin-bottom:12px;
}

.legal-indent{
    padding-left:50px;
}

.legal-indent2{
    padding-left:100px;
}

.legal-content em{
    font-style:italic;
}

.legal-content a{
    color:#0b4f8a;
    text-decoration:underline;
}



/*=================================
    Modern Card System
==================================*/

.legal-card-grid{
    margin-top:35px;
}

.legal-modern-card{
    background:#fff;
    border-radius:18px;
    padding:28px 30px;
    height:100%;
    border:1px solid #f1f1f1;
    box-shadow:0 8px 24px rgba(0,0,0,0.04);
    transition:all .3s ease;
}

.legal-modern-card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 35px rgba(0,0,0,0.08);
}

.legal-card-heading{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:22px;
}

.legal-card-icon{
    width:54px;
    height:54px;
    line-height:54px;
    text-align:center;
    border-radius:14px;
    background:#f7f2eb;
    color:#a55b16;
    font-size:20px;
    flex-shrink:0;
}

.legal-card-heading h4{
    margin:0;
    color:#222;
    font-weight:700;
}

.legal-card-content p{
    margin-bottom:10px;
    line-height:1.9;
}

.legal-card-content strong{
    color:#111;
}

.legal-card-content a{
    color:#0b4f8a;
    text-decoration:none;
}

.legal-card-content a:hover{
    text-decoration:underline;
}

.bank-list{
    margin:0;
    padding:0;
    list-style:none;
}

.bank-list li{
    position:relative;
    padding-left:24px;
    margin-bottom:12px;
    line-height:1.8;
}

.bank-list li:before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:#a55b16;
    position:absolute;
    left:0;
    top:11px;
}



/*=================================
    Responsive
==================================*/

@media(max-width:767px){

    .legal-status-box{
        padding:24px 18px;
        border-radius:14px;
    }

    .legal-indent{
        padding-left:18px;
    }

    .legal-indent2{
        padding-left:35px;
    }

    .legal-modern-card{
        padding:24px 20px;
        border-radius:14px;
    }

}

/*** 
=============================================
    Features Style1 Css
=============================================
***/
.features-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 75px 0px 0px;
    margin-top: -15px;
    z-index: 10;
}

.single-features-style1 {
    position: relative;
    display: block;
    padding: 0 30px;
    margin-bottom: 40px;
}

.single-features-style1 .icon {
    position: relative;
    display: block;
    width: 110px;
    min-height: 100px;
    margin: 0 auto 25px;
}

.single-features-style1 .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 90px;
}

.single-features-style1 .icon .icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-features-style1 .icon .icon-bg img {
    position: relative;
    display: inline-block;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-features-style1:hover .icon .icon-bg img {
    transform: scale(1.07);
}

.single-features-style1 .border-box {
    position: relative;
    display: block;
    width: 50px;
    height: 3px;
    margin: 0 auto;
    background: #2099a4cc;
}

.single-features-style1 .text {
    position: relative;
    display: block;
    margin-top: 35px;
}

.single-features-style1 .text h3 {
    color: var(--thm-black);
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    margin-bottom: 24px;
}

.single-features-style1 .text p {
    margin: 0;
}



/*** 
=============================================
    Features Style1 Instyle2 Css
=============================================
***/
.features-style1--instyle2 {
    background-color: #F5F5F5;
    overflow: hidden;
}

.features-style1--instyle2__shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #F5F5F5;
    background-blend-mode: luminosity;
    opacity: 0.70;
    z-index: -1;
}

.features-style1--instyle2__shape-1 {
    position: absolute;
    top: -42px;
    left: 0;
}

.features-style1--instyle2__shape-2 {
    position: absolute;
    bottom: -32px;
    right: 0px;
}




/*** 
=============================================
    Causes Style1 Css
=============================================
***/
.causes-style1 {
    position: relative;
    display: block;
    background-color: #f5f5f5;
    padding: 150px 0px 150px;
    z-index: 10;
}

.causes-style1__shape1 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.causes-style1 .sec-title .sub-title .big-title {
    color: #EBEBEB;
}

.single-causes-style1 {
    position: relative;
    display: block;
}

.single-causes-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.single-causes-style1 .img-box img {
    width: 100%;
}

.single-causes-style1 .img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-black);
    opacity: 0;
    z-index: 2;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.single-causes-style1:hover .img-box::before {
    opacity: 0.3;
}

.single-causes-style1:hover .img-box img {
    transform: scale(1.05) rotate(0deg);
}

.single-causes-style1 .text-box {
    position: relative;
    display: block;
       padding: 20px 15px 20px;
    background-color: #e7e0d3;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.single-causes-style1 .text-box .category {
    position: relative;
    display: inline-block;
    background: #09109fcc;
    border-radius: 5px;
    padding: 8px 20px 6px;
}

.single-causes-style1 .text-box .category h6 {
    color: #ffffff;
    font-size: 13px;
    line-height: 26px;
    text-transform: uppercase;
}

.single-causes-style1 .text-box h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    margin-top: 34px;
    margin-bottom: 14px;
}

.single-causes-style1 .text-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-causes-style1 .text-box h3 a:hover {
    color: var(--thm-base);
}

.single-causes-style1 .text-box p {
    margin: 0;
}

.causes-raised-box {
    position: relative;
    display: block;
    background: #f5f5f5;
    border-radius: 5px;
    padding: 15px 30px 15px;
    margin: 30px 0 28px;
}

.causes-raised-box .inner {
    position: relative;
    display: block;
    padding-left: 65px;
    min-height: 30px;
}

.causes-raised-box .inner-title {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}

.causes-raised-box .inner-title h6 {
    color: var(--thm-black);
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
}



.progress-levels {
    position: relative;
    display: block;
    padding: 12px 0;
}

.progress-box {
    position: relative;
    display: block;
}

.progress-box .bar {
    position: relative;
    display: block;
    padding-right: 45px;
}

.progress-box .bar .bar-inner {
    position: relative;
    width: 100%;
    height: 6px;
    background: #d9d9d9;
    border-radius: 5px;
}

.progress-box .bar .bar-fill {
    position: absolute;
    top: 0%;
    left: 0px;
    bottom: 0%;
    width: 0px;
    height: 6px;
    border-radius: 5px;
    transition: all 2000ms ease 300ms;
    background: var(--thm-base);
}

.progress-box .bar .bar-fill:before {
    content: "";
    position: absolute;
    top: -4px;
    right: 0;
    width: 14px;
    height: 14px;
    background-color: var(--thm-base);
    border-radius: 50%;
}

.progress-box .skill-percent {
    position: absolute;
    top: -12px;
    right: 0px;
}

.progress-box .count-text {
    position: relative;
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    display: inline-block;
    float: none;
    font-family: var(--thm-font);
}

.progress-box .percent {
    position: relative;
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    display: inline-block;
    float: none;
    margin-left: -3px;
    font-family: var(--thm-font);
}



.achieved-goal-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.achieved-goal-box .single-box {
    position: relative;
    display: block;
}

.achieved-goal-box .single-box p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.achieved-goal-box .single-box p span {
    font-weight: 700;
}


.single-causes-style1 .text-box .btns-box {
    position: relative;
    display: block;
    margin-top: 35px;
}

.single-causes-style1 .text-box .btns-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.single-causes-style1 .text-box .btns-box a:after {
    background-color: var(--thm-primary);
}

.causes-style1-carousel {
    position: relative;
}

.causes-style1-carousel .owl-stage-outer {
    padding-bottom: 70px;
}



/*** 
=============================================
    Causes Style2 Css
=============================================
***/
.causes-style2 {
    position: relative;
    display: block;
    background-color: #f5f5f5;
    padding: 150px 0px 150px;
    z-index: 10;
}

.causes-style2__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-color: #f5f5f5;
    background-blend-mode: multiply;
    z-index: -1;
}

.causes-style2__shape1 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.causes-style2 .sec-title .sub-title {
    padding-top: 0;
}


.single-causes-style2 {
    position: relative;
    display: flex;
    background: #FFFFFF;
    box-shadow: 4px 4px 30px 10px rgba(0, 0, 0, 0.05);
    padding: 60px 60px 60px;
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.single-causes-style2 .text-box {
    position: relative;
    display: block;
    max-width: 480px;
    width: 100%;
}

.single-causes-style2 .text-box .category {
    position: absolute;
    top: -80px;
    left: 0;
    border-radius: 5px;
    background: #F2B516;
    padding: 8px 15px 6px;
}

.single-causes-style2 .text-box .category h6 {
    color: #ffffff;
    font-size: 13px;
    line-height: 26px;
    text-transform: uppercase;
}

.single-causes-style2 .text-box h3 {
    font-size: 32px;
    line-height: 43px;
    text-transform: capitalize;
    margin-bottom: 28px;
}

.single-causes-style2 .text-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-causes-style2 .text-box h3 a:hover {
    color: var(--thm-base);
}

.single-causes-style2 .text-box p {
    margin: 0;
}

.single-causes-style2 .causes-raised-box {
    position: relative;
    display: block;
    background: transparent;
    border-radius: 0px;
    padding: 0px 0px 0px;
    margin: 13px 0 15px;
}

.single-causes-style2 .causes-raised-box .inner {
    position: relative;
    display: block;
    padding-left: 0;
}

.single-causes-style2 .progress-box .bar {
    padding-right: 0;
}

.single-causes-style2 .progress-box .bar .bar-inner {
    position: relative;
    width: 100%;
    height: 14px;
    background: #d9d9d9;
    border-radius: 7px;
}

.single-causes-style2 .progress-box .bar .bar-fill {
    background-color: #0C828C;
    height: 14px;
    border-radius: 7px;
}

.single-causes-style2 .progress-box .bar .bar-fill:before {
    display: none;
}

.single-causes-style2 .achieved-goal-box {
    margin-bottom: 35px;
}

.single-causes-style2 .btns-box {
    position: relative;
    display: block;
    line-height: 0;
}

.single-causes-style2 .btns-box .btn-one {
    line-height: 61px;
    border-radius: 50px;
}

.single-causes-style2 .btns-box .btn-one::after {
    background-color: #E04F44;
}

.single-causes-style2 .btns-box .btn-one::before {
    background-color: var(--thm-base);
}

.single-causes-style2 .img-box {
    position: relative;
    display: block;
    max-width: 600px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background-color: var(--thm-primary);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-causes-style2 .img-box img {
    width: 100%;
    transition: all 0.5s ease;
}

.single-causes-style2:hover .img-box img {
    opacity: 0.30;
    transform: scale(1.05) rotate(0deg);
}




.single-causes-style3 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background: #FFFFFF;
    box-shadow: 4px 4px 30px 10px rgba(0, 0, 0, 0.05);
    padding: 30px 30px 30px;
    padding-right: 45px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.single-causes-style3 .img-box {
    position: relative;
    display: block;
    max-width: 240px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background-color: var(--thm-primary);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-causes-style3 .img-box img {
    width: 100%;
    transition: all 0.5s ease;
}

.single-causes-style3:hover .img-box img {
    opacity: 0.30;
    transform: scale(1.05) rotate(0deg);
}

.single-causes-style3 .text-box {
    position: relative;
    display: block;
    max-width: 280px;
    width: 100%;
}

.single-causes-style3 .text-box h3 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    margin-bottom: 11px;
}

.single-causes-style3 .text-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-causes-style3 .text-box h3 a:hover {
    color: var(--thm-base);
}

.single-causes-style3 .text-box p {
    margin: 0;
}


.single-causes-style3 .achieved-goal-box {
    position: relative;
    display: block;
    margin-top: 8px;
}

.single-causes-style3 .achieved-goal-box p {
    font-size: 14px;
    margin: 0;
}

.single-causes-style3 .achieved-goal-box p span {
    font-weight: 700;
}


.single-causes-style3 .causes-raised-box {
    position: relative;
    display: block;
    background: transparent;
    border-radius: 0px;
    padding: 0px 0px 0px;
    margin: 0px 0 0px;
}

.single-causes-style3 .causes-raised-box .inner {
    position: relative;
    display: block;
    padding-left: 0;
}

.single-causes-style3 .progress-box .bar {
    padding-right: 0;
}

.single-causes-style3 .progress-box .bar .bar-inner {
    position: relative;
    width: 100%;
    height: 10px;
    background: #d9d9d9;
    border-radius: 7px;
}

.single-causes-style3 .progress-box .bar .bar-fill {
    background-color: #0C828C;
    height: 10px;
    border-radius: 7px;
}

.single-causes-style3 .progress-box .bar .bar-fill:before {
    display: none;
}

.single-causes-style3 .progress-box .skill-percent {
    position: relative;
    top: 0;
    left: 0;
    right: 0px;
    display: flex;
    align-items: center;
    margin-top: 11px;
}

.single-causes-style3 .progress-box .skill-percent p {
    position: relative;
    display: block;
    padding-right: 10px;
    font-size: 14px;
}

.single-causes-style3 .progress-box .percent {
    font-weight: 700;
}

.single-causes-style3 .progress-box .count-text {
    font-weight: 700;
}


.single-causes-style3 .btns-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 8px;
}

.single-causes-style3 .btns-box .btn-one {
    color: var(--thm-black);
    line-height: 52px;
    border-radius: 50px;
    border: 2px solid #515151;
    padding-left: 30px;
    padding-right: 30px;
}

.single-causes-style3 .btns-box .btn-one::after {
    background: #FFFFFF;
}

.single-causes-style3 .btns-box .btn-one::before {
    background-color: var(--thm-base);
}



.causes-style2-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.causes-style2-carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.causes-style2-carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}



/*------------------------------------------
  Mission Style1 Css
-------------------------------------------*/
.mission-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 0px 0 50px;
    z-index: 10;
}

.mission-style1__img {
    position: relative;
    display: block;
    z-index: 1;
}

.mission-style1__img-shape {
    position: absolute;
    top: -100px;
    left: -210px;
    z-index: -1;
}

.mission-style1__img-box {
    position: relative;
    display: block;
    margin-left: -110px;
    border-radius: 10px;
    overflow: hidden;
}

.mission-style1__img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.mission-style1__img-box img {
    width: 100%;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.mission-style1__img-box:hover img {
    transform: scale(1.02) rotate(1deg);
}

.mission-style1__content-box {
    position: relative;
    display: block;
    padding-top: 20px;
    margin-left: -95px;
    margin-right: -110px;
    z-index: 3;
}

.mission-style1__content-box .row {
    --bs-gutter-x: 35px;
}

.mission-style1-single-box {
   position: relative;
    display: block;
    background-color: #F5F5F5;
    padding: 15px 20px 15px;
    padding-right: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.mission-style1-single-box:hover {
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 15%);
    transform: translateY(-10px);
}

.mission-style1-single-box .inner {
    position: relative;
    display: block;
    padding-left: 135px;
}

.mission-style1-single-box .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: #0C828C;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-style1-single-box .icon span {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 60px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.mission-style1-single-box:hover .icon span {
    transform: rotateY(180deg) scale(1.0);
}

.mission-style1-single-box .icon.bg2 {
    background: #E04F44;

}

.mission-style1-single-box .icon.bg3 {
    background: var(--thm-black)
}

.mission-style1-single-box .icon.bg4 {
    background: var(--thm-base)
}


.mission-style1-single-box .inner .text {
    position: relative;
    display: block;
    min-height: 100px;
}

.mission-style1-single-box .inner .text h3 {
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.mission-style1-single-box .inner .text p {
    margin: 0;
}



/*** 
=============================================
    Slogan Style1 Css
=============================================
***/
.slogan-style1 {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 50px 0 50px;
    z-index: 10;
}

.slogan-style1-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-color: #3B3B3B;
    background-blend-mode: multiply;
    z-index: -1;
}

.slogan-style1__shape-1 {
    position: absolute;
    top: 90px;
    left: 7%;
    z-index: 1;
}

.slogan-style1__shape-2 {
    position: absolute;
    left: 0%;
    bottom: 90px;
    right: 0;
    text-align: center;
    z-index: 1;
}

.slogan-content-box {
    position: relative;
    display: block;
}

.slogan-content-box .sec-title {
    padding-bottom: 46px;
}

.slogan-content-box .sec-title .sub-title {
    padding-top: 0;
}

.slogan-content-box .sec-title .sub-title h4 {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
   
}

.slogan-content-box .sec-title .sub-title h4:before {
    bottom: 0px;
}

.slogan-content-box .sec-title h2 {
    color: #ffffff;
}

.slogan-content-box .btns-box {
     position: relative;
    display: flex;
    align-items: center;
    gap: 15px;      /* space between buttons */
    line-height: normal;
    flex-wrap: wrap;   /* optional */
}

.slogan-content-box .btns-box a:after {
    background-color: var(--thm-primary);
}



.slogan-style1__right-box {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 54px 40px 52px;
    overflow: hidden;
    border-radius: 10px;
    border-top-left-radius: 0;
    z-index: 2;
}

.slogan-style1__right-box-shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.slogan-style1__right-box ul {
    position: relative;
    display: block;
}

.slogan-style1__right-box ul li {
    position: relative;
    display: block;
    color: var(--thm-black);
    padding-left: 30px;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;

}

.slogan-style1__right-box ul li+li {
    margin-top: 20px;
}

.slogan-style1__right-box ul li .icon {
    position: absolute;
    top: 1px;
    left: 0;
}

.slogan-style1__right-box ul li .icon span {
    font-size: 15px;
    color: var(--thm-base);
}


.single-events-box--style2 .date-box{
    flex-shrink:0;

    width:140px;
}

/* Content Area */
.single-events-box--style2 .title-box{
    min-height:auto;

    display:flex;

    flex-direction:column;

    justify-content:center;
}

/*------------------------------------------
  Team Style1
--------------------------------------------*/
.team-style1 {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 150px 0 90px;
    z-index: 10;
}

.single-team-style1 {
    position: relative;
    display: block;
    margin-bottom: 53px;
}

.single-team-style1 .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-team-style1 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.single-team-style1 .img-holder .inner::before {
    position: absolute;
    top: 0%;
    left: 0%;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 100%;
    -webkit-transform: translateX(-50%, -50%);
    transform: translateX(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.single-team-style1:hover .img-holder .inner::before {
    -webkit-animation: circle .95s;
    animation: circle .95s;
}

.single-team-style1 .img-holder .inner img {
    width: 100%;
    transform: scale(1.0);
    -webkit-transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.3, 0.02, 0, 0.6);
}

.single-team-style1:hover .img-holder .inner img {
    transform: scale(1.03);
    transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}


.single-team-style1 .overlay-content {
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    right: 0;
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: linear-gradient(180deg, rgba(12, 130, 140, 0) 0%, #094E54 100%);
    transform: perspective(400px) rotateX(0deg) translateY(0%);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: 1;
}

.single-team-style1:hover .overlay-content {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg) translateY(0%);
    transition: all 0.4s ease-in-out 0.1s;
}

.team-social-link {
    position: relative;
    display: block;
    padding-bottom: 40px;
}

.team-social-link ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-social-link ul li {
    position: relative;
    float: left;
    margin-right: 10px;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.team-social-link ul li:nth-child(2n + 1) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.team-social-link ul li:nth-child(2n + 2) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.team-social-link ul li:nth-child(2n + 3) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.team-social-link ul li:nth-child(2n + 4) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.single-team-style1:hover .overlay-content .team-social-link ul li {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.team-social-link ul li:last-child {
    margin-right: 0;
}

.team-social-link ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.team-social-link ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.team-social-link ul li:hover a:before {
    opacity: 1;
    transform: scale(1);
    background-color: var(--thm-base);
    border-radius: 5px;
}

.team-social-link ul li:hover a {
    color: #000;
}

.single-team-style1 .title-box {
    position: relative;
    display: block;
    padding-top: 33px;
}

.single-team-style1 .title-box h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    margin-bottom: 6px;

}

.single-team-style1 .title-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-team-style1 .title-box h3 a:hover {
    color: var(--thm-base);
}

.single-team-style1 .title-box h5 {
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    font-family: var(--thm-font);
}



/*** 
=============================================
   Features Style2 Css
=============================================
***/
.features-style2 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 0 0 90px;
    z-index: 10;
}

.single-features-style2 {
    position: relative;
    display: block;
    padding: 50px 50px 50px;
    background: #FFFFFF;
    box-shadow: 4px 4px 30px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 60px;
    margin-top: -60px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-features-style2:hover {
    transform: translateY(-10px);
}

.single-features-style2__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-features-style2:hover .single-features-style2__shape {
    opacity: 0;
}

.single-features-style2__shape-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    transform: translateY(100%);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-features-style2:hover .single-features-style2__shape-overlay {
    transform: translateY(0%);
    opacity: 1;
}

.single-features-style2 .icon {
    position: relative;
    display: block;
}

.single-features-style2 .text {
    position: relative;
    display: block;
    margin-top: 44px;
}

.single-features-style2 .text h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    padding-bottom: 24px;
}

.single-features-style2 .text h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-features-style2 .text h3 a:hover {
    color: var(--thm-base);
}

.single-features-style2 .text p {
    margin: 0;
}

.page-heading{
	font-family: 'Great Vibes', cursive;
    margin-bottom: 25px;
    position: relative;
}

.page-heading h2{
	font-family: 'Great Vibes', cursive;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    color: #29316c;
    display: inline-block;
    position: relative;

    letter-spacing: 0.3px;
}

.page-heading h2::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;

    width: 85px;
    height: 4px;

    border-radius: 50px;

    background: var(--thm-primary);
}

/* Tablet */
@media (max-width: 991px){

    .page-heading h2{
        font-size: 25px;
    }

}

/* Mobile */
@media (max-width: 767px){

    .page-heading{
        margin-bottom: 20px;
    }

    .page-heading h2{
        font-size: 22px;
        line-height: 1.4;
    }

    .page-heading h2::after{
        width: 65px;
        height: 3px;
    }

}

.page-heading:not(:first-child){
    margin-top: 20px;
}
.about-style1__content .inner-text p{
    margin-bottom: 10px;
    line-height: 2;
}

/* Remove last paragraph extra gap */
.about-style1__content .inner-text p:last-child{
    margin-bottom: 10px;
}

.right-image{
       position: relative;
    padding: 6px;
    border-radius: 22px;
    /* background: #166534; */
    box-shadow: 4px 4px 0px #f59e0b;
    overflow: hidden;
}

/* Decorative Pattern */
.right-image::before{
    content: '';
    position: absolute;

    width: 140px;
    height: 140px;

    top: -50px;
    right: -50px;

    background: rgba(255,255,255,0.15);

    border-radius: 50%;
}

/* Image */
.right-image img{
     width: 100%;
    display: block;

    border-radius: 16px;

    border: 2px solid #ffffff;   
}

/* Hover Effect */
.right-image:hover img{
    transform: scale(1.01);
}

/* Mobile */
@media (max-width: 991px){

    .right-image{
        margin-top: 30px;
    }

}

.sec-title:not(:first-child) .page-heading{
    margin-top: 20px;
}


.ngo-divider{
    position: relative;
    margin: 20px 0 15px;
    height: 24px;
}

.ngo-divider:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-top: 2px dashed #c7a14a;
    transform: translateY(-50%);
}

.ngo-divider:after{
    content: "❋";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 0 12px;
    color: #b58a2f;
    font-size: 18px;
}


/*========================================
    FACE COMPACT MODERN TABS
=========================================*/

.face-mini-tabs{
    position: relative;
    margin-top: 35px;
    border-radius: 22px;
    background: #ffffff;
    overflow: hidden;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 35px rgba(15,23,42,0.06);
}

/* soft background */

.face-mini-tabs::before{
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(249,115,22,0.07), transparent 70%);
    top: -120px;
    right: -90px;
}

.face-mini-tabs::after{
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(37,99,235,0.06), transparent 70%);
    bottom: -90px;
    left: -70px;
}

/*========================================
    TOP BUTTONS
=========================================*/

.face-mini-tab-buttons{
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #edf2f7;
}

.face-mini-btn{
    flex: 1;
    border: none;
    background: transparent;
    padding: 18px 12px;
    font-size: 17px;
    font-weight: 700;
    color: #334155;
    transition: all 0.3s ease;
    position: relative;
}

.face-mini-btn i{
    margin-right: 8px;
    font-size: 16px;
}

.face-mini-btn.active{
    color: #ffffff;
}

/* active tab colors */

.face-mini-btn:nth-child(1).active{
    background: linear-gradient(135deg,#ff6a00,#ff8a2b);
}

.face-mini-btn:nth-child(2).active{
    background: linear-gradient(135deg,#2563eb,#4f8cff);
}

.face-mini-btn:nth-child(3).active{
    background: linear-gradient(135deg,#16a34a,#24c55e);
}

/*========================================
    CONTENT AREA
=========================================*/

.face-mini-content-wrap{
    padding: 28px;
}

.face-mini-content{
    display: none;
    animation: fadeMini 0.4s ease;
}

.face-mini-content.active-mini{
    display: block;
}

@keyframes fadeMini{
    from{
        opacity: 0;
        transform: translateY(8px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/*========================================
    HEADER DESIGN
=========================================*/

.face-mini-head{
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.mini-icon{
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.goal-bg{
    background: linear-gradient(135deg,#8b5cf6,#7c3aed);
}

/* Vision */
.vision-bg{
    background: linear-gradient(135deg,#3b82f6,#2563eb);
}

/* Mission */
.mission-bg{
    background: linear-gradient(135deg,#14b8a6,#0f766e);
}

.mini-icon i{
    font-size: 22px;
    color: #ffffff;
}

.face-mini-head h4{
        margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #0f172a;
}

.face-mini-btn{
    flex: 1;
    border: none;
    padding: 18px 12px;
    font-size: 17px;
    font-weight: 700;
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
    z-index: 1;
    color: #1e293b;
}

/*========================================
    INACTIVE TAB COLORS
=========================================*/

/* Goal - Peach + Cream */
.face-mini-btn:nth-child(1){
    background: linear-gradient(135deg,#fff6ec,#ffe8cc);
}

/* Vision - Lavender + Sky */
.face-mini-btn:nth-child(2){
    background: linear-gradient(135deg,#f4f3ff,#dfe7ff);
}

/* Mission - Mint + Aqua */
.face-mini-btn:nth-child(3){
    background: linear-gradient(135deg,#ecfff8,#cffafe);
}

/* subtle shine effect */

.face-mini-btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255,255,255,0.35);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
    z-index: -1;
}

.face-mini-btn:hover::before{
    left: 130%;
}

/* hover elevation */

.face-mini-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/*========================================
    ICON COLORS
=========================================*/

.face-mini-btn:nth-child(1) i{
    color: #ddd6fe;
}

.face-mini-btn:nth-child(2) i{
    color: #dbeafe;
}

.face-mini-btn:nth-child(3) i{
    color: #ccfbf1;
}

.face-mini-btn i{
    margin-right: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

/*========================================
    ACTIVE STATES
=========================================*/

.face-mini-btn.active{
    color: #ffffff;
    transform: translateY(-3px);
}

/* Goal Active */
.face-mini-btn:nth-child(1){
    background: linear-gradient(135deg,#7c2d12,#b45309);
    color: #ffffff;
}

/* Vision - Royal Indigo */
.face-mini-btn:nth-child(2){
    background: linear-gradient(135deg,#312e81,#4338ca);
    color: #ffffff;
}

/* Mission - Forest Green */
.face-mini-btn:nth-child(3){
    background: linear-gradient(135deg,#14532d,#15803d);
    color: #ffffff;
}

/* Icons */
.face-mini-btn i{
    color: rgba(255,255,255,0.92);
}

/* Hover */
.face-mini-btn:hover{
    filter: brightness(1.08);
}



.face-mini-btn:nth-child(1){
    background: linear-gradient(135deg,#7f1d1d,#b91c1c);
    color: #ffffff;
}

/* Vision - Navy Blue */
.face-mini-btn:nth-child(2){
    background: linear-gradient(135deg,#1e3a8a,#2563eb);
    color: #ffffff;
}

/* Mission - Emerald Green */
.face-mini-btn:nth-child(3){
    background: linear-gradient(135deg,#065f46,#059669);
    color: #ffffff;
}

/* Icons */
.face-mini-btn i{
    color: rgba(255,255,255,0.95);
}

/* Hover */
.face-mini-btn:hover{
    filter: brightness(1.08);
}

/* Active States */

.face-mini-btn:nth-child(1){
    background: linear-gradient(135deg,#7c3aed,#6d28d9);
    color: #ffffff;
}

/* Vision */
.face-mini-btn:nth-child(2){
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: #ffffff;
}

/* Mission */
.face-mini-btn:nth-child(3){
    background: linear-gradient(135deg,#0f766e,#0d9488);
    color: #ffffff;
}

/* Icons */
.face-mini-btn i{
    color: rgba(255,255,255,0.92);
}

/* Hover */
.face-mini-btn:hover{
    filter: brightness(1.07);
}

/* Active States */

.face-mini-btn:nth-child(1).active{
    background: linear-gradient(135deg,#8b5cf6,#7c3aed);
}

.face-mini-btn:nth-child(2).active{
    background: linear-gradient(135deg,#3b82f6,#2563eb);
}

.face-mini-btn:nth-child(3).active{
    background: linear-gradient(135deg,#14b8a6,#0f766e);
}
.face-mini-btn.active i{
    color: #ffffff;
}

.face-mini-btn.active::before{
    display: none;
}

.face-mini-btn{
    flex: 1;
    border: none;
    padding: 10px 12px;
    font-size: 17px;
    font-weight: 700;
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
    z-index: 1;
    color: #1e293b;
    border-radius: 0;
    margin: 0;
    line-height: 1.2;
}

/* remove movement causing size difference */

.face-mini-btn:hover,
.face-mini-btn.active{
    transform: none;
}

/* equal heights */

.face-mini-tab-buttons{
    display: flex;
    align-items: stretch;
}

.face-mini-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0px;
}

/* remove extra shadow shift */

.face-mini-btn:hover{
    box-shadow: none;
}

.face-mini-tab-buttons{
    display: flex;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

/* divider line */

.face-mini-btn{
    position: relative;
}

/* add divider except last */

.face-mini-btn:not(:last-child)::after{
    content: '';
    position: absolute;
    top: 18%;
    right: 0;
    width: 1.8px;
    height: 90%;
    background: rgba(255,255,255,0.75);
}

/* remove divider on active overlap if needed */

.face-mini-btn.active:not(:last-child)::after{
    background: rgba(255,255,255,0.85);
}

/*========================================
    PARAGRAPH
=========================================*/

.mini-text p{
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.9em;
    color: #475569;
}

/*========================================
    MODERN FEATURE LIST
=========================================*/

.face-mini-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    margin: 25px 0;
}

.face-mini-list .mini-list-item{
    position: relative;
    background: #8144f01c;
    border-radius: 16px;
    padding: 16px 18px 16px 58px;
    border: 1px solid #eef2f7;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7em;
    color: #1e293b;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.face-mini-list .mini-list-item::before{
    content: '\f058';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 18px;
    top: 18px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg,#8b5cf6,#7c3aed);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Vision */
#visionMini .mini-list-item::before{
    background: linear-gradient(135deg,#3b82f6,#2563eb);
}

/* Mission */
#missionMini .mini-list-item::before{
    background: linear-gradient(135deg,#14b8a6,#0f766e);
}

/*========================================
    RESPONSIVE
=========================================*/

@media(max-width:991px){

    .face-mini-list{
        grid-template-columns: 1fr;
    }

    .face-mini-head h4{
        font-size: 26px;
    }
}

@media(max-width:767px){

    .face-mini-tab-buttons{
        flex-direction: column;
    }

    .face-mini-btn{
        width: 100%;
        text-align: left;
        padding: 16px 18px;
    }

    .face-mini-content-wrap{
        padding: 22px;
    }

    .face-mini-head{
        gap: 14px;
    }

    .mini-icon{
        width: 50px;
        height: 50px;
    }

    .mini-icon i{
        font-size: 18px;
    }

    .face-mini-head h4{
        font-size: 22px;
    }

    .mini-text p{
        font-size: 15px;
        line-height: 1.8em;
    }

    .face-mini-list .mini-list-item{
        font-size: 14px;
        padding: 14px 15px 14px 52px;
    }
}

/*** 
=============================================
    Events Style1 Css
=============================================
***/
.events-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 50px 0 50px;
    z-index: 10;
}

.events-style1 .sec-title .sub-title {
    padding-top: 0;
}

.events-style1 .row {
    --bs-gutter-x: 90px;
}

.single-events-box {
    position: relative;
    display: block;
}

.single-events-box__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.single-events-box__img img {
    width: 100%;
}


.single-events-box__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-black);
    opacity: 0;
    z-index: 2;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.single-events-box__img:hover::before {
    opacity: 0.20;
}

.single-events-box__img:hover img {
    transform: scale(1.05) rotate(0deg);
}



.single-events-box__text {
    position: relative;
    display: block;
    padding-left: 160px;
    margin-top: 25px;
}

.single-events-box__text .date-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
   width: 140px;
    height: 115px;
    background: #0C828C;
    border-radius: 10px;
}

.single-events-box__text .date-box.bg1 {
    background: #515151;
}

.single-events-box__text .date-box.bg2 {
    background: #F2B516;
}

.single-events-box__text .date-box.bg3 {
    background: #E04F44;
}

.single-events-box__text .date-box h2 {
    color: #FFFFFF;
    font-size: 32px;
    line-height: 28px;
    text-transform: uppercase;
}

.single-events-box__text .date-box h2 span {
    font-size: 18px;
}

.single-events-box__text .title-box {
     position:relative;

    min-height:115px;

    display:flex;

    flex-direction:column;

    justify-content:center;
}

.single-events-box__text .title-box h3 {
    position: relative;   
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.01em;
    text-transform: inherit;
    font-weight: 600;
}

.single-events-box__text .title-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-events-box__text .title-box h3 a:hover {
    color: var(--thm-base);
}


.single-events-box__text .meta-box {
    position: relative;
    display: block;
    margin-top: 5px;
}

.single-events-box__text .meta-box .meta-info {
    position: relative;
    display: inline-block;
    align-items: center;
}

.single-events-box__text .meta-box .meta-info li {
    position: relative;
    display: inline-block;
    align-items: center;
    color: #515151;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
}

.single-events-box__text .meta-box .meta-info li+li {
    padding-left: 0px;
}

.single-events-box__text .meta-box .meta-info li span {
    position: relative;
    display: inline-block;
    top: 1px;
    color: #E04F44;
    font-size: 18px;
    font-weight: 600;
    padding-right: 10px;
}


.events-style1__content {
    position: relative;
    display: block;
}

.events-style1__content-lists {
    position: relative;
    display: block;
}

.events-style1__content-list-item {
    position: relative;
    display: block;
    padding-bottom: 48px;
    margin-bottom: 45px;
}

.events-style1__content-list-item:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--thm-base);
}

.events-style1__content-list-item:last-child:before {
    display: none;
}

.events-style1__content-list-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}


.single-events-box--style2 {
    position: relative;
    display: block;
}

.single-events-box--style2 .single-events-box__text {
    position: relative;

    display:flex;

    align-items:center;

    gap:25px;

    margin-top:0;
}

.single-events-box--style2 .single-events-box__text .date-box .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.single-events-box--style2 .single-events-box__text .date-box .img-box img {
    width: 100%;
}

.single-events-box--style2 .single-events-box__text .date-box .img-box .overlay-content {
    position: absolute;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 10px;
    z-index: 2;
}

.single-events-box--style2 .single-events-box__text .date-box .img-box .overlay-content h2 {
    color: #FFFFFF;
    font-size: 32px;
    line-height: 28px;
    text-transform: uppercase;
}

.single-events-box--style2 .single-events-box__text .date-box .img-box .overlay-content h2 span {
    font-size: 18px;
}

@media only screen and (max-width: 767px) {

    .project-card .single-events-box__text{
        padding-left: 0 !important;
        text-align: center;
    }

    .project-card .date-box{
        width: 90px;
        height: 90px;
        margin: -70px auto 20px !important;
        border-radius: 50%;
        overflow: hidden;
    }
}

/*** 
=============================================
    Features Style3 Css
=============================================
***/
.features-style3 {
    position: relative;
    display: block;
    background-color: #ffffff;
    z-index: 10;
}

.features-style3 .container {
    max-width: 100%;
    padding: 0;
}

.features-style3 .container .row {
    --bs-gutter-x: 0px;
}

.single-features-style3 {
    position: relative;
    display: block;
}

.single-features-style3 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}



.single-features-style3 .img-box::before {
    position: absolute;
    top: 0%;
    left: 50%;
    display: block;
    content: '';
    width: 50%;
    height: 0%;
    background: rgba(255, 255, 255, .4);
    border-radius: 0%;
    -webkit-transform: translateX(-50%, -50%);
    transform: translateX(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.single-features-style3:hover .img-box::before {
    -webkit-animation: circle .95s;
    animation: circle .95s;
}

.single-features-style3 .img-box img {
    width: 100%;
}

.single-features-style3:hover .img-box img {
    transform: scale(1.05) rotate(0deg);
}

.single-features-style3 .img-box .gradient-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 335px;
    background: linear-gradient(180deg, rgba(242, 181, 22, 0) 0%, #F2B516 100%);
    z-index: 1;
}

.single-features-style3 .img-box .gradient-bg.style2 {
    background: linear-gradient(180deg, rgba(12, 130, 140, 0) 0%, #094E54 100%);
}

.single-features-style3 .img-box .gradient-bg.style3 {
    background: linear-gradient(180deg, rgba(224, 79, 68, 0) 0%, #E04F44 100%);
}

.single-features-style3 .img-box .title-box {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding-bottom: 45px;
    text-align: center;
    z-index: 2;
}

.single-features-style3 .img-box .title-box h3 {
    font-size: 32px;
    line-height: 42px;
    text-transform: capitalize;
    margin-bottom: 14PX;
}

.single-features-style3 .img-box .title-box h3 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-features-style3 .img-box .title-box h3 a:hover {
    color: var(--thm-black);
}

.single-features-style3 .img-box .title-box p {
    color: #F5F5F5;
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
}




/*** 
=============================================
    Slogan Style2 Css
=============================================
***/
.slogan-style2 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 150px 0px 150px;
    z-index: 10;
}

.slogan-style2__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.slogan-style2__bg::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: -2;
}


.slogan-style2__content {
    position: relative;
    display: block;
    margin-left: 20px;
}

.slogan-style2__content .sec-title {
    padding-bottom: 36px;
}

.slogan-style2__content .sec-title .sub-title {
    padding-top: 0;
}

.slogan-style2__content .sec-title .sub-title h4 {
    color: #ffffff;
}

.slogan-style2__content .sec-title h2 {
    color: #ffffff;
}

.slogan-style2__content ul {
    position: relative;
    display: block;
}

.slogan-style2__content ul li {
    position: relative;
    display: block;
    padding-left: 40px;
}

.slogan-style2__content ul li .icon {
    position: absolute;
    top: 6px;
    left: 0;
    line-height: 0;
}

.slogan-style2__content ul li+li {
    margin-top: 10px;
}

.slogan-style2__content ul li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 24px;
    line-height: 24px;
}

.slogan-style2__content ul li p {
    color: #FFFFFF;
    font-size: 22px;
    line-height: 38px;
}

.slogan-style2__content .btns-box {
    position: relative;
    display: block;
    margin-top: 53px;
    line-height: 0;
}

.slogan-style2__content .btns-box .btn-one {
    padding-left: 35px;
    padding-right: 35px;
    border-radius: 50px;
}

.slogan-style2__content .btns-box .btn-one::after {
    background: #E04F44;
}

.slogan-style2__content .btns-box .btn-one::before {
    background: var(--thm-base);
}



.slogan-style2__round-progress-box {
    position: relative;
    display: block;
    margin-left: -30px;
    margin-top: 100px;
}

.slogan-style2__round-progress-box ul {
    position: relative;
    display: flex;
}

.slogan-style2__round-progress-box ul li {
    position: relative;
    display: block;
}

.slogan-style2__round-progress-box ul li+li {
    margin-left: 20px;
}


.progress-block {
    position: relative;
    display: block;
}

.progress-block .inner-box {
    position: relative;
    width: 170px;
    min-height: 170px;
    text-align: center;
    margin: 0 auto 3px;
}

.progress-block .graph-outer {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    text-align: center;
    background: transparent;
    border-radius: 50%;
}

.progress-block .graph-outer .count-box {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    color: #FFFFFF;
    font-size: 42px;
    font-weight: 700;
    transform: translateY(-50%);
    text-transform: capitalize;
}

.progress-block .graph-outer .count-text {
    position: relative;
    display: inline-block;
    color: #FFFFFF;
    font-size: 42px;
    line-height: 56px;
    font-weight: 700;
    text-transform: capitalize;
}


.progress-block .title {
    position: relative;
    display: block;
    padding-top: 10px;
}

.progress-block .title h5 {
    color: #FFFFFF;
    font-size: 13px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
}



/*** 
=============================================
    Faq Style1 Css
=============================================
***/
.faq-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 150px 0 150px;
    z-index: 10;
}

.faq-content-box-style1 {
    position: relative;
    display: block;
    padding-right: 35px;
}

.faq-content-box-style1 .sec-title {
    padding-bottom: 36px;
}

.faq-content-box-style1 .sec-title .sub-title {
    padding-top: 0px;
    margin-bottom: 17px;
}

.about-style1__img--style2 {
    padding-left: 0;
    padding-right: 0;
    margin-right: -10px;
}

.satisfied-patients-box--style2 {
    left: auto;
    right: -50px;
}



/*** 
=============================================
    Cause Details Css
=============================================
***/
.cause-details {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 150px 0 100px;
    z-index: 10;
}

.cause-details-content {
    position: relative;
    display: block;
}

.cause-details-img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
}

.cause-details-img-box img {
    width: 100%;
}

.cause-details-img-box .category {
    position: absolute;
    background-color: var(--thm-base);
    left: 50px;
    bottom: 50px;
    padding: 6px 14px;
    border-radius: 5px;
}

.cause-details-img-box .category h6 {
    color: #FFFFFF;
    font-size: 13px;
    line-height: 26px;
    text-transform: uppercase;
}




.cause-details-text-box {
    position: relative;
    display: block;
    border: 1px solid #D9D9D9;
    border-radius: 0px 0px 10px 10px;
    padding: 52px 60px 70px;
}

.cause-details-text-box h2 {
    font-size: 32px;
    line-height: 43px;
    text-transform: capitalize;
    margin-bottom: 32px;
}

.cause-details-text-box p {
    position: relative;
}




.causes-info-box-outer {
    position: relative;
    display: block;
    background: rgba(242, 181, 22, 0.06);
    padding: 40px 40px 60px;
    border-radius: 10px;
    margin: 40px 0 62px;
}

.causes-raised-box--style2 {
    margin-top: 0;
    background: #FFFFFF;
    box-shadow: 4px 4px 30px 10px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    padding: 30px 45px 30px;
    margin-bottom: 20px;
}

.causes-raised-box--style2 .inner {
    padding-left: 75px;
}

.causes-raised-box--style2 .inner-title h6 {
    font-size: 17px;
}

.causes-raised-box--style2 .progress-levels {
    padding: 10px 0;
}

.causes-raised-box--style2 .progress-box .bar {
    padding-right: 55px;
}

.causes-raised-box--style2 .progress-box .bar .bar-inner {
    height: 10px;
}

.causes-raised-box--style2 .progress-box .bar .bar-fill {
    height: 10px;
}

.causes-raised-box--style2 .progress-box .bar .bar-fill:before {
    top: -5px;
    width: 20px;
    height: 20px;
}


.causes-raised-box--style2 .progress-box .skill-percent {
    top: -9px;
}

.causes-raised-box--style2 .progress-box .count-text {
    font-size: 17px;
}

.causes-raised-box--style2 .progress-box .percent {
    font-size: 17px;
}


.achieved-goal-box--style2 {
    position: relative;
}

.causes-info-box-outer .btns-box {
    position: absolute;
    left: 0;
    bottom: -20px;
    right: 0;
    line-height: 0;
    text-align: center;
}

.causes-info-box-outer .btns-box a {
    border-radius: 35px;
}

.causes-info-box-outer .btns-box a:after {
    background-color: var(--thm-primary);
}



.cause-details-text-box__bottom {
    position: relative;
    display: block;
}

.cause-details-text-box__bottom h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 36px;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    margin-bottom: 22px;
}

.cause-details-text-box__bottom p {
    margin: 0;
}

.cause-details-text-box__bottom ul {
    position: relative;
    display: block;
    margin-top: 25px;
    margin-bottom: 40px;
}

.cause-details-text-box__bottom ul li {
    position: relative;
    display: block;
    padding-left: 30px;
}

.cause-details-text-box__bottom ul li+li {
    margin-top: 11px;
}

.cause-details-text-box__bottom ul li .icon {
    position: absolute;
    top: 1px;
    left: 0;
    width: 18px;
    height: 18px;
    color: #0C828C;
}

.cause-details-text-box__bottom .bottom-text {
    position: relative;
    display: block;
}



.cause-details__bottom-img {
    position: relative;
    display: block;
    margin-top: 20px;
}

.cause-details__bottom-img .row {
    --bs-gutter-x: 60px;
}

.cause-details__bottom-img .single-img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 30px;
}

.cause-details__bottom-img .single-img-box img {
    width: 100%;
}




.donors-person-box {
    position: relative;
    display: block;
    margin-top: 62px;
}

.donors-person-box .inner-title {
    position: relative;
    display: block;
    margin-bottom: 45px;
}

.donors-person-box .inner-title h3 {
    font-size: 32px;
    line-height: 43px;
    text-transform: capitalize;
    margin-bottom: 27px;
}

.donors-person-box .row {
    --bs-gutter-x: 35px;
}

.single-donors-box {
    position: relative;
    display: block;
    margin-bottom: 43px;
}

.single-donors-box .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.single-donors-box .img-box img {
    width: 100%;
}

.single-donors-box .title-box {
    position: relative;
    display: block;
    margin-top: 32px;
    text-align: center;
}

.single-donors-box .title-box h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 36px;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.single-donors-box .title-box h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-donors-box .title-box h3 a:hover {
    color: var(--thm-base);
}

.single-donors-box .title-box p {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    text-transform: capitalize;
    color: #0C828C;
}



/*** 
=============================================
    Mission Style2 Css
=============================================
***/
.mission-style2 {
    position: relative;
    display: block;
    background-color: #F5F5F5;
    padding: 20px 0 25px;
    z-index: 10;
}

.mission-style2 .container {
    max-width: 1490px;
}

.mission-style2 .sec-title {
    padding-bottom: 70px;
}

.mission-style2__content {
    position: relative;
    display: block;
    padding-top: 70px;
}


.mission-style2__content .mission-style2__img-shape {
    position: absolute;
    top: -34px;
    left: -120px;
    z-index: -1;
}

.mission-style2__content-img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.mission-style2__content-img-inner {
    max-width: 518px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    background-color: #000000;
}

.mission-style2__content-img-inner img {
    width: 100%;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.mission-style2__content-img-inner:hover img {
    opacity: 0.80;
}

.mission-style2__content-left {
    position: relative;
    display: block;
    max-width: 510px;
    float: left;
}


.mission-style2__content-right {
    position: relative;
    display: block;
    max-width: 510px;
    float: right;
}

.mission-style1-single-box--style2 {
    background: #FFFFFF;
    box-shadow: 4px 4px 30px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.mission-style1-single-box--style2-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: all 500ms linear;
}

.mission-style1-single-box--style2:hover .mission-style1-single-box--style2-bg {
    opacity: 1;
}



/*** 
=============================================
    Cause Page One Css
=============================================
***/
.cause-page-one {
    position: relative;
    display: block;
    background-color: #ffffff;  
    z-index: 10;
}

.cause-page-one .single-causes-style1 {
    margin-bottom: 60px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.cause-page-one .single-causes-style1:hover {
    transform: translateY(-10px);
}

.cause-page-one .single-causes-style1 .text-box {
    border: 1px solid #D9D9D9;
    transition: box-shadow 0.5s ease;
    transition: all 0.5s ease;
}

.cause-page-one .single-causes-style1:hover .text-box {
    border-color: transparent;
    box-shadow: 4px 4px 30px 10px rgba(0, 0, 0, 0.05);
}


.cause-page-one .styled-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}



/*** 
=============================================
    Events Style2 Css
=============================================
***/
.events-style2 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 150px 0 60px;
    z-index: 10;
}

.events-style2 .row {
    --bs-gutter-x: 90px;
}

.events-style2 .single-events-box {
    margin-bottom: 90px;
}


.project-img-box {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.project-img-box img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
}
/*** 
=============================================
    Testimonials Page One Css
=============================================
***/
.testimonials-page-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 150px 0 100px;
    z-index: 10;
}

.testimonials-page-one .single-testimonials-style1 {
    margin-bottom: 50px;
}




/*---------------------------------------
  Faq Page One Css
-----------------------------------------*/
.faq-page-one {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 150px 0 150px;
    z-index: 10;
}

.faq-page-one .sec-title {
    padding-bottom: 40px;
}



.faq-search-box {
    position: relative;
    display: block;
    max-width: 770px;
    width: 100%;
    margin: 0 auto 70px;
}

.faq-search-box__inner {
    position: relative;
    display: block;
}

.faq-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.faq-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 60px;
    border-radius: 7px;
    font-family: var(--thm-font);
    transition: all 500ms ease 0s;
}

.faq-search-box .search-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 50px;
    height: 60px;
    font-size: 16px;
    line-height: 60px;
    display: block;
    text-align: center;
    border-radius: 0%;
    border: 0px solid #e7e7e8;
    transition: all 500ms ease 0s;
}

.faq-search-box .search-form button i {
    position: relative;
    top: 0;
    color: var(--thm-black);
    font-size: 16px;
}

.faq-search-box .search-form input[type="text"]:focus {
    color: #000;
}

.faq-content-box {
    position: relative;
    display: block;
}




/*** 
=============================================
    Faq Form Area Style      
=============================================
***/
.faq-form-area {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 0px 0 150px;
    overflow: hidden;
    z-index: 10;
}

.faq-form-box {
    position: relative;
    display: block;
    max-width: 1050px;
    width: 100%;
    background: #F5F5F5;
    padding: 100px 70px 100px;
    margin: 0 auto;
}

.faq-form-box .top-title {
    position: relative;
    display: block;
    margin-top: -8px;
    padding-bottom: 40px;
    text-align: center;
}

.faq-form-box .top-title h2 {
    font-size: 42px;
    line-height: 52px;
}

.faq-form-box form {
    position: relative;
    display: block;
    max-width: 950px;
}

.faq-form-box form .input-box {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.faq-form-box form input[type="text"],
.faq-form-box form input[type="email"],
.faq-form-box form textarea {
    position: relative;
    display: block;
    background: transparent;
    width: 100%;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 5px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.faq-form-box form textarea {
    height: 170px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.faq-form-box form input[type="text"]:focus {
    color: var(--thm-black);
    border-color: var(--thm-base);
}

.faq-form-box form input[type="email"]:focus {
    color: var(--thm-black);
    border-color: var(--thm-base);
}

.faq-form-box form textarea:focus {
    color: var(--thm-black);
    border-color: var(--thm-base);
}

.faq-form-box form input[type="text"]::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.faq-form-box form input[type="text"]:-moz-placeholder {
    color: var(--thm-gray);
}

.faq-form-box form input[type="text"]::-moz-placeholder {
    color: var(--thm-gray);
}

.faq-form-box form input[type="text"]:-ms-input-placeholder {
    color: var(--thm-gray);
}

.faq-form-box form input[type="email"]::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.faq-form-box form input[type="email"]:-moz-placeholder {
    color: var(--thm-gray);
}

.faq-form-box form input[type="email"]::-moz-placeholder {
    color: var(--thm-gray);
}

.faq-form-box form input[type="email"]:-ms-input-placeholder {
    color: var(--thm-gray);
}

.faq-form-box form textarea::-webkit-input-placeholder {
    color: var(--thm-gray);
}

.faq-form-box form textarea:-moz-placeholder {
    color: var(--thm-gray);
}

.faq-form-box form textarea::-moz-placeholder {
    color: var(--thm-gray);
}

.faq-form-box form textarea:-ms-input-placeholder {
    color: var(--thm-gray);
}

.faq-form-box form .button-box {
    position: relative;
    display: block;
    padding-top: 5px;
}

.faq-form-box form .button-box button {}




/*** 
=============================================
    Coming Soon Page Style1      
=============================================
***/
.coming-soon-page-style1 {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 10;
}

.coming-soon-page-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
}

.coming-soon-page-style1__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
    opacity: 0.70;
}


.coming-soon-page-style1__shape1 {
    position: absolute;
    top: 0;
    right: 0;
}

.coming-soon-page-style1__shape2 {
    position: absolute;
    top: -48px;
    left: 0;
}

.coming-soon-page-style1__shape3 {
    position: absolute;
    right: 0;
    bottom: -35px;
}

.coming-soon-page-style1__shape4 {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

.coming-soon-page-style1__shape4 img {
    opacity: 0.20;
}



.coming-soon-page-style1__content {
    position: relative;
    display: block;
    max-width: 805px;
    width: 100%;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}

.coming-soon-page-style1__content .inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}

.coming-soon-page-style1__content .big-title {
    position: relative;
    color: #ffffff;
    font-size: 90px;
    line-height: 100px;
    font-weight: 700;
    font-family: var(--thm-font);
    z-index: 2;
}

.timer-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 51px 0 42px;
    z-index: 2;
}

.timer-box .countdown-timer li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    width: 170px;
    height: 170px;
    margin: 0px 15px;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.timer-box .countdown-timer li span.days,
.timer-box .countdown-timer li span.hours,
.timer-box .countdown-timer li span.minutes,
.timer-box .countdown-timer li span.seconds {
    color: #ffffff;
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    font-family: var(--thm-font);
}

.timer-box .countdown-timer li span.hours {}

.timer-box .countdown-timer li span.minutes {}

.timer-box .countdown-timer li span.seconds {}

.timer-box .countdown-timer li span.timeRef {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 11px;
    font-family: var(--thm-font);
}

.coming-soon-page-style1__content .inner .text {
    position: relative;
    display: block;
    padding-bottom: 60px;
}

.coming-soon-page-style1__content .inner .text p {
    color: #ffffff;
    font-size: 26px;
    line-height: 38px;
}

.subscribe-box-style1 {
    position: relative;
    display: block;
    max-width: 770px;
    width: 100%;
    margin: 0 auto;
}

.subscribe-box-style1 form {
    position: relative;
    display: block;
    width: 100%;
}

.subscribe-box-style1 form input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 70px;
    border-radius: 0px;
    background: #ffffff;
    border: 1px solid #ffffff !important;
    color: var(--thm-gray);
    font-size: 18px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 200px;
    transition: all 500ms ease 0s;
    font-family: var(--thm-font);
}

.subscribe-box-style1 form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 195px;
    background: var(--thm-base);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 70px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    text-align: center;
    border: 0px solid #e1e1e1 !important;
    transition: all 500ms ease 0s;
}

.subscribe-box-style1 form input[type="email"]:focus {
    color: var(--thm-black);
}

.subscribe-box-style1 form input[type="email"]:focus+button,
.subscribe-box-style1 form button:hover {
    color: var(--thm-black);
}

.subscribe-box-style1 form input::-webkit-input-placeholder {
    color: #444444;
}

.subscribe-box-style1 form input:-moz-placeholder {
    color: #444444;
}

.subscribe-box-style1 form input::-moz-placeholder {
    color: #444444;
}

.subscribe-box-style1 form input:-ms-input-placeholder {
    color: #444444;
}



/*** 
=============================================
    Error Page Style      
=============================================
***/
.error-page {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    overflow: hidden;
    z-index: 10;
}

.error-page__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
}

.error-page__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
    opacity: 0.70;
}

.error-page__shape1 {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.05;
}

.error-page__shape2 {
    position: absolute;
    top: -48px;
    left: 0;
}

.error-page__shape3 {
    position: absolute;
    right: 0;
    bottom: -35px;
}


.error-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-content .big-title {
    position: relative;
    display: block;
    z-index: 1;
}

.error-content .big-title h2 {
    color: #ffffff;
    font-size: 200px;
    line-height: 180px;
    font-weight: 700;
    text-transform: uppercase;
}

.error-content .title {
    position: relative;
    display: block;
    padding-top: 27px;
    padding-bottom: 27px;
}

.error-content .title h2 {
    color: #ffffff;
    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
}

.error-content .text {
    position: relative;
    display: block;
}

.error-content .text p {
    color: #ffffff;
    font-size: 28px;
    line-height: 40px;
    font-weight: 400;
    margin: 0;
}

.error-content .btns-box {
    line-height: 0;
    padding-top: 50px;
}

.error-content .btns-box a {
    padding-left: 50px;
    padding-right: 50px;
    line-height: 70px;
    border-radius: 50px;
}

.error-content .btns-box a:before {
    background-color: var(--thm-primary);
}






















/* Hidden Bar */
.hidden-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    direction: rtl;
    z-index: 99999;
}

.hidden-sidebar .wrapper-box {
    height: 100%;
}

.hidden-sidebar .content-wrapper {
    position: relative;
    display: block;
    direction: ltr;
    padding: 80px 40px;
    background-color: #0a1222;
}

.hidden-sidebar-close {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.1);
    width: 70px;
    height: 70px;
    color: #fff;
    font-size: 30px;
    line-height: 70px;
    text-align: center;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.hidden-sidebar-close:hover {
    color: var(--thm-base);
    background-color: #ffffff;
}

.hidden-sidebar .logo {
    margin-bottom: 35px;
}

.hidden-sidebar .logo a {
    position: relative;
    display: inline-block;
}

.hidden-sidebar .text-widget .text {
    color: #909398;
    font-size: 18px;
    margin-bottom: 0;
}

.hidden-sidebar .sidebar-widget {
    margin-bottom: 40px;
}

.pdf-widget {
    position: relative;
}

.pdf-widget .row {
    margin: 0 -7.5px;
}

.pdf-widget .column {
    padding: 0 7.5px;
}

.pdf-widget .content {
    position: relative;
    display: block;
    background-color: #fff;
    text-align: center;
    padding: 30px 10px;
    margin-bottom: 20px;
}

.pdf-widget .content .icon {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.pdf-widget .content .icon i {
    color: var(--thm-base);
    font-size: 40px;
    line-height: 40px;
}

.pdf-widget .content h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-widget {
    position: relative;
}

.contact-widget .icon-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contact-widget .icon {
    position: relative;
    display: block;
    width: 40px;
    color: var(--thm-base);
    font-size: 20px;
    margin-top: 5px;
}

.contact-widget .icon.margintop {
    margin-top: 9px;
}

.contact-widget .text {
    color: #909398;
    line-height: 28px;
}

.contact-widget .text a {
    color: #909398;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-widget .text a:hover {
    color: #ffffff;
}

.contact-widget .text strong {
    position: relative;
    display: block;
    color: #fff;
    font-weight: 700;
    font-family: var(--thm-font-2);
}

.hidden-sidebar .link-btn {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 30px;
}

/* Cursor Style */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    display: none;
    background-color: rgba(var(--thm-base-rgb), 0.8);
    overflow: hidden;
    cursor: none;
    z-index: 999;
}

.cursor {
    position: absolute;
    background-color: #fff;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    z-index: 1;
    -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
        0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
        0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    -o-transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
        0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
        0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
        0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
        0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    visibility: hidden;
}

.cursor {
    visibility: visible;
}

.cursor.active {
    opacity: 0.7;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.cursor.hovered {
    opacity: 0.08;
}

.cursor-follower {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    z-index: 1;
    -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
        0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
        0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    -o-transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
        0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
        0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
        0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
        0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    visibility: hidden;
}

.cursor-follower {
    visibility: visible;
}

.cursor-follower.active {
    opacity: 0.7;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.cursor-follower.hovered {
    opacity: 0.08;
}

.cursor-follower.close-cursor:before {
    position: absolute;
    content: "";
    height: 25px;
    width: 2px;
    background: #fff;
    left: 48%;
    top: 12px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: inline-block;
}

.cursor-follower.close-cursor:after {
    position: absolute;
    content: "";
    height: 25px;
    width: 2px;
    background: #fff;
    right: 48%;
    top: 12px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#ui-datepicker-div.ui-widget-content {
    border: 1px solid #c5c5c5;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #777;
    color: #252525;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
    z-index: 999 !important;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: #151515 none repeat scroll 0 0;
    border: 2px solid #252525;
    border-radius: 0;
    color: #fff;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
}

.ui-datepicker td a {
    color: #000000 !important;
    text-align: center;
    background-image: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #333333 !important;
    background: #333333 !important;
    color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: all 500ms ease;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    top: 7px;
    background: #fff;
    border: none;
}

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 0.4em;
    width: 100%;
}

.ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
    background: #43c3ea;
    color: #fff;
    border-color: #43c3ea;
}






/*-------------------------------
# Thm Sidebar Box Css 
--------------------------------*/
.thm-sidebar-box {
    position: relative;
    display: block;
    padding-left: 40px;
}

.single-sidebar-box {
   position: relative;
    display: block;
    background: #F5F5F5;
    padding: 6px 6px 6px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.sidebar-search-box {
    position: relative;
    display: block;
}

.sidebar-search-box .search-form {
    position: relative;
    display: block;
    width: 100%;
}

.sidebar-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 65px;
    background: #FFFFFF;
    border-radius: 5px;
    border: none;
    color: #515151;
    font-size: 17px;
    font-weight: 400;
    padding-left: 25px;
    padding-right: 60px;
    font-family: var(--thm-font);
    transition: all 500ms ease 0s;
}

.sidebar-search-box .search-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 60px;
    height: 65px;
    color: var(--thm-primary);
    font-size: 16px;
    font-weight: 300;
    background: transparent;
    text-align: center;
    transition: all 500ms ease 0s;
}

.sidebar-search-box .search-form button i {
    position: relative;
    top: 0px;
}

.sidebar-search-box .search-form input[type="text"]:focus {
    color: rgb(68, 68, 68, 0.65);
}

.sidebar-search-box .search-form input[type="text"]:focus+button,
.sidebar-search-box .search-form button:hover {
    color: var(--thm-base);
}

.sidebar-search-box .search-form input::-webkit-input-placeholder {
    color: rgb(68, 68, 68, 0.65);
}

.sidebar-search-box .search-form input:-moz-placeholder {
    color: rgb(68, 68, 68, 0.65);
}

.sidebar-search-box .search-form input::-moz-placeholder {
    color: rgb(68, 68, 68, 0.65);
}

.sidebar-search-box .search-form input:-ms-input-placeholder {
    color: rgb(68, 68, 68, 0.65);
}



.sidebar-title {
    position: relative;
    display: block;
    margin-top: -1px;
}

.sidebar-title h3 {
    color: var(--thm-black);
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -0.01em;
}



.sidebar-cause-post {
    position: relative;
    display: block;
    padding-top: 36px;
}

.sidebar-cause-post ul {
    position: relative;
    display: block;
}

.sidebar-cause-post ul li {
    border-bottom: #a18e8e 1px dashed;
    position: relative;
    display: block;
    margin-bottom: 18px;
}

.sidebar-cause-post ul li:last-child {
    margin-bottom: 0;
}

.sidebar-cause-post ul li .inner {
	    margin-bottom: 15px;
    position: relative;
    display: block;
    padding-left: 90px;
}

.sidebar-cause-post ul li .img-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 10px;
}

.sidebar-cause-post ul li .img-box img {
	height: 90px;
    width: 100%;
}

.sidebar-cause-post ul li .img-box .overlay-content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(var(--thm-base-rgb), .80);
    border-radius: 0%;
    opacity: 0;
    transform: perspective(0px) scale(0);
    transform-origin: center;
    transition: all 0.5s ease-in-out 0s;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.sidebar-cause-post ul li:hover .img-box .overlay-content {
    opacity: 1;
    transform: perspective(400px) scale(1.0);
    transition: all 0.3s ease-in-out 0.3s;
}

.sidebar-cause-post ul li .img-box .overlay-content a {
    color: #ffffff;
    font-size: 14px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


.sidebar-cause-post ul li .title-box {	
    position: relative;
    display: block;
    padding-left: 30px;
    min-height: 90px;
}

.sidebar-cause-post ul li .title-box h4 {
    position: relative;
    top: -5px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    font-family: var(--thm-font);
    margin: 0 0 3px;
    text-transform: capitalize;
}

.sidebar-cause-post ul li .title-box h4 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-cause-post ul li .title-box h4 a:hover {
    color: var(--thm-base);
}

.sidebar-cause-post ul li .title-box .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 10px;
}

.sidebar-cause-post ul li .title-box .btn-box .btn-one {
    padding-left: 20px;
    padding-right: 20px;
    background-color: transparent;
    color: var(--thm-black);
    font-size: 12px;
    line-height: 34px;
    font-weight: 600;
    text-transform: uppercase;
}

.sidebar-cause-post ul li .title-box .btn-box .btn-one span i {
    color: #0C828C;
    font-size: 12px;
}

.sidebar-cause-post ul li .title-box .btn-box .btn-one::after {
    background-color: transparent;
    border: 1px solid #515151;
    border-radius: 50px;
}

.sidebar-cause-post ul li .title-box .btn-box .btn-one::before {
    background-color: var(--thm-base);
    border-radius: 50px;
}

.sidebar-cause-post ul li .title-box .btn-box .btn-one:hover {
    color: #ffffff;
}



.sidebar-categories-box {
    position: relative;
    display: block;
    padding-top: 36px;
}

.sidebar-categories-box li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.sidebar-categories-box li:last-child {
    margin-bottom: 0;
}

.sidebar-categories-box li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #515151;
    font-size: 18px;
    font-size: 17px;
    line-height: 65px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: var(--thm-font);
    background: #FFFFFF;
    border-radius: 5px;
    padding-left: 25px;
    padding-right: 25px;
    z-index: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-categories-box li a i {
    position: relative;
    top: -1px;
    display: inline-block;
    color: #0C828C;
    font-size: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-categories-box li:hover a i {
    color: #ffffff;
}

.sidebar-categories-box li:hover a {
    color: #ffffff;
    background: #E04F44;
}



.popular-tag-box {
    position: relative;
    display: block;
    padding-top: 36px;
}

.single-sidebar-box .popular-tag {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -5px;
    margin-right: -5px;
}

.single-sidebar-box .popular-tag li {
    position: relative;
    display: block;
    float: left;
    margin: 0 5px 10px;
}

.single-sidebar-box .popular-tag li a {
    position: relative;
    display: block;
    padding: 0px 20px 0px;
    background: #FFFFFF;
    border-radius: 5px;
    color: #515151;
    font-size: 13px;
    line-height: 55px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.single-sidebar-box .popular-tag li:hover a {
    color: #ffffff;
    background-color: #2db7cf;
}


@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .main-menu-style1 .main-menu__wrapper-inner {
      flex-wrap: nowrap;
  }
  
      .main-menu .main-menu__list>li+li {
        margin-left: 15px!important;
    }
}
.blog-item {
    height: 337px !important;
}

.blog-item {
	height: 284px;
	border: 1px solid rgb(174 161 161 / 53%);
    padding: 8px;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition)
}

.blog-item-img {
	border: 1px solid rgb(174 161 161 / 53%);
	padding:8px;
    border-radius: 20px;
    overflow: hidden;
    position: relative
}

.blog-item-img img {
    border-radius: 12px
}

.blog-item:hover .blog-item-img img {
    transform: scale(1.1)
}
.blog-item-info {
	margin-top:10px;
    line-height: 1.5rem;
    padding: 4px 0 0;
}

.associate-row{
    margin-top: 20px;
}

.associate-card{
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: all .4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-top: 4px solid #d11f3a;
    overflow: hidden;
    position: relative;
}

.associate-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.associate-logo{
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.associate-logo img{
    max-width: 180px;
    max-height: 90px;
    object-fit: contain;
    transition: all .4s ease;
    filter: grayscale(100%);
}

.associate-card:hover .associate-logo img{
    transform: scale(1.06);
    filter: grayscale(0%);
}

.associate-content h4{
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.associate-divider{
    width: 60px;
    height: 3px;
    background: #d11f3a;
    margin: 0 auto 18px;
    border-radius: 20px;
}

.associate-content p{
    font-size: 16px;
    line-height: 28px;
    color: #666;
    margin: 0;
}

.associate-content p i{
    color: #d11f3a;
    margin-right: 8px;
}

@media (max-width: 767px){

    .associate-card{
        padding: 28px 18px;
    }

    .associate-content h4{
        font-size: 20px;
    }

    .associate-logo{
        height: 90px;
    }

    .associate-logo img{
        max-width: 150px;
    }
}

.legal-table-wrap .table-responsive{
    display:flex;
    justify-content:center;
}

.legal-status-table{
    width:100%;
    max-width:1000px; /* controls centered table width */
    margin:0 auto;
}

.legal-table-wrap{
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    overflow: hidden;
}

.legal-main-title{
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #111;
    line-height: 1.4;
}

.legal-status-table{
    margin-bottom: 0;
    border: 1px solid #e9e9e9;
}

.legal-status-table tbody tr td{
    padding: 10px 14px;
    vertical-align: middle;
    border-color: #ececec;
    font-size: 15px;
    line-height: 1.7;
}

.legal-status-table tbody tr:nth-child(even){
    background: #fafafa;
}

.legal-label{
    width: 34%;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    letter-spacing: .4px;
   
    background: #f5f5f5;
}

.legal-value{
    color: #555;
    
}

.legal-value strong{
    color: #111;
    font-weight: 600;
}

@media (max-width: 991px){

    .legal-main-title{
        font-size: 24px;
    }

    .legal-status-table tbody tr td{
        padding: 9px 10px;
        font-size: 14px;
    }

    .legal-label{
        width: 40%;
    }
}

@media (max-width: 767px){

    .legal-table-wrap{
        padding: 10px;
        border-radius: 12px;
    }

    .legal-main-title{
        font-size: 22px;
        margin-bottom: 18px;
    }

    .legal-status-table tbody tr td{
        font-size: 13px;
        line-height: 1.6;
        padding: 8px 8px;
    }

    .legal-label{
        min-width: 170px;
    }
}
.board-member-card{
	    box-shadow: #ff4400f7 2px 0px 0px 0px;
    background:#f5f5f5;
    border-radius:8px;
    padding:32px 24px 26px;
    text-align:center;
    transition:all .3s ease;
    cursor:pointer;
    height:100%;
}

.board-member-card:hover{
    transform:translateY(-5px);
}



/* =========================================================
MEMBER IMAGE
========================================================= */

.board-member-image{
    width:140px;
    height:140px;
    margin:0 auto 22px;
    position:relative;
}

.board-member-image img{
    width:140px !important;
    height:140px !important;
    object-fit:cover;
    border-radius:50% !important;
    display:block;
}



/* =========================================================
CARD CONTENT
========================================================= */

.board-member-content{
    text-align:center;
}

.board-member-content h3{
    font-size:16px;
    line-height:28px;
    font-weight:600;
    color:#08263a;
    margin-bottom:0px;
    letter-spacing:.2px;
}

.member-designation{
    display:block;
    font-size:15px;
    color:#555;
    font-weight:500;
    margin-bottom:10px;
}

.view-profile{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:13px;
    color:#8b1e3f;
    font-weight:600;
    transition:.3s ease;
    margin-bottom:16px;
}

.view-profile i{
    font-size:12px;
}

.board-member-card:hover .view-profile{
    letter-spacing:.4px;
}

.board-divider{
    width:100%;
    height:1px;
    background:#d7d7d7;
}





/* =========================================================
MODAL DESIGN
========================================================= */

.board-modal-body{
    padding:32px;
    position:relative;
    background:#ffffff;
    border-radius:16px;
    overflow:hidden;
}

.modal-content{
    border:none;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,0.14);
}

.modal-content::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#8b1e3f;
}

.modal-member-img{
    width:190px;
    height:190px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #f5f5f5;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.board-modal-body h2{
    font-size:24px;
    line-height:36px;
    font-weight:700;
    color:#08263a;
    margin-bottom:5px;
}

.modal-designation{
    display:inline-block;
    font-size:15px;
    color:#8b1e3f;
    font-weight:600;
    margin-bottom:16px;
}

.modal-divider{
    width:100%;
    height:1px;
    background:#e4e4e4;
    margin:14px 0 18px;
}



/* =========================================================
PROFILE LIST
========================================================= */

.modal-profile-list{
    list-style:none;
    padding:0;
    margin:0;
}

.modal-profile-list li{
    position:relative;
    padding-left:16px;
    margin-bottom:10px;
    font-size:14px;
    line-height:28px;
    color:#444;
}

.modal-profile-list li::before{
    content:'';
    position:absolute;
    left:0;
    top:11px;
    width:6px;
    height:6px;
    border-radius:50%;
    background:#8b1e3f;
}

.modal-profile-list li strong{
    color:#111;
    font-weight:600;
}





/* =========================================================
SMALL PREMIUM CLOSE BUTTON
========================================================= */

.btn-close{
    position:absolute;
    top:12px;
    right:12px;
    width:30px;
    height:30px;
    border-radius:50%;
    background:#8b1e3f !important;
    opacity:1 !important;
    z-index:10;
    transition:.3s ease;
    background-image:none !important;
    padding:0;
    border:none;
    outline:none;
    box-shadow:none;
}

.btn-close::before{
    content:"\00d7";
    color:#fff;
    font-size:24px;
    line-height:30px;
    display:block;
    text-align:center;
    font-weight:400;
    font-family:Arial, sans-serif;
}

.btn-close:hover{
    background:#111 !important;
    transform:rotate(90deg);
}

.btn-close:focus{
    box-shadow:none !important;
    outline:none;
}





/* =========================================================
MODAL ANIMATION
========================================================= */

.modal.fade .modal-dialog{
    transform:scale(.92);
    transition:all .3s ease;
}

.modal.show .modal-dialog{
    transform:scale(1);
}





/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:991px){

    .board-modal-body{
        padding:28px;
    }

    .modal-member-img{
        width:170px;
        height:170px;
        margin-bottom:22px;
    }

}

@media(max-width:767px){

    .board-member-card{
		 border-right:1px solid #dddddd;
        padding:28px 18px 22px;
    }

    .board-member-image{
        width:115px;
        height:115px;
    }

    .board-member-content h3{
        font-size:15px;
        line-height:26px;
    }

    .board-modal-body{
        padding:22px 18px;
        text-align:center;
    }

    .modal-member-img{
        width:135px;
        height:135px;
        margin-bottom:18px;
    }

    .board-modal-body h2{
        font-size:20px;
        line-height:30px;
    }

    .modal-profile-list li{
        text-align:left;
    }

}

.board-member-image{
    width:140px;
    height:140px;
    margin:0 auto 22px;
    position:relative;
}
.board-member-image img{
    width:100% !important;
    height:100% !important;
    object-fit:cover;
    border-radius:50% !important;
    display:block;
    transition:.4s ease;
}
.board-member-image-inner{
    width:140px;
    height:140px;
    border-radius:50%;
    overflow:hidden;
}


/* PLUS ICON */

.member-plus-icon{
    position:absolute;
    right:-2px;
    bottom:10px;
    width:30px;
    height:30px;
    border-radius:50%;
    background:#8b1e3f;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    z-index:5;
    box-shadow:0 4px 10px rgba(0,0,0,0.18);
    transition:.3s ease;
    border:2px solid #fff;

   
}
.board-member-card{
    cursor:pointer;
}

.board-member-card:hover .member-plus-icon{
    transform:scale(1.08);
    background:#111;
}

.board-member-card:hover .board-member-image img{
    transform:scale(1.04);
}





@media(max-width:767px){

    .board-member-image{
        width:115px;
        height:115px;
    }

    .member-plus-icon{
        width:28px;
        height:28px;
        font-size:11px;
    }

}

.single-causes-style1 .img-box img{
    width:100%;
    height:185px;
    object-fit:fill;
}

.single-causes-style1 .text-box h3{
    min-height:60px;
}

.single-causes-style1 .text-box h5{
	 margin-top: 10px;
    min-height:30px;
}



.single-causes-style1{
	   
    margin-bottom:30px;
}

.single-causes-style1 .text-box p{
    min-height:90px;
}

.btn-one{
    text-decoration:none;
}
.single-causes-style1 .text-box h5{
    font-size:16px;
    line-height:28px;
    font-weight:600;
    margin-bottom:0;
}

.single-causes-style1 .text-box h5 a{
    color:#222;
    text-decoration:none;
}

.single-causes-style1 .text-box h5 a:hover{
    color:#0b446d;
}

.case-study-heading{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    margin-bottom:0px;
}

.case-study-heading .page-heading h2{
    margin:0;
  
    font-weight:700;
    color:#08245c;
}

.case-study-heading .page-heading h2 i{
    margin-right:10px;
}

.session-box{
    display:flex;
    align-items:center;
    gap:10px;
}

.session-box label{
    font-size:16px;
    font-weight:500;
    color:#000;
    margin-bottom:0;
}

.session-box select{
    border:1px solid #999;
    padding:6px 12px;
    font-size:16px;
    min-width:140px;
    cursor:pointer;
}

@media(max-width:767px){

    .case-study-heading{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

  
}

.case-study-card{
    background:#ffffff;

    padding:0px;

    border-radius:24px;

    position:relative;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,0.08);

    margin-bottom:40px;
}

/* Decorative Circle */
.case-study-card::before{
    content:"";

    position:absolute;

    top:-100px;
    right:-100px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:#0C828C;

    opacity:0.06;
}

/* Tag */
.case-tag{
    display:inline-block;

    background:#0C828C;

    color:#ffffff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;
    font-weight:600;

    margin-bottom:20px;
}

/* Main Title */
.case-title{
    font-size:42px;
    font-weight:700;

    color:#1d1d1d;

    margin-bottom:10px;
}

/* Name */
.student-name{
    font-size:26px;

    color:#0C828C;

    font-weight:600;

    margin-bottom:30px;
}

/* Info Boxes */
.case-info{
    display:flex;
    flex-wrap:wrap;

    gap:16px;

    margin-bottom:30px;
}

.info-item{
    background:#f7f9fc;

    padding:14px 20px;

    border-radius:14px;

    border-left:4px solid #0C828C;

    min-width:180px;
}

.label{
    font-weight:700;
    color:#111111;
}

.value{
    color:#555555;
}

/* Description */
.case-description{
    font-size:18px;

    line-height:1.9;

    color:#444444;

    margin-bottom:10px;
}

/* Image Box */
.case-image-box{
    position:relative;

    text-align:center;
}

/* Image */
.case-image-box img{
    width:100%;
    max-width:340px;

    border-radius:24px;

    border:6px solid #ffffff;

    box-shadow:0 15px 35px rgba(0,0,0,0.18);

    transition:all 0.4s ease;
}

/* Hover */
.case-image-box img:hover{
    transform:translateY(-6px) scale(1.02);
}

/* ==========================================
   Responsive
========================================== */

@media(max-width:991px){

    .case-study-card{
        padding:35px;
    }

    .case-title{
        font-size:34px;
    }

    .student-name{
        font-size:22px;
    }

    .case-description{
        font-size:16px;
    }

    .case-image-box{
        text-align:left;
    }
}

@media(max-width:767px){

    .case-study-card{
        padding:25px;

        border-radius:18px;
    }

    .case-title{
        font-size:28px;
    }

    .student-name{
        font-size:20px;
    }

    .case-info{
        flex-direction:column;
    }

    .info-item{
        width:100%;
    }

    .case-image-box{
        text-align:center;

        margin-top:10px;
    }

    .case-image-box img{
        max-width:240px;
    }
}

.associate-grid-link{
    text-decoration:none;
    display:block;
    height:100%;
}

.associate-grid-card{
    height:100%;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    transition:0.45s ease;

    /* COLOURFUL BACKGROUND */
    background:linear-gradient(135deg,#ffffff,#f4f8f9);

    /* UNIQUE SHADOW */
    box-shadow:
    0 12px 30px rgba(7,90,97,0.10),
    0 3px 10px rgba(0,0,0,0.05);

    border:1px solid rgba(255,255,255,0.7);
}

.associate-grid-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 24px 50px rgba(7,90,97,0.18),
    0 8px 20px rgba(0,0,0,0.08);
}





/* TOP COLOUR STRIP */

.associate-grid-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;

    background:linear-gradient(
    90deg,
    #075A61,
    #e04f44,
    #f0b429
    );
}





/* IMAGE */

.associate-grid-image{
    padding:8px 8px 0;
}

.associate-grid-image img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:15px;
    transition:0.5s ease;
}

.associate-grid-card:hover .associate-grid-image img{
    transform:scale(1.03);
}





/* CONTENT */

.associate-grid-content{
    padding:18px;
    text-align:center;
}

.associate-grid-content h4{
    font-size:16px;
    font-weight:700;
    color:#111;
    margin-bottom:8px;
    line-height:1.4;
}

.associate-grid-content p{
    font-size:13px;
    color:#666;
    margin:0;
    line-height:1.6;
}





/* RESPONSIVE */

@media(max-width:767px){

    .associate-grid-image img{
        height:200px;
    }

    .associate-grid-content{
        padding:15px;
    }

    .associate-grid-content h4{
        font-size:15px;
    }

    .associate-grid-content p{
        font-size:12px;
    }

}
.associate-grid-image{
    padding:20px 15px 0;

    display:flex;
    justify-content:center;
    align-items:center;
}

.associate-grid-image img{
    width:auto;
    max-width:100%;
    height:140px;
    object-fit:contain;

    transition:0.5s ease;
}

.mne-gallery-img{
    overflow:hidden;
    border-radius:18px;
    position:relative;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.08),
    0 4px 10px rgba(7,90,97,0.08);
}

.mne-gallery-img img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:18px;
    transition:0.5s ease;
}

.mne-gallery-img:hover img{
    transform:scale(1.05);
}




.mne-panel{
    background:#fff;

    border-radius:14px;

    border:1px solid #e8e8e8;

    box-shadow:
    0 4px 15px rgba(0,0,0,0.05);

    overflow:hidden;

    height:100%;
}





/* HEADER */

.mne-panel-header{
    background: #322d5a;
    padding: 5px 10px;
    border-left:5px solid #e04f44;
    min-height: 48px;
    display:flex;
    align-items:center;
}

.mne-panel-header h4{
    margin:0;
    color:#fff;
    font-size: 17px;
    font-weight:700;
    line-height:1.4;
}





/* BODY */

.mne-panel-body{
    padding:24px 26px;

    height:290px;

    overflow-y:auto;
}





/* CUSTOM SCROLLBAR */

.mne-panel-body::-webkit-scrollbar{
    width:6px;
}

.mne-panel-body::-webkit-scrollbar-thumb{
    background:#d4d4d4;

    border-radius:10px;
}





/* TEXT */

.mne-panel-body p{
    font-size: 17px;
    line-height:1.9;
    color:#444;
    margin-bottom:14px;
}





/* LIST */

.mne-panel-list{
    padding-left:20px;

    margin-bottom:15px;
}

.mne-panel-list li{
    list-style:disc;
    font-size: 17px;
    line-height:1.9;
    color:#444;
    margin-bottom:12px;
}

.mne-panel-list li::marker{
    color:#e04f44;
}


@media(max-width:767px){

    .mne-panel-body{
        height:auto;

        overflow:visible;
    }

    .mne-panel-header h4{
        font-size:18px;
    }

    .mne-panel-body{
        padding:20px 18px;
    }

    .mne-panel-body p,
    .mne-panel-list li{
        font-size:14px;
    }

}
.mne-doc-section{
    padding:10px 5px 0;
}

.mne-doc-heading{
    font-size:24px;

    font-weight:700;

    color:#075A61;

    margin-bottom:18px;

    position:relative;

    padding-left:16px;
}

.mne-doc-heading::before{
    content:'';

    position:absolute;

    left:0;
    top:4px;

    width:5px;
    height:28px;

    background:#e04f44;

    border-radius:10px;
}

.mne-doc-section p{
    font-size:17px;

    line-height:1.9;

    color:#444;

    margin-bottom:0;
}





/* MOBILE */

@media(max-width:767px){

    .mne-doc-heading{
        font-size:20px;
    }

    .mne-doc-section p{
        font-size:14px;
    }

}


.associate-directory{
    background:#ffffff;

    border-radius:20px;

    overflow:hidden;

    border:1px solid #ece8df;
}





/* HEADER */

.associate-directory-head{
    background:#f7f3ed;

    padding:18px 35px;

    border-bottom:1px solid #e8e1d8;
}

.associate-directory-head span{
    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    color:#8a6d46;
}





/* ITEM */

.associate-directory-item{
    display:block;

    padding:26px 35px;

    border-bottom:1px solid #f1ede7;

    text-decoration:none;

    transition:0.35s ease;

    background:#fff;
}

.associate-directory-item:last-child{
    border-bottom:none;
}

.associate-directory-item:hover{
    background:#fcfaf7;
}





/* LOGO */

.associate-logo-wrap{
    width:110px;
    height:110px;

    background:#fff;

    border-radius:18px;

    border:1px solid #f0ece6;

    display:flex;

    align-items:center;
    justify-content:center;

    padding:14px;

    margin:auto;

    box-shadow:
    0 4px 12px rgba(0,0,0,0.03);
}

.associate-logo-wrap img{
    max-width:100%;
    max-height:100%;

    object-fit:contain;
}





/* NAME */

.associate-directory-item h4{
    font-size:24px;

    font-weight:700;

    color:#2d2d2d;

    margin-bottom:0;

    line-height:1.4;
}





/* THEMATIC AREA */

.associate-directory-item p{
    margin-bottom:0;

    font-size:16px;

    line-height:1.8;

    color:#6c6c6c;
}





/* MOBILE */

@media(max-width:767px){

    .associate-directory-head{
        display:none;
    }

    .associate-directory-item{
        padding:24px 20px;
    }

    .associate-logo-wrap{
        width:85px;
        height:85px;

        margin-bottom:18px;
    }

    .associate-directory-item h4{
        font-size:18px;

        text-align:center;

        margin-bottom:10px;
    }

    .associate-directory-item p{
        font-size:14px;

        text-align:center;
    }

}
.session-dropdown {
    width: 250px;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 767px) {
    .session-dropdown {
        width: 100%;
        max-width: 250px;
    }

    .d-flex.justify-content-end {
        justify-content: center !important;
    }
}

.gallery-header-area{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;   
    width:100%;
}

.gallery-session{
    margin-left:auto;
}

.gallery-session-dropdown{
    width:auto;
    height:46px;
    padding:0 40px 0 15px;
    border: 1px solid #8b8282;
    border-radius:8px;
    background-color:#fff;
    font-size:16px;
    cursor:pointer;

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    background-repeat:no-repeat;
    background-position:right 12px center;
    background-size:16px;
}

.nice-select .option {
    border: #c7c7df solid 1px!important;
    
   
}

/* Mobile */
@media(max-width:767px){

    .gallery-header-area{
        flex-direction:column;
        gap:20px;
    }

    .gallery-session{
        width:100%;
    }

    .gallery-session-dropdown{
		margin-bottom: 20px;
        width:100%;
    }
}
.gallery-box{
    position:relative;
    display:block;
    overflow:hidden;

    border-radius:14px;
    border:2px solid #ffffff;

    box-shadow:0 3px 12px rgba(0,0,0,0.08);
}

/* Image */
.gallery-box img{
    width:100%;
    height:188px;
    object-fit:cover;

    border-radius:14px;

    display:block;

    transition:transform 0.5s ease;
}

/* Overlay */
.gallery-overlay{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(0,0,0,0.45);

    opacity:0;
    visibility:hidden;

    transition:all 0.4s ease;
}

/* Eye Icon */
.gallery-icon{
    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#ffffff;
    color:#111111;

    font-size:20px;

    border:2px solid #ffffff;

    transform:scale(0.7);

    transition:all 0.4s ease;
}

/* Hover */
.gallery-box:hover img{
    transform:scale(1.08);
}

.gallery-box:hover .gallery-overlay{
    opacity:1;
    visibility:visible;
}

.gallery-box:hover .gallery-icon{
    transform:scale(1);
}

/* Icon Hover */
.gallery-icon:hover{
    background:#0C828C;
    color:#ffffff;
    border-color:#0C828C;
}

/* Mobile */
@media(max-width:767px){

    .gallery-box img{
        height:150px;
    }

    .gallery-icon{
        width:45px;
        height:45px;
        font-size:16px;
    }
}

/* Mobile Responsive */
@media(max-width:767px){

    .gallery-img.img-box img{
        height:150px;
    }

    .gallery-img.img-box .overlay-content a{
        width:45px;
        height:45px;
        font-size:16px;
    }
}

.single-blog-style1 .meta-info li{
    color:#ffffff !important;
}

.single-blog-style1 .meta-info li span{
    color:#ffffff !important;
}

.meta-info {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.meta-info li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.meta-info li span {
    flex-shrink: 0;
    margin-top: 3px;
}



.gallery-header-area{
    margin-bottom:20px;
}

.theme-btn {
    font-size: 16px;
    color: #ffffff;
    padding: 10px 24px;
    transition: all .5s;
    text-transform: capitalize;
    position: relative;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    border: none;
    background: #295640;
    box-shadow: var(--box-shadow);
    z-index: 1;
}
.theme-btn::before {
    content: "";
    height: 300px;
    width: 300px;
    background: var(--color-dark);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: .5s cubic-bezier(.25,.46,.45,.94);
    z-index: -1
}

.theme-btn:hover {
    color: #ffffff;
}

.theme-btn:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1)
}

.theme-btn i {
    margin-left: 8px;
    transform: rotate(-40deg);
    transition: var(--transition2)
}

.theme-btn:hover i {
    transform: rotate(0deg)
}

.theme-btn span {
    margin-right: 5px
}


.blog-gallery-area{
    margin-top:40px;
}

/* Gallery Box */
.gallery-box{
    position:relative;

    display:block;

    overflow:hidden;

    border-radius:14px;

    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

/* Image */
.gallery-box img{
    width:100%;

    height:175px;

    object-fit:cover;

    transition:0.5s ease;
}

/* Overlay */
.gallery-overlay{
    position:absolute;

    inset:0;

    background:rgba(0,0,0,0.45);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    visibility:hidden;

    transition:0.4s ease;
}

/* Icon */
.gallery-icon{
    width:55px;
    height:55px;

    border-radius:50%;

    background:#ffffff;

    color:#111111;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    transform:scale(0.8);

    transition:0.4s ease;
}

/* Hover */
.gallery-box:hover .gallery-overlay{
    opacity:1;
    visibility:visible;
}

.gallery-box:hover img{
    transform:scale(1.06);
}

.gallery-box:hover .gallery-icon{
    transform:scale(1);
}

/* Mobile */
@media(max-width:767px){

    .gallery-box img{
        height:160px;
    }
}

.fcra-section{
    background:#f8f9fb;
}



/*========================================
    TABS
========================================*/

.fcra-tabs{
    justify-content:center;
    gap:8px;
    margin-bottom:20px;
    border:none;
}

.fcra-tabs .nav-item{
    border:none;
}

.fcra-tabs .nav-link{
    background:#fff;
    color:#444;
    border:1px solid #e7eaf0;
    border-radius:30px;
    padding:5px 14px;
    line-height:1.4;
    transition:.3s;
    box-shadow:0 1px 4px rgba(0,0,0,0.04);
}

.fcra-tabs .nav-link:hover{
    transform:translateY(-1px);
    box-shadow:0 3px 8px rgba(0,0,0,0.08);
}

.fcra-tabs .nav-link.active{
    color:#fff;
    border-color:transparent;
}



/* Tab Colors */

.fcra-tabs .nav-item:nth-child(1) .nav-link.active{
    background:#af3c19;
}

.fcra-tabs .nav-item:nth-child(2) .nav-link.active{
    background:#3d3673;
}

.fcra-tabs .nav-item:nth-child(3) .nav-link.active{
    background:#28a745;
}



/*========================================
    PANELS
========================================*/

.fcra-panel{
	   width:80%;
    margin:0 auto;
    background:#fff;
    border:1px solid #edf0f3;
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 2px 8px rgba(0,0,0,0.03);
}



/*========================================
    PANEL HEADINGS
========================================*/

.panel-heading{
    padding:3px 14px;
    color:#fff;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.quarterly-panel .panel-heading{
    background:#af3c19;
}

.balance-panel .panel-heading{
    background:#3d3673;
}

.audit-panel .panel-heading{
    background:#28a745;
}



/*========================================
    TABLE
========================================*/





.fcra-table{
    width:100%;
    margin:0;
}

.fcra-table thead{
    background:#f7f8fa;
}

.fcra-table thead th{
    padding:9px 14px;
    border:none;
    border-bottom:1px solid #edf0f3;
    color:#222;
}

.fcra-table tbody td{
    padding:9px 14px;
    border-color:#f1f3f5;
    vertical-align:middle;
    color:#555;
}

.fcra-table tbody tr{
    transition:.2s;
}

.fcra-table tbody tr:hover{
    background:#fcfcfc;
}

.fcra-table th,
.fcra-table td{
    white-space:nowrap;
}

/*========================================
    DOWNLOAD BUTTON
========================================*/

.download-btn{
    display:inline-block;
    background:#111;
    color:#fff;
    padding:3px 12px;
    border-radius:20px;
    text-decoration:none;
    transition:.3s;
    border:none;
    line-height:1.5;
}

.download-btn:hover{
    background:#af3c19;
    color:#fff;
}



/*========================================
    RESPONSIVE
========================================*/

@media(max-width:767px){

    .fcra-tabs{
        gap:6px;
    }

    .fcra-tabs .nav-link{
        padding:4px 10px;
    }

    .panel-heading{
        padding:7px 12px;
    }

    .fcra-table thead th,
    .fcra-table tbody td{
        padding:8px 10px;
    }

}

.guidestar-section{
    background:#0ea1ab;
    border-radius:22px;
    padding:24px;
    margin-top:20px;
    margin-bottom:20px;
    overflow:hidden;
    position:relative;
    box-shadow:0 8px 24px rgba(0,0,0,0.08);
}



/*========================================
    IMAGE
========================================*/

.guidestar-image img{
    width:100%;
    border-radius:8px;
    display:block;
    border:4px solid rgba(255,255,255,0.08);
}



/*========================================
    CONTENT
========================================*/

.guidestar-content{
    color:#fff;
    padding-left:10px;
}

.guidestar-content h3{
    color:#fff;
    margin-bottom:14px;
    line-height:1.4;
}

.guidestar-content p{
    color:#f4f8f9;
    margin-bottom:12px;
    line-height:1.8;
}



/*========================================
    HIGHLIGHT BOX
========================================*/

.guidestar-highlight{
    display:inline-block;
    margin-top:10px;
    background:rgba(255,255,255,0.12);
    border-left:4px solid #fff;
    padding:10px 14px;
    border-radius:6px;
    backdrop-filter:blur(3px);
}

.guidestar-highlight span{
    display:block;
    color:#fff;
    margin-bottom:2px;
}

.guidestar-highlight small{
    color:#dff7f8;
}



/*========================================
    MOBILE
========================================*/

@media(max-width:991px){

    .guidestar-image{
        margin-bottom:20px;
    }

    .guidestar-content{
        padding-left:0;
    }

}


@media(max-width:767px){

    .guidestar-section{
        padding:16px;
        border-radius:16px;
    }

    .guidestar-content h3{
        margin-bottom:10px;
    }

    .guidestar-content p{
        margin-bottom:10px;
        line-height:1.7;
    }

    .guidestar-highlight{
        width:100%;
    }

}
.award-zebra-box{
    border-radius:22px;
    overflow:hidden;
    margin-bottom:28px;
    box-shadow:0 6px 22px rgba(0,0,0,0.06);
}


/*========================================
    ROW
========================================*/

.award-zebra-row{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
}



/*========================================
    IMAGE SIDE
========================================*/

.award-zebra-image{
    flex:0 0 32%;
    max-width:32%;
}

.award-zebra-image img{
    width:100%;
    display:block;
    height:100%;
    object-fit:cover;
}



/*========================================
    CONTENT SIDE
========================================*/

.award-zebra-content{
    flex:0 0 68%;
    max-width:68%;
    padding:28px 34px;
}


/*========================================
    FIRST DESIGN
========================================*/

.award-zebra-primary{
    background:#0ea1ab;
}

.award-zebra-primary .award-zebra-content,
.award-zebra-primary h3,
.award-zebra-primary p{
    color:#fff;
}



/*========================================
    SECOND DESIGN
========================================*/

.award-zebra-light{
    background:#fff;
}

.award-zebra-light h3{
    color:#1c2355;
}

.award-zebra-light p{
    color:#444;
}



/*========================================
    TITLE
========================================*/

.award-zebra-content h3{
    margin-bottom:16px;
    line-height:1.4;
    position:relative;
    padding-bottom:10px;
}

.award-zebra-content h3::after{
    content:'';
    width:55px;
    height:3px;
    position:absolute;
    left:0;
    bottom:0;
    border-radius:10px;
}

.award-zebra-primary h3::after{
    background:#ffd54f;
}

.award-zebra-light h3::after{
    background:#0ea1ab;
}



/*========================================
    CONTENT
========================================*/

.award-zebra-content p{
    line-height:1.9;
    margin-bottom:0;
}



/*========================================
    RESPONSIVE
========================================*/

@media(max-width:1199px){

    .award-zebra-content{
        padding:24px 26px;
    }

}


@media(max-width:991px){

    .award-zebra-image{
        flex:0 0 100%;
        max-width:100%;
    }

    .award-zebra-content{
        flex:0 0 100%;
        max-width:100%;
        padding:24px;
    }

    .award-zebra-image img{
        height:auto;
    }

}


@media(max-width:767px){

    .award-zebra-box{
        border-radius:16px;
        margin-bottom:22px;
    }

    .award-zebra-content{
        padding:18px;
    }

    .award-zebra-content h3{
        margin-bottom:12px;
        padding-bottom:8px;
    }

    .award-zebra-content p{
        line-height:1.7;
    }

}


@media(max-width:575px){

    .award-zebra-content{
        padding:16px;
    }

    .award-zebra-content h3{
        line-height:1.5;
    }

    .award-zebra-content p{
        line-height:1.6;
    }

}

.video-thumb-box{
    margin-bottom:15px;
}

.video-thumb-box .inner img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.video-title-box{
    margin-bottom:35px;
}

.video-title-box h4{
    font-size:22px;
    line-height:32px;
    font-weight:700;
    color:#111;
    margin:0;
}

@media only screen and (max-width:767px){

    .video-thumb-box .inner img{
        height:220px;
    }

    .video-title-box h4{
        font-size:18px;
        line-height:28px;
    }

}

.video-gallery-link{
    text-decoration:none;
    display:block;
}

.video-gallery-link h6{
    color:#111;
}

.video-view-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
    transition:all 0.4s ease;
    margin-bottom:10px;
}

.video-view-card:hover{
    transform:translateY(-5px);
}

.video-view-content{
    padding:22px;
}

.video-view-content h5{
    font-size:22px;
    line-height:34px;
    font-weight:700;
    margin-bottom:15px;
    color:#111;
}

.watch-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#0C828C;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.watch-btn:hover{
    color:#000;
}

.watch-btn i{
    font-size:18px;
}

@media only screen and (max-width:767px){

    .video-view-content h5{
        font-size:18px;
        line-height:30px;
    }

}
}
.face-project-details-section{
    padding-bottom:80px;
}

/* Card */

.face-project-card{
    background:#fff;
    border:1px solid #e9edf3;
    border-radius:15px;
    padding:35px;
    margin-top:25px;
    box-shadow:0 5px 25px rgba(0,0,0,.05);
}

.face-project-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#eaf7f8;
    color:#0C828C;
    font-weight:600;
}

.face-project-location{
    color:#666;
    font-weight:500;
}

.face-project-location i{
    color:#0C828C;
    margin-right:8px;
}

.face-project-content p{
    line-height:30px;
    margin-bottom:0;
}

.face-project-image-box{
    overflow:hidden;
    border-radius:15px;
}

.face-project-image-box img{
    width:100%;
    height:380px;
    object-fit:cover;
    border-radius:15px;
    display:block;
}

/*=========================================
ACTIVITIES PANEL
=========================================*/

.face-activities-panel{
    margin-top:40px;
    background:#fff;
    border:1px solid #e8edf4;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.face-activities-header{
        background: #0C828C;
    padding: 6px 25px;
}

.face-activities-header h5{
	font-size: 18px;
	font-weight: 600;
    color:#fff;
    margin:0;
    display:flex;
    align-items:center;
    gap:10px;
}

.face-activities-body{
    padding:15px;
}

.face-activity-list{
    list-style:none;
    padding:0;
    margin:0;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px 25px;
}

.face-activity-list li{
    position:relative;
    padding-left:30px;
    line-height:28px;
}

.face-activity-list li i{
    position:absolute;
    left:0;
    top:5px;
    color:#0C828C;
}

/*=========================================
GALLERY
=========================================*/

.face-gallery-section{
    margin-top:60px;
}

.face-gallery-carousel{
    margin-top:30px;
}

.face-gallery-item{
    overflow:hidden;
    border-radius:15px;
}

.face-gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:15px;
    transition:.5s;
}

.face-gallery-item:hover img{
    transform:scale(1.08);
}

/* Owl Nav */

.face-gallery-carousel .owl-nav{
    margin-top:25px;
    text-align:center;
}

.face-gallery-carousel .owl-nav button{
    width:45px;
    height:45px;
    border-radius:50%!important;
    background:#0C828C!important;
    color:#fff!important;
    margin:0 5px!important;
    transition:.3s;
}

.face-gallery-carousel .owl-nav button:hover{
    background:#F2B516!important;
}

/*=========================================
TABLET
=========================================*/

@media only screen and (max-width:991px){

    .face-project-card{
        padding:25px;
    }

    .face-project-image-box{
        margin-top:25px;
    }

    .face-project-image-box img{
        height:320px;
    }

    .face-activity-list{
        grid-template-columns:1fr;
    }
}

/*=========================================
MOBILE
=========================================*/

@media only screen and (max-width:767px){

    .face-project-card{
        padding:20px;
        margin-top:20px;
    }

    .face-project-image-box{
        margin-top:20px;
    }

    .face-project-image-box img{
        height:240px;
    }

    .face-activities-panel{
        margin-top:30px;
    }

    .face-activities-header{
        padding:12px 18px;
    }

    .face-activities-body{
        padding:18px;
    }

    .face-activity-list{
        gap:12px;
    }

    .face-gallery-section{
        margin-top:40px;
    }

    .face-gallery-item img{
        height:220px;
    }
}

/*=========================================
SMALL MOBILE
=========================================*/

@media only screen and (max-width:480px){

    .face-project-card{
        padding:15px;
    }

    .face-project-image-box img{
        height:200px;
    }

    .face-gallery-item img{
        height:180px;
    }

    .face-activities-body{
        padding:15px;
    }
}

.footer-bottom-right p{
    margin: 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-right a{
    color: #cad90a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.footer-bottom-right a:hover{
    color: #ffffff;
}

.footer-bottom-right img{
    width: 32px;
    height: 32px;
}
.footer-bottom-right p{
    font-size: 15px;
}

.footer-bottom-right a,
.footer-bottom-right a span{
    font-size: 14px;
    color: #cad90a !important;
    font-weight: 600;
}

/*--------------------------------------------------------------
# End Css 
--------------------------------------------------------------*/