@import url(../css/all.min.css);
@import url(../css/bootstrap.css);
@import url(../css/owl.carousel.min.css);
@import url(../css/owl.theme.default.min.css);
@import url(../css/animate.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');


*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

:root {
    --main-color: #168FF3;
    --sub-color: #DF4F1C;
    --ph-color: #3D3D3D;
    --sec-padding: 80px 0;
}

body {
    font-family: 'Roboto', 'Noto Kufi Arabic', sans-serif;
    background-color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', 'Noto Kufi Arabic', sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
}

p {
    margin: 0;
}

html,
button,
input,
select,
textarea {
    color: #222;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

img {
    vertical-align: middle;
    object-fit: cover;
    object-position: center center;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}


a,
button {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

p {
    margin: 0;
}

a {
    cursor: pointer !important;
    text-decoration: none !important;
}

a:hover,
a:active,
a:focus,
a:visited {
    text-decoration: none !important;
}

input,
textarea,
a,
button {
    outline: none !important;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.main-wrapper {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    padding-top: 84px;
}

.menu-toggle .main-wrapper {
    -webkit-transition: -webkit-transform .0s ease;
    transition: -webkit-transform .0s ease;
    transition: transform .0s ease;
    transition: transform .0s ease,
        -webkit-transform .0s ease;
}

.opt-mobile {
    display: none;
}
.opt-mobile ul {
    display: flex;
    gap: 10px
}
.opt-mobile .btn-site {
    margin: 0;
}

.opt-mobile .btn-site.hamburger {
    background: #000;
}

.opt-mobile .btn-site.hamburger span svg {
    margin-right: 8px;
}

.rtl-style .opt-mobile .btn-site.hamburger span svg {
    margin-left: 8px;
    margin-right: unset;
}

.is-closed {
    color: #000;
    font-size: 30px;
}

.mobile-menu {
    height: 100vh;
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    padding: 20px;
    overflow: auto;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
}

.mobile-menu.active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.logo-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-mobile img {
    max-width: 150px;
}

.mmenu {
    padding-top: 40px;
}
.mmenu .main_menu > li > a {
    padding: 0;
}

/* Style Header */

#header {
    width: 100%;
    padding: 15px 0;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 9;
}
.icon-currency {
    background: url(../images/icon-svg/icon-currency.svg);
}
.icon-lang {
    background: url(../images/icon-svg/icon-lang.svg);
}
.hd_menu li.curr a:before {
    font: normal normal normal 14px / 1 FontAwesome;
    content: "\f107";
    color: #231F20;
    font-size: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
}
.rtl-style .hd_menu li.curr a:before {
    right: auto;
    left: -15px;
}
#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}
.logo-site a {
    display: inline-block
}

.logo-site img {
    max-width: 240px;
}

.main_menu {
    display: flex;
    gap: 20px
}

.main_menu > li > a {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 400;
    position: relative;
    padding: 10px 10px;
}

.main_menu > li.active > a {
    color: var(--main-color);
    font-weight: 700;
}

.main_menu > li:hover > a {
    color: var(--main-color);
}

.dropdown-toggle::after {
    border: 0;
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f107";
    font-size: 14px;
    position: absolute;
    color: #000;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
}

.rtl-style .dropdown-toggle::after {
    right: auto;
    left: -10px;
}
.drop-lang .dropdown-toggle::after {
    display: none;
}
.main_menu > li.active .dropdown-toggle::after {
    color: var(--main-color);
}

.dropdown-menu {
    transition: all .8s ease-in-out;
    transform: translateY(100px) !important;
    box-shadow: none;
    background: #fff;
    border-radius: 0;
    border: 0;
}

.rtl-style .dropdown-menu {
    text-align: right;
    inset: 0px 0 auto auto !important;
}

.dropdown-menu li {
    padding: 0 20px
}

.dropdown-menu li a {
    padding: 10px 0;
    color: #000;
    font-size: 14px;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.dropdown-menu li:last-child a {
    border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #1e2125;
    background-color: transparent;
    color: #000;
    transform: translateX(10px);
}

.rtl-style .dropdown-item:hover,
.rtl-style .dropdown-item:focus {
    transform: translateX(-10px);
}

.dropdown-menu.show {
    transform: translateY(62px) !important
}

.main_menu .btn-donate {
    background: var(--main-color);
    margin: 0;
    height: 40px;
    border-radius: 5px;
    padding: 5px 15px 5px 15px;
}

.main_menu .btn-donate span {
    display: flex;
    color: #fff;
}

.main_menu > li > a.lst-volunteer {
    color: var(--main-color);
}

.icon-volunteer {
    background: url(../images/icon-svg/icon-volunteer.svg);
}

.btn-donate .icon-donate {
    background: url(../images/icon-svg/icon-donate.svg);
}

.btn-donate:hover .icon-donate {
    background: url(../images/icon-svg/icon-donate-color.svg);
}

#header.fixed-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 1px 7px rgb(0 0 0 / 16%);
    z-index: 33;
}

/* Style Home Slide */

.section_home {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.section_home .item {
    position: relative;
     background-size: cover !important;
    background-position: top !important;
    min-height: 650px;
    display: flex;
    align-items: center;
}
.section_home .item:before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.home_txt {
    background: var(--main-color);
    padding: 20px;
    position: relative;
    width: 520px;
    max-width: 100%;
    border-radius: 4px;
    box-shadow: 0px 16px 16px rgba(0, 0, 0, 0.25);;
}

.home_txt h2 {
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-size: 36px;
}

.home_txt p {
    color: #fff;
    text-transform: capitalize;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}
.home_txt .btn-site {
    background: #000;
    margin: 0;
    height: 50px;
    border-radius: 16px;
}
.home_txt .btn-site span {
    font-weight: 700;
    font-size: 18px;
}

/* Style Stac Site */

.sec_head {
    position: relative;
    width: 50%;
    text-align: center;
    margin: 0 auto 40px;
}
.sec_head > span {
    position: relative;
    padding-inline-start: 30px;
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 10px;
    display: inline-block;
}
.sec_head > span:before {
    content: "";
    background: url(../images/favicon.svg);
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.rtl-style .sec_head > span:before {
    left: auto;
    right: 0;
}
.sec_head h2 {
    color: #444;
    font-size: 30px;
    margin-bottom: 10px;
    position: relative;
    text-transform: capitalize
}

.sec_head p {
    font-size: 18px;
    color: #4F4F4F;
}

.btn-copy {
    color: #000;
    height: 50px;
    font-size: 15px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    justify-content: center;
    background: #EBEBEB;
    width: max-content;
    position: relative;
    overflow: hidden;
}

.btn-site {
    height: 40px;
    font-size: 15px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    margin: 30px auto 0;
    border-radius: 0;
    justify-content: center;
    background: var(--main-color);
    width: max-content;
    position: relative;
    overflow: hidden;
}

.btn-site:before {
    background: #EBEBEB;
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    left: -10px;
    width: 0%;
    transform: skew(-10deg);
    transition-duration: .6s;
    z-index: 0;
}

.btn-site:hover:before {
    position: absolute;
    content: "";
    top: 0;
    left: -10px;
    width: 120%;
    z-index: 0
}

.btn-site span {
    color: #fff;
    position: relative;
    font-weight: 400;
    text-transform: capitalize;
}

.btn-site:hover span {
    color: var(--main-color);
}

.icon {
    background-size: 100% 100% !important;
    width: 20px;
    height: 20px;
    display: block;
    margin-right: 10px;
}

.rtl-style .icon {
    margin-right: unset;
    margin-left: 10px;
}

/* Style Modal Currency */

.form-check-input {
    border: 2px solid #000;
}

.form-check-input:checked {
    border: 2px solid #000;
    background-color: transparent;
}

.form-check-input:focus {
    box-shadow: none;
    border: 2px solid #000
}

.form-check li {
    margin-bottom: 20px
}

.cont-currency h6 {
    text-align: center;
    margin-bottom: 20px;
}

.cont-currency .btn-close {
    position: absolute;
    top: 30px;
    right: 20px
}

.rtl-style .cont-currency .btn-close {
    right: auto;
    left: 20px
}

#currencyModal .modal-dialog {
    max-width: 360px;
}

.cont-currency {
    padding: 20px 30px 0;
}

.form-check-label {
    font-size: 15px
}

.form-check .form-check-input {
    float: right;
}

.rtl-style .form-check .form-check-input {
    float: left;
}

.form-check {
    margin: 0;
    padding: 0;
}

.form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23000'/%3e%3c/svg%3e");
}

/* Style About Index */

.section_about {
    position: relative;
    padding: 100px 0;
}

.txt-about {
    position: relative;
}

.txt-about span {
    position: relative;
    display: block;
    padding-inline-start: 30px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--main-color);
}

.txt-about span:before {
    content: "";
    background: url(../images/favicon.svg);
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.rtl-style .txt-about span:before {
    left: auto;
    right: 0;
}


.txt-about h2 {
    font-size: 37px;
    margin-bottom: 15px;
    color: #000;
}

.txt-about p {
    color: #4F4F4F;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.stat-abt {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-abt > div h6 {
    color: #000;
    font-size: 30px;
    margin-bottom: 10px;
}

.stat-abt > div p {
    color: #4F4F4F;
    font-size: 16px;
}

.txt-about a {
    color: var(--main-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .4s;
}
.txt-about a svg {
    transition: .4s;
}
.txt-about a:hover svg {
    transform: translateX(15px);
}

.rtl-style .txt-about a svg {
    transform: scale(-1)
}

.rtl-style .txt-about a:hover svg {
    transform: scale(-1) translateX(15px)
}

.thumb-about {
    position: relative;
    height: 100%;
}

.thumb-about figure {
    margin-bottom: 0;
}

.thumb-about figure img {
    border-radius: 5px;
}



/* Style Projects Voluntary */

.section_campaigns {
    position: relative;
    /*background: #f9f7f6;*/
    padding: 60px 0;
}
.section_campaigns:before {
    content: "";
    background: url(../images/favicon.svg);
    background-size: 100% 100%;
    width: 400px;
    height: 400px;
    position: absolute;
    top: 0;
    right: 0;
    filter: brightness(0) opacity(0.02);
}
.rtl-style .section_campaigns:before {
    right: auto;
    left: 0;
}
.section_campaigns .sec_head {
    text-align: start;
    margin: 0 0 40px;
    width: 100%;
}
.section_campaigns .sec_head .btn-site {
    margin: 30px 0 0;
    border-radius: 30px;
    position: absolute;
    top: 0;
    right: 0;
}
.rtl-style .section_campaigns .sec_head .btn-site {
    left: 0;
    right: auto
}
.item-project {
    position: relative;
    padding: 45px 15px 46px 15px;
    background: #fff;
    -webkit-box-shadow: 0 0 15px 0 rgba(15, 13, 13, .06);
    box-shadow: 0 0 15px 0 rgba(15, 13, 13, .06);
}

.item-project figure {
    position: relative;
    margin-bottom: 40px;
    height: 220px;
}

.item-project figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}
.item-project figure span {
    background: var(--main-color);
    position: absolute;
    top: -12px;
    left: 15px;
    color: #fff;
    padding: 3px 15px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}
.item-project figure span.active {
    background: #00a800;
}
.item-project figure span.not-active {
    background: #a80000;
}
.txt-project {
    position: relative;
    padding: 0 15px;
}

.txt-project h4 {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.txt-project p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.progress {
    background: #f9f7f6;
    height: 5px;
    overflow: inherit;
}

.progress-bar {
    background: var(--main-color);
    position: relative;
    overflow: inherit;
}

.progress-bar span {
    width: 35px;
    height: 35px;
    line-height: 30px;
    position: absolute;
    top: -30px;
    right: -20px;
    text-align: center;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.rtl-style .progress-bar span {
    right: auto;
    left: -20px;
}

.st--pro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 30px;
}

.st--pro div {
    color: #828282
}
.st--pro div span:first-child {
    color: #777;
    font-weight: 400;
    font-size: 14px;
}
.st--pro div span:last-child {
    color: #333;
    font-weight: 700;
    font-size: 14px;
}

.item-project  ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.item-project  .btn-site {
    margin: 0;
    border-radius: 14px;
    min-width: 190px;
    height: 55px;
}

.item-project  .btn-site span {
    display: flex;
}

.btn-dtls {
    color: var(--main-color);
    position: relative;
    margin-inline-end: 15px;
    font-weight: 500;
    transition: .4s;
}

.btn-dtls:before {
    font: normal normal normal 14px / 1 FontAwesome;
    content: "\f105";
    color: var(--main-color);
    font-size: 13px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    transition: .4s;
}

.rtl-style .btn-dtls:before {
    content: "\f104";
    right: auto;
    left: -15px;
}

.btn-dtls:hover {
    color: var(--main-color);
}

.btn-dtls:hover:before {
    transform: translate(15px, -50%);
}

.rtl-style .btn-dtls:hover:before {
    transform: translate(-15px, -50%);
}

.view-all {
    padding-top: 30px;
}

.view-all .btn-site {
    height: 65px;
    min-width: 300px;
    border-radius: 14px;
}
#voluntary-slider {
    width: 120%;
}
.view-all .btn-site span {
    font-size: 24px;
}
.owl-dots {
    text-align: center;
    padding-top: 15px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
}
.owl-dots .owl-dot span {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    background: #D2D2D2 !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: .4s;
}

.owl-dots .owl-dot.active span {
    background: var(--main-color) !important;
    width: 20px;
    border-radius: 10px;
}

.item-campaigns {
    position: relative;
    display: block;
    height: 500px;
}
.item-campaigns:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background: #232323;
    background: -webkit-linear-gradient(bottom, #000, transparent);
    background: linear-gradient(to top, #000, transparent);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 9;
}
.item-campaigns:hover:before {
    height: 100%;
}
.item-campaigns figure {
    height: 100%;
    margin-bottom: 0;
    overflow: hidden;
}
.item-campaigns figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.txt-campaigns {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 15px 20px 30px;
    color: #fff;
    z-index: 9;
    width: 100%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.item-campaigns:hover .txt-campaigns {
    bottom: 20px;
}
.txt-campaigns h4 {
    color: #fff;
    margin-top: 15px;
}
.item-campaigns span {
    background: var(--main-color);
    color: #fff;
    padding: 3px 15px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}
.item-campaigns span.active {
    background: #00a800;
}
.item-campaigns span.not-active {
    background: #a80000;
}

.oth-campaigns .item-campaigns {
    height: 246px;
    margin-bottom: 8px;
}
.oth-campaigns .txt-campaigns {
    padding: 0px 10px 10px;
}
.oth-campaigns .txt-campaigns h4 {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.section_campaigns .row > * {
    padding-right: calc(var(--bs-gutter-x)* 0.2);
    padding-left: calc(var(--bs-gutter-x)* 0.2);
}
.section_campaigns .row {
    margin-right: calc(var(--bs-gutter-x)* -.2);
    margin-left: calc(var(--bs-gutter-x)* -.2);
}

/* Style Project Details */

.cause_details {
    background: #f9f9f9;
    position: relative;
    padding: 40px 0 80px;
}

.thumb-proj-dtls {
    position: relative;
    margin-bottom: 0;
}

.thumb-proj-dtls img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.txt-project-dtls h4 {
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 40px;
}

.txt-project-dtls p {
    color: #4f4f4f;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 50px;
}

.txt-project-dtls .st--pro {
    margin: 10px 0 30px;
}

.txt-project-dtls .btn-donate {
    width: 230px;
    height: 50px;
    border-radius: 8px;
    margin: 0;
}

.btn-donate span {
    display: flex;
}

.txt-project-dtls ul {
    gap: 10px
}

.no-style {
    position: relative;
    margin-top: 20px;
}

.no-style ul {
    padding: unset;
    margin: unset;
    list-style: unset;
    padding-inline-start: 30px;
}

.nav-tabs {
    border: 0;
    margin: 60px 0 20px;
    gap: 15px
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    border: 0;
    background: var(--main-color);
    color: #fff;
    border-radius: 5px;
}
.nav-tabs .nav-link {
    background: #dee2e6;
    color: #333;
    border-radius: 5px;
    border: 0;
}

/* Style Donate */

.section_donate {
    position: relative;
    padding: 60px 0;
}
.section_donate:before,
.section_donate:after {
    content: "";
    background: url(../images/favicon.svg);
    background-size: 100% 100%;
    width: 300px;
    height: 300px;
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%) rotate(90deg);
    filter: opacity(0.1) grayscale(1);
}
.section_donate:after {
    right: 30px;
    transform: translateY(-50%) rotate(270deg);
}
.lst-donate {
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.lst-donate > div a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 150px;
    padding: 10px;
}
.lst-donate > div a img {
    max-width: 100%;
    max-height: 100%;
}
.section_hero_donate {
    position: relative;
    min-height: 300px;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.section_hero_donate:before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.donate_txt {
    position: relative;
    text-align: center;
    width: 730px;
    margin: auto;
    max-width: 100%;
}

.donate_txt h1 {
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-size: 60px;
}

.donate_txt h1 span {
    color: var(--main-color);
}

.donate_txt > p {
    color: #fff;
    text-transform: capitalize;
    font-size: 17px;
    margin-bottom: 50px;
}
.cont-donate {
    position: relative;
    padding: 40px;
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    border-radius: 16px;
}

.form-donate .d-flex {
    position: relative;
    gap: 20px;
}

.form-donate .form-group:not(:last-child) {
    position: relative;
    margin-bottom: 30px;
}

.form-donate .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 15px;
    color: #000
}

.form-donate .d-flex .form-group {
    width: 50%;
}

.form-donate .form-group .form-control {
    background-color: transparent;
    height: 55px;
    border-radius: 12px;
    border: 1px solid #D9D9D9;
}

.form-donate .form-group textarea.form-control {
    height: 120px
}

.form-donate .form-group .form-control::placeholder {
    font-size: 14px;
}

.rtl-style .form-select {
    padding: 0.375rem 0.75rem 0.375rem 2.25rem;
    background-position: left 0.75rem center;
}

.form-donate .form-group .btn-site {
    margin: 0;
    min-width: 200px;
    border-radius: 10px;
    height: 55px;
}

.form-donate .form-group .btn-site span {
    display: flex;
}

/* Style Proud Volunteer */

.section_big_story {
    position: relative;
    padding: 30px 0;
    display: flex;
}

/*.section_big_story:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    width: 100%;*/
/*    height: 50%;*/
/*    background: #232323;*/
/*    background: -webkit-linear-gradient(bottom, #000, transparent);*/
/*    background: linear-gradient(to top, #000, transparent);*/
/*    -webkit-transition: all .3s;*/
/*    -moz-transition: all .3s;*/
/*    -o-transition: all .3s;*/
/*    transition: all .3s;*/
/*    z-index: 9;*/
/*}*/

/*.section_big_story:hover:before {*/
/*    height: 100%;*/
/*}*/

.cont-big-story {
    display: flex;
    align-items: center;
    background: rgb(108 108 108 / 10%);
    padding: 80px;
    border-radius: 20px;
    gap: 20px
}

.cont-big-story figure {
    width: 240px;
    height: 240px;
    margin-bottom: 0;
    border-radius: 10px;
}

.cont-big-story figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.txt-big-story {
    position: relative;
    width: calc(100% - 240px);
    z-index: 9;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.txt-big-story h2 {
    color: #000;
    font-size: 30px;
    margin-bottom: 25px;
}

.txt-big-story p {
    font-size: 16px;
    color: #000;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 70px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.txt-big-story .btn-site {
    margin: 0;
    border-radius: 12px;
    height: 45px;
}


/* Style News & Articles */

.section_initiatives {
    position: relative;
    padding: 60px 0;
}
.section_initiatives:before {
    content: "";
    background: url(../images/favicon.svg);
    background-size: 100% 100%;
    width: 400px;
    height: 400px;
    position: absolute;
    top: 0;
    right: 0;
    filter: brightness(0) opacity(0.02);
}
.rtl-style .section_initiatives:before {
    right: auto;
    left: 0;
}
.section_initiatives .sec_head {
    text-align: start;
    width: 100%;
}
#initiatives-slider .item-gallery {
    margin-bottom: 0;
}

/* Style News Page */

.section_news {
    position: relative;
    padding: 60px 0;
}

.item-news {
    position: relative;
    background: #fff;
    border: 1px solid #ebebeb;
    padding: 20px;
    margin-bottom: 24px;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: .4s;
}

.item-news figure {
    position: relative;
    width: 250px;
    height: 215px;
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
}

.item-news figure:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background: #232323;
    background: -webkit-linear-gradient(bottom, #000, transparent);
    background: linear-gradient(to top, #000, transparent);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 9;
}

.item-news:hover figure:before {
    height: 100%;
}

.item-news figure img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    transition: .4s;
    object-fit: cover;
}

.txt-news {
    position: relative;
    width: calc(100% - 250px);
}

.txt-news span {
    color: #828282;
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
}

.txt-news h3 {
    color: #000000;
    font-size: 17px;
    margin-bottom: 10px;
}

.item-news:hover {
    box-shadow: 0 1px 7px rgb(0 0 0 / 16%);
}

.txt-news p {
    color: #777;
    font-size: 14px;
    line-height: 1.7;
    height: 70px;
    margin-bottom: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.txt-news a {
    color: var(--main-color);
    position: relative;
    font-weight: 500;
    display: inline-block;
    font-size: 15px;
}

.txt-news a:before {
    font: normal normal normal 14px / 1 FontAwesome;
    content: "\f105";
    color: var(--main-color);
    font-size: 13px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    transition: .4s;
}

.rtl-style .txt-news a:before {
    right: auto;
    transform: translateY(-50%) scale(-1);
    left: -15px;
}

.txt-news a:hover:before {
    transform: translate(15px, -50%);
}

.rtl-style .txt-news a:hover:before {
    transform: translate(-15px, -50%) scale(-1);
}

.dta-news h4 {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 19px;
}

/* Style Fotter */

footer {
    position: relative;
    background: #F2F2F2;
}

.top-footer {
    padding: 30px 0;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.cont-ft {
    position: relative;
    padding-right: 60px;
}

.rtl-style .cont-ft {
    padding-right: unset;
    padding-left: 60px;
}

.logo-ft {
    margin-bottom: 20px;
    display: block;
}

.logo-ft img {
    width: 160px;
    max-width: 100%;
}

.cont-ft p {
    color: #000;
    font-size: 15px;
    line-height: 1.7;
}

.li-ft li {
    margin-bottom: 15px;
}

.li-ft li a {
    color: #000;
    font-size: 15px;
}

.li-ft li a:hover {
    color: var(--main-color);
}

.list-contact {
    margin-bottom: 30px;
}

.list-contact li {
    display: block;
    margin-bottom: 10px;
    color: #fff
}

.list-contact li a {
    color: #000;
    display: flex;
    align-items: center;
}

.list-contact li a:hover {
    opacity: .5
}

.list-contact li a svg {
    margin-right: 10px;
    background: #535B63;
    width: 23px;
    height: 23px;
    margin-right: 10px;
    padding: 10px;
}

.rtl-style .list-contact li a svg {
    margin-left: 10px;
    margin-right: unset;
}

.icon-envelope {
    background: url(../images/icon-svg/icon-envelope.svg);
    width: 16px;
    height: 16px;
}
.icon-location {
    background: url(../images/icon-svg/icon-location.svg);
    width: 16px;
    height: 16px;
}
.lst-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lst-social li a {
    position: relative;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    border: 2px solid #000;
    border-radius: 50%;
    transition: .4s;
}

.lst-social li a:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.bottom-ft {
    padding: 20px 0;
}

.cont-bt {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyRight {
    color: #000;
    font-size: 14px;
}

.cont-bt p {
    color: #000;
    font-size: 14px;
}

.cont-bt p a {
    color: #000;
}



/* Style Head Page */

.breadcrumb_area {
    position: relative;
    background-size: 100% !important;
    background-position: center !important;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb_area:before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 70%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.txt-breadcrumb {
    position: relative;
    text-align: center;
}

.txt-breadcrumb h2 {
    font-size: 45px;
    color: #fff;
    margin-bottom: 20px
}

.breadcrumb-bar {
    width: max-content;
    position: relative;
    margin: auto
}

.breadcrumb-bar .breadcrumb {
    background-color: transparent;
    border-radius: 0;
    margin: 0;
    padding: 5px 15px;
}

.breadcrumb-bar .breadcrumb a {
    color: #fff;
    padding-right: 10px;
    position: relative;
}

.rtl-style .breadcrumb-bar .breadcrumb a {
    padding-left: 10px;
    padding-right: unset;
}

.breadcrumb-bar .breadcrumb li {
    color: var(--main-color);
    font-size: 13px;
    font-weight: 600;
    position: relative;
    padding-right: 10px;
}

.rtl-style .breadcrumb-bar .breadcrumb li {
    padding-left: 10px;
    padding-right: unset;
}

.breadcrumb-bar .breadcrumb li:last-child {
    padding-right: 0;
}

.rtl-style .breadcrumb-bar .breadcrumb li:last-child {
    padding-left: 0;
}

.breadcrumb > li a:before {
    border: 0;
    font: normal normal normal 14px / 1 FontAwesome;
    content: "\f105" !important;
    font-size: 12px;
    position: absolute;
    top: 3px;
    right: -4px;
}

.rtl-style .breadcrumb > li a:before {
    content: "\f104" !important;
    right: auto;
    left: -4px;
}

/* Style Board Of Director Page */

.section_board_director {
    position: relative;
    padding: 90px 0;
}

.item-board {
    position: relative;
    margin-bottom: 50px;
}

.item-board figure {
    height: 320px;
    margin-bottom: 20px;
}

.item-board figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.item-board .txt-board h5 {
    color: #000;
    font-weight: 600;
    font-size: 20px;
}

.item-board .txt-board span {
    color: var(--main-color);
    font-weight: 500;
    font-size: 13px;
    display: block;
    margin: 5px 0;
}

.item-board .txt-board p {
    color: #4F4F4F;
    font-size: 15px;
}

/* Style About Page */

.thumb-about-page figure img {
    width: 100%;
    max-width: 100%;
}

.thumb-about.thumb-about-page:before {
    top: -60px;
    left: -80px;
    transform: unset;
    z-index: -1;
}

.thumb-about.thumb-about-page:before {
    right: -80px;
    left: auto;
}

.thumb-about.thumb-about-page:after {
    bottom: -10px;
    right: -10px;
    left: auto;
    z-index: -1
}

.rtl-style .thumb-about.thumb-about-page:after {
    left: -10px;
    right: auto;
}

.txt-about.txt-about-page {
    padding-right: 20px;
}

.rtl-style .txt-about.txt-about-page {
    padding-left: 20px;
    padding-right: unset;
}

.txt-about.txt-about-page p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: justify;
}

.section_statistics {
    position: relative;
    padding: 0 0 60px;
}

.item-statis {
    position: relative;
    padding: 40px 20px;
    text-align: center;
}

.item-statis figure {
    width: 65px;
    height: 65px;
    margin: 0 auto 30px;
}

.item-statis figure img {
    max-width: 100%;
    max-height: 100%;
}

.item-statis strong {
    color: var(--main-color);
    font-size: 80px;
    font-weight: 500;
    margin-bottom: 20px;
}

.item-statis p {
    color: #777;
    font-size: 20px;
    font-weight: 700;
}

.cont-values > span {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.cont-values > h3 {
    color: #000;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
}

.cont-values > p {
    color: #4F4F4F;
    font-size: 15px;
    margin-bottom: 40px;
}

.lst-values > div {
    margin-bottom: 30px;
    display: flex;
}

.lst-values > div figure {
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background-color: rgb(0 104 56 / 10%);
    margin-bottom: 0;
    transition: all 0.4s;
}

.lst-values > div figure img {
    max-width: 24px;
    max-height: 24px;
}

.lst-values > div .txt-values {
    width: calc(100% - 50px);
    padding-left: 15px;
}

.rtl-style .lst-values > div .txt-values {
    padding-right: 15px;
    padding-left: unset;
}

.lst-values > div .txt-values h5 {
    color: #0D0E10;
    font-size: 20px;
    margin-bottom: 10px;
}

.lst-values > div .txt-values p {
    font-size: 15px;
    color: #5B6670;
    line-height: 2;
}

.thumb-values {
    position: relative;
}

.thumb-values .thumb-values-big {
    width: 80%;
    text-align: center;
    padding-top: 50px;
    margin: auto;
}

.thumb-values .thumb-values-small {
    width: 180px;
    height: 135px;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    right: 0;
}

.rtl-style .thumb-values .thumb-values-small {
    right: auto;
    left: 0;
}

.thumb-values .thumb-values-small.small-bottom {
    left: 0;
    bottom: -80px;
    top: auto;
}

.rtl-style .thumb-values .thumb-values-small.small-bottom {
    right: 0;
    left: auto;
}

.thumb-values .thumb-values-small img {
    border: 3px solid #fff;
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 10px;
    object-position: top;
}

.thumb-values img {
    border-radius: 5px;
}

.section_mission_vission {
    position: relative;
    padding: 60px 0;
}

.item-mission,
.item-vission {
    position: relative;
    padding: 50px;
    background: rgb(49 214 253 / 10%);
    border-radius: 25px;
    height: 100%;
    overflow: hidden;
}

.item-vission {
    background: rgb(25 154 244 / 10%)
}

.item-mission:before,
.item-mission:after,
.item-vission:before,
.item-vission:after {
    content: "";
    background: url(../images/favicon.svg);
    background-size: 100% 100%;
    width: 120px;
    height: 120px;
    position: absolute;
    left: -80px;
    top: 0;
    opacity: 0.05;
}

.rtl-style .item-mission:before,
.rtl-style .item-mission:after,
.rtl-style .item-vission:before,
.rtl-style .item-vission:after {
    left: auto;
    right: -80px;
}

.item-mission:after,
.item-vission:after {
    top: auto;
    left: auto;
    right: -100px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    opacity: 0.02;
}

.rtl-style .item-mission:after,
.rtl-style .item-vission:after {
    right: auto;
    left: -100px;
}

.item-mission h3,
.item-vission h3 {
    color: #000;
    font-size: 24px;
    margin-bottom: 10px;
}

.item-mission p,
.item-vission p {
    font-size: 15px;
    color: #5B6670;
    line-height: 2;
    font-weight: 500;
}



/* Style Chairmen Page */

.section_chairmen {
    position: relative;
    padding: 60px 0;
}

.txt-chairmen span {
    color: var(--main-color);
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
}

.txt-chairmen h2 {
    color: #000;
    font-size: 18px;
    font-size: 600;
    margin-bottom: 40px;
}

.ph-chairmen p {
    color: #4F4F4F;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
}

.cont-chairmen {
    margin-top: 30px;
}

.cont-chairmen p {
    color: #4F4F4F;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
}

/* Style Programs */

.section_programs {
    position: relative;
    padding: 60px 0;
}

.wrapper-programs .col-lg-6 {
    margin-bottom: 24px;
}

.item-program {
    position: relative;
    padding: 30px 30px 10px;
    border-radius: 5px;
    border: solid 1px rgba(105, 66, 91, .1);
    background-color: #fff;
    margin-bottom: 24px;
    overflow: hidden;
    transition: .4s;
    height: 100%;
}

.item-program:before {
    content: "";
    background: rgb(16 193 56 / 5%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.rtl-style .item-program:before {
    right: 50%;
    left: auto;
    ;
}

.item-program:after {
    content: "";
    background: url(../images/favicon.svg);
    background-size: 100% 100%;
    width: 120px;
    height: 120px;
    position: absolute;
    right: -80px;
    bottom: -90px;
    opacity: 0.05;
}

.rtl-style .item-program:after {
    left: -80px;
    right: auto
}

.item-program:hover {
    box-shadow: 0 1px 7px rgb(0 0 0 / 16%);
}

.item-program > span {
    display: block;
    color: #4F4F4F;
    font-size: 13px;
    margin-bottom: 15px;
}

.item-program h4 {
    color: #000;
    font-size: 22px;
    margin-bottom: 10px;
}

.item-program p span {
    color: #000;
    font-weight: 500;
    font-size: 14px;
}

.item-program p {
    color: #4F4F4F;
    font-size: 15px;
    margin-bottom: 10px;
}

.item-program .btn-site {
    background: #f2f2f2;
    position: relative;
    margin: 30px 0 0;
    border-radius: 5px;
}

.item-program .btn-site span {
    color: var(--main-color);
}

.aside-categories {
    position: relative;
}

.item-categories {
    position: relative;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
    transition: .3s;
}

.item-categories::after {
    border: 0;
    font: normal normal normal 14px / 1 FontAwesome;
    content: "\f105";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}

.rtl-style .item-categories::after {
    transform: translateY(-50%) scale(-1);
    left: 15px;
    right: auto;
}

.item-categories.active::after {
    color: var(--main-color);
}

.item-categories.active {
    background: rgb(0 104 56 / 10%);
}

.item-categories p {
    color: #4F4F4F;
    font-size: 16px;
}

.item-categories.active p {
    font-weight: 700;
}

.icon-programs {
    background: url(../images/icon-programs.svg);
}

.icon-initiatives {
    background: url(../images/icon-initiatives.svg)
}

.hero_program {
    height: 550px;
    align-items: flex-end;
    padding-bottom: 60px;
}

.section_program_details {
    position: relative;
    padding: 60px 0;
}

.about-prograp {
    margin-bottom: 60px;
}

.item-abt-prog {
    position: relative;
    padding: 20px;
    box-shadow: 0 1px 7px rgb(0 0 0 / 6%);
    display: flex;
    align-items: center;
}

.item-abt-prog figure {
    background: rgb(16 193 65 / 6%);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-abt-prog figure img {
    max-width: 30px;
    max-height: 30px;
}

.item-abt-prog .txt-prog {
    width: calc(100% - 70px);
    padding-right: 15px;
}

.rtl-style .item-abt-prog .txt-prog {
    width: calc(100% - 70px);
    padding-left: 15px;
    padding-right: unset;
}

.item-abt-prog .txt-prog strong {
    font-weight: 500;
    font-size: 14px;
    color: #9b9b9b;
    margin-bottom: 5px;
}

.item-abt-prog .txt-prog p {
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

.abt-program {
    position: relative;
    padding: 50px;
    box-shadow: 0 1px 7px rgb(0 0 0 / 6%);
}

.abt-program p {
    font-size: 16px;
    color: #4F4F4F;
    line-height: 2;
}

.abt-program strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-top: 30px;
    margin-bottom: 10px;
}

.abt-program li {
    margin-bottom: 10px;
    list-style: inside;
    font-size: 14px;
}

.wrapper-gallery-prog {
    width: 100%;
    white-space: nowrap;
    animation: marquee 50s linear infinite;
}

.item-gallery {
    display: inline-block;
}

.item-gallery a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-gallery a img {
    width: 100%;
    height: 100%;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translatex(-100%);
    }
}

@keyframes marquee-2 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translatex(0);
    }
}

/* Style Projects Page */

.section_projects {
    position: relative;
    padding: 80px 0;
}

.section_projects .item-project {
    border: 1px solid #eee;
    margin-bottom: 24px;
}

/* Style Gallery Photo & Videos */

.section_gallery {
    position: relative;
    padding: 60px 0;
}

.item-gallery,
.item-library {
    display: block;
    padding: 8px 8px 0;
    border: 1px solid #EFEFEF;
    margin-bottom: 25px;
}

.item-gallery p,
.item-library p {
    font-weight: 600;
    height: 48px;
    color: #333;
}

.item-gallery figure {
    position: relative;
    height: 220px;
    overflow: hidden;
    margin-bottom: 12px;
}

.item-library figure {
    display: block;
    position: relative;
    height: 220px;
    overflow: hidden;
    margin-bottom: 15px;
}

.item-library figure:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background: #232323;
    background: -webkit-linear-gradient(bottom, #000, transparent);
    background: linear-gradient(to top, #000, transparent);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 9;
}

.item-library:hover figure:before {
    height: 100%;
}

.item-library figure img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.item-gallery figure:after {
    content: "";
    background: #fff;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.item-gallery figure:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background: #232323;
    background: -webkit-linear-gradient(bottom, #000, transparent);
    background: linear-gradient(to top, #000, transparent);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 0;
}

.item-gallery:hover figure:before {
    height: 100%;
}

.item-gallery figure a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FF0000;
    font-size: 45px;
    z-index: 99;
}

.item-album {
    position: relative;
    margin-bottom: 24px;
}

.item-album img {
    width: 100%;
}

.plyr__video-embed {
    height: 530px;
}

/* Style Videos */

.section_videos {
    position: relative;
    padding: 30px 0 50px;
}
.section_videos:before {
    content: "";
    background: url(../images/favicon.svg);
    background-size: 100% 100%;
    width: 400px;
    height: 400px;
    position: absolute;
    top: 0;
    right: 0;
    filter: brightness(0) opacity(0.02);
}
.rtl-style .section_videos:before {
    right: auto;
    left: 0;
}
.section_videos .sec_head {
    text-align: start;
    margin: 0 0 40px;
    width: 100%;
}
.section_videos .sec_head .btn-site {
    margin: 30px 0 0;
    border-radius: 30px;
    position: absolute;
    top: 0;
    right: 0;
}
.rtl-style .section_videos .sec_head .btn-site {
    left: 0;
    right: auto
}
/* Style Reports Page */

.section_reports {
    position: relative;
    padding: 60px 0;
}

.item-report {
    position: relative;
    border: 1px solid #eee;
    padding: 40px 20px;
    margin-bottom: 25px;
    transition: .4s;
}

.item-report:hover {
    box-shadow: 0 1px 7px rgb(0 0 0 / 6%);
}

.item-report figure {
    background: rgb(16 193 65 / 6%);
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.item-report figure img {
    max-width: 30px;
    max-height: 30px;
}

.icon-report {
    background: url(../images/icon-svg/icon-report.svg);
    background-size: 100% 100%;
    width: 30px;
    height: 30px;
    margin: 0;
}

.icon-calendar {
    background: url(../images/date.svg);
    background-size: 100% 100%;
    width: 15px;
    height: 15px;
}

.txt-report h4 {
    color: #000;
    font-size: 16px;
    line-height: 1.8
}

.txt-report time {
    display: flex;
    align-items: center;
    color: #4f4f4f;
    margin-bottom: 5px;
}

.txt-report .btn-site {
    position: relative;
    margin: 30px 0 0;
    border-radius: 5px;
}

/* Style FAQs */

.section_faqs {
    position: relative;
    padding: 60px 0;
}

.item-faq {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    border: 1px solid #eee;
}

.collapsible-header {
    padding: 10px 0;
    cursor: pointer;
    margin-top: 5px;
    position: relative;
}

.collapsible-header h4 {
    color: #000;
    font-weight: 400;
    font-size: 16px;
}

.collapsible-header.active h4 {
    font-weight: 500;
}

.collapsible-header:before {
    border: 0;
    font: normal normal normal 14px / 1 FontAwesome;
    content: "\2b";
    background: rgb(16 193 65 / 5%);
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: absolute;
    top: 3px;
    right: 0;
}

.rtl-style .collapsible-header:before {
    right: auto;
    left: 0;
}

.collapsible-header.active:before {
    content: "\f068";
    background: #000;
    color: #fff;
}

.collapsible-content {
    display: none;
    padding: 20px 0;
    position: relative;
}

.collapsible-content p {
    color: #4f4f4f;
    font-size: 15px;
    line-height: 1.8;
}

.open {
    display: block;
}

/* Style Contact Page */

.section_contact {
    position: relative;
    padding: 60px 0;
}

.cont-form-contact {
    background: #f9f7f6;
    padding: 45px 60px;
    border-radius: 20px;
}

.cont-form-contact h4 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #000;
}

.form-contact .form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-contact .form-group label {
    margin-bottom: 5px;
    font-size: 14px;
    display: block;
    font-weight: 500;
    color: #4f4f4f;
}

.form-contact .form-control {
    background-color: #fff;
    border: 0;
    border-radius: 0;
    height: 50px;
    padding-left: 15px;
}

.rtl-style .form-contact .form-control {
    padding-right: 15px;
    padding-left: unset;
}

.form-contact .form-control::placeholder {
    color: #4f4f4f;
    font-size: 14px;
}

.form-contact .d-flex select {
    width: 80px;
    position: absolute;
    left: 3px;
    bottom: 3px;
    height: 44px;
    background-color: var(--main-color);
    color: #fff;
    padding: 5px;
}

.form-contact .d-flex input.form-control {
    padding-left: 95px;
}

.rtl-style .form-contact .d-flex input.form-control {
    padding-right: 95px;
    padding-left: unset;
}

.form-contact textarea.form-control {
    height: 100px
}

.form-contact .btn-site {
    margin: 20px 0 0;
    height: 50px;
    width: 100%;
}

.contact-ifo {
    position: relative;
}

.dta-contact {
    margin-bottom: 50px;
    padding-bottom: 20px;
}

.dta-contact:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.dta-contact h4 {
    color: #000;
    margin-bottom: 30px;
    font-size: 20px;
}

.dta-contact .d-flex {
    flex-wrap: wrap;
}

.item-contact {
    display: flex;
}

.item-contact figure {
    color: var(--main-color);
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-contact figure svg {
    width: 21px;
    height: 21px;
}

.item-contact:first-child {
    flex: 0 100%;
    margin-bottom: 40px;
}

.item-contact:nth-child(2),
.item-contact:nth-child(3) {
    flex: 0 50%;
    margin-bottom: 40px;
}

.item-contact:last-child {
    flex: 0 100%
}

.txt-contact {
    width: calc(100% - 40px);
    padding-left: 10px;
}

.rtl-style .txt-contact {
    padding-left: unset;
    padding-right: 10px;
}

.txt-contact h6 {
    color: #000;
    margin-bottom: 5px;
    font-size: 15px;
}

.txt-contact p {
    color: #505153;
    font-size: 14px;
}

.dta-contact .hd-contact li {
    display: block;
    margin: 0 0 20px;
}

.icon-map {
    background: url(../images/icon-svg/icon-map.svg);
}

.icon-email {
    background: url(../images/icon-svg/icon-email.svg);
}

.icon-phone {
    background: url(../images/icon-svg/icon-phone.svg);
}

.icon-whatsapp {
    background: url(../images/icon-svg/icon-whatsapp.svg);
}

/* Style Volunteer */

.section_volunteer {
    position: relative;
    padding: 60px 0;
}

.txt-volunteer h5 {
    font-size: 32px;
    color: #000;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align:center;
}

.txt-volunteer h5 span {
    display: block;
    color: var(--main-color);
}

.txt-volunteer p {
    color: #324B4C;
    font-size: 20px;
    line-height: 1.7;
    text-align:center;
}

.thumb-volunteer {
    position: relative;
}

.thumb-volunteer:before {
    content: "";
    background: url(../images/shape-about.png);
    background-size: 100% 100%;
    width: 180px;
    height: 180px;
    position: absolute;
    top: -50px;
    right: 0;
    z-index: -1
}

.rtl-style .thumb-volunteer:before {
    right: auto;
    left: 0;
}

.cont-volunteer {
    position: relative;
    margin-top: 50px;
    padding: 40px;
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    border-radius: 16px;
}

/*.cont-volunteer:before {*/
/*    content: "";*/
/*    background: url(../images/favicon.svg);*/
/*    background-size: 100% 100%;*/
/*    width: 400px;*/
/*    height: 400px;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: -400px;*/
/*    filter: brightness(0) opacity(0.04);*/
/*}*/

.rtl-style .cont-volunteer:before {
    right: auto;
    left: -400px;
}


.form-volunteer .d-flex {
    position: relative;
    gap: 20px;
}

.form-volunteer .form-group:not(:last-child) {
    position: relative;
    margin-bottom: 30px;
}

.form-volunteer .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 15px;
    color: #000
}

.form-volunteer .d-flex .form-group {
    width: 50%;
}

.form-volunteer .form-group .form-control {
    background-color: transparent;
    height: 55px;
    border-radius: 12px;
    border: 1px solid #D9D9D9;
}

.form-volunteer .form-group textarea.form-control {
    height: 120px
}

.form-volunteer .form-group .form-control::placeholder {
    font-size: 14px;
}

.rtl-style .form-select {
    padding: 0.375rem 0.75rem 0.375rem 2.25rem;
    background-position: left 0.75rem center;
}

.btn-inputfile {
    color: var(--main-color);
    font-size: 20px;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 35px;
}

.cv-upload {
    line-height: 45px;
}

.rtl-style .btn-inputfile {
    left: 15px;
    right: auto
}

.form-volunteer .form-group .btn-site {
    margin: 0 auto;
    min-width: 350px;
    border-radius: 10px;
    height: 55px;
}

/* Style News Details */

.section_news_details {
    position: relative;
    padding: 60px 0;
    background: #f9f9f9;
}

.dta-news .thumb-news {
    margin-bottom: 20px;
}

.dta-news .thumb-news img {
    border-radius: 10px;
    width: 100%;
    min-height: 400px;
    object-fit: cover;
}

/*.dta-news h4 {*/
/*    font-size: 17px;*/
/*    color: #1B1B1F;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.dta-news p {*/
/*    font-size: 14px;*/
/*    color: #1B1B1F;*/
/*    margin-bottom: 20px;*/
/*    line-height: 1.7;*/
/*}*/

/*.dta-news strong {*/
/*    font-size: 14px;*/
/*    color: #1B1B1F;*/
/*    display: block;*/
/*    margin-bottom: 20px;*/
/*    line-height: 1.7;*/
/*}*/

.aside-news {
    padding-left: 50px;
}

.form-search .form-group {
    position: relative;
    margin-bottom: 50px;
}

.form-search .form-group .form-control {
    border: 1px solid rgba(230, 230, 230, 0.8);
    border-radius: 10px;
    padding: 15px;
    padding-left: 50px;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.rtl-style .form-search .form-group .form-control {
    padding-right: 50px;
    padding-left: unset
}

.form-search .form-group span {
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
}

.rtl-style .form-search .form-group span {
    right: 25px;
    left: auto;
}

.form-search .form-group .form-control::placeholder {
    color: rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.cont-blog {
    margin-bottom: 50px;
}

.cont-blog > h4 {
    margin-bottom: 15px;
    color: #1B1B1F;
    font-weight: 600;
    font-size: 21px;
}

.item-blog:not(:last-child) {
    margin-bottom: 20px;
}

.item-blog p a {
    color: #1B1B1F;
    font-weight: 400;
    font-size: 15px;
    display: block;
    position: relative;
    padding-left: 20px;
}

.rtl-style .item-blog p a {
    padding-left: unset;
    padding-right: 20px;
}

.item-blog:first-child p a {
    font-weight: 600;
    font-size: 15px;
}

.item-blog:first-child p a:before {
    content: "";
    background: var(--main-color);
    width: 3px;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.rtl-style .item-blog:first-child p a:before {
    right: 0;
    left: auto;
    region-break-after: always;
}

.suggestions-tags > h4 {
    margin-bottom: 15px;
    color: #1B1B1F;
    font-weight: 600;
    font-size: 16px;
}

.suggestions-tags ul li {
    display: inline-block;
    margin: 0 10px 10px 0;
}

.rtl-style .suggestions-tags ul li {
    margin: 0 0 10px 10px;
}

.suggestions-tags ul li a {
    background: #F2F2F2;
    display: block;
    padding: 10px 26px;
    border-radius: 20px;
    color: #292929;
    font-weight: 600;
    font-size: 15px;
}

/* Style Donate Page */

.section_donations_with {
    position: relative;
    padding: 80px 0;
}

.item-donations-with {
    position: relative;
    padding: 20px 20px 0;
    border: 1px solid rgb(0 0 0 / 10%);
    margin-bottom: 24px;
    height: 100%;
}
.item-donations-with figure {
    width: 50px;
    height: 50px;
}
.item-donations-with figure img {
    max-width: 100%;
    max-height: 100%;
}
.txt-donations-with h5 {
    color: #000000;
    font-size: 22px;
    margin-bottom: 10px;
}
.txt-donations-with p {
    color: #4F4F4F;
    font-size: 14px;
    line-height: 1.7;
}

.txt-head-donate .lst-donate div {
    display: flex;
    align-items: center;
    gap: 15px;
}
.txt-head-donate .lst-donate div:not(:last-child) {
    margin-bottom: 25px;
}
.lst-donate {
    margin-top: 40px;
}
.txt-head-donate .lst-donate div p {
    width: calc(100% - 50px);
    margin-bottom: 0;
}
.txt-head-donate .lst-donate strong {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #e3e3e3;
    border-radius: 50%;
}


/* Style Payment */

.section_payment {
    position: relative;
    padding: 80px 0;
}
.content-payment {
    width: 100%;
}

.choose-payment,
.cont-payment {
    background: #f2f2f2;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.choose-payment > p {
    font-weight: 500;
    margin-bottom: 10px;
    color: #2A2B2C;
    font-size: 17px;
}

.choose-payment .cbx {
    border: 1px solid rgb(192 192 192 / 50%);
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    height: 45px;
    width: 350px;
    position: relative;
    padding: 0 15px;
    margin: 0;
}

.choose-payment .cbx p {
    font-size: 17px;
}

.choose-payment .cbx span:first-child {
    position: absolute;
    border: 1px solid var(--main-color);
    background: #fff;
    border-radius: 50%;
    top: 14px;
    right: 10px;
}

.list-pay .check--accept {
    display: inline-block;
    margin-right: 30px;
}

.dt-pay {
    margin-top: 40px;
    width: 450px;
    max-width: 100%;
}

.dt-pay .form-control {
    width: 450px;
    max-width: 100%;
}

.cont-phone {
    display: none;
}

.cbx {
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    display: flex;
    margin: 30px 0;
}

.cbx p {
    color: #2A2B2C;
    font-size: 14px;
    padding-left: 10px;
    width: calc(100% - 17px);
}

.cbx p a {
    color: #2A2B2C;
    text-decoration: underline !important;
}

.cbx span {
    display: inline-block;
    vertical-align: middle;
    border: 0;
    transform: translate3d(0, 0, 0);
}

.cbx span:first-child {
    position: relative;
    width: 17px;
    height: 17px;
    border: 1px solid #eaebeb;
    background: #fcfcfc;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    transition: all 0.2s ease;
    top: 2px;
}

.cbx span:first-child svg {
    position: absolute;
    z-index: 1;
    top: 4px;
    left: 2px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

.cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 0;
    transition-delay: 0.2s;
}

.cbx span:last-child {
    margin-left: 8px;
}

.cbx span:last-child:after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    height: 1px;
    width: 100%;
    background: var(--main-color);
    transform-origin: 0 0;
    transform: scaleX(0);
}

.cbx:hover span:first-child {
    border-color: var(--main-color);
}

.inp-cbx:checked + .cbx span:first-child {
    border-color: var(--main-color);
    background: var(--main-color);
    animation: check 0.6s ease;
}

.inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
}

.inp-cbx:checked + .cbx span:first-child:before {
    transform: scale(2.2);
    opacity: 0;
    transition: all 0.6s ease;
}

.inp-cbx:checked + .cbx span:last-child {
    color: #B9B8C3;
    transition: all 0.3s ease;
}

.inp-cbx:checked + .cbx span:last-child:after {
    transform: scaleX(1);
    transition: all 0.3s ease;
}

@keyframes check {
    50% {
        transform: scale(1.2);
    }
}
.form-payment .d-flex {
    gap: 10px
}
.form-payment .d-flex .form-group {
    width: 32%;
}
.form-payment .form-group {
    position: relative;
    margin-bottom: 20px;
}
.form-payment .form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #000;
    font-size: 14px;
}
.form-payment .form-group .form-control {
    background: #FCFCFC;
    height: 55px;
    border-radius: 12px;
    border: 1px solid #E9EAEA;
    padding: 10px;
}
.total-amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f2f2f2;
    padding: 10px 8px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.dt--am {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    width: 75%;
}

.dt--am h5 {
    color: var(--main-color);
    font-size: 15px;
    text-transform: uppercase;
}

.dt--am strong {
    color: #324B4C;
}

.dt--am strong span {
    color: var(--main-color);
    display: inline-block;
    margin-left: 15px;
}
.cl--am {
    width: 25%;
}
.cl--am .btn-site {
    margin: 0;
    width: 100%;
    border-radius: 30px;
    height: 50px;
}

/* Style Donation (Success & Faild) Page */


.sec_head_donation {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
}
.sec_head_donation h2 {
    color: #000;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 5px;
    position: relative;
    text-transform: uppercase;
}
.sec_head_donation p {
    color: #00262D;
    font-size: 14px;
}
.sec_head_donation p small,
.sec_head_donation h2 span {
    color: var(--main-color);
}
.cont-success figure {
    text-align: center;
    margin-bottom: 90px;
}
.cont-success figure img {
    max-width: 150px;
}

/* Style Static Page */

.section_static_page {
    position: relative;
    padding: 60px 0;
}

.cont-static-page h4,
.cont-static-page strong {
    margin-bottom: 15px;
    line-height: 2;
    font-size: 18px;
}

.cont-static-page p {
    color: rgb(30 24 26 / 50%);
    font-size: 15px;
    margin-bottom: 60px;
    line-height: 2;
}



/* Style 404 Page */

.section_page_found {
    position: relative;
    padding: 100px 0;
}

.cont-not-found {
    text-align: center;
}

.thumb-not-found {
    margin-bottom: 50px;
}

.thumb-not-found img {
    max-width: 220px;
}

.txt-not-found h5 {
    color: var(--main-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.txt-not-found p {
    line-height: 1.7;
    color: #4f4f4f;
    font-size: 13px;
}

.ico-exc svg {
    width: 55px !important;
    height: 55px !important;
    padding: 15px;
    border: 10px solid var(--main-color);
    border-radius: 50%;
}



.ms-succ,
.ms-faild,
.ms-donate {
    text-align: center;
    padding: 50px;
}

.ico-che img {
    max-width: 80px;
}

.ico-che svg {
    height: 70px;
}

.ico-che svg path,
.ico-exc svg path {
    fill: var(--main-color)
}

.ms-succ strong,
.ms-faild strong,
.ms-donate strong {
    display: block;
    text-align: center;
    font-size: 21px;
    margin-bottom: 20px;
    color: var(--main-color);
    text-transform: uppercase;
    line-height: 1.2;
}

.ms-faild strong {
    color: var(--sub-color);
}

.ms-donate strong {
    color: var(--main-color);
}

.ms-faild .ico-che svg path {
    fill: var(--sub-color)
}

.ms-succ figure img {
    max-width: 190px;
}

.ms-succ p,
.ms-faild p,
.ms-donate p{
    font-size: 15px;
    color: #324B4C;
}

.ms-donate select {
    margin-top: 30px;   
}

#modalSuccess .modal-dialog {
    max-width: 400px;
}

#modalSuccess .modal-content {
    border-radius: 15px;
}

.closeModal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 25px;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9
}

/* Style Orphans Page */

.section_orphans_page {
    position: relative;
    padding: 30px 0 80px ;
}
.breadcrumb_orphans {
    background-size: 100% 100% !important;
    height: 400px;
    align-items: flex-end;
    justify-content: start;
    padding-bottom: 40px;
}
.breadcrumb_orphans .txt-breadcrumb {
    text-align: start;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.breadcrumb_orphans .txt-breadcrumb p {
    color: rgb(255 255 255 / 85%);
}
.breadcrumb_orphans .txt-breadcrumb ul {
    display: flex;
    gap: 15px;
}
.breadcrumb_orphans .txt-breadcrumb .btn-site {
    margin: 0;
    border-radius: 5px;
}
.form-fltr {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.form-fltr .form-group {
    position: relative;
    flex: auto;
}

.form-fltr .form-group svg {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #767676;
}
.form-fltr .form-control {
    border: 1px solid #e7e7e7;
    border-radius: 0;
    height: 50px;
}

.form-select {
    padding: 0.375rem 0.75rem 0.375rem 2.25rem;
    background-position: left 0.75rem center;
}

.form-fltr .form-group button {
    border: 1px solid #e7e7e7;
    background: transparent;
    border-radius: 0;
    height: 50px;
    padding: 5px 15px 5px 60px;
    position: relative;
}

.lst-orphans {
    position: relative;
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
}
.item-orphans {
    position: relative;
    flex: 0 0 auto;
    width: 20%;
}
.item-orphans figure {
    width: 100%;
    height: 320px;
    margin-bottom: 0;
    position: relative;
}

.item-orphans:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background: #232323;
    background: -webkit-linear-gradient(bottom, #000, transparent);
    background: linear-gradient(to top, #000, transparent);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 9;
}
.item-orphans:hover:before {
    height: 100%;
}
.item-orphans figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}
.item-orphans.guaranteed figure img {
    filter: grayscale(0);
}
.txt-orphans {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    -moz-text-align-last: left;
    text-align-last: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    opacity: 0;
    visibility: hidden;
}
.item-orphans:hover .txt-orphans {
    opacity: 1;
    z-index: 9;
    bottom: 20px;
    visibility: visible;
}
.rtl-style .txt-orphans {
    -moz-text-align-last: right;
    text-align-last: right;
}
.txt-orphans h5 {
    font-weight: 500;
    color: #fff;
    display: inline-block;
    margin: 0px 0 10px;
    font-size: 17px;
    text-transform: capitalize;
}
.txt-orphans p {
    font-size: 14px;
    margin: 0 0 10px;
    color: rgb(255 255 255 / 80%);
}
.txt-orphans .btn-site {
    margin: 0;
    border-radius: 30px;
}

/* Style Orphan Page */

.section_orphan_page {
    position: relative;
    padding: 100px 0;
}
.dta-orphans {
    position: relative;
    display: flex;
    gap: 20px;
}
.dta-orphans:before,
.dta-orphans:after {
    content: "";
    background: url(../images/favicon.svg);
    background-size: 100% 100%;
    width: 120px;
    height: 120px;
    position: absolute;
    top: -60px;
    left: -60px;
    transform: rotate(135deg);
    z-index: -1;
    filter: opacity(0.2) grayscale(1);
}
.rtl-style .dta-orphans:before {
    left: auto;
    right: -60px;
    transform: rotate(225deg);
}
.dta-orphans:after {
    left: auto;
    right: -60px;
    transform: rotate(225deg);
}
.rtl-style .dta-orphans:after {
    right: auto;
    left: -60px;
    transform: rotate(135deg);
}
.dta-orphans figure {
    width: 340px;
    margin-bottom: 0;
    padding: 15px;
    border: 1px solid #F2F6F7;
    background: #fff;
}
.dta-orphans figure img {
    border-radius: 0;
    height: 100%;
    object-fit: cover;
}
.info-orphans {
    position: relative;
    background: #F2F6F7;
    width: calc(100% - 340px);
    padding: 25px;
}
.info-orphans:before {
    content: "";
    background: url(../images/favicon.svg);
    background-size: 100% 100%;
    width: 300px;
    height: 300px;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    filter: opacity(0.1) grayscale(1);
}
.rtl-style .info-orphans:before {
    right: auto;
    left: 30px;
}
.info-orphans > div {
    margin-bottom: 10px;
    display: flex;
}
.info-orphans > div:not(:last-child) {
    margin-bottom: 20px;
}
.info-orphans strong {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #5C727D;
    width: 220px;
}
.info-orphans p {
    font-weight: 700;
    font-size: 16px;
    color: #071C1F;
}
.info-orphans .btn-site {
    margin: 0;
    position: absolute;
    top: 25px;
    right: 25px;
}
.rtl-style .info-orphans .btn-site {
    right: auto;
    left: 25px;
}
.cv-orphans {
    position: relative;
    padding: 40px 25px;
    background: #F2F6F7;
    margin: 25px 0;
}
.cv-orphans:before {
    content: "";
    background: url(../images/favicon.svg);
    background-size: 100% 100%;
    width: 140px;
    height: 140px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    filter: opacity(0.1) grayscale(1);
}
.cv-orphans p {
    font-weight: 500;
    font-size: 16px;
    color: #5C727D;
    line-height: 2;
}

.btn-more svg {
    margin-inline-end: 10px;
}


.section_orphans_more {
    position: relative;
    padding: 80px 0 0;
}
.more-orphan {
    padding: 0 60px;
    margin-bottom: 60px;
}
.more-orphan p {
    color: #666;
    line-height: 2;
    font-size: 16px;
    margin-bottom: 20px;
}
.more-orphan {
    position: relative;
    padding: 40px 25px;
    background: #F2F6F7;
    margin: 25px 0;
}
.more-orphan:before {
    content: "";
    background: url(../images/favicon.svg);
    background-size: 100% 100%;
    width: 140px;
    height: 140px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    filter: opacity(0.1) grayscale(1);
}

.more-orphan .owl-carousel,
.more-orphan iframe {
    margin-top: 30px;
}

.more-orphan h5 {
    margin-bottom: 20px;
}


/* Style Stories */

.section_stories {
    position: relative;
    padding: 80px 0;
}
.item-story {
    position: relative;
    display: block;
    height: 500px;
}
.item-story:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background: #232323;
    background: -webkit-linear-gradient(bottom, #000, transparent);
    background: linear-gradient(to top, #000, transparent);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 9;
}
.item-story:hover:before {
    height: 100%;
}
.item-story .thumb-img {
    height: 100%;
    margin-bottom: 0;
    overflow: hidden;
}
.item-story .thumb-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.txt-story {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 15px 20px 30px;
    color: #fff;
    z-index: 9;
    width: 100%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.item-story:hover .txt-story {
    bottom: 20px;
}
.txt-story h4 {
    color: #fff;
    margin-top: 15px;
}

.oth-story .item-story {
    height: 246px;
    margin-bottom: 8px;
}
.oth-story .txt-story {
    padding: 0px 10px 10px;
}
.oth-story .txt-story h4 {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}
.dta-story {
    margin-bottom: 40px;
}

.section_story .owl-carousel {
    margin-top: 40px;
}

.section_stories .row > * {
    padding-right: calc(var(--bs-gutter-x)* 0.2);
    padding-left: calc(var(--bs-gutter-x)* 0.2);
}
.section_stories .row {
    margin-right: calc(var(--bs-gutter-x)* -.2);
    margin-left: calc(var(--bs-gutter-x)* -.2);
}

.row-storie {
    position: relative;
    display: flex;
    align-items: center;
}
.row-storie:nth-child(even) {
    flex-direction: row-reverse;
}
.row-storie:hover:before {
    content: "";
    background: rgb(22 143 243 / 10%);
    width: 200%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.row-storie > div {
    width: 50%;
}
.txt-storie {
    position: relative;
    padding: 60px;
}
.txt-storie h4 {
    font-size: 36px;
    line-height: 1.5;
    color: #000;
    margin-bottom: 15px;
}
.txt-storie p {
    color: #666;
    line-height: 2;
    font-size: 16px;
    margin-bottom: 20px;
}
.txt-storie .btn-site {
    margin: 0;
    border-radius: 30px;
    height: 45px;
}

.thumb-img img {
    width: 100%;
    height: 100%;
}

.section_story {
    position: relative;
    padding: 60px 0 0;
}
.breadcrumb_story {
    height: 600px;
    align-items: flex-end;
    justify-content: start;
    padding-bottom: 40px;
}
.breadcrumb_story .txt-breadcrumb {
    text-align: start;
    width: 50%;
}
.breadcrumb_story .txt-breadcrumb h4 {
    color: #fff;
    font-size: 32px;
    line-height: 1.8;
}
.dta-story {
    position: relative;
    padding: 0 60px;
    margin-bottom: 80px;
}
.dta-story h5 {
    color: #222;
    font-size: 19px;
    margin-bottom: 40px;
}
.dta-story p {
    color: #666;
    font-size: 16px;
    line-height: 2;
}

.thumb-gallery {
    margin-bottom: 0;
    height: 420px;
    display: block;
}
.thumb-gallery img {
    height: 100%;
    object-fit: cover;
}
 .no-style {
    all: unset;
    line-height: 2;
  }
  
   .no-style p,
   .no-style span {
    padding: unset;
    margin: unset;
  }