/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigation
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/

/*== Default Css ==*/

: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: var(--thm-gray);
    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: 66px;
}

.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: 56px;
    line-height: 1.2em;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

.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: 40px;
    padding-right: 40px;
    padding-bottom: 1px;
    background-color: transparent;
    color: #ffffff;
    font-size: 18px;
    line-height: 66px;
    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 {
    color: var(--thm-black);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--thm-font);
    transition: all 500ms ease;
}

.scroll-to-top .scroll-bar-text:hover {
    transform: scale(1);
}



/*== 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);
    }
}

.loader-wrap .layer-one {
    position: absolute;
    left: 0%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-two {
    position: absolute;
    left: 33.3333%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-three {
    position: absolute;
    left: 66.6666%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--thm-black);
}

@media screen and (max-width: 767px) {
    .handle-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }
}

@media screen and (max-width: 500px) {
    .handle-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 40px;
        letter-spacing: 10px;
    }
}

.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);
    }
}



/*** 
=============================================
    Features Style1 Css
=============================================
***/
.features-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 150px 0px 100px;
    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: 40px 30px 40px;
    background-color: #ffffff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.single-causes-style1 .text-box .category {
    position: relative;
    display: inline-block;
    background: #2099a4cc;
    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: 150px 0 150px;
    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: 70px;
    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: 55px 45px 55px;
    padding-right: 30px;
    margin-bottom: 35px;
    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: 14px;
}

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



/*** 
=============================================
    Slogan Style1 Css
=============================================
***/
.slogan-style1 {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 150px 0 150px;
    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: 8%;
    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;
    text-transform: capitalize;
}

.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: block;
    line-height: 0;
}

.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);
}




/*------------------------------------------
  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;
}



/*** 
=============================================
    Events Style1 Css
=============================================
***/
.events-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 150px 0 150px;
    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: 175px;
    margin-top: 45px;
}

.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;
    display: block;
    min-height: 115px;
}

.single-events-box__text .title-box h3 {
    position: relative;
    top: 2px;
    font-size: 21px;
    line-height: 34px;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    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: 15px;
}

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

.single-events-box__text .meta-box .meta-info li {
    position: relative;
    display: flex;
    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: 30px;
}

.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: block;
    margin-top: 0;
    min-height: 115px;
}

.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;
}



/*** 
=============================================
    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: 120px 0 185px;
    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;
    padding: 150px 0 150px;
    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;
}



/*** 
=============================================
    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: 50px 40px 50px;
    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 {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.sidebar-cause-post ul li:last-child {
    margin-bottom: 0;
}

.sidebar-cause-post ul li .inner {
    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 {
    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;
}





/*--------------------------------------------------------------
# End Css 
--------------------------------------------------------------*/