@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
@import url("swiper.css");
 :root {
    --main-color: #e03c33;
    --white-color: #ffffff;
    --black-color: #2a283e;
    --navber-color: #424155;
    --paragraph-color: #818090;
    --bg-color: #eef4f8;
    --transition: 0.4s all ease-in-out;
}

html,
body {
    height: 100%;
}

body {
    padding: 0px;
    margin: 0px;
    font-size: 16px;
    font-family: Sora, 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;
    transition: 0.3s ease-in-out 0.1s;
    color: var(--main-color);
    outline: 0px !important;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Sora, serif;
    margin: 0px;
}

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: Sora, serif;
    margin-bottom: 0px;
}

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

ul {
    padding: 0px;
    margin: 0px;
}

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

section {
    position: relative;
}

.form-control {
    height: 51px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 13px 0px;
    padding: 10px 22px;
    font-size: 16px;
    background: rgba(224, 60, 51, 0.08);
}

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

.section_padding {
    padding: 60px 0px;
}

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

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

.bg-color {
    background: rgb(238, 244, 248);
}

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

.bg-yellow {
    background: rgb(246, 166, 29);
}

.case_boxed_wrapper {
    box-shadow: rgba(0, 0, 0, 0.1) 8px 10px 24px;
    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 rgba(196, 196, 196, 0.34);
    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 rgb(230, 230, 230);
}

.casuses_bottom_content {
    padding-left: 8px;
}

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

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

.skill-bar-percent {
    position: absolute;
    top: 0px;
    right: 0px;
    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: 0px;
    transform: translate(0px, -50%);
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-color: rgba(253, 61, 12, 0.2);
}

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

.skill-bar-inner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translate(0px, -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: 0px;
    font-size: 15px;
    line-height: 15px;
    font-weight: 800;
    color: rgb(16, 22, 27);
    display: flex;
    align-items: center;
}

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

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

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

.event_left_side_wrapper {
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.08) -4px 6px 24px, rgba(0, 0, 0, 0.08) 6px 12px 24px;
    border-radius: 8px;
}

.event_big_img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

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

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

.event_content_area {
    position: relative;
}

.big_content_padding {
    padding: 15px 18px;
}

.small_content_padding {
    padding: 15px 18px;
    margin-bottom: 20px;
}

.small_content_padding .event_heading_area {
    padding-top: 7px;
}

.small_content_padding .event_para {
    padding-top: 8px;
    padding-right: 90px;
}

.event_tag_area a {
    font-size: 18px;
    font-weight: 500;
}

.event_heading_area {
    padding-top: 15px;
}

.event_heading {
    padding-right: 90px;
}

.event_heading h3 {
    line-height: 34px;
}

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

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

.event_date {
    position: absolute;
    width: 85px;
    height: 83px;
    text-align: center;
    right: 32px;
    top: 31px;
}

.event_date h6 {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 18px;
    color: rgb(255, 255, 255);
    transform: translate(-50%, -58%);
}

.event_date h6 span {
    display: block;
}

.event_para {
    padding-top: 18px;
    padding-right: 90px;
}

.event_boxed_bottom_wrapper {
    border-top: 1px solid rgba(196, 196, 196, 0.25);
    border-bottom: 1px solid rgba(196, 196, 196, 0.25);
    padding-top: 15px;
    margin-top: 17px;
    padding-bottom: 15px;
}

.event_boxed_bottom_wrapper .row .col-lg-6:last-child .event_bottom_boxed {
    border-right: none;
}

.event_bottom_boxed {
    display: flex;
    align-items: center;
    border-right: 1px solid rgb(230, 230, 230);
}

.event_bottom_content {
    padding-left: 8px;
}

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

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

.event_button {
    margin-top: 30px;
}

.event_button a {
    width: 100%;
}

.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;
    margin-bottom: -30px;
}

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

.section_after {
    position: relative;
}

.section_after::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    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);
}

.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;
    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_navber {
    color: var(--main-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;
    font-weight: 600;
}

.btn_navber i {
    margin-left: 5px;
}

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

.is-sticky .btn_navber {}

#home_one_banner {
    background-image: url("../img/banner/home-banner-bg.png");
    padding: 60px 0px;
    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: rgb(253, 194, 33);
    bottom: 21px;
    left: 0px;
    z-index: -1;
}

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

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

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

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

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

.shape-1 {
    animation: 5s linear 0s infinite normal none running left1right;
}

@keyframes left1right {
    50% {
        transform: translateY(20px);
    }
}

.shape-2 {
    animation: 3s linear 0s infinite normal none running left2right;
}

@keyframes left2right {
    50% {
        transform: translateY(20px);
    }
}

.shape-3 {
    animation: 9s linear 0s infinite normal none running left3right;
}

@keyframes left3right {
    50% {
        transform: translateY(20px);
    }
}

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

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

.bg_one {
    background: rgb(202, 228, 247);
}

.bg_two {
    background: rgb(253, 240, 221);
}

.bg_three {
    background: rgb(210, 244, 244);
}

.bg_four {
    background: rgb(224, 234, 253);
}

.about_top_boxed_icon {
    text-align: center;
    margin: -45px auto 0px;
    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: rgba(0, 0, 0, 0.06) 0px -4px 16px, rgba(0, 0, 0, 0.1) 4px 8px 16px;
    margin-top: -45px;
}

.about_top_boxed_text {
    padding-top: 20px;
}

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

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

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

.about_area_main_text {
    padding-top: 54px;
}

.about_area_heading {
    position: relative;
    display: flex;
    align-items: center;
    left: -119px;
}

.about_area_heading h3 {
    color: var(--paragraph-color);
    font-weight: 400;
}

.about_area_heading_two h2 {
    line-height: 50px;
    font-weight: 500;
}

.color_big_heading {
    position: relative;
    z-index: 9;
    color: rgb(51, 51, 51);
    font-size: 48px;
    /* letter-spacing: 3px; */
    font-weight: 200;
}

.redBreadcrumb .color_big_heading::after {
    display: none;
}

.about_area_heading_two h3 {
    font-weight: 500;
    color: var(--main-color);
    padding-top: 15px;
}

.about_area_para {
    padding-top: 20px;
}

.about_area_para h5 {
    line-height: 26px;
}

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

.about_vedio_area {
    padding-top: 45px;
}

.vedio_btn {
    margin-left: 35px;
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
}

.vedio_btn i {
    height: 50px;
    width: 50px;
    border: 1px solid;
    text-align: center;
    line-height: 46px;
    border-radius: 50%;
    font-size: 24px;
    margin-right: 14px;
    color: var(--main-color);
}

#donate_area {
    background-image: url("../img/common/donat_banner.png");
    background-size: cover;
    background-position: center center;
    padding: 150px 0px;
}

.donate_text {
    text-align: center;
}

.donate_text h3 {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 400;
}

.donate_text h2 {
    color: var(--white-color);
    font-size: 36px;
    line-height: 50px;
    padding-top: 20px;
}

.donate_text a {
    margin-top: 45px;
}

#partner_area {
    padding: 100px 0px 200px;
}

#partner_area .owl-carousel .owl-item img {
    width: auto !important;
}

#counter_area {
    z-index: 9;
}

.counter_area_wrapper {
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.08) -4px -6px 24px, rgba(0, 0, 0, 0.08) 8px 12px 24px;
    border-radius: 8px;
    padding: 50px 40px;
    margin-bottom: 80px;
}

.counter_item {
    text-align: center;
    border-right: 1px solid rgb(238, 238, 238);
}

.row .col-lg-3:last-child .counter_item {
    border-right: none;
}

.counter_item h2 {
    line-height: 50px;
    padding-top: 10px;
}

.counter_item p {
    font-size: 18px;
    padding: 10px 30px 0px;
}

#home_blog_area {
    padding: 200px 0px 100px;
    margin-top: -100px;
}

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

.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_wrapper:hover .blog_card_heading h3 a {
    color: var(--main-color);
}

.blog_card_text {
    padding: 20px;
}

.blog_card_heading {
    padding-top: 10px;
}

.blog_card_heading h3 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
}

.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;
    font-size: 14px;
    line-height: 1.6;
    overflow: hidden;
    max-height: 4.4rem;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.blog_boxed_bottom_wrapper {
    border-top: 1px solid rgba(196, 196, 196, 0.34);
    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 rgb(230, 230, 230);
}

.blog_bottom_content {
    padding-left: 8px;
}

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

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

.subscribe_wrapper {
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.08) -4px -6px 24px, rgba(0, 0, 0, 0.08) 8px 12px 24px;
    border-radius: 8px;
    padding: 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 {
    padding: 85px 0px;
    background: rgb(244, 247, 252);
}

.footer_area_about {
    padding-right: 100px;
}

.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: 20px;
    font-size: 18px;
    font-weight: 700;
}

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

.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: 4px 0px;
    font-size: 14px;
}

.footer_twitter_area p strong {
    font-weight: 700;
    font-size: 14px;
}

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

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

.copyright_left p {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
}

.copyright_right {
    text-align: right;
}

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

.copyright_right ul li:first-child {
    padding-left: 0;
}

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

#home_two_banner {
    background-image: url("../img/home-2/common/banner.png");
    padding: 150px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner_two_text {
    text-align: center;
}

.banner_two_text h6 {
    color: var(--white-color);
    font-size: 18px;
    padding-bottom: 10px;
}

.banner_two_text h6 span {
    color: var(--main-color);
}

.banner_two_text h1 {
    color: var(--white-color);
    font-size: 90px;
    font-weight: 500;
    line-height: 100px;
}

.banner_two_text p {
    color: var(--white-color);
    padding: 15px 115px;
    line-height: 30px;
}

.home_two_banner_button {
    padding-top: 30px;
    display: flex;
    justify-content: center;
}

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

.about_two_left_wrapper h3 {
    color: rgb(129, 128, 144);
    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: rgb(238, 244, 248);
    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_two_left_wrapper h3 {
    color: rgb(129, 128, 144);
    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: 0px;
}

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

.service_two_icon {
    width: 55px;
}

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

.galley_two_img {
    margin-bottom: 30px;
}

.galley_two_img a img {
    width: 100%;
}

.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: rgb(238, 244, 248);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 20px;
    border-radius: 8px;
}

#become_volunteer_area {
    background-image: url("../img/home-2/common/become-bg.png");
    padding: 205px 0px;
    background-size: cover;
    background-position: center center;
}

.become_volunteer_text_wrapper {
    text-align: center;
}

.become_volunteer_text_wrapper h3 {
    color: rgb(245, 245, 245);
    font-weight: 300;
    padding-bottom: 20px;
}

.become_volunteer_text_wrapper h2 {
    color: rgb(255, 255, 255);
    padding-bottom: 30px;
}

.become_volunteer_text_wrapper p {
    color: #fff;
    margin-bottom: 30px;
}

.become_volunteer_text_wrapper a {
    border: 1px solid rgb(255, 255, 255);
    background: transparent;
}

.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: rgb(255, 255, 255);
    background-color: var(--main-color);
}

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

#donet_area_two {
    background-image: url("../img/home-2/common/donate-bg.png");
    padding: 120px 0px;
}

.donate_two_left_wrapper h3 {
    color: rgb(245, 245, 245);
    padding-bottom: 15px;
}

.donate_two_left_wrapper h2 {
    color: rgb(255, 255, 255);
}

.donate_two_left_wrapper p {
    padding-top: 14px;
    color: rgb(245, 245, 245);
}

.donate_two_right_wrapper {
    background: rgb(255, 255, 255);
    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: rgb(255, 255, 255);
    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: rgb(255, 255, 255);
    border: 1px solid rgb(221, 221, 221);
    box-shadow: rgba(0, 0, 0, 0.04) 4px 6px 16px;
    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;
}

.blog_two_calendar_area {
    padding-top: 15px;
}

.blog_two_calendar_area ul li {
    display: inline-flex;
    padding-right: 14px;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.blog_two_calendar_area ul li i {
    padding-right: 5px;
}

.blog_two_calendar_area ul li span {
    color: rgb(129, 128, 144);
    padding-left: 4px;
}

.blog_card_two_text .blog_card_tags {
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.06) 4px 6px 16px;
    border-radius: 4px;
    display: table-caption;
    margin-top: -45px;
    position: relative;
    padding: 10px 15px;
}

#home_three_banner {
    background-image: url("../img/home-3/common/banner-bg.png");
    padding: 175px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.banner_three_text h4 {
    color: rgb(242, 114, 52);
    font-size: 18px;
}

.banner_three_text h1 {
    font-size: 70px;
    font-weight: 800;
    line-height: 1.2;
    color: rgb(255, 255, 255);
}

.banner_three_text p {
    padding-top: 20px;
    line-height: 30px;
    color: rgb(255, 255, 255);
}

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

.about_three_top_boxed {
    position: relative;
}

#about_three_top_area {
    background-color: rgb(213, 57, 47);
}

#about_three_top_area .row {
    margin-top: 40px;
}

#about_three_top_area .middal_area_center_left,
.the_parallax .middal_area_center_left {
    width: 800px;
    padding-right: 0px;
    max-width: 100%;
    margin: 0px auto;
    text-align: center;
}

#about_three_top_area .row {
    row-gap: 30px;
}

.about_three_top_boxed_img img {
    width: 100%;
}

.about_three_top_boxed_text {}

.about_three_top_boxed_text h3 {
    font-size: 24px;
    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: rgba(0, 0, 0, 0.28) 0px 2px 5px 0px;
    border-radius: 50%;
    right: 20px;
    bottom: -20px;
    transition: var(--transition);
    background: rgb(255, 255, 255);
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgb(213, 57, 47);
    display: none;
}

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

.service_three_heading {
    padding-bottom: 30px;
}

.service_three_heading h3 {
    color: rgb(129, 128, 144);
    font-weight: 400;
    padding-bottom: 15px;
}

.causes_boxed_text_left {
    text-align: left !important;
}

.causes_boxed_three .case_boxed_img .causes_badge {
    position: absolute;
    color: var(--white-color);
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 5px;
    top: auto;
    bottom: 11px;
}

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

.causes_boxed_text_center {
    text-align: center;
}

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

.causes_boxed_three .causes_pro_bar {
    background: rgb(238, 244, 248);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 20px;
    border-radius: 8px;
}

.causes_boxed_text_left h3 a {
    padding-top: 0px;
}

.about_two_img img {
    width: 100%;
    border-radius: 20px;
}

.testimonial_three_boxed {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(221, 221, 221);
    border-radius: 12px;
    padding: 15px 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.testimonial_three_boxed>a {
    font-weight: 600;
    margin-top: 15px;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.test_quate_area {
    position: absolute;
    right: 40px;
    display: none;
}

.testimonial_three_boxed p {
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

.testimonial_three_boxed h6 {
    color: var(--paragraph-color);
    font-size: 14px;
    opacity: 0.8;
    margin-top: 10px;
}

.test_three_bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    position: relative;
}

.test_three_bottom_left h6 {
    padding-top: 5px;
    font-weight: 600;
}

.test_three_bottom_right h6 {
    padding-top: 5px;
}

.test_three_icon i {
    color: var(--main-color);
}

.middel_area_Wrapper_box {
    display: flex;
}

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

.middel_area_box_text h3 {
    color: rgb(245, 245, 245);
}

.middel_area_box_text p {
    color: rgb(245, 245, 245);
    font-weight: 300;
    padding-top: 15px;
    padding-bottom: 13px;
}

.middel_area_box_text a {
    color: rgb(245, 245, 245);
}

.middal_area_center_wrapper {
    background: rgb(213, 57, 47);
    box-shadow: rgba(0, 0, 0, 0.08) 6px 10px 16px;
    border-radius: 8px;
    padding: 30px 35px;
}

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

.middal_area_center_left p {
    padding-top: 14px;
    color: rgb(255, 255, 255);
    line-height: 1.6;
}

@media (min-width: 1200px) {
    .middal_area_center_left h3 strong {
        font-size: 50px;
        display: block;
        margin: 10px 0px 15px;
    }
    .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu::before {
        content: "";
        position: absolute;
        top: -40px;
        height: 40px;
        width: 100%;
    }
}

.middal_area_center_right .donate_two_right_wrapper {
    padding: 0px;
    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;
}

.team_area_three {
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 8px 10px 24px;
    border-radius: 8px;
    height: 100%;
}

.team_area_three_img img {
    width: 100%;
}

.team_area_three_content {
    padding: 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: rgb(255, 255, 255);
    width: 30px;
    text-align: center;
    justify-content: center;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.08) 4px 6px 20px;
    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);
}

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

.blog_img_three img {
    width: 100%;
}

.blog_text_three {
    position: absolute;
    bottom: 0px;
    padding: 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;
}

.instagrma_item {
    position: relative;
}

.instagrma_item a {
    display: block;
    position: relative;
    z-index: 1;
}

.instagrma_item a i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: scale(1.2) translate(-50%, -50%);
    z-index: 2;
    font-size: 40px;
    color: rgb(38, 38, 38);
    line-height: 1;
    transition: 0.3s ease-out;
    opacity: 0;
}

.instagrma_item a:hover i {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
}

.instagrma_item a:hover::before {
    opacity: 0.7;
}

.instagrma_item>a::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgb(243, 240, 234);
    opacity: 0;
    transition: 0.3s ease-out;
}

.bg_shadow {
    background-color: rgb(244, 247, 252);
}

#trending_causes_two_main .case_boxed_wrapper {
    margin-bottom: 30px;
}

.cause_load_more {
    text-align: center;
    padding-top: 30px;
}

#common_banner_area {
    background-size: cover;
    background-position: center center;
    padding: 60px 0px 0px;
    border-top: 1px solid rgb(234, 234, 234);
}

.commn_banner_page h2 {
    color: rgb(51, 51, 51);
    font-size: 60px;
}

.commn_banner_page h2 i {
    display: block;
    font-size: 14px;
    margin: 0px;
    line-height: 1.8;
    font-style: normal;
    opacity: 0.5;
}

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

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

.breadcrumb_item a {
    color: rgb(51, 51, 51);
}

.breadcrumb_item.active {
    color: rgb(51, 51, 51);
}

#volunteer_area_main .volunteer_wrapper {
    margin-bottom: 30px;
}

.volunteer_wrapper {
    z-index: 9;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 8px 10px 24px;
    transition: var(--transition);
}

.volunteer_wrapper:hover {
    box-shadow: rgba(0, 0, 0, 0.14) 8px 20px 22px;
}

.volunteer_img img {
    width: 100%;
}

.volunteer_img {
    position: relative;
}

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

.volunteer_wrapper:hover .volunteer_icon {
    opacity: 1;
    transform: translate(-50%, 0px);
}

.volunteer_icon ul {
    display: flex;
    justify-content: center;
}

.volunteer_icon ul li {
    padding-left: 20px;
}

.volunteer_icon ul li:first-child {
    padding-left: 0px;
}

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

.volunteer_icon ul li a {
    height: 30px;
    width: 30px;
    background: var(--black-color);
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    color: rgb(255, 255, 255);
    font-size: 14px;
    display: block;
    transition: var(--transition);
}

.volunteer_text {
    padding: 20px;
    text-align: center;
}

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

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

.volunteer_text p {
    padding-top: 6px;
}

#partner_area-2 .owl-carousel .owl-item img {
    width: auto !important;
}

#newletter_banner {
    background-image: url("../img/common/midel_banner.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 50px 0px;
}

.newletter_text h4 {
    color: var(--paragraph-color);
    font-size: 16px;
    position: relative;
    left: -99px;
    top: 0px;
}

.newletter_text h4 img {
    width: 13%;
}

.newletter_text h2 {
    font-size: 30px;
    line-height: 40px;
}

.newletter_button {
    text-align: right;
}

.news_btn {
    padding: 13px 60px;
    font-size: 18px;
}

.testimonial_wrapper_boxed {
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.02) -5px -6px 24px, rgba(0, 0, 0, 0.09) 8px 0px 24px;
    border-radius: 8px;
    padding: 10px 15px 25px;
    position: relative;
    text-align: center;
    margin: 30px 10px;
}

.testimonial_wrapper_boxed img {
    margin: 0px auto;
    width: 110px !important;
}

.testimonial_wrapper_boxed p {
    padding-top: 25px;
    line-height: 28px;
    border-bottom: 1px solid rgb(228, 228, 228);
    padding-bottom: 20px;
}

.test_author {
    padding-top: 20px;
}

.test_author img {
    position: absolute;
    top: 77px;
    left: 13px;
    width: auto !important;
}

.test_author h5 {
    padding-top: 5px;
}

.slider_dots.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0px;
}

.slider_dots.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 5px;
    background: rgba(224, 60, 51, 0.4);
    display: block;
    backface-visibility: visible;
    transition: opacity 0.2s;
    border-radius: 30px;
}

.slider_dots.owl-theme .owl-dots .owl-dot.active span,
.slider_dots.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--main-color);
}

#trending_causes_main .case_boxed_wrapper {
    margin-bottom: 30px;
}

.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: rgb(238, 244, 248);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 20px;
    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: rgb(238, 244, 248);
    padding: 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 rgb(227, 227, 227);
    padding-bottom: 30px;
}

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

.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;
    resize: none;
}

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

.project_organizer_wrapper {
    display: flex;
}

.sidebar_boxed {
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.08) -4px -4px 20px, rgba(0, 0, 0, 0.08) 8px 10px 24px;
    border-radius: 6px;
    padding: 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 rgb(237, 237, 237);
    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;
}

.blog_two_wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.mt-30 {
    margin-top: 30px;
}

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

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

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

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

.news_two_text h3 a {
    color: var(--white-color);
    padding-top: 11px;
    display: block;
}

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

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

.popular_tags ul li {
    display: inline-flex;
    background: rgba(221, 221, 221, 0.44);
    padding: 6px 10px;
    margin-right: 10px;
    margin-top: 15px;
}

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

.error_area_content a {
    margin-top: 40px;
}

.author_form_area {
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.08) -4px -6px 24px, rgba(0, 0, 0, 0.08) 8px 12px 24px;
    border-radius: 8px;
    padding: 40px;
}

#author_form .form-control {
    margin-top: 15px;
}

.author_submit_form {
    padding-top: 40px;
    text-align: center;
}

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

.contact_left_item {
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 8px 10px 24px;
    border-radius: 8px;
    display: flex;
    padding: 30px 40px;
    margin-bottom: 30px;
}

.contact_left_text {
    padding-left: 20px;
    flex: 1 1 0%;
}

.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: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 8px 10px 24px;
    border-radius: 8px;
    padding: 20px 40px;
}

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

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

.contact_map_area {}

#faqs_arae_main .about_top_boxed {
    margin-top: 40px;
}

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

#faqs_arae_main .accordion-button:not(.collapsed) {
    color: rgb(255, 255, 255);
    background-color: var(--main-color);
}

.accordion-button:focus {
    z-index: 3;
    outline: 0px;
    box-shadow: none;
}

.sidebar_first .case_boxed_wrapper {
    margin-bottom: 30px;
}

.donet_amount_area {
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.08) -4px -4px 20px, rgba(0, 0, 0, 0.08) 8px 10px 24px;
    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-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    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: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.08) -4px -4px 20px, rgba(0, 0, 0, 0.08) 8px 10px 24px;
    border-radius: 6px;
    padding: 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;
}

.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: rgba(255, 0, 0, 0.23);
    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;
}

.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 {
    position: fixed;
    z-index: 999999;
    background-color: var(--white-color);
    width: 100%;
    height: 100%;
    text-align: center;
    left: 0px;
    right: 0px;
}

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

.preloader .lds-spinner div {
    transform-origin: 40px 40px;
    animation: 1.2s linear 0s infinite normal none running lds-spinner;
}

.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) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

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

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

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

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

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

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

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

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

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

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

.preloader .lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    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;
}

.go-top {
    position: fixed;
    cursor: pointer;
    top: 0px;
    right: 15px;
    color: rgb(255, 255, 255);
    background-color: var(--main-color);
    z-index: 999;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    opacity: 0;
    visibility: hidden;
    transition: 0.9s;
    border-radius: 50%;
}

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

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

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

.go-top::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgb(57, 57, 83);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s;
    border-radius: 50%;
}

.go-top:hover,
.go-top:focus {
    color: rgb(255, 255, 255);
}

.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: 0px;
    visibility: hidden;
}

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

#home_four_banner {
    background-image: url("../img/home-4/common/banner-four.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 180px 0px;
}

.banner_four_text h5 {
    color: rgb(242, 114, 52);
    padding-bottom: 11px;
}

.banner_four_text h1 {
    color: var(--white-color);
    font-size: 82px;
    font-weight: 600;
    line-height: 96px;
}

.banner_four_text p {
    padding: 20px 0px 30px;
    color: var(--white-color);
}

#home_four_card_area {
    padding: 50px 0px 100px;
}

.card_four_wrapper {
    padding: 30px;
    transition: var(--transition);
}

.card_four_wrapper:hover {
    transform: translateY(15px);
}

.card_four_wrapper h3 {
    font-size: 30px;
    line-height: 45px;
    font-weight: 500;
    padding-bottom: 12px;
    color: var(--white-color);
}

.card_four_wrapper p {
    color: var(--white-color);
    font-size: 18px;
    line-height: 27px;
    padding-bottom: 24px;
}

.card_four_wrapper a {
    border: 1px solid rgb(204, 198, 198);
    color: var(--white-color);
    transition: var(--transition);
}

.card_four_one {
    background-color: rgb(26, 37, 46);
}

.card_four_two {
    background-color: rgb(175, 150, 89);
}

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

.about_four_left_wrapper h2 {
    padding-bottom: 15px;
    font-size: 48px;
    line-height: 62px;
}

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

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

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

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

.about_four_quote_wrapper {
    position: relative;
    background-color: rgb(238, 244, 248);
    margin-top: 40px;
    padding: 30px 110px 30px 45px;
    border-left: 4px solid var(--main-color);
}

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

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

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

.about_four_btn {
    margin-top: 30px;
}

.help_four_left_wrapper h2 {
    font-size: 48px;
    line-height: 60px;
    padding-bottom: 20px;
}

.help_four_left_wrapper p {
    padding-bottom: 24px;
    line-height: 24px;
}

.help_four_para {
    font-weight: 600;
    color: var(--black-color);
}

.home_four_button_area a span {
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    color: var(--black-color);
    padding-left: 8px;
}

.home_four_button_area {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 10px;
}

.help_four_right_wrapper {
    background-color: rgb(238, 244, 248);
    padding: 45px;
}

.help_four_box_area {
    display: flex;
    gap: 0px;
    align-items: center;
    justify-content: center;
}

.help_four_box {
    text-align: center;
    border: 1px solid rgb(185, 185, 185);
    width: 100%;
    height: 100%;
    padding: 40px 45px;
    transition: var(--transition);
}

.help_four_box i {
    font-size: 48px;
    padding-bottom: 16px;
    color: var(--main-color);
    transition: var(--transition);
}

.help_four_box h2 {
    font-size: 48px;
    transition: var(--transition);
}

.help_four_box p {
    color: var(--black-color);
    font-weight: 500;
    transition: var(--transition);
}

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

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

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

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

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

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

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

#trending_causes_four {
    background-image: url("../img/home-4/common/causes-bg.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

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

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

.section_heading_four h2 {
    padding-top: 40px;
    font-size: 46px;
    line-height: 62px;
    position: relative;
}

.case_box_four_top {
    position: absolute;
    top: 26px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
}

.case_box_four_top h6 {
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 4px;
    display: inline-block;
}

.yellow_badge h6 {
    background-color: rgb(246, 166, 29);
}

.red_badge h6 {
    background-color: var(--main-color);
}

.case_box_link_area a {
    background-color: var(--white-color);
    color: var(--black-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
}

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

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

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

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

.causes_boxed_four_text {
    padding: 15px 20px;
    position: relative;
    z-index: 999;
}

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

.causes_boxed_four_text h3 a {
    color: var(--black-color);
    display: block;
}

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

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

.team-card {
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 8px 10px 24px;
}

.team-card:hover .team-img img {
    transform: scale(1.2);
}

.team-img {
    overflow: hidden;
}

.team-img img {
    transition: var(--transition);
}

.team-padding-card {
    margin-top: 50px;
}

.team-img img {
    width: 100%;
    height: auto;
}

.team-info {
    position: absolute;
    bottom: 23px;
}

.team-info h3 {
    margin-bottom: 6px;
}

.team-info h3 a {
    background-color: rgb(255, 255, 255);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 2px 12px;
    color: var(--heading-color);
    transition: var(--transition);
}

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

.team-info p {
    background-color: rgb(255, 255, 255);
    margin: 4px 0px;
    padding: 2px 8px;
    font-weight: 500;
    display: inline-block;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.social-icon-area {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 0%;
    transition: var(--transition);
}

.social-icon-area:hover {
    height: 100%;
}

.social-icon-area ul li a {
    color: var(--heading-color);
    font-size: 22px;
    transition: var(--transition);
}

.social-icon-area ul li a:hover {
    color: var(--main-color);
}

.invisible-icon {
    background-color: rgb(255, 255, 255);
    padding: 4px 10px;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.social-icon-area:hover .invisible-icon {
    opacity: 1;
}

.visible-icon li a img {
    margin-bottom: 2px;
}

#testimonial_area_four {
    background-image: url("../img/home-4/common/testimonial-bg.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px 170px;
}

.counter_four_area_wrapper {
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.06) -4px -4px 16px, rgba(0, 0, 0, 0.06) 8px 10px 20px;
    border-radius: 12px;
    margin-top: -100px;
    position: relative;
    z-index: 9;
}

.counter_four_item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 74px 46px;
}

.counter_four_item h3 {
    font-size: 48px;
    font-weight: 500;
}

.counter_four_item h5 {
    color: var(--paragraph-color);
}

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

.blog_four_card_img {
    overflow: hidden;
}

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

.blog_four_card_wrapper:hover .blog_four_card_img a img {
    transform: scale(1.2);
}

.blog_four_card_text {
    padding: 20px;
}

.blog_four_card_heading h3 {
    line-height: 35px;
    font-weight: 600;
}

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

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

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

.blog_four_boxed_bottom_wrapper {
    border-top: 1px solid rgba(196, 196, 196, 0.34);
    padding-top: 15px;
    margin-top: 17px;
}

.blog_four_boxed_bottom_wrapper .row .col-lg-6:last-child .blog_four_bottom_boxed {
    border-right: none;
}

.blog_four_bottom_boxed {
    display: flex;
    align-items: center;
    border-right: 1px solid rgb(230, 230, 230);
}

.blog_four_bottom_content {
    padding-left: 8px;
}

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

.blog_four_bottom_content h5 span {
    padding-top: 0px;
    font-size: 14px;
    color: var(--paragraph-color);
}

.cause_four_skill_bar {
    height: 10px;
    background-color: rgb(218, 225, 231);
    border-radius: 8px;
}

.cause_four_skill_per {
    height: 10px;
    background-color: var(--main-color);
    border-radius: 8px;
    position: relative;
    animation: 2.5s ease 0s 1 normal none running fillBars;
}

.cause_four_skill_per::before {
    content: attr(per);
    position: absolute;
    top: -35px;
    right: 0px;
    background-color: var(--main-color);
    color: var(--white-color);
    padding: 4px 6px;
    border-radius: 4px;
    font-size: 12px;
    transform: translateX(50%);
}

.cause_four_skill_per::after {
    position: absolute;
    top: -16px;
    right: 0px;
    background-color: var(--main-color);
    content: " ";
    height: 10px;
    width: 10px;
    transform: translateX(50%) rotate(45deg);
}

@keyframes fillBars {
    0% {
        width: 0px;
    }
    100% {
        width: 100%;
    }
}

.cause_four_skill {
    background-color: rgb(238, 244, 248);
    padding: 40px 20px 10px;
    border-radius: 12px;
    margin-top: 12px;
}

.cause_five_skill {
    padding: 26px 20px 10px;
    border-radius: 12px;
    margin-top: 12px;
}

.skill_name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.skill_name p {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
}

.skill_name p span {
    color: var(--paragraph-color);
    font-size: 14px;
}

.causes_boxed_four_text .causes_pro_bar {
    background: rgb(238, 244, 248);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 20px;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
    z-index: 999;
    position: relative;
}

#home_five_banner .bg_one {
    background-image: url("../img/home-5/connon/banner-one.png");
    width: 100%;
}

#home_five_banner .bg_two {
    background-image: url("../img/home-5/connon/banner-two.png");
}

#home_five_banner .bg_three {
    background-image: url("../img/home-5/connon/banner-three.png");
}

.banner_slider_item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 166px 0px;
}

.banner_five_text {
    width: 60%;
    margin: auto;
}

.banner_five_text {
    text-align: center;
}

.banner_five_text h6 {
    color: var(--white-color);
    font-size: 18px;
    padding-bottom: 12px;
}

.banner_five_text h6 span {
    color: var(--main-color);
}

.banner_five_text h1 {
    color: var(--white-color);
    font-size: 90px;
    font-weight: 600;
    line-height: 100px;
}

.banner_five_text p {
    color: var(--white-color);
    padding: 15px 115px;
    line-height: 30px;
}

.home_five_banner_button {
    padding-top: 20px;
    display: flex;
    justify-content: center;
}

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

.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);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
    padding: 0px !important;
}

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

.card_five_wrapper {
    padding: 30px;
    box-shadow: rgb(223, 223, 223) 4px 10px 14px;
    border-radius: 12px;
    transition: var(--transition);
}

.card_five_wrapper:hover {
    transform: translateY(15px);
}

.card_five_wrapper img {
    margin-bottom: 18px;
}

.card_five_wrapper h3 {
    padding-bottom: 16px;
    color: var(--black-color);
}

.popular_causes_tab_area {
    background-image: url("../img/home-5/connon/tab-bg.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tab_area {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
    margin-top: -10px;
}

.tab_area .nav-item {}

.tab_area .nav-link {
    color: var(--black-color);
    background-color: var(--white-color);
    box-shadow: rgb(223, 223, 223) 4px 8px 8px;
    border-radius: 6px;
    margin: 0px 12px;
}

.tab_area .nav-link.active,
.tab_area .show>.nav-link {
    color: rgb(255, 255, 255);
    background-color: var(--main-color);
}

.upcoming_event_five_left_wrapper h3 {
    color: var(--paragraph-color);
    padding-bottom: 16px;
}

.upcoming_event_five_left_wrapper h2 {
    font-size: 48px;
    line-height: 62px;
    padding-bottom: 24px;
}

.upcoming_event_five_left_wrapper p {
    padding-bottom: 16px;
}

.event_five_img {
    width: 100%;
    margin-left: -10px;
}

.event_five_img img {
    width: 100%;
}

.upcoming_event_five_right_wrapper .event_bg_one {
    background-color: rgb(255, 242, 236);
    border-radius: 8px;
    margin-left: 10px;
    margin-bottom: 30px;
}

.upcoming_event_five_right_wrapper .event_bg_two {
    background-color: rgb(237, 249, 245);
    border-radius: 8px;
    margin-left: 10px;
    margin-bottom: 30px;
}

.event_five_top {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-bottom: 16px;
}

.event_five_top h6 span {
    color: var(--paragraph-color);
}

.event_five_card {
    padding-right: 30px;
}

.event_five_right_content h3 {
    line-height: 36px;
    padding-bottom: 12px;
}

.faqs_five_item .accordion-button:not(.collapsed) {
    color: var(--main-color);
    background-color: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.125) 0px -1px 0px inset;
}

.faqs_five_item .accordion-item {
    margin-bottom: 30px;
}

.faqs_five_item .accordion-button {
    padding: 8px 20px;
}

.about_five_head h3 {
    color: var(--paragraph-color);
    font-weight: 400;
    padding-bottom: 8px;
}

.about_five_head h2 {
    font-size: 48px;
    line-height: 62px;
    padding-bottom: 16px;
}

.about_five_list_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about_five_list_item ul li {
    padding-top: 16px;
}

.about_five_list_item ul li img {
    padding-right: 8px;
}

.about_five_about_author {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-top: 20px;
}

.about_five_para {
    border-bottom: 1px dashed var(--main-color);
    padding: 20px 0px;
}

.cta_five_left {
    position: relative;
}

.cta_five_text {
    position: absolute;
}

.cta_text_left {
    top: 20%;
    left: 35%;
    right: 8px;
}

.cta_text_right {
    top: 20%;
    right: 24%;
    left: 12%;
}

.cta_five_text p {
    color: var(--white-color);
    padding-bottom: 30px;
}

.cta_five_text h2 {
    color: var(--white-color);
    font-size: 48px;
    line-height: 56px;
    position: relative;
    padding-bottom: 20px;
}

.cta_text_left h2::before {
    position: absolute;
    content: url("../img/home-5/icon/hand-sheak.png");
    left: -90px;
    top: 0px;
}

.cta_text_right h2::before {
    position: absolute;
    content: url("../img/home-5/icon/dimond-hand.png");
    left: -90px;
    top: 0px;
}

.blog_five_heading h3 {
    color: var(--paragraph-color);
    padding-bottom: 12px;
}

.blog_five_heading h2 {
    font-size: 48px;
    line-height: 60px;
}

.news_card_five {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(221, 221, 221, 0.5);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 30px;
    box-shadow: rgb(241, 241, 241) 10px 16px 24px;
}

.news_card_five_img {
    overflow: hidden;
}

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

.news_card_five:hover .news_card_five_img a img {
    transform: scale(1.1);
}

.news_card_five_text {
    padding: 30px 20px;
    position: relative;
}

.news_card_five_list li {
    display: inline-flex;
    font-size: 16px;
    font-weight: 400;
    color: rgb(114, 113, 120);
    align-items: center;
    transition: var(--transition);
}

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

.news_card_five_list li :hover {
    color: var(--main-color);
}

.news_card_five_list li i {
    font-size: 7px;
    color: rgb(114, 113, 120);
    padding-left: 7px;
    padding-right: 5px;
}

.news_card_five_text h3 {
    padding-top: 16px;
    padding-bottom: 24px;
}

.news_card_five_text h3 a {
    font-size: 24px;
    color: var(--black-color);
    font-weight: 500;
    line-height: 33px;
}

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

.news_card_five_text a i {
    margin-left: 8px;
}

.news_card_five_top h3 {
    padding: 0px;
    font-weight: 500;
}

.news_card_five_top {
    background-color: var(--main-color);
    color: var(--white-color);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    position: absolute;
    top: -55px;
    right: 37px;
    z-index: 9;
    text-align: center;
}

.news_five_btn {
    position: relative;
    z-index: 9999;
    padding: 8px 4px;
    transition: var(--main-color);
    color: var(--black-color);
}

.news_five_btn::before {
    position: absolute;
    content: "";
    background-color: rgb(249, 216, 214);
    height: 100%;
    width: 20%;
    z-index: -1;
    left: -6px;
    bottom: 0px;
    border-radius: 4px;
    transition: var(--transition);
}

.news_five_btn:hover::before {
    width: 110%;
}

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

#partner_area_two {
    margin-bottom: 100px;
}

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

.ib_content {
    display: flex;
    background-color: rgb(37, 38, 38);
}

.ib_content>div:not(.container) {}

.ib_image {
    margin-left: 0px;
    width: 100%;
}

.ib_image::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-color: rgb(0, 0, 0);
}

.ib_image img {
    width: 100%;
    height: calc(-169px + 100vh);
    object-fit: cover;
}

.ib_content .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.ib_content .container>div {
    width: 50%;
}
.ib_content .container>div h2 {
    color: #ffffff;
}
.autoplay-progress {
    position: absolute;
    left: 30px;
    bottom: 20px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 3px;
    stroke: rgb(255, 255, 255);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.autoplay-progress span {
    color: rgb(255, 255, 255);
    opacity: 0.7;
    font-size: 14px;
}

#mainPagination {
    position: absolute;
    left: 100px;
    bottom: 37px;
    z-index: 2;
}

#mainPagination .swiper-pagination-bullet {
    width: 20px;
    height: 3px;
    background-color: rgb(255, 255, 255);
    border-radius: 0px;
    transition: 0.3s;
}

#mainPagination .swiper-pagination-bullet-active {
    width: 40px;
}

.about_three_top_boxed {
    padding: 30px;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    display: flex;
    color: rgb(0, 0, 0);
    cursor: pointer;
    transition: 0.3s;
    height: 100%;
}

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

.about_three_top_boxed>i {
    position: absolute;
    right: 30px;
    top: 65px;
    font-size: 50px;
    mix-blend-mode: inherit;
    color: rgb(213, 57, 47);
}

.donateSwiper {
    overflow: hidden;
}

#service_area_thre {}

.index_about {
    margin-top: 30px;
}

#middel_area_wrapper {
    padding-top: 0px;
}

.middal_area_center_left {
    color: rgb(255, 255, 255);
}

.middal_area_center_right {
    background-color: rgb(255, 255, 255);
    padding: 30px;
    border-radius: 10px;
}

.footer_twitter_area button {
    padding: 0px;
    width: 33px;
    height: 23px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    position: relative;
    top: -2px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--paragraph-color);
    transition: 0.3s;
}

.footer_twitter_area button:hover {
    color: rgb(16, 22, 27);
}

.form-check-input:checked {
    background-color: rgb(213, 57, 47);
    border-color: rgb(213, 57, 47);
}

.news_swiper,
.storySwiper {
    overflow: hidden;
}

.storySwiper .swiper-slide {
    height: auto;
}

.service_three_heading_right {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.swiper_pn_buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.swiper_pn_buttons button {
    border: none;
    font-size: 24px;
    color: rgb(51, 51, 51);
    background-color: transparent;
}

.news_swiper .swiper-slide {
    height: auto;
}

.ss_img1 {
    border-radius: 10px;
}

.counter_area_wrapper .row {
    row-gap: 30px;
}

.ib_image {
    position: relative;
}

.ib_image::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    z-index: 2;
    width: 50%;
    background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 212, 255, 0) 100%);
    opacity: 0.6;
}

.main-navbar .container-fluid {
    padding: 0px 30px;
}

.ataturk_sentence {
    background-color: var(--main-color);
    text-align: center;
    color: rgb(255, 255, 255);
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ataturk_sentence div {
    background-color: rgb(255, 255, 255);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0px 15px 0px 0px;
}

.ataturk_sentence>p strong {
    display: block;
}

.ataturk_sentence p {
    color: rgb(255, 255, 255);
    font-style: italic;
    font-size: 20px;
}

.ataturk_sentence svg,
.ataturk_sentence svg * {
    fill: rgb(255, 255, 255) !important;
    height: 40px !important;
    width: auto !important;
}

.ataturk_sentence img {
    height: 85%;
    filter: brightness(120);
    mix-blend-mode: revert-layer;
}

.others-options {
    position: relative;
}

.donate_dropdown {
    position: absolute;
    top: 100%;
    right: 0px;
    min-height: 300px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    width: 210px;
    margin-top: 15px;
    border: 1px solid rgb(234, 234, 234);
    padding: 40px 30px;
    display: flex;
    gap: 30px;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-15px);
    z-index: 100;
}

.option-item a.active {
    color: rgb(255, 255, 255);
    background-color: var(--main-color);
}

.donate_dropdown.active {
    visibility: visible;
    opacity: 1;
    transform: none;
}

.donate_dropdown>div {
    width: 100%;
    position: relative;
}

/*.donate_dropdown>div:first-child::before {
    content: "";
    position: absolute;
    right: -15px;
    top: 0px;
    width: 1px;
    height: 100%;
    background-color: rgb(234, 234, 234);
}*/

.donate_dropdown h4 {
    margin: 0px 0px 20px;
    font-size: 16px;
    font-weight: 700;
}

.donate_dropdown ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.donate_dropdown ul li a {
    position: relative;
    padding-left: 10px;
    color: rgb(146, 146, 146);
    display: flex;
    align-items: center;
    height: 45px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    gap: 10px;
}

.donate_dropdown ul li a::before {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--main-color);
    border-radius: 50%;
}

.donate_dropdown ul li a i {
    width: 36px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(234, 234, 234);
    color: rgb(146, 146, 146);
    border-radius: 4px;
    font-size: 20px;
    transition: 0.6s;
}

.donate_dropdown ul li a:hover {
    background-color: rgba(224, 60, 50, 0.41);
    color: rgb(76, 9, 5);
}

.donate_dropdown ul li a:hover i {
    background: rgba(222, 59, 49, 0.82);
    color: rgb(255, 255, 255);
}

.the_parallax {
    background-image: url("../img/parallax.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
    width: 100%;
    text-align: center;
    padding: 80px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.the_parallax::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-color: rgba(0, 0, 0, 0.3);
}

.the_parallax .container {
    position: relative;
    z-index: 2;
}

.logo img,
.navbar img,
.footer_area_about img {
    height: 65px;
}

@media (min-width: 993px) {
    .gdx_04 {
        padding-left: 60px;
    }
    .ascx_09.reverse .row .gdx_04 {
        padding-left: 0;
        padding-right: 60px;
    }
    .middal_area_center_left {
        padding-right: 80px;
    }
}

@media (min-width: 768px) {
    .service_three_heading_right {
        text-align: right;
    }
}

.counter_item i {
    font-size: 60px;
}

#counter_area .container {
    position: relative;
    z-index: 2;
}

#counter_area::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 50%;
    background-color: rgb(255, 255, 255);
}

.the_parallax .middal_area_center_left {
    margin-bottom: 40px;
}

.contact_map_area iframe {
    width: 100%;
}

.footer_area_about img {
    margin-bottom: 30px;
}

#contact_full_map {
    overflow: hidden;
}

.test_three_bottom {
    margin-top: 15px;
}

.testimonial_three_boxed>i {
    position: absolute;
    right: 30px;
    bottom: 20px;
    opacity: 0.1;
    font-size: 48px;
    transform: rotate(-15deg);
}

#main_blog_area .row {
    row-gap: 30px;
}

.the_pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.the_pagination .num {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.the_pagination a {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-weight: 700;
    transition: 0.3s;
    border-radius: 5px;
    color: rgb(51, 51, 51);
    padding: 0px 15px;
}

.the_pagination a.active {
    background-color: var(--main-color);
    color: rgb(255, 255, 255);
    border-color: var(--main-color);
}

.the_pagination a:hover {}

.c_item>a {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    overflow: hidden;
}

.c_item:hover>a img {
    transform: scale(1.2);
}

.content_99 {
    padding: 30px 0px;
}

.content-detail {
    font-size: 1rem;
    line-height: 1.6;
    color: rgb(51, 51, 51);
    overflow-wrap: break-word;
}

.content-detail h1,
.content-detail h2,
.content-detail h3,
.content-detail h4,
.content-detail h5,
.content-detail h6 {
    font-weight: bold;
    margin: 1em 0px 0.5em;
    line-height: 1.3;
}

.content-detail h1 {
    font-size: 2em;
}

.content-detail h2 {
    font-size: 1.75em;
}

.content-detail h3 {
    font-size: 1.5em;
}

.content-detail h4 {
    font-size: 1.25em;
}

.content-detail h5 {
    font-size: 1.1em;
}

.content-detail h6 {
    font-size: 1em;
}

.content-detail p {
    margin: 1em 0px;
}

.content-detail ul {
    list-style-type: disc;
    margin: 1em 0px;
    padding-left: 2em;
}

.content-detail ol {
    list-style-type: decimal;
    margin: 1em 0px;
    padding-left: 2em;
}

.content-detail ul ul,
.content-detail ol ul,
.content-detail ul ol,
.content-detail ol ol {
    list-style-type: circle;
    margin-left: 1em;
}

.content-detail li {
    margin-bottom: 0.5em;
    list-style: inherit;
}

.content-detail a {
    color: rgb(51, 51, 51);
    text-decoration: underline;
    transition: color 0.2s;
}

.content-detail a:hover {
    color: rgb(0, 64, 128);
}

.content-detail b,
.content-detail strong {
    font-weight: bold;
}

.content-detail i,
.content-detail em {
    font-style: italic;
}

.content-detail u {
    text-decoration: underline;
}

.content-detail blockquote {
    border-left: 4px solid rgb(204, 204, 204);
    margin: 1em 0px;
    padding-left: 1em;
    color: rgb(102, 102, 102);
    font-style: italic;
    background-color: rgb(249, 249, 249);
}

.content-detail code {
    font-family: monospace;
    background-color: rgb(244, 244, 244);
    padding: 0.2em 0.4em;
    border-radius: 4px;
}

.content-detail pre {
    font-family: monospace;
    background-color: rgb(244, 244, 244);
    padding: 1em;
    border-radius: 4px;
    overflow-x: auto;
    margin: 1em 0px;
    white-space: pre-wrap;
}

.content-detail table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0px;
    border: 1px solid rgb(221, 221, 221);
}

.content-detail th,
.content-detail td {
    border: 1px solid rgb(221, 221, 221);
    padding: 0.75em;
    text-align: left;
}

.content-detail th {
    background-color: rgb(245, 245, 245);
    font-weight: bold;
}

.content-detail img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em 0px;
}

.content-detail dl {
    margin: 1em 0px;
}

.content-detail dt {
    font-weight: bold;
    margin-top: 1em;
}

.content-detail dd {
    margin-left: 1em;
}

.content-detail hr {
    border-right: none;
    border-bottom: none;
    border-left: none;
    border-image: initial;
    border-top: 1px solid rgb(221, 221, 221);
    margin: 1.5em 0px;
}

.content-detail input,
.content-detail select,
.content-detail textarea,
.content-detail button {
    font: inherit;
    padding: 0.5em;
    margin: 0.5em 0px;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 4px;
    box-sizing: border-box;
}

.content-detail button {
    background-color: var(--main-color);
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
}

.content-detail button:hover {
    background-color: rgb(0, 64, 128);
}

.content-detail sub,
.content-detail sup {
    font-size: 0.8em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

.content-detail sup {
    top: -0.5em;
}

.content-detail sub {
    bottom: -0.25em;
}

.content-detail iframe,
.content-detail video {
    max-width: 100%;
    height: auto;
    margin: 1em 0px;
    border: none;
}

.content-detail figure {
    margin: 1em 0px;
    text-align: center;
}

.content-detail figcaption {
    font-size: 0.9em;
    color: rgb(102, 102, 102);
}

.content-detail mark {
    background-color: rgb(255, 255, 0);
    color: rgb(51, 51, 51);
}

.content-detail aside {
    background-color: rgb(249, 249, 249);
    padding: 1em;
    margin: 1em 0px;
    border-left: 4px solid rgb(204, 204, 204);
    font-size: 0.9em;
    color: rgb(85, 85, 85);
}

.content-detail .pull-quote {
    font-size: 1.2em;
    font-style: italic;
    text-align: center;
    margin: 1em 0px;
    color: rgb(68, 68, 68);
}

.content-detail abbr[title] {
    border-bottom: 1px dotted rgb(51, 51, 51);
    cursor: help;
}

.news_swiper_detail {
    overflow: hidden;
    margin-top: 40px;
}

.news_swiper_detail .blog_card_wrapper {
    box-shadow: none;
    border: 1px solid rgb(234, 234, 234);
}

.detail_others1 {
    margin-top: 30px;
}

.detail_others1 .service_three_heading {
    padding-bottom: 0px;
}

#projectSection .blog_card_img img {
    height: 270px;
    object-fit: cover;
}

.donate_redrow {
    padding: 30px;
    background-color: var(--main-color);
    border-radius: 10px;
}

.donate_redrow h3 {
    color: rgb(255, 255, 255);
    margin: 0px 0px 15px;
}

.donate_redrow p {
    color: rgb(255, 255, 255);
}

.donate_redrow a.btn.btn_theme {
    background-color: rgb(255, 255, 255);
    color: var(--main-color);
    margin-top: 30px;
}

.go_back1 {
    margin-bottom: 20px;
}

.go_back1 a {
    display: inline-flex;
    align-items: center;
    background-color: rgb(245, 245, 245);
    color: rgb(146, 146, 146);
    padding: 0px 15px;
    height: 32px;
    border-radius: 30px;
    gap: 10px;
    font-size: 14px;
}

.detail_others1 .service_three_heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.detail_others1 .service_three_heading a {
    color: var(--main-color);
}

.detail_others1 .service_three_heading h2 {
    font-size: 28px;
    font-weight: 600;
}

.pd_redline {
    position: relative;
    padding-top: 60px;
}

.pd_redline .color_big_heading::after {
    display: none;
}

.project_detail {
    overflow: hidden;
}

.project_detail .content_99 {
    position: relative;
}

.project_detail .content_99::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -100vw;
    right: -100vw;
    height: 30%;
    background-color: var(--main-color);
}

.project_detail .content_99 div,
.pd_redline>div {
    position: relative;
    z-index: 2;
}

.pd_redline::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -100vw;
    right: -100vw;
    height: 100%;
    background-image: url("../img/pattern2.png");
    background-repeat: repeat;
}

.pd_redline::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: -100vw;
    right: -100vw;
    height: 50%;
    background: linear-gradient(rgba(238, 244, 248, 0) 0%, rgb(224, 60, 51) 100%);
}

.pd_redline .color_big_heading {
    color: rgb(255, 255, 255);
}

.pd_redline .breadcrumb_item.active,
.pd_redline .breadcrumb_item a {
    color: rgb(255, 255, 255);
}

.pd_redline .breadcrumb_item img {
    filter: brightness(200);
}

.option-item img {
    width: 35px;
    height: 35px;
    margin-right: -5px;
    pointer-events: none;
    padding: 5px;
}

.option-item .btn_navber {
    padding: 0px;
    border: none;
    display: flex;
    align-items: center;
    background-color: transparent !important;
    color: var(--main-color) !important;
}

.news_swiper_detail .blog_card_wrapper {
    margin-bottom: 0px;
}

.corporate_page {
    display: flex;
    margin-top: 60px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.cp_left {
    width: 300px;
    background: rgb(244, 247, 252);
    border-radius: 10px;
    padding: 30px !important;
}

.corporate_page .content-detail {
    flex: 1 1 0%;
    margin-top: -1rem;
    padding-left: 40px;
}

.cp_left>h3 {
    background-color: var(--main-color);
    color: rgb(255, 255, 255);
    padding: 10px;
    font-size: 18px;
    margin: 0px 0px 30px;
    border-radius: 4px;
}

.cp_dropdown ul {
    padding-left: 15px;
    display: none;
}

.cp_dropdown ul.active {}

.cp_dropdown>li>a {
    display: flex;
    height: 40px;
    color: rgb(0, 0, 0);
    font-size: 16px;
    align-items: center;
    cursor: pointer;
}

.cp_dropdown ul li a {
    color: rgb(0, 0, 0);
    padding: 5px 0px;
    display: flex;
    gap: 10px;
}

.cp_dropdown ul li a::before {
    content: "";
    font-family: "Font Awesome 6 Pro";
    color: var(--main-color);
}

.h_dropdown>a {
    justify-content: space-between;
    position: relative;
}

.h_dropdown>a::after {
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 6 Pro";
    color: var(--main-color);
    font-size: 22px;
}

.h_dropdown>a::before {
    content: "+";
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(255, 255, 255);
    margin-top: 0px;
}

.h_dropdown>a.active::before {
    content: "-";
    right: 7px;
    margin-top: -1px;
}

.h_dropdown.active ul {
    display: block;
}

.cp_dropdown ul li+li {
    margin-top: 5px;
}

.cp_dropdown ul li a.current_link {
    color: var(--main-color);
    font-weight: 600;
}

.commn_banner_page.redBreadcrumb {
    background-color: var(--main-color);
    padding: 70px 0px;
    margin: 15px 30px 0;
    border-radius: 20px;
    background: #f85032;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #e73827, #f85032);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #e73827, #f85032);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.commn_banner_page.redBreadcrumb .breadcrumb_item.active,
.commn_banner_page.redBreadcrumb .breadcrumb_item a,
.commn_banner_page.redBreadcrumb .color_big_heading {
    color: rgb(255, 255, 255);
}

.commn_banner_page.redBreadcrumb .color_big_heading::after {
    background-color: rgb(51, 51, 51);
}

.commn_banner_page.redBreadcrumb .breadcrumb_item img {
    filter: brightness(200);
}

.commn_banner_page.redBreadcrumb h2 {
    text-align: center;
}

.commn_banner_page.redBreadcrumb .breadcrumb_wrapper {
    justify-content: center;
}

.contact_left_icon img {
    height: 64px;
}

.about_two_left_wrapper h2 {
    position: relative;
    margin-bottom: 0px;
}

.about_two_left_wrapper svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(90% + 0px);
    height: calc(100% + 20px);
    transform: translate(-50%, -50%);
    overflow: visible;
}

.about_two_left_wrapper svg path {
    stroke: rgb(224, 60, 51);
    stroke-width: 9;
    fill: none;
    opacity: 0;
    stroke-dasharray: 0, 1500;
    animation: 7s ease-in-out 0s infinite normal none running elementor-headline-dash;
}

.about_two_left_wrapper svg path:nth-of-type(2) {
    animation-delay: 0.6s;
}

.gallery_item::before {
    content: "";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 255, 255);
    font-size: 60px;
    z-index: 2;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
}

.gallery_item:hover::before {
    opacity: 1;
}

.gallery_item::after {
    content: "";
    position: absolute;
    inset: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
}

.gallery_item:hover::after {
    opacity: 1;
}

.gallery_item>a {
    position: relative;
    inset: 0px;
    display: flex;
    cursor: pointer;
}

.about_two_left_wrapper p+p {
    margin-top: 30px;
}

.ascx_09 .row>div {
    display: flex;
    align-items: center;
}

.service_two_text {
    flex: 1;
    padding-left: 20px;
}

@keyframes elementor-headline-dash {
    0% {
        stroke-dasharray: 0, 1500;
        opacity: 1;
    }
    30% {
        stroke-dasharray: 1500, 1500;
        opacity: 1;
    }
    60% {
        opacity: 0.9;
    }
    65% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        stroke-dasharray: 1500, 1500;
    }
}

.gallery_item.video_item::before {
    content: "";
}

.volunteer_page {
    padding: 80px 0px;
}

.volunteer_page .corporate_page {
    margin: 0px;
    flex-direction: column-reverse;
}

.volunteer_page .corporate_page .content-detail {
    padding: 0px 40px 0px 0px;
}

.volunteer_page .corporate_page .cp_left {
    width: 100%;
}

.vol_form {
    background-color: rgb(255, 255, 255);
    padding: 30px;
}

.vol_form input,
.vol_form textarea {
    width: 100%;
    font-size: 14px;
}

.vol_form .btn_md {
    width: 100%;
    font-size: 16px;
}

.vol_form>img {
    margin-bottom: 30px;
}

.iban_box {
    border: 1px solid rgb(234, 234, 234);
    padding: 30px 20px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.iban_box+.iban_box {}

.iban_box div:nth-child(1) {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    background-color: var(--main-color);
    color: rgb(255, 255, 255);
}

.iban_box div:nth-child(1) i {
    font-style: normal;
}

.iban_box div:nth-child(2) {
    padding-left: 30px;
    flex: 1 1 0%;
    position: relative;
}

.iban_box div:nth-child(2) svg {
    position: absolute;
    right: 0;
    top: 0;
}

.iban_box div p strong {
    font-weight: 600;
    color: rgb(51, 51, 51);
}

.iban_box div p {
    margin: 10px 0px 0px;
}

.iban_box button i {
    font-style: normal;
}

.iban_box button,
.iban_box button:hover {
    background-color: transparent;
    color: var(--main-color);
    border: none;
    padding: 0px;
    margin-left: 5px;
    cursor: pointer;
}

.sch_form_section+.sch_form_section {
    margin-top: 60px;
}

.sch_form_section h2 {
    margin: 0 0 30px;
    font-size: 24px;
    font-weight: 700;
}

.sch_form_section input[type="text"],
.sch_form_section input[type="tel"],
.sch_form_section input[type="email"],
.sch_form_section input[type="date"],
.sch_form_section input[type="number"],
.sch_form_section textarea {
    width: 100%;
    height: 40px;
    border: solid #ddd;
    border-width: 0 0 1px;
    height: 40px;
    padding-left: 15px;
    transition: all .3s;
}

.sch_form_section textarea {
    height: 150px;
    padding: 15px;
    outline: none;
    resize: none;
}

.sch_form_section input:focus,
.sch_form_section textarea:focus,
.sch_form_section input:not(:placeholder-shown),
.sch_form_section textarea:not(:placeholder-shown) {
    border-color: #2a283e;
    outline: none;
}

.input_line span {
    position: absolute;
    left: 15px;
    top: 9px;
    transition: all .3s;
    pointer-events: none;
}

.sch_form_section input:focus~span,
.sch_form_section textarea:focus~span,
.sch_form_section input:not(:placeholder-shown)~span,
.sch_form_section textarea:not(:placeholder-shown)~span {
    top: -11px;
    font-size: 12px;
    opacity: .5;
}

.sch_form_section label {
    margin-bottom: 10px;
}

.sch_form_section .row {
    row-gap: 30px;
}

.input_line {
    position: relative;
}

.select_opt {
    display: flex;
    align-items: center;
    padding-left: 15px;
    gap: 15px;
    flex-wrap: wrap;
}

.select_opt label {
    background-color: rgba(224, 60, 51, 0.08);
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    cursor: pointer;
    border: 1px solid #ddd;
    padding: 0 15px 0 10px;
    height: 30px;
    border-radius: 30px;
}

.select_opt label input {
    position: absolute;
    opacity: 0;
}

.select_opt label i {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #ababab;
    transition: all .3s;
}

.select_opt label input:checked~i {
    background-color: #e03c33;
    border-color: #e03c33;
}

.send_mx_W button {
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    font-size: 16px;
}

.pac-logo::after {
    display: none !important;
}

.sch_form_section input[type="number"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.sch_form_section input[type="number"]::-webkit-outer-spin-button,
.sch_form_section input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.files-inp {
    margin: 0.5em 0px;
    position: relative;
    color: rgb(158, 158, 158);
    background-color: rgba(224, 60, 51, 0.08);
    display: block;
    /* height: 100%; */
    font-size: 13px;
    padding: 15px 25px;
    text-align: center;
    border: 2px dashed rgb(234, 234, 234);
    border-radius: 10px;
}

.files-inp input {
    padding: 0px 12px;
    border-radius: 2px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}

.files-inp i {
    position: absolute;
    font-size: 22px;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

label.choose {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(148, 148, 148);
    outline: none;
    font-weight: 400;
    font-size: 16px;
    margin: 0px;
    line-height: 1.4;
}

.choose span {
    font-weight: 400;
    margin-right: 10px;
}

.sch_banner img {
    width: 100%;
    min-height: 350px;
    object-fit: cover;
    margin: 0;
    max-height: 540px;
}

.sch_banner {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
}

.sch_banner>div {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 30px;
}

.sch_banner::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgb(238, 244, 248);
    background: linear-gradient(180deg, rgba(238, 244, 248, 0) 0%, rgba(0, 0, 0, 1) 100%);
    opacity: .5;
}

.sch_banner h3 {
    color: #fff;
    margin: 0 0 15px;
}

.sch_banner p {
    color: #fff;
    margin: 0;
}

.sti_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #a6a6a6 !important;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 28px;
    color: #fff;
}

.ascx_09.reverse .row {
    flex-direction: row-reverse;
}

.donate_frame {
    margin-bottom: 30px;
}

.donate_frame input[type="text"],
.donate_frame input[type="number"],
.donate_frame input[type="tel"] {
    border-width: 1px;
    border-radius: 4px;
}

.donate_frame .sch_form_section .row {
    row-gap: 15px;
}

.donate_frame .input_line span {
    top: 11px;
    font-size: 14px;
    background-color: #fff;
    padding: 0 10px;
    z-index: 2;
    left: 5px;
}

.donate_frame .sch_form_section input:focus~span,
.donate_frame .sch_form_section input:not(:placeholder-shown)~span {
    top: -8px;
    color: var(--main-color);
    opacity: 1;
}

.donate_frame .sch_form_section input:focus {
    border-color: #ddd;
}

.vvc_09 {
    padding-right: 60px;
}

.try_icon {
    position: relative;
}

.input_line.try_icon::after {
    content: attr(data-title);
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-image: linear-gradient(to bottom, #ffffff, #F5F5F5);
    border: 1px solid #D4D5D7;
    border-radius: 0 0.25rem 0.25rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #929292;
}

.donate_frame .sch_form_section h2 {
    line-height: normal;
    font-weight: 400;
    font-size: 32px;
}

.donate_frame .sch_form_section h2 span {
    display: block;
    color: var(--main-color);
    font-size: 50%;
    font-weight: 600;
}

.donate_info p {
    font-size: 13px;
    line-height: 1.6;
}

.ssl_bar>div {
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    background-color: #84a77b;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    padding-left: 55px;
    min-height: 52px;
}

.ssl_bar i {
    position: absolute;
    left: 15px;
    top: 10px;
    font-size: 30px;
}

.content-detail strong span {
    color: var(--main-color);
    display: block;
}

#the_awards .iban_box {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    margin: 0;
}

#the_awards .row {
    row-gap: 30px;
}

#the_awards .iban_box div:nth-child(2) {
    padding-left: 0;
    margin-top: 30px;
}

#sosyalSorumluluk,
#saglik,
#egitim {
    padding-top: 80px;
}

#donateSection .blog_card_heading h3 a {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

#donateSection .blog_card_heading h3 a span {
    display: flex;
    font-size: 16px;
    background-color: var(--main-color);
    color: #fff;
    padding: 0 20px;
    height: 40px;
    align-items: center;
    border-radius: 30px;
    font-weight: 400;
}

#donateSection .row {
    row-gap: 30px;
}

#team_area_three h3 {
    font-size: 18px;
}

#team_area_three img {
    margin: 0;
    border-radius: 8px 8px 0 0;
}

#team_area_three .row>div {
    margin-bottom: 30px;
}

#team_area_three .row {
    margin-bottom: -30px;
}

@media screen and (max-width: 992px) and (min-width: 769px) {
    .banner_three_text h1 {
        font-size: 40px !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 1380px) {
    .main-navbar .container {
        max-width: 100%;
    }
    .about_three_top_boxed {
        padding: 30px 60px 30px 30px;
    }
}

@media (max-width: 1200px) {
    .iban_box div:nth-child(2) svg {
        position: static;
        margin-left: -10px;
    }
    .counter_item p {
        padding: 10px;
        font-size: 14px;
        line-height: 1.2;
    }
}

@media (max-width: 992px) {
    .iban_box div:nth-child(2) svg {
        display: none;
    }
    .ataturk_sentence p {
        font-size: 14px;
        line-height: 1.2;
    }
    .donate_detail {
        /* flex-direction: column-reverse; */
    }
    .vvc_09 {
        padding-right: 15px;
    }
    .donate_frame {
        border-left: none;
        padding-bottom: 30px;
        padding-left: 0;
    }
    .corporate_page {
        flex-flow: column-reverse wrap;
        gap: 30px;
    }
    .corporate_page>div,
    .volunteer_page .corporate_page .cp_left {
        width: 100%;
    }
    .volunteer_page .corporate_page {
        flex-direction: column-reverse;
    }
    .corporate_page .content-detail {
        padding-left: 0px;
    }
    .swiper_pn_buttons {
        display: none;
    }
    .topbar-area {
        display: none;
    }
}

@media (max-width: 768px) {
    .breadcrumb_item {
        font-size: 14px;
    }
    .commn_banner_page.redBreadcrumb {
        margin: 0 15px;
        padding: 30px 0;
    }
    .color_big_heading {
        font-size: 28px;
    }
    #team_area_three h3 {
        font-size: 16px;
    }
    .sch_banner p {
        font-size: 14px;
    }
    .sch_banner>div {
        padding: 15px;
    }
    .volunteer_page {
        padding: 40px 0px;
    }
    .about_two_left_wrapper h3 {
        font-size: 18px;
    }
    .select_opt label {
        padding: 0 5px 0 5px;
        height: 30px;
        border-radius: 30px;
        font-size: 12px;
        font-weight: 600;
    }
    .sch_form_section h2 {
        font-size: 18px;
    }
    .iban_box div:nth-child(1) {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    .iban_box div:nth-child(2) {
        padding-left: 15px;
    }
    .iban_box {
        align-items: flex-start;
    }
    .corporate_page>div,
    .volunteer_page .corporate_page .cp_left {
        padding: 15px;
    }
    .vol_form {
        padding: 15px;
    }
    .project_detail .commn_banner_page h2 {
        font-size: 32px;
    }
    .section_padding_bottom {
        padding: 0px 0px 60px;
    }
    .commn_banner_page h2 {
        font-size: 42px;
    }
    .the_pagination .num {
        gap: 10px;
    }
    #about_three_top_area .row {
        row-gap: 15px;
    }
    .footer_area_about img {
        height: 50px;
    }
    .others-options {
        position: static;
    }
    .donate_dropdown {
        width: auto;
        right: 15px;
        left: 15px;
        padding: 20px;
    }
    .donate_dropdown ul li a {
        padding-left: 0px;
        height: 45px;
        font-size: 13px;
        gap: 10px;
        line-height: 1.2;
    }
    .mean-container a.meanmenu-reveal {
        top: -12px;
    }
    .btn_navber {
        padding: 4px 10px;
        font-size: 11px;
    }
    .ataturk_sentence p {
        flex: 1 1 0%;
    }
    .ataturk_sentence p img {
        height: 30px;
    }
    #mainPagination .swiper-pagination-bullet-active {
        width: 20px;
    }
    #footer_area {
        padding: 60px 0px 40px;
    }
    .copyright_area .row {
        row-gap: 15px;
        padding: 15px 0px;
        justify-content: center;
        text-align: center;
    }
    .copyright_right {
        text-align: center;
    }
    .footer_area_about {
        padding-right: 0px;
    }
    .about_three_top_boxed_text h3 {
        font-size: 24px;
    }
    .section_padding_top {
        padding-top: 40px;
    }
    .section_padding {
        padding: 40px 0px;
    }
    .banner_three_text {
        padding: 40px 0px;
    }
    .ib_content {
        flex-flow: column-reverse wrap;
    }
    .autoplay-progress {
        bottom: auto;
        top: 15px;
        left: 15px;
    }
    #mainPagination {
        bottom: auto;
        top: 21px;
        left: 70px;
    }
    .ib_content>div:not(.container),
    .ib_content .container>div {
        width: 100%;
    }
    .ib_image img {
        height: auto;
        min-height: 200px;
    }
    .ib_content .container {
        position: static;
        transform: none;
    }
}

@media (max-width: 576px) {
    .banner_three_text p {
        font-size: 14px;
        line-height: 1.4;
    }
}

.burs-basvuru-section{
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 8px 10px 24px;
    border-radius: 8px;
    padding: 20px 40px;
}

.popup{
    padding-top: 35px;
}