@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&amp;display=swapdisplay=swap");

:root {
    --main-color: #e03c33;
    --white-color: #ffffff;
    --black-color: #2a283e;
    --navbar-color: #424155;
    --paragraph-color: #818090;
    --bg-color: #eef4f8;
    --transition: 0.4s all ease-in-out;
}

html,
body {
    height: 100%;
}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.mb-30 {
    margin-bottom: 30px;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out 0.1s;
    transition: all 0.3s ease-in-out 0.1s;
    outline: 0 !important;
    color: var(--main-color);
}

a:hover {
    text-decoration: none;
    color: var(--heading-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    margin: 0;
}

h1 {
    font-size: 70px;
    font-weight: 400;
    line-height: 80px;
}

h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 50px;
}

h3 {
    font-size: 24px;
    font-weight: 500;
}

h4 {
    font-size: 20px;
    font-weight: 500;
}

h5 {
    font-size: 18px;
    font-weight: 400;
}

h6 {
    font-size: 14px;
    font-weight: 400;
}

p {
    font-size: 16px;
    line-height: 24px;
    color: var(--paragraph-color);
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0;
}

p:last-child {
    margin-bottom: 0;
}

ul {
    padding: 0;
    margin: 0;
}

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

section {
    position: relative;
}

.form-control {
    height: 60px;
    border: none;
    box-shadow: 0px 1px 13px 0px #0000000d;
    padding: 10px 22px;
    font-size: 16px;
    background: #e03c3314;
}

.form-control:focus {
    color: var(--heading-color);
    background-color: #fff;
    border: 1px solid var(--main-color);
    outline: none;
    box-shadow: none;
}

.section_padding {
    padding: 100px 0;
}

.section_padding_top {
    padding: 100px 0 0 0;
}

.section_padding_bottom {
    padding: 0 0 100px 0;
}

.bg-color {
    background: #eef4f8;
}

.bg-theme {
    background: var(--main-color);
}

.bg-yellow {
    background: #f6a61d;
}

/* --Heading Area-- */
.section_heading {
    text-align: center;
    margin-bottom: 50px;
}

.section_heading h3 {
    color: var(--paragraph-color);
    font-weight: 400;
    margin-bottom: -30px;
}

.section_heading h2 {
    padding-top: 20px;
    position: relative;
}

.section_heading_two {
    text-align: center;
    margin-bottom: 50px;
}

.section_heading_two h3 {
    color: var(--paragraph-color);
    font-weight: 400;
    padding-top: 40px;
    margin-bottom: -30px;
}

.section_heading_two h2 {
    padding-top: 40px;
    font-weight: 700;
    position: relative;
}

.section_heading h2:before {
    content: url("../images/heading.png");
}

.section_after {
    position: relative;
}

.section_after::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 240px;
    background-color: var(--white-color);
}

.img_animation {
    overflow: hidden;
}

.img_animation img {
    transition: var(--transition);
    position: relative;
}

.img_animation:hover img {
    transform: scale(1.2);
}

/* --Button Area start-- */
.btn-check:focus+.btn,
.btn:focus {
    outline: none;
    box-shadow: none;
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: none;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.btn:hover {
    color: var(--white-color);
}

.btn_theme {
    color: var(--white-color);
    background-color: var(--main-color);
    transition: var(--transition);
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 0;
    border: none;
}

.btn_theme:hover {
    background-color: var(--black-color);
}

.btn_md {
    padding: 12px 35px;
    font-size: 18px;
}

.btn_sm {
    font-size: 14px;
    padding: 5px 18px;
}

.btn_navbar {
    color: var(--navbar-color);
    border: 2px solid var(--main-color);
    padding: 7px 20px;
    transition: var(--transition);
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 0;
}

.btn_navbar:hover {
    background: var(--main-color);
}

.is-sticky .btn_navbar {
    border: 1px solid var(--main-color);
}

/* navbar */
.main_header_area {
    width: 100%;
    z-index: 9999;
    background: #fff;
}

.topbar-area {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #00000021;
    background-color: transparent;
}

.topbar-list {
    padding: 0;
    margin-bottom: 0;
}

.topbar-list li {
    position: relative;
    list-style-type: none;
    display: inline-block;
    color: var(--navbar-color);
    margin-right: 25px;
    font-size: 14px;
}


.topbar-list li::before {
    content: "";
    position: absolute;
    top: 5px;
    right: -15px;
    width: 1px;
    height: 15px;
    background-color: #dbdbdb78;
}

.topbar-list li:last-child::before {
    display: none;
}

.topbar-list li:last-child {
    margin-right: 0;
}

.topbar-list li a {
    color: var(--navbar-color);
}

.topbar-list li a:hover {
    color: var(--main-color);
}

.topbar-list li i {
    color: var(--navbar-color);
    padding-right: 7px;
}

.topbar-list-right {
    text-align: right;
}

.topbar-list-right li {
    position: relative;
    display: inline-flex;
    margin-right: 10px;
    font-size: 16px;
}

.topbar-list-right li:last-child {
    margin-right: 0px;
}

.topbar-list-right li a {
    color: var(--navbar-color);
}

.topbar-list-right li a:hover {
    color: var(--main-color);
}

.main-responsive-nav {
    display: none;
}

.main-navbar {
    padding: 7px 0;
    position: relative;
    background: rgb(235, 235, 240);
}

.main-navbar::before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 385px;
    height: 100%;
    background-color: var(--optional-color);
}

.main-navbar .navbar {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    padding: 0;
}

.main-navbar .navbar .navbar-brand {
    padding: 0 0px 0 0;
    margin: 0;
}

.main-navbar .navbar ul {
    padding-left: 115px;
    list-style-type: none;
    margin-bottom: 0;
}

.main-navbar .navbar .navbar-nav .nav-item {
    position: relative;
    margin-left: 15px;
    margin-right: 30px;
}

.main-navbar .navbar .navbar-nav .nav-item a {
    color: #424155;
    font-size: 16px;
    font-weight: 700;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0px;
    padding-bottom: 0px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.main-navbar .navbar .navbar-nav .nav-item a i {
    font-size: 14px;
    position: relative;
    top: 1px;
    display: inline-block;
    margin-left: 2px;
    margin-right: 0px;
}

.main-navbar .navbar .navbar-nav .nav-item a:hover {
    color: var(--main-color);
}

.main-navbar .navbar .navbar-nav .nav-item:last-child {
    margin-right: 0;
}

.main-navbar .navbar .navbar-nav .nav-item:first-child {
    margin-left: 0;
}

.main-navbar .navbar .navbar-nav .nav-item a:before {
    content: "";
    width: 0;
    height: 1px;
    bottom: 0;
    position: absolute;
    left: auto;
    right: 0;
    z-index: -1;
    -webkit-transition: width .5s cubic-bezier(.25, .8, .25, 1) 0s;
    transition: width .5s cubic-bezier(.25, .8, .25, 1) 0s;
    background: var(--main-color);
}


.main-navbar .navbar .navbar-nav .nav-item a:hover:before,
.main-navbar .navbar .navbar-nav .nav-item a:focus:before,
.main-navbar .navbar .navbar-nav .nav-item a.active:before {
    width: 100%;
    left: 0;
    right: auto;
}

.main-navbar .navbar .navbar-nav .nav-item a.active {
    color: var(--main-color);
}

.main-navbar .navbar .others-options {
    margin-left: 25px;
}

.main-navbar .navbar .others-options .option-item {
    margin-right: 30px;
    position: relative;
}

.main-navbar .navbar .others-options .option-item::before {
    content: "";
    position: absolute;
    top: 5px;
    right: -15px;
    width: 1px;
    height: 15px;
    background-color: #dbdbdb;
}

.main-navbar .navbar .others-options .option-item:first-child {
    margin-right: 35px;
}

.main-navbar .navbar .others-options .option-item:first-child::before {
    display: none;
}

.main-navbar .navbar .others-options .option-item:last-child {
    margin-right: 0;
}

.main-navbar .navbar .others-options .option-item:last-child::before {
    display: none;
}

.navbar-area.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, .06);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, .06);
    background: var(--white-color) !important;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-transition: .6s;
    transition: .6s;
}

.others-option-for-responsive {
    display: none;
}

.others-option-for-responsive .dot-menu {
    padding: 0 10px;
    height: 30px;
    cursor: pointer;
    z-index: 9991;
    position: absolute;
    right: 52px;
    top: -42px;
    font-weight: 400;
}

.others-option-for-responsive .dot-menu .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px;
}

.others-option-for-responsive .dot-menu .inner .circle {
    height: 5px;
    width: 5px;
    border-radius: 100%;
    margin: 0 2px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-color: var(--main-color);
}

.others-option-for-responsive .dot-menu:hover .inner .circle {
    background-color: var(--main-color);
}

.others-option-for-responsive .container {
    position: relative;
}

.others-option-for-responsive .container .container {
    position: absolute;
    right: 15px;
    top: 15px;
    max-width: 205px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
    margin-left: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    z-index: 2;
    padding: 15px;
    text-align: center;
}

.others-option-for-responsive .container .container.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.others-option-for-responsive .option-inner .others-options {
    margin-left: 25px;
}

.others-option-for-responsive .option-inner .others-options .option-item {
    margin-right: 30px;
    position: relative;
}

.others-option-for-responsive .option-inner .others-options .option-item::before {
    content: "";
    position: absolute;
    top: 5px;
    right: -15px;
    width: 1px;
    height: 15px;
    background-color: #dbdbdb;
}

.others-option-for-responsive .option-inner .others-options .option-item:first-child {
    margin-right: 70px;
}

.others-option-for-responsive .option-inner .others-options .option-item:first-child::before {
    display: none;
}

.others-option-for-responsive .option-inner .others-options .option-item:last-child {
    margin-right: 0;
}

.others-option-for-responsive .option-inner .others-options .option-item:last-child::before {
    display: none;
}

.others-option-for-responsive .option-inner .others-options .option-item .search-box {
    position: relative;
    top: 2px;
}

.others-option-for-responsive .option-inner .others-options .option-item .search-box i {
    font-size: 22px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    color: #fff;
}

.others-option-for-responsive .option-inner .others-options .option-item .search-box i:hover {
    color: #000;
}

.others-option-for-responsive .option-inner .others-options .option-item .user-icon {
    position: relative;
    top: 2px;
}

.others-option-for-responsive .option-inner .others-options .option-item .user-icon i {
    font-size: 22px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    color: #fff;
}

.others-option-for-responsive .option-inner .others-options .option-item .user-icon i:hover {
    color: #000;
}

.others-option-for-responsive .option-inner .others-options .option-item .cart-btn {
    position: relative;
    top: 2px;
}

.others-option-for-responsive .option-inner .others-options .option-item .cart-btn i {
    font-size: 22px;
    color: red;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    color: #fff;
}

.others-option-for-responsive .option-inner .others-options .option-item .cart-btn i:hover {
    color: #000;
}

.others-option-for-responsive .option-inner .others-options .option-item .cart-btn span {
    position: absolute;
    top: -5px;
    right: -2px;
    display: inline-block;
    height: 15px;
    width: 15px;
    line-height: 15px;
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 10px;
    border-radius: 50px;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-option {
    padding: 0;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-option button {
    padding: 0;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: var(--font-size);
    font-weight: 500;
    padding-right: 22px;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-option button::after {
    display: none
}

.others-option-for-responsive .option-inner .others-options .option-item .language-option button::before {
    content: "\ea4e";
    display: block;
    position: absolute;
    top: 2px;
    right: 0;
    font-size: 15px;
    border-color: #fff;
    font-family: remixicon;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-option .dropdown-menu[style] {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}

.others-option-for-responsive .option-inner .others-options .option-item .language-option .dropdown-menu[data-bs-popper] {
    right: 0;
    left: auto;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-option .language-dropdown-menu {
    border-radius: 5px;
    border: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1);
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1);
    padding: 0;
    margin-top: 10px;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-option .language-dropdown-menu .dropdown-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--paragraph-color);
    font-size: var(--font-size);
    font-weight: 500;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-option .language-dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-option .language-dropdown-menu .dropdown-item:active {
    color: #fff;
    background-color: #000;
}

@media only screen and (max-width:1199px) {
    .main-responsive-nav {
        display: block;
    }

    .main-responsive-nav .main-responsive-menu {
        position: relative;
    }

    .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul {
        font-size: 15px;
    }

    .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a.active {
        color: #000;
    }

    .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a i {
        display: none;
    }

    .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li li a {
        font-size: 14px;
    }

    .main-responsive-nav .main-responsive-menu.mean-container .others-options {
        display: none !important;
    }

    .main-responsive-nav .main-responsive-menu.mean-container .navbar-nav {
        overflow-y: scroll;
        height: 300px;
        -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, .1);
        box-shadow: 0 7px 13px 0 rgba(0, 0, 0, .1);
        background-color: #fff;
    }

    .main-responsive-nav .mean-container a.meanmenu-reveal {
        padding: 4px 0 0;
        color: var(--main-color);
    }

    .main-responsive-nav .mean-container a.meanmenu-reveal span {
        display: block;
        background: var(--main-color);
        height: 2px;
        margin-top: -10px;
        border-radius: 5px;
        position: relative;
        top: 22px;
    }

    .main-responsive-nav .mean-container .mean-bar {
        background-color: unset;
        border-bottom: none;
    }

    .main-responsive-nav .mean-container .mean-nav {
        margin-top: 50px;
    }

    .main-responsive-nav .logo {
        position: relative;
        z-index: 999;
        width: 50%;
    }

    .navbar-area {
        background-color: #fff;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .topbar-area {
        background-color: #fff;
    }


    .main-navbar {
        display: none;
    }

    .others-option-for-responsive {
        display: block;
    }
}

@media only screen and (max-width:767px) {
    .search-overlay .search-overlay-form {
        max-width: 280px;
        width: 280px;
    }

    .search-overlay .search-overlay-close {
        top: 20px;
        right: 20px;
    }

    .others-option-for-responsive .container .container {
        max-width: 190px;
    }

    .others-option-for-responsive .option-inner .others-options {
        margin-left: 0;
    }

    .others-option-for-responsive .option-inner .others-options.d-flex {
        display: inline-block !important;
    }

    .others-option-for-responsive .option-inner .others-options .option-item {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .others-option-for-responsive .option-inner .others-options .option-item::before {
        display: none;
    }

    .others-option-for-responsive .option-inner .others-options .option-item:first-child {
        margin-right: 0;
    }

    .others-option-for-responsive .option-inner .others-options .option-item:last-child {
        margin-bottom: 0;
    }

    .others-option-for-responsive .option-inner .others-options .option-item .search-box i {
        color: var(--paragraph-color);
    }

    .others-option-for-responsive .option-inner .others-options .option-item .user-icon i {
        color: var(--paragraph-color);
    }

    .others-option-for-responsive .option-inner .others-options .option-item .cart-btn i {
        color: var(--paragraph-color);
    }

    .others-option-for-responsive .option-inner .others-options .option-item .language-option {
        text-align: left;
    }

    .others-option-for-responsive .option-inner .others-options .option-item .language-option button {
        color: var(--paragraph-color);
    }

    .topbar-list {
        text-align: center;
    }

    .topbar-list li {
        margin-bottom: 10px;
    }

    .topbar-list li:last-child {
        margin-bottom: 0;
    }

    .topbar-others-options {
        text-align: center;
        margin-top: 10px;
    }
}

@media only screen and (min-width:325px) {
    .others-option-for-responsive .dot-menu {
        top: -46px;
        right: 80px;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .others-option-for-responsive .container .container {
        max-width: 190px;
    }

    .others-option-for-responsive .option-inner .others-options {
        margin-left: 0;
    }

    .others-option-for-responsive .option-inner .others-options.d-flex {
        display: inline-block !important;
    }

    .others-option-for-responsive .option-inner .others-options .option-item {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .others-option-for-responsive .option-inner .others-options .option-item::before {
        display: none;
    }

    .others-option-for-responsive .option-inner .others-options .option-item:first-child {
        margin-right: 0;
    }

    .others-option-for-responsive .option-inner .others-options .option-item:last-child {
        margin-bottom: 0;
    }

    .others-option-for-responsive .option-inner .others-options .option-item .search-box i {
        color: var(--paragraph-color);
    }

    .others-option-for-responsive .option-inner .others-options .option-item .user-icon i {
        color: var(--paragraph-color);
    }

    .others-option-for-responsive .option-inner .others-options .option-item .cart-btn i {
        color: var(--paragraph-color);
    }

    .others-option-for-responsive .option-inner .others-options .option-item .language-option {
        text-align: left;
    }

    .others-option-for-responsive .option-inner .others-options .option-item .language-option button {
        color: var(--paragraph-color);
    }

    .mean-container .mean-nav ul li a.mean-expand {
        right: 20px;
    }

    .topbar-list li {
        margin-right: 25px;
        font-size: 14px;
    }

}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .others-option-for-responsive .container .container {
        max-width: 190px;
    }

    .others-option-for-responsive .option-inner .others-options {
        margin-left: 0;
    }

    .others-option-for-responsive .option-inner .others-options.d-flex {
        display: inline-block !important;
    }

    .others-option-for-responsive .option-inner .others-options .option-item {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .others-option-for-responsive .option-inner .others-options .option-item::before {
        display: none;
    }

    .others-option-for-responsive .option-inner .others-options .option-item:first-child {
        margin-right: 0;
    }

    .others-option-for-responsive .option-inner .others-options .option-item:last-child {
        margin-bottom: 0;
    }

    .others-option-for-responsive .option-inner .others-options .option-item .search-box i {
        color: var(--paragraph-color);
    }

    .others-option-for-responsive .option-inner .others-options .option-item .user-icon i {
        color: var(--paragraph-color);
    }

    .others-option-for-responsive .option-inner .others-options .option-item .cart-btn i {
        color: var(--paragraph-color);
    }

    .others-option-for-responsive .option-inner .others-options .option-item .language-option {
        text-align: left;
    }

    .others-option-for-responsive .option-inner .others-options .option-item .language-option button {
        color: var(--paragraph-color);
    }

    .mean-container .mean-bar {
        padding: 0 !important;
    }

    .mean-container .mean-nav ul li a.mean-expand {
        right: 25px;
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .main-navbar .navbar .navbar-nav .nav-item {
        margin-left: 10px;
        margin-right: 26px;
    }

    .main-navbar .navbar .others-options .option-item:first-child {
        margin-right: 30px;
    }
}

@media only screen and (min-width:1550px) {
    .main-navbar::before {
        width: 575px;
    }
}

.mean-menu {
    justify-content: space-between;
}

/* banner */

#home_one_banner {
    background-image: url("../images/home-banner-bg.png");
    padding: 60px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner_one_img {
    position: relative;
    text-align: right;
}

.banner_one_text h1 span {
    font-weight: 700;
}

.banner_one_text .color_big {
    position: relative;
    z-index: 999;
}

.banner_one_text .color_big::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    background: #fdc221;
    bottom: 21px;
    left: 0;
    z-index: -1;
}

.banner_one_text p {
    padding-top: 20px;
    font-size: 18px;
    line-height: 30px;
}

.banner_element img {
    position: absolute;
    box-shadow: 10px 12px 30px rgba(0, 0, 0, 0.1);
}

.element_1 {
    top: 44%;
    left: 64px;
}

.element_2 {
    top: 23%;
    right: -14%;
}

.element_3 {
    bottom: 0;
    left: 67%;
}

.shape-1 {
    -webkit-animation: left1right 5s linear 0s infinite;
    animation: left1right 5s linear 0s infinite;
}

@keyframes left1right {
    50% {
        -ms-transform: translateY(20px);
        /* IE 9 */
        -webkit-transform: translateY(20px);
        /* Chrome, Safari, Opera */
        transform: translateY(20px);
    }
}

.shape-2 {
    -webkit-animation: left2right 3s linear 0s infinite;
    animation: left2right 3s linear 0s infinite;
}

@keyframes left2right {
    50% {
        -ms-transform: translateY(20px);
        /* IE 9 */
        -webkit-transform: translateY(20px);
        /* Chrome, Safari, Opera */
        transform: translateY(20px);
    }
}

.shape-3 {
    -webkit-animation: left13right 9s linear 0s infinite;
    animation: left3right 9s linear 0s infinite;
}

@keyframes left3right {
    50% {
        -ms-transform: translateY(20px);
        /* IE 9 */
        -webkit-transform: translateY(20px);
        /* Chrome, Safari, Opera */
        transform: translateY(20px);
    }
}

/* --About area-- */
.about_two_left_wrapper h3 {
    color: #818090;
    font-weight: 400;
    padding-bottom: 15px;
}

.about_two_left_wrapper h2 {
    padding-bottom: 15px;
}

.about_two_list_wrapper {
    display: flex;
    padding-top: 20px;
}

.about_two_list_wrapper ul:last-child {
    padding-left: 30px;
}

.about_two_list_wrapper ul li {
    color: var(--paragraph-color);
    padding-bottom: 15px;
}

.about_two_list_wrapper ul li i {
    color: var(--main-color);
    padding-right: 10px;
}

.about_two_quote_wrapper {
    position: relative;
    background-color: #EEF4F8;
    margin-top: 40px;
    padding: 30px 110px 30px 45px;
    border-left: 4px solid var(--main-color);
}

.about_two_quote_wrapper h5 {
    padding-top: 15px;
    font-weight: 500;
}

.about_two_quote_wrapper h5 span {
    color: var(--paragraph-color);
    font-weight: 400;
    font-size: 14px;
    padding-left: 10px;
}

.about_two_quote_wrapper img {
    position: absolute;
    right: -42px;
    top: 50%;
    transform: translateY(-50%);
}

/* --Service Area-- */
.service_two_left_wrapper h3 {
    color: #818090;
    font-weight: 400;
    padding-bottom: 15px;
}

.service_two_left_wrapper p {
    padding-top: 10px;
}

.service_two_left_wrapper a {
    margin-top: 30px;
}

.service_item_right_wrapper .service_two_item:last-child {
    padding-bottom: 0;
}

.service_two_item {
    display: flex;
    padding-bottom: 30px;
}

.service_two_icon {
    width: 34%;
}

.service_two_text p {
    padding-top: 10px;
}

.service_two_text a {
    padding-top: 10px;
    display: block;
    color: var(--black-color);
    font-weight: 500;
}

.service_two_item:hover .service_two_text a {
    color: var(--main-color);
}

/* --Middle Area-- */
#middle_area_wrapper {
    background-image: url('../images/middel_banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.middle_area_Wrapper_box {
    display: flex;
}

.middle_area_box_icon {
    width: 35%;
    margin-right: 20px;
}

.middle_area_box_text h3 {
    color: #F5F5F5;
}

.middle_area_box_text p {
    color: #F5F5F5;
    font-weight: 300;
    padding-top: 15px;
    padding-bottom: 13px;
}

.middle_area_box_text a {
    color: #bcafaf;
    font-weight: 600;
}

.middle_area_box_text a:hover {
    color: #d12c2c;
}

.middal_area_center_wrapper {
    background: #FFFFFF;
    box-shadow: 6px 10px 16px rgb(0 0 0 / 8%);
    border-radius: 8px;
    padding: 30px 35px;
    margin-top: 61px;
}

.middal_area_center_left h3 {
    padding-top: 12px;
    font-size: 26px;
    line-height: 39px;
}

.middal_area_center_left p {
    padding-top: 14px;
}

.middal_area_center_right .donate_two_right_wrapper {
    padding: 0;
    background: transparent;
}

.middal_area_center_right .donate_submit_btn {
    padding-top: 5px;
}

.middal_area_center_right .donate_form_two form .input-group {
    padding-top: 20px;
}

/* --Donate Area-- */
#donet_area_two {
    background-image: url('../images/donate-bg.png');
    padding: 120px 0;
}

.donate_two_left_wrapper h3 {
    color: #f5f5f5;
    padding-bottom: 15px;
}

.donate_two_left_wrapper h2 {
    color: #fff;
}

.donate_two_left_wrapper p {
    padding-top: 14px;
    color: #F5F5f5;
}

.donate_two_right_wrapper {
    background: #FFFFFF;
    padding: 40px 25px;
}

.donate_two_right_wrapper p {
    padding-top: 10px;
}

.donate_form_two form .input-group {
    padding-top: 30px;
}

.donate_form_two form .form-control {
    height: 50px;
}

.donate_form_two form .form-check label {
    display: inline-block;
    margin-right: 20px;
}

.donate_form_two form .input-group-text {
    padding: 10px 19px;
    font-size: 20px;
    color: #fff;
    background-color: var(--main-color);
}

.donate_monthly_wrapper {
    display: flex;
    padding-top: 15px;
}

.donate_amount_btn {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.donate_amount_btn button {
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    box-shadow: 4px 6px 16px rgb(0 0 0 / 4%);
    border-radius: 4px;
    width: 85px;
    height: 45px;
    font-size: 18px;
}

.donate_amount_btn button:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.donate_submit_btn {
    padding-top: 30px;
}

/* --Faqs Area-- */
.faqs_area_two_left h3 {
    color: var(--paragraph-color);
    font-weight: 400;
}

.faqs_area_two_left h2 {
    padding-top: 20px;
}

.faqs_area_two_left p {
    padding-top: 10px;
}

.faqs_area_two_left img {
    padding-top: 30px;
}

#faqs_area_two .accordion-item .accordion-button {
    padding: 5px 15px;
}

#faqs_area_two .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--main-color);
}

#faqs_area_two .accordion-item {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125) !important;
    margin-bottom: 30px;
}

/* cta_area_four */
#cta_area_four {
    background-image: url("../images/cta-area-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 68px 0;
}

.cta_area_four_text h2 {
    font-size: 48px;
    color: var(--white-color);
    line-height: 62px;
    padding-right: 4px;
}

.cta_btn_area {
    text-align: end;
}

.cta_btn_area .volunteer_btn {
    background-color: var(--white-color);

}

.cta_btn_area .volunteer_btn:hover {
    background-color: #424155;

}

/* --Blog Area-- */
#home_blog_area {
    padding: 200px 0 100px 0;
    margin-top: -100px;
}

.blog_three_wrapper {
    position: relative;
    margin-bottom: 30px;
}

.blog_img_three img {
    width: 100%;
}

.blog_text_three {
    position: absolute;
    bottom: 0;
    padding: 20px 20px;
}

.blog_three_date ul li {
    display: inline-block;
    padding-right: 19px;
    color: var(--white-color);
    font-size: 14px;
}

.blog_three_text {
    padding-top: 12px;
}

.blog_three_text h3 {
    line-height: 28px;
    font-size: 20px;
}

.blog_three_text h3 a {
    color: var(--white-color);
}

.blog_three_text h3 a:hover {
    color: var(--main-color);
}

.blog_three_text p {
    padding-top: 20px;
}

/* --Subscribe Area-- */
.subscribe_wrapper {
    background: #ffffff;
    box-shadow: -4px -6px 24px rgba(0, 0, 0, 0.08),
        8px 12px 24px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 40px 85px 40px 85px;
}

.subscribe_text h3 {
    font-size: 30px;
    padding-top: 10px;
    line-height: 40px;
}

#subscribe_form .form-control {
    border: 1px solid var(--main-color);
    height: 60px;
    background: var(--white-color);
}

#subscribe_form .btn_md {
    padding: 16px 35px;
    font-size: 18px;
}

/* --Footer Area-- */
#footer_area {
    padding: 195px 0 100px 0;
    background: #f4f7fc;
    margin-top: -95px;
}

.footer_area_about {
    padding-right: 100px;
}

.footer_area_about img {
    width: 80px;
}

.footer_area_about p {
    /* padding-top: 20px; */
    padding-bottom: 13px;
}

.footer_area_about h6 {
    padding-top: 5px;
    font-size: 16px;
    color: var(--paragraph-color);
    line-height: 27px;
}

.footer_area_about h6 strong {
    color: var(--black-color);
}

.footer_area_about h6 a {
    color: var(--paragraph-color);
}

.footer_area_about h6 a:hover {
    color: var(--main-color);
}

.footer_navitem_ara h3 {
    padding-bottom: 35px;
}

.nav_item_footer ul li {
    padding-bottom: 20px;
}

.nav_item_footer ul li:last-child {
    padding-bottom: 0px;
}

.nav_item_footer ul li a {
    color: var(--black-color);
}

.nav_item_footer ul li a:hover {
    color: var(--main-color);
}

.footer_twitter_area p {
    padding: 10px 0;
}

.footer_twitter_area h6 {
    font-size: 16px;
    font-weight: 500;
    padding-top: 10px;
}

/* -Copyright Area- */
.copyright_area {
    background-color: var(--main-color);
    padding: 15px 0;
}

.copyright_left p {
    color: var(--white-color);
}

.copyright_right {
    text-align: right;
}

.copyright_right ul li {
    display: inline-flex;
    padding-left: 20px;
}

.copyright_right ul li a {
    color: var(--white-color);
}

/* =========================
        About Page
=========================*/
/* --Common Banner-- */
#common_banner_area {
    background-image: url("../images/close-up-community.jpg");
    background-size: cover;
    background-position: center;
    padding: 145px 0;
}

.commn_banner_page h2 {
    color: #fff;
    font-size: 36px;
}

.breadcrumb_wrapper {
    display: flex;
    padding-top: 10px;
}

.breadcrumb_item {
    padding: 0 10px 0 0;
}

.breadcrumb_item a {
    color: var(--white-color);
}

.breadcrumb_item.active {
    color: #ffffff8c;
}

/* --About area-- */
/* --About area-- */
.about_three_top_boxed {
    position: relative;
    margin-bottom: 30px;

}

.about_three_top_boxed_img img {
    width: 100%;
}

.about_three_top_boxed_text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
}

.about_three_top_boxed_text h3 {
    font-size: 30px;
    padding-top: 9px;
}

.about_three_top_boxed_text h3 span {
    display: block;
}

.about_three_top_boxed_text h5 {
    color: var(--paragraph-color);
    font-weight: 300;
}

.about_three_top_boxed_icon {
    position: absolute;
    box-shadow: 0px 2px 5px 0px #00000047;
    border-radius: 50%;
    right: 20px;
    bottom: -20px;
    transition: var(--transition);
}

.about_three_top_boxed:hover .about_three_top_boxed_icon {
    transform: translateY(-10px);
}

.about_mission_area {
    padding-top: 30px;
    display: flex;
}

.about_tree_mission_icon {
    width: 40%;
}

.about_tree_mission_text {
    padding-left: 10px;
}

.about_tree_mission_text h3 {
    color: var(--black-color);
    font-weight: 500;
    padding-bottom: 7px;
}

.about_three_progrebar {
    padding-top: 34px;
}

.about_three_progrebar .class-full-bar-box .h3-title {
    font-size: 15px;
    line-height: 15px;
    color: var(--black-color);
    font-weight: 600;
    padding-bottom: 0px;
}

.about_three_progrebar .class-full-bar-box {
    position: relative;
    margin-bottom: 35px;
}

.skill-bar-percent {
    position: absolute;
    top: 0;
    right: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.skill-bar {
    width: 100%;
    height: 10px;
    position: relative;
    margin-top: 10px;
}

.skill-bar:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-color: rgb(253, 61, 12, 0.2);
}

.skill-bar-inner {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 0;
    height: 100%;
    overflow: visible;
}

.skill-bar-inner:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background: var(--main-color);
}

.class-full-bar-box {
    position: relative;
}

.class-full-bar-box .h3-title {
    font-size: 15px;
    line-height: 15px;
    color: var(--black-color);
    font-weight: 600;
}

.class-full-bar-box .h3-title span {
    color: var(--paragraph-color);
    font-weight: 400;
}

.class-full-bar-percent {
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 15px;
    line-height: 15px;
    font-weight: 800;
    color: #10161b;
    display: flex;
    align-items: center;
}

.class-full-bar-percent h2 {
    font-size: 17px;
    line-height: 28px;
}

.class-full-bar-percent .h3-title {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 15px;
}

/* --case-boxed-- */
.case_boxed_wrapper {
    box-shadow: 8px 10px 24px rgba(0, 0, 0, 0.1);
    background: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    z-index: 9;
}

.case_boxed_wrapper:hover .case_boxed_img a img {
    transform: scale(1.2) rotate(3deg);
}

.case_boxed_img {
    position: relative;
    overflow: hidden;
}

.case_boxed_img a img {
    width: 100%;
    transition: var(--transition);
}

.causes_badge {
    position: absolute;
    top: 10px;
    left: 10px;
    color: var(--white-color);
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 5px;
}

.causes_boxed_text {
    padding: 15px 20px;
}

.causes_boxed_text h3 {
    font-weight: 500;
    line-height: 35px;
}

.causes_boxed_text h3 a {
    color: var(--black-color);
    padding-top: 20px;
    display: block;
}

.causes_boxed_text h3 a:hover {
    color: var(--main-color);
}

.causes_boxed_text p {
    padding-top: 10px;
}

.causes_boxed_bottom_wrapper {
    border-top: 1px solid #c4c4c457;
    padding-top: 15px;
    margin-top: 17px;
}

.causes_boxed_bottom_wrapper .row .col-lg-6:last-child .casuses_bottom_boxed {
    border-right: none;
}

.casuses_bottom_boxed {
    display: flex;
    align-items: center;
    border-right: 1px solid #e6e6e6;
}

.casuses_bottom_content {
    padding-left: 8px;
}

.casuses_bottom_content h5 {
    font-size: 16px;
    font-weight: 500;
}

.casuses_bottom_content p {
    padding-top: 0;
    font-size: 14px;
}

/* --Team Area-- */
.team_area_three {
    background: #FFFFFF;
    box-shadow: 8px 10px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}


.team_area_three_img img {
    width: 100%;
}

.team_area_three_content {
    padding: 15px 15px;
    text-align: center;
}


.team_area_three_content p {
    padding-top: 3px;
}

.team_area_three_img {
    position: relative;
    overflow: hidden;
}

.team_area_three:hover .team_area_three_img ul {
    opacity: 1;
    transform: translate(-50%, -30px);
}

.team_area_three_img ul {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transition: var(--transition);
    opacity: 0;
    transform: translate(-50%, -50%);
}

.team_area_three_img ul li {
    display: inline-flex;
    background: #fff;
    width: 30px;
    text-align: center;
    justify-content: center;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    box-shadow: 4px 6px 20px rgb(0 0 0 / 8%);
    transition: var(--transition);
    color: var(--main-color);
    margin-left: 8px;
}

.team_area_three_img ul li:last-child {
    margin-left: 0px;
}

.team_area_three_img ul li:hover {
    background-color: var(--main-color);
}

.team_area_three_img ul li:hover a {
    color: var(--white-color);
}














/* ----------------------------
        contact Page
---------------------------------*/
.contact_left_item {
    background: #ffffff;
    box-shadow: 8px 10px 24px rgb(0 0 0 / 10%);
    border-radius: 8px;
    display: flex;
    padding: 30px 40px;
    margin-bottom: 30px;
}

.contact_left_text {
    padding-left: 20px;
}

.contact_left_text h3 {
    padding-bottom: 10px;
}

.contact_left_text p {
    font-size: 18px;
    line-height: 28px;
}

.contact_left_text a {
    color: var(--paragraph-color);
    display: block;
    font-size: 18px;
    padding-top: 5px;
}

.contact_left_text a:hover {
    color: var(--main-color);
}

.contact_form_Wrapper {
    background: #ffffff;
    box-shadow: 8px 10px 24px rgb(0 0 0 / 10%);
    border-radius: 8px;
    padding: 20px 40px;
}

.contact_form_Wrapper h3 {
    padding-bottom: 20px;
}

#contact_form .form-group {
    padding-bottom: 15px;
}

.contact_map_area {
    margin-top: -115px;
}

/* --About Top Area-- */
.about_top_boxed {
    position: relative;
    border-radius: 20px;
    padding: 40px 30px 20px 30px;
    transition: var(--transition);
}

.about_top_boxed:hover {
    transform: translateY(10px);
}

.bg_one {
    background: #cae4f7;
}

.bg_two {
    background: #fdf0dd;
}

.bg_three {
    background: #d2f4f4;
}

.bg_four {
    background: #e0eafd;
}

.about_top_boxed_icon {
    text-align: center;
    margin: 0px auto 0 auto;
    margin-top: -45px;
    transition: var(--transition);
}

.about_top_boxed:hover .about_top_boxed_icon {
    transform: translateY(20px);
}

.about_top_boxed_icon img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0px -4px 16px rgb(0 0 0 / 6%), 4px 8px 16px rgb(0 0 0 / 10%);
    margin-top: -45px;
}

.about_top_boxed_text {
    padding-top: 20px;
}

.about_top_boxed_text h3 {
    font-size: 30px;
    font-weight: 500;
    padding: 7px 0;
}

.about_top_boxed_text a {
    font-size: 16px;
    font-weight: 500;
}

.about_top_boxed_vector {
    position: absolute;
    bottom: 15px;
    right: 20px;
}

.color_big_heading {
    position: relative;
    z-index: 99;
}

.color_big_heading::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    background: #fdc221;
    bottom: 4px;
    left: 0;
    z-index: -1;
}

/* ----------------------------
    Make a donetion Page
---------------------------------*/
.sidebar_first .case_boxed_wrapper {
    margin-bottom: 30px;
}

.donet_amount_area {
    background: #ffffff;
    box-shadow: -4px -4px 20px rgb(0 0 0 / 8%), 8px 10px 24px rgb(0 0 0 / 8%);
    border-radius: 6px;
    padding: 55px 25px;
    display: flex;
    justify-content: space-between;
}

.input_donet_amount {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.input_donet_amount span {
    font-size: 30px;
}

.input_donet_amount input {
    border: none;
    border-bottom: 1px solid var(--main-color);
    font-size: 24px;
    width: 55%;
}

.input_donet_amount input:focus {
    border-bottom: 1px solid var(--main-color);
    outline: none;
}

.donet_amount_form_area {
    background: #ffffff;
    box-shadow: -4px -4px 20px rgba(0, 0, 0, 0.08),
        8px 10px 24px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 25px 25px;
}

.donet_amount_form_area .form-group {
    margin-top: 30px;
}

.doner_content_pbottom {
    margin-bottom: 30px;
}

.payment_option_area {
    padding-top: 30px;
}

.payment_option_area ul {
    display: flex;
}

.payment_option_area ul li {
    padding-right: 25px;
}

.payment_option_area ul li img {
    cursor: pointer;
}

.payment_amount_submit {
    padding-top: 30px;
}

.causes_pro_bar {
    background: #ffffff;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
    padding: 20px 20px;
    border-radius: 10px;
    margin-top: -50px;
    z-index: 999;
    position: relative;
}

/* --Causes Area-- */
.causes_boxed_two .causes_badge {
    position: inherit;
    color: var(--white-color);
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 5px;
}

.causes_boxed_two .causes_pro_bar {
    margin-top: 20px;
}

.causes_boxed_text_center {
    text-align: center;
}

.causes_boxed_two .causes_boxed_text {
    padding: 30px 13px;
}

.causes_boxed_two .causes_pro_bar {
    background: #EEF4F8;
    box-shadow: 0px 8px 20px rgb(0 0 0 / 8%);
    border-radius: 8px;
}

/* --sidebar-- */
.project_organizer_wrapper {
    display: flex;
}

.sidebar_boxed {
    background: #ffffff;
    box-shadow: -4px -4px 20px rgba(0, 0, 0, 0.08),
        8px 10px 24px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 30px 30px;
    margin-bottom: 30px;
}

.project_organizer_text {
    padding-left: 25px;
}

.project_organizer_text h5 {
    line-height: 13px;
    padding-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

.project_organizer_text p {
    padding-top: 5px;
}

.project_organizer_text ul li {
    padding-top: 10px;
    color: var(--paragraph-color);
    font-weight: 500;
}

.project_organizer_text ul li img {
    padding-right: 5px;
    width: 36px;
}

.project_organizer_text ul li span {
    color: var(--black-color);
}

.recent_donet_item {
    display: flex;
    padding-top: 25px;
}

.recent_donet_img {
    width: 25%;
}

.recent_donet_text {
    width: 100%;
    padding-left: 15px;
}

.sidebar_inner_heading {
    display: flex;
    justify-content: space-between;
}

.sidebar_inner_heading h4 {
    font-size: 18px;
    font-weight: 600;
}

.sidebar_inner_heading h4 a {
    color: var(--black-color);
}

.sidebar_inner_heading h4 a:hover {
    color: var(--main-color);
}

.sidebar_inner_heading h5 {
    font-size: 18px;
    color: var(--main-color);
    font-weight: 600;
}

.recent_donet_text p {
    padding-top: 5px;
}

.recent_donet_text h6 {
    padding-top: 5px;
    font-weight: 500;
}

.sidebar_heading_main {
    border-bottom: 1px solid #ededed;
    padding-bottom: 7px;
}

.recent_causes_wrapper .sidebar_inner_heading h4 a {
    line-height: 26px;
}

.recent_causes_wrapper .recent_donet_text h6 {
    padding-top: 10px;
    font-weight: 500;
}

.social_icon_sidebar ul li {
    display: inline-flex;
    padding-top: 20px;
    padding-right: 15px;
    transition: var(--transition);
}

.social_icon_sidebar ul li:hover {
    transform: translateY(-5px);
}

.social_icon_sidebar ul li a img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.tags_noted {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
    display: block;
}

.event_details_list ul li {
    padding-top: 20px;
}

.event_details_list ul li {
    padding-top: 20px;
    color: var(--paragraph-color);
    font-weight: 500;
}

.event_details_list ul li img {
    padding-right: 5px;
    width: 36px;
}

.event_details_list ul li span {
    color: var(--black-color);
}

.register_now_details {
    padding-top: 40px;
}

/* ----------------------------
    Gallery Page
---------------------------------*/
.gallery_item {
    position: relative;
    margin-bottom: 30px;
}

.gallery_item img {
    width: 100%;
}

.gallery_overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #ff00003b;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.gallery_item:hover .gallery_overlay {
    opacity: 1;
    visibility: visible;
}

.gallery_overlay a img {
    width: auto;
}

.arrow_style.owl-carousel .owl-nav button.owl-next,
.arrow_style.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    padding: 0 !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}

.arrow_style.owl-carousel .owl-nav button.owl-next {
    right: 30px;
    top: 47%;
}

.arrow_style.owl-carousel .owl-nav button.owl-prev {
    left: 30px;
    top: 47%;
}

.arrow_style.owl-carousel .owl-nav button.owl-next:hover,
.arrow_style.owl-carousel .owl-nav button.owl-prev:hover {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    background-color: transparent;
}

/* =========================
    Causes Details Page
=========================*/
.details_big_img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.details_big_img img {
    width: 100%;
    transition: var(--transition);
}

.details_big_img img:hover {
    transform: scale(1.3);
}

.causes_pro_bar_flex {
    background: #eef4f8;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 20px;
    border-radius: 10px;
    margin-top: 30px;
    z-index: 999;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.causes_pro_bar_flex .class-full-bar-box {
    position: relative;
    width: 70%;
}

.details_text_wrapper {
    padding-top: 30px;
}

.details_text_wrapper p {
    padding-top: 15px;
}

.details_text_wrapper h3 {
    padding-top: 15px;
}

.details_small_img {
    padding-top: 30px;
}

.details_small_img img {
    width: 100%;
}

.details_text_wrapper ul {
    padding-top: 10px;
}

.details_text_wrapper ul li {
    padding-top: 15px;
    color: var(--paragraph-color);
}

.details_text_wrapper ul li i {
    font-size: 9px;
    color: var(--main-color);
    padding-right: 10px;
}

.download_pdf_area {
    background: #eef4f8;
    padding: 25px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    border-radius: 8px;
}

.pdf_download_left {
    display: flex;
    align-items: center;
}

.pdf_download_left h4 {
    padding-left: 20px;
}

.comment_area_details {
    padding-top: 80px;
}

.post_comment_item {
    display: flex;
    padding-top: 30px;
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 30px;
}

.post_comment_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.post_comment_img {
    width: 15%;
}

.post_comment_text {
    padding-left: 20px;
}

.post_names_replay {
    display: flex;
    justify-content: space-between;
}

.post_names_replay h5 {
    font-weight: 500;
}

.post_comment_text p {
    padding-top: 10px;
}

.post_names_replay a i {
    padding-right: 5px;
}

.comment_form_area {
    padding-top: 60px;
}

#comment_form .form-control {
    margin-bottom: 30px;
}

textarea.form-control {
    height: auto;
}

.comment_form_area h3 {
    padding-bottom: 30px;
}

/* --Blog area-- */
#home_blog_area {
    padding: 200px 0 100px 0;
    margin-top: -100px;
}

.blog_card_wrapper {
    background: #ffffff;
    box-shadow: 6px 12px 24px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 9;
}

.blog_card_img {
    overflow: hidden;
}

.blog_card_img a img {
    width: 100%;
    transition: var(--transition);
}

.blog_card_wrapper:hover .blog_card_img a img {
    transform: scale(1.2);
}

.blog_card_text {
    padding: 20px 20px;
}

.blog_card_heading {
    padding-top: 10px;
}

.blog_card_heading h3 {
    line-height: 35px;
}

.blog_card_heading h3 a {
    color: var(--black-color);
}

.blog_card_heading h3 a:hover {
    color: var(--main-color);
}

.blog_card_heading p {
    padding-top: 13px;
}

.blog_boxed_bottom_wrapper {
    border-top: 1px solid #c4c4c457;
    padding-top: 15px;
    margin-top: 17px;
}

.blog_boxed_bottom_wrapper .row .col-lg-6:last-child .blog_bottom_boxed {
    border-right: none;
}

.blog_bottom_boxed {
    display: flex;
    align-items: center;
    border-right: 1px solid #e6e6e6;
}

.blog_bottom_content {
    padding-left: 8px;
}

.blog_bottom_content h5 {
    font-size: 16px;
    font-weight: 500;
}

.blog_bottom_content p {
    padding-top: 0;
    font-size: 14px;
}

/* ----------------------------
    Terms of service Page
---------------------------------*/

.terms_item:first-child {
    padding-top: 0px;
}

.terms_item {
    padding-top: 30px;
}

.terms_item h4 {
    font-weight: 700;
}

.terms_item p {
    padding-top: 15px;
}


/* -------------------------------
        Preloader
---------------------------------*/

.preloader {
    position: fixed;
    z-index: 999999;
    background-color: var(--white-color);
    width: 100%;
    height: 100%;
    text-align: center;
    left: 0;
    right: 0;
}

.preloader .lds-spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.preloader .lds-spinner div {
    -webkit-transform-origin: 40px 40px;
    transform-origin: 40px 40px;
    -webkit-animation: lds-spinner 1.2s linear infinite;
    animation: lds-spinner 1.2s linear infinite;
}

.preloader .lds-spinner div::after {
    content: " ";
    display: block;
    position: absolute;
    top: 5px;
    left: 35px;
    width: 5px;
    height: 20px;
    border-radius: 20%;
    background: var(--main-color);
}

.preloader .lds-spinner div:nth-child(1) {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.preloader .lds-spinner div:nth-child(2) {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.preloader .lds-spinner div:nth-child(3) {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.preloader .lds-spinner div:nth-child(4) {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.preloader .lds-spinner div:nth-child(5) {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.preloader .lds-spinner div:nth-child(6) {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.preloader .lds-spinner div:nth-child(7) {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.preloader .lds-spinner div:nth-child(8) {
    -webkit-transform: rotate(210deg);
    transform: rotate(210deg);
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.preloader .lds-spinner div:nth-child(9) {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg);
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.preloader .lds-spinner div:nth-child(10) {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.preloader .lds-spinner div:nth-child(11) {
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg);
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

.preloader .lds-spinner div:nth-child(12) {
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg);
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

@-webkit-keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

/* ----------------------------
     Top To Bottom 
---------------------------------*/
.go-top {
    position: fixed;
    cursor: pointer;
    top: 0;
    right: 15px;
    color: #fff;
    background-color: var(--main-color);
    z-index: 999;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.9s;
    transition: 0.9s;
    border-radius: 50%;
}

.go-top.active {
    top: 98%;
    -webkit-transform: translateY(-98%);
    transform: translateY(-98%);
    opacity: 1;
    visibility: visible;
}

.go-top i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}

.go-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #393953;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    border-radius: 50%;
}

.go-top:hover,
.go-top:focus {
    color: #fff;
}

.go-top:hover::before,
.go-top:focus::before {
    opacity: 1;
    visibility: visible;
}

.go-top:hover i:first-child,
.go-top:focus i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}

.go-top:hover i:last-child,
.go-top:focus i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

/* =============================================
   CCF Custom Enhancements
   ============================================= */

/* Smoother Google Fonts import */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* Root: update main-color for brand consistency */
:root {
    --main-color: #e03c33;
    --main-dark: #b02a22;
    --main-light: #fff5f5;
    --gold: #f6a61d;
}

/* ---- Logo enhancement ---- */
.navbar-brand img, .main-responsive-menu .logo img {
    filter: none;
    object-fit: contain;
}

/* ---- Topbar ---- */
.topbar-area {
    background: #fafafa;
}

/* ---- Navbar CTA button ---- */
.btn_navbar {
    background: var(--main-color);
    color: #fff !important;
    border-radius: 25px;
    font-weight: 600;
    padding: 8px 24px;
}
.btn_navbar:hover {
    background: var(--main-dark);
    color: #fff !important;
}
.btn_navbar.active {
    background: var(--main-dark);
    color: #fff !important;
}

/* ---- Banner section ---- */
#home_one_banner {
    padding: 80px 0 70px;
    background: linear-gradient(135deg, #fff5f5 0%, #fef9f9 100%);
}
#home_one_banner .banner_one_text h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a2e;
}
#home_one_banner .banner_one_text p {
    font-size: 17px;
    line-height: 1.7;
    margin: 20px 0 32px;
    color: #555;
}
.color_big { color: var(--main-color); }
.color_big_heading { color: var(--main-color); }

/* ---- Section headings ---- */
.section_heading h2, .section_heading_two h2 {
    color: #1a1a2e;
    font-weight: 700;
}
.section_heading h3, .section_heading_two h3 {
    color: var(--main-color);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ---- About section ---- */
#about_area_two .about_two_left_wrapper h3 {
    color: var(--main-color);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 8px;
}
#about_area_two .about_two_left_wrapper h2 {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}
.about_two_list_wrapper ul li i {
    color: var(--main-color);
    margin-right: 8px;
}
.about_two_quote_wrapper {
    background: var(--main-light);
    border-left: 4px solid var(--main-color);
    padding: 20px 24px;
    border-radius: 8px;
    margin-top: 24px;
}
.about_two_quote_wrapper h5 { color: var(--main-color); margin-top: 10px; font-weight: 600; }

/* ---- Service items ---- */
.service_two_item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    transition: 0.3s;
    border-top: 3px solid transparent;
}
.service_two_item:hover {
    border-top-color: var(--main-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(224,60,51,0.1);
}
.service_two_item h3 { color: #1a1a2e; font-size: 17px; margin-bottom: 8px; }

/* ---- CTA section ---- */
#cta_area_four {
    background: linear-gradient(135deg, #e03c33 0%, #b02a22 100%);
    padding: 60px 0;
}
#cta_area_four .cta_area_four_text h2 {
    color: #fff;
    font-weight: 700;
    font-size: 32px;
}
.volunteer_btn, #cta_area_four .btn {
    background: #fff;
    color: var(--main-color) !important;
    border-radius: 30px;
    font-weight: 700;
    padding: 14px 40px;
    font-size: 16px;
    transition: 0.3s;
}
.volunteer_btn:hover, #cta_area_four .btn:hover {
    background: #1a1a2e;
    color: #fff !important;
}

/* ---- Common banner (inner pages) ---- */
#common_banner_area {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 70px 0 50px;
}
#common_banner_area .commn_banner_page h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}
.breadcrumb_wrapper { margin-top: 14px; }
.breadcrumb_item a { color: rgba(255,255,255,0.7); font-size: 14px; }
.breadcrumb_item.active { color: var(--main-color); font-size: 14px; }

/* ---- Subscribe section ---- */
#subscribe_area {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0;
}
.subscribe_text p { color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1.5px; font-size: 13px; }
.subscribe_text h3 { color: #fff; font-size: 24px; }
.subscribe_text .color_big_heading { color: var(--gold); }
#subscribe_area .btn_theme { background: var(--main-color); border-radius: 0 8px 8px 0; }

/* ---- Blog items ---- */
.blog_three_wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    margin-bottom: 24px;
    transition: 0.3s;
    background: #fff;
}
.blog_three_wrapper:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.blog_three_text h3 a { color: #1a1a2e; }
.blog_three_text h3 a:hover { color: var(--main-color); }

/* ---- Footer improvements ---- */
.footer {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 50px;
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,0.45);
    font-size: 14px;
}

/* ---- Go-to-top button ---- */
.go-top {
    background: var(--main-color);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(224,60,51,0.3);
}

/* ---- Causes / Progress bars ---- */
.causes_badge { border-radius: 20px; padding: 4px 14px; font-size: 12px; font-weight: 600; color: #fff; }
.case_boxed_wrapper {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    background: #fff;
    transition: 0.3s;
}
.case_boxed_wrapper:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }

/* ---- Contact form improvements ---- */
.contact_form_Wrapper {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    padding: 32px;
}
.contact_form_Wrapper h3 { color: #1a1a2e; font-weight: 700; margin-bottom: 22px; }

/* ---- Info boxes on contact page ---- */
.about_top_boxed {
    border-radius: 14px;
    padding: 30px 24px;
    text-align: center;
    transition: 0.3s;
}
.about_top_boxed:hover { transform: translateY(-5px); }
.about_top_boxed.bg_one { background: linear-gradient(135deg, #e03c33, #b02a22); }
.about_top_boxed.bg_two { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.about_top_boxed.bg_three { background: linear-gradient(135deg, #f6a61d, #e09218); }
.about_top_boxed_text h3 { color: #fff; font-size: 20px; margin: 10px 0; }
.about_top_boxed_text p { color: rgba(255,255,255,0.8); }
.about_top_boxed_text a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.5); padding-bottom: 2px; }

/* ---- Middle area wrapper (3 icons) ---- */
.middle_area_Wrapper_box {
    background: #fff;
    border-radius: 14px;
    padding: 30px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    text-align: center;
    transition: 0.3s;
    margin-bottom: 24px;
    border-bottom: 4px solid transparent;
}
.middle_area_Wrapper_box:hover {
    border-bottom-color: var(--main-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(224,60,51,0.1);
}
.middle_area_box_text h3 { color: #1a1a2e; font-size: 20px; margin: 14px 0 8px; }
.middle_area_box_text a { color: var(--main-color); font-weight: 600; }

