/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

html {
    font-size:10px;
    /*scroll-behavior: smooth;*/
}
body {
    font-family: 'Alexandria';
    font-style: normal;
    overflow-x: hidden;
}
/* general */
.loading_screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999999999;
}
.loader {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.loader::after,
.loader::before {
  content: '';
  width: 48px;
  height: 48px;
  border: 2px solid #6D6D6D;
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
  animation: rotation 2s ease-in-out infinite;
}
.loader::after {
  border-color: #EF233C;
  animation-delay: 1s;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
.more {
    width: 100%;
    text-align: center;
}
.btn,
.btn-more {
    padding: 2rem 2.5rem;
    box-shadow: none;
    background: #EF233C;
    border: 1px solid #EF233C;
    color: #fff;
    font-size: 1.4rem;
    margin: 2rem 0 0;
    transition: all 0.5s ease-in-out;
    text-align: center;
    gap: 1rem;
}
.btn-default svg path, 
.btn-more svg path ,
.btn svg path {
    transition: all 0.5s ease-in-out;
}
.btn-default:hover, 
.btn-more:hover,
.btn:hover {
    background: #fff;
    color: #EF233C;
}
.btn-default:hover svg path, 
.btn-more:hover svg path ,
.btn:hover svg path {
    stroke: #EF233C;
}
.content_ a {
    color: #000;
    text-decoration: underline;
    border: 0;
}
.title {
    text-align: center;
    padding: 0 0 2rem;
}
.title h3 {
    font-size: 3rem;
}
.title p {
    font-size: 1.5rem;
    color: #6D6D6D;
    padding: 1rem;
    width: 30%;
    margin: auto;
}
.main_title {
    font-size: 3.7rem;
    font-weight: normal;
    color: #000;
    margin: 4rem 0 2rem;
}
/* header */
header {
    transition: all 0.5s ease-in-out;
}
.home header .container {
    padding: 3rem 1.5rem ;
}
header .container {
    border-top: 4px solid #EF233C;
    padding: 3rem 1.5rem 0;
}
header.fixed-header {
    background: #fff;
    z-index: 999;
    position: fixed;
    width: 100%;
    transition: all 0.5s ease-in-out;
    animation: fade 3s;
    box-shadow: 3px 10px 30px rgba(0,0,0,0.1);
}
header.fixed-header .container {
    padding: 2rem;
}
header.fixed-header .vision {
    display: none;
}
header .menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    padding: 1rem 0 0;
}
header .menu li a {
    color: #000;
    font-size: 1.2rem;
    transition: all 0.5s ease-in-out;
    font-weight: normal;
    padding: 0 2.5rem;
}
header .menu li:hover > a {
    color: #EF233C
}
header .menu ul li:hover > a {
    color: #EF233C
}
header .menu li ul {
    list-style: none;
    display: none;
    transition: all 0.5s ease-in-out;
    transform: scale(0);
    background: #fff;
    border-radius: 1rem;
    padding: 0;
}
header .menu li.menu-item-has-children:hover ul {
    display: block;
    position: absolute;
    transition: all 0.5s ease-in-out;
    transform: scale(1);
    z-index: 99;
    top: 2.3rem;
    width: 27rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    border: 1px solid #D0D0D0;
}
header .menu li.menu-item-has-children {
    position: relative;
}
header .menu li ul li a {
    padding:1.5rem;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    border-bottom: 1px solid #D0D0D0;
}
header .menu li ul li:last-of-type a {
    border: none
}
header .donate a {
    border: 1px solid #EF233C;
    background: #EF233C;
    display: block;
    padding: 1.7rem 2.5rem;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.5s ease-in-out;
}
header .donate a:hover {
    color: #EF233C;
    background: #fff;
}
header .social {
    flex-direction: row-reverse;
    display: flex;
    align-items: center;
    margin: 0;
}
header .social li {
    transition: all 0.5s ease-in-out;
}
header .social li svg {
    width: 2rem;
    height: 2rem;
}
header .social li:hover {
    transform: scale(0.9)
}
header .vision img {
    opacity: 0.6;
}
/* about__section */
.about__section {
    padding: 9rem 0;
}
.about__section .about__image .about__details--title ,
.about__section .about__details .about__details--title {
    font-size: 3.5rem;
    font-weight: bold;
    padding-bottom: 2rem;
    margin: 0;
}
.about__section .about__details .about__details--content {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.8;
    padding-left: 12rem;
}
/* services_section */
.services_section {
    background: #F5F5F5;
    padding: 7rem 0;
}
.services_section a {
    color: #000
}
.services_section .item {
    background: #fff;
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    margin: 4rem;
    border-radius: 12rem;
    gap: 2rem;
    box-shadow: 0 13px 27px rgba(0,0,0,0.07);
    border: 3px solid #F2F2F2;
    transition: all 0.5s ease-in-out;
}
.services_section .item:hover {
    transform: scale(0.9)
}
.services_section .item .caption {
    flex: 1;
}
.services_section .item h3 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    transition: all 0.5s ease-in-out;
}
.services_section .item:hover h3 {
    color:#EF233C
}
.services_section .item p {
    font-size: 1.2rem;
    font-weight: normal;
    color: #9B9B9B;
    line-height: 1.9
}
.slick-prev:before, .slick-next:before {
    display: none;
}
.slick-prev, .slick-next {
    width: 4rem;
    height: 4rem;
    background: url(../images/Down.png) no-repeat center/100%;
    position: absolute;
    /* bottom: -60px !important; */
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    background: url(../images/Down.png) no-repeat center/100%;
}
.slick-prev:hover, .slick-prev:focus,
.slick-prev {
    transform: rotate(180deg);
}
.slick-disabled {
    opacity: 0.3
}
.services_section .slick-prev {
    right: 46% !important;
    bottom: -37px !important;
    top: unset
}
.services_section .slick-next {
    right: 51% !important;
    bottom: -57px !important;
    top: unset
}
/* statistics__section */
.statistics__section {
    padding: 5rem 0px;
}
.statistics__section .item img {
    transition: all 0.5s ease-in-out;
    margin-top: 1rem;
}
.statistics__section .item:hover img {
    animation: tada 3s;
    transition: all 0.5s ease-in-out;

}
.statistics__section .item h2 {
    font-size: 4.7rem;
    color: #6D6D6D;
    margin: 1.3rem;
    font-weight: 600;
}
.statistics__section .item p {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
}
.statistics__section .image {
    margin: 7rem 0 0;
}
.statistics__section .slick-prev {
    top: 30%;
}
.statistics__section .slick-next {
    top: 42%;
}
/* doc__section */
.doc__section {
    padding: 6rem 0;
    background: #F5F5F5;
}
.doc__section .text h3 {
    color: #000;
    font-size: 3.5rem;
    line-height: 1.5;
    margin: 0 6rem 0 0;
}
.doc__section .item {
    gap: 2rem;
}
.doc__section .item a.btn:last-of-type {
    background: #fff;
    color: #EF233C;
    transition: all 0.5s ease-in-out
}
.doc__section .item a.btn:last-of-type:hover {
    background: #EF233C;
    color: #fff;
}
.doc__section .item a.btn:last-of-type svg path {
    transition: all 0.5s ease-in-out
}
.doc__section .item a.btn:last-of-type:hover svg path {
    stroke: #fff
}
.doc__section .col-xl-6:last-of-type .item {
    justify-content: flex-end;
    padding-left: 7rem;
}
/* partners_section */
.partners_section {
    padding: 4rem 0 5rem;
}
.partners_section .item .image {
    display: flex;
    justify-content: center;
    margin: 0 0 ;
    align-items: center;
    height: 10rem;
}
.partners_section .item .image img {
    transition: all 0.5s ease-in-out
}
.partners_section .item .image:hover img {
    filter: drop-shadow(0px 8px 3px rgba(0,0,0,0.3));
}
.partners_section .slick-next {
    right: auto;
    left: -2px;
}
.partners_section .slick-prev {
    right: -16px;
    top: 35px;
    z-index: 99
}
/* why__section */
.why__section {
    background: #F5F5F5;
    padding: 6rem 0;
}
.why__section .item {
    background: #fff;
    padding: 2rem 3rem;
    margin: 2rem 1rem;
    border-radius: 12rem;
    gap: 2rem;
    box-shadow: 0 13px 27px rgba(0,0,0,0.07);
    border: 3px solid #F2F2F2;
    transition: all 0.5s ease-in-out
}
.why__section .item:hover {
    transform: scale(0.95)
}
.why__section .item .caption {
    flex: 1;
}
.why__section .item h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.why__section .item p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #9B9B9B;
    line-height: 1.9
}
/* newsletter */
.home .newsletter {
    margin: 0;
}
.newsletter {
    background: #EF233C;
    padding: 4rem 0;
    margin: 6rem 0 0;
}
.newsletter .title {
    text-align: right;
    padding-right: 7rem;
}
.newsletter .title h3 {
    color: #fff;
    font-weight: bold;
}
.newsletter .title p {
    width: 100%;
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 2rem;
}
.newsletter .newsletter_form {
    padding-left: 7rem;
}
.newsletter .emaillist form {
    display: flex;
    align-items: center;
    border: 4px solid #fff;
    border-radius: 5rem;
    overflow: hidden;
    box-shadow: 0px 13px 26px rgba(0,0,0,0.16);
}
.es-field-wrap {
    width: 100%;
    margin: 0;
    height: 6rem;
}
.newsletter .emaillist form input {
    width: 100%;
    border: 0;
    height: 6rem;
    padding: 2rem;
    font-size: 1.6rem;
    background: transparent;
    color: #fff;
    line-height: 2;
}
.newsletter .emaillist form input::placeholder {
    font-size: 1.6rem;
    color: #fff;
    line-height: 2;
}
.newsletter .emaillist form input[type=submit] {
    width: fit-content;
    margin:0;
    background: #fff;
    color: #6D6D6D;
    padding: 1rem 3rem;
    border-radius: 5rem;
    font-size: 1.6rem;
    font-weight: bold;
}
.es_subscription_message.error {
    color: #fff
}
.page-title {
    border: 0;
}
.page-title:before {
    display: none
}
#searchform input {
    height: 4.3rem;
    border-left: 0;
}
#searchform .btn {
    margin: 0;
    padding: 1rem;
}
.search-page.services_section {
    background: transparent;
}
.search-page.services_section .item {
    margin: 3rem 1rem;
    text-align: center
}
/* footer */
footer {
    background: #F5F5F5;
    padding: 4.5rem 13rem 6.5rem 9rem;
}
.footer__top {
    padding-bottom: 4rem;
}
.footer__top ul {
    padding: 0;
    list-style: none;
}
.footer__top ul.menu a {
    color: #000;
    font-size: 1.4rem;
    font-weight: 300;
    padding: 0.2rem 0;
    display: block;
    transition: all 0.5s ease-in-out
}
.footer__top ul.menu a:hover {
    color: #EF233C;
}
.footer__top ul.get_in_touch {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer__top ul.get_in_touch a {
    color: #000;
    font-size: 1.4rem;
    font-weight: 300;
}
.footer__top .logo {
    margin-bottom: 1rem;
}
.footer__bottom {
    border: 1px solid #6D6D6D;
    padding: 2rem;
    margin: 0;
    border-radius: 5rem
}
.footer__bottom p {
    color: #000;
    font-size: 1.3rem;
    font-weight: normal;
    font-family: 'Janna LT';
}
.footer__bottom .rowaad span {
    padding-left: 1rem;
}
.footer__bottom .rowaad a {
    color: #000;
    font-size: 1.3rem;
    font-weight: normal;
    font-family: 'Janna LT';
}
/* breadcrumbs */
#breadcrumbs {
    margin: 0;
    padding: 2rem 0;
}
#breadcrumbs .container {
    border: 1px solid #C9C9C9;
    padding: 2rem;
    border-radius: 1.5rem;
}
#breadcrumbs a ,
#breadcrumbs h3 {
    font-size: 1.3rem;
    color: #4D4D4D;
    font-weight: 300;
}
#breadcrumbs h3 svg{
    margin: 0 0.5rem;
}
.about-page h3.main_title {
    font-size: 3.7rem;
    font-weight: normal;
    color: #000;
    margin-bottom: 2rem;
}
.about-page  p {
    line-height: 1.8;
}
/* 404 */
.error-message {
    color: #000;
    font-size: 15rem
}
.error-message:before {
    color: #000;
}
.error-message + p ,
.error-message + p +p {
    font-size: 2rem;
}
/* services page */
.services_section.services-page {
    background: transparent;
    padding:0;
}
.services_section.services-page .item {
    margin: 4rem 2rem;
    padding: 2rem 4rem;
}
.services_section.services-page a {
    color: #000;
}
/* single-services */
.services__single-page {
    padding: 1rem 0;
}
.services__single-page .col-xl-5 {
    margin: auto;
}
.services__single-page .main_title {
    font-size: 3rem;
    color: #EF233C
}
.services__single-page ul {
    padding: 0;
    margin: 5rem 0
}
.services__single-page ul li {
    background: #F7F7F8;
    padding: 1.6rem;
    border-radius: 2rem;
    font-size: 1.5rem;
    margin: 1.5rem 0;
    gap: 1rem;
}
.services__single-page .more {
    display: flex;
    justify-content: center;
}
.services__single-page .more button {
    border-radius: 2rem;
    padding: 1rem 6rem;
    margin: 0;
}
.services__single-page .gform_title {
    display: none;
}
.services__single-page .gf_step .gf_step_number ,
.services__single-page .gf_step {
    display: none !important;
}
.services__single-page .gf_step_active {
    display: block !important;
    border: 0;
    margin: 3rem 0 4rem !important;
    display: flex !important;
    justify-content: center;
}
.services__single-page .gf_step_active .gf_step_label {
    color: #EF233C !important;
    font-size: 2.5rem !important;
    font-weight: normal !important;
    padding: 0 !important;
}
.services__single-page  .gform_wrapper.gravity-theme .gf_page_steps {
    border: 0;
    text-align: center !important;
    margin: 0 auto;
}
.services__single-page .gform_wrapper .gform_fields .gfield legend {
    font-size: 1.5rem !important;
    font-family: "Janna LT";
    font-weight: bold;
    margin: 3rem 1rem 1em
}
.services__single-page .gform_wrapper .gform_fields .gfield select ,
.services__single-page .gform_wrapper .gform_fields .gfield textarea ,
.services__single-page .gform_wrapper .gform_fields .gfield input {
    border-radius: 1.5rem;
    border: none;
    padding: 1.6rem !important;
    font-size: 1.4rem !important;
    background: #F7F7F8;
    width: 100%;
}
.services__single-page .gform_wrapper.gravity-theme .gfield_description {
    font-size: 12px
}
.services__single-page .gform_wrapper .gform_fields .gfield select {
    -webkit-appearance: none; 
    appearance: none
}
.services__single-page .gform_wrapper .gform_fields .gfield input::placeholder ,
.services__single-page .gform_wrapper .gform_fields .gfield textarea::placeholder {
    color: #000;
    font-size: 1.5rem;
    font-family: "Janna LT";
    font-weight: bold;
}
.calender__input {
    position: relative;
}
.services__single-page .gform_wrapper .gform_fields .gfield .ginput_container_select {
    position: relative;
}
.services__single-page .gform_wrapper .gform_fields .gfield .ginput_container_select::after ,
.calender__input::after {
    position: absolute;
    content: "";
    top: 15px;
    left: 21px;
    width: 2rem;
    height: 2rem;
    background: url(../images/arrow-down.svg) no-repeat center/ 100%;
}
.services__single-page .gfield_radio {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.services__single-page .gfield_radio .gchoice {
    position: relative;
    width: 100%;
    text-align: center;
}
.services__single-page .gfield_radio .gchoice:first-of-type {
    margin: 0 0 0 1.5rem;
}
.services__single-page .gfield_radio input {
    height: 100%;
    position: absolute;
    opacity: 0;
}
.services__single-page .gfield_radio input:checked ~ label {
    background: #6D6D6D;
    color: #fff;
}
.services__single-page .gfield_radio label {
    width: 100%;
    padding: 2rem;
    background: #F7F7F8;
    border-radius: 1.5rem;
    font-size: 1.5rem !important;
    font-family: "Janna LT";
    font-weight: bold;
    max-width: unset !important;
}
.single-services .gform_wrapper .radio__input .gfield_radio {
    justify-content: flex-start;
}
.single-services .gform_wrapper .radio__input .gfield_radio .gchoice {
    /* flex: 1; */
    /* position: relative; */
    width: 23% !important;
}
.single-services .gform_wrapper .radio__input .gfield_radio .gchoice label {
    font-weight: bold;
    padding: 0 1rem;
    max-width: calc(100% - 32px) !important;
}
.single-services .gform_wrapper .radio__input .gfield_radio .gchoice label:after {
    content: "";
    position: absolute;
    top: -2px;
    right: -3px;
    border-radius: 50%;
    width: 2.6rem;
    height: 2.6rem;
    border: 2px solid #EF233C;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.single-services .gform_wrapper .radio__input .gfield_radio .gchoice label:before {
    content: "";
    position: absolute;
    top: 0.25rem;
    right: 0.17rem;
    border-radius: 50%;
    width: 1.6rem;
    height: 1.6rem;
    background: #EF233C;
    bottom: 0;
    left: 0;
    z-index: -1;
    display: none;
}
.single-services .gform_wrapper .radio__input .gfield_radio .gchoice label {
    color:#000;
}
.single-services .gform_wrapper .radio__input .gfield_radio .gchoice input {
    opacity:0;
    width: 100%;
    right: -2px;
}
.single-services .gform_wrapper .radio__input .gfield_radio .gchoice label {
    background: transparent;
    width: fit-content;
}
.single-services .gform_wrapper .radio__input .gfield_radio .gchoice input:checked {
}
.single-services .gform_wrapper .radio__input .gfield_radio .gchoice input:checked ~ label:before {
    display: block
}
.gform_page:first-of-type .gform_page_footer {
    flex-direction: row-reverse;
}
.services__single-page .gform_page_footer {
    /* flex-direction: row-reverse; */
    display: flex;
    justify-content: space-between;
    padding: 2rem 0 !important
}
.services__single-page .gform_page_footer input[type=submit] ,
.services__single-page .gform_page_footer input[type=button] {
    border-radius: 2rem;
    padding: 1rem 3.5rem;
    background: #EF233C;
    border: 1px solid #EF233C;
    color: #fff;
    font-size: 1.4rem;
    margin: 0 !important;
}
.services__single-page .gform_page_footer input[type=button].gform_previous_button {
    background: #000;
    color: #fff;
    border: 1px solid #fff
}
.gravity-theme.ui-datepicker .ui-datepicker-calendar th span,
.gravity-theme.ui-datepicker .ui-datepicker-header select,
.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default {
    font-size: 1.4rem !important; 
}
.gfield_required_text,
.gfield_required_asterisk {
    display: none !important;
}
.entry-content {
    padding: 0;
}
.page-id-2664 .gform_title {
    display: none;
}
.page-id-2664 .gform_wrapper.gravity-theme .gform_fields {
    display: flex;
    flex-wrap: wrap;
}
.page-id-2664 .gform_wrapper.gravity-theme .gform_fields .gfield {
    /* flex: 1; */
    width: 33%;
    position: relative;
}
.page-id-2664 .gform_wrapper.gravity-theme .gform_fields .gfield label {
    font-size: 1.6rem;
    padding: 0 1.5rem;
}
.page-id-2664 .gform_wrapper.gravity-theme .gform_fields .gfield input {
    border-radius:1rem;
    border: 1px solid #BFBFBF;
    padding: 1.7rem;
}
.page-id-2664 .gform_wrapper.gravity-theme .gform_fields .gfield input::placeholder {
    color: #000;
}
.iti__flag-container {
    right: unset !important;
    left: 0 !important;
    direction: ltr !important;
    color: #707070;
    font-size: 1.3rem;
}
.iti--separate-dial-code .iti__selected-flag {
    background: transparent !important;
}
.iti__flag-container .iti__arrow {
    display: none;
}
.upload__file {
    position: relative;
}
.upload__file .ginput_container {
    border-radius:1rem;
    padding: 1.7rem;
    position: relative;
    background: #F7F7F8;
    height: 10rem;
}
.gform_wrapper.gravity-theme .ginput_preview {
    margin: 28px 0 0 !important;
}
.services__single-page .gform_wrapper .gform_fields .gfield.upload__file .ginput_container input {
    padding: 0 !important;
    z-index: 9999999;
    position: relative;
    font-size: 0;
    top: 34px;
    border-radius: 0;
}
.upload__file  input{
    /* opacity: 0; */
}
.gform_fileupload_rules {
    display: none !important;
}
.upload__file .ginput_container + .gfield_description {
    position: absolute;
    top: 1.8rem;
    right: 2rem;
    padding: 0 !important;
    background: url(../images/upload.svg) no-repeat left 10% center/4%;
    font-size: 1.5rem !important;
    font-family: "Janna LT" !important;
    font-weight: bold;
}
/* contact-page */
.contact-page .gform_wrapper {
    padding: 6rem 2rem;
    width: 40%;
    margin: auto;
}
.contact-page .gform_wrapper .gform_fields {
    display: flex;
    flex-wrap: wrap;
}

.gform_confirmation_message {
    font-size: 2rem;
    font-weight: 400;
    text-align: center !important;
    margin: auto;
    display: flex;
    justify-content: center;
    padding: 3rem 0;
    color: #EF233C;
}
.gform_legacy_markup_wrapper .gfield_description {
    font-size: 1.2rem !important;
}
.contact-page .gform_wrapper .gform_fields .gfield {
    width: 100%;
}
.contact-page .gform_wrapper .gform_fields .gfield:last-child {
    width: 100%;
}
.contact-page .gform_wrapper .gform_fields .gfield label {
    font-size: 1.6rem;
    padding: 0 1.5rem;
}
.contact-page .gform_wrapper .gform_fields .gfield textarea ,
.contact-page .gform_wrapper .gform_fields .gfield input {
    border-radius: 1.5rem;
    border: none;
    padding: 1.6rem !important;
    font-size: 1.4rem !important;
    background: #F7F7F8
}
.contact-page .gform_wrapper .gform_fields .gfield input::placeholder ,
.contact-page .gform_wrapper .gform_fields .gfield textarea::placeholder {
    color: #000;
    font-size: 1.3rem;
    font-family: "Janna LT";
    font-weight: bold;
}
.gfield_required_text,
.gfield_required_asterisk {
    display: none !important;
}
html[dir=rtl] .gform_legacy_markup_wrapper h3.gform_title,
body.rtl .gform_legacy_markup_wrapper h3.gform_title,
.contact-page .gform_title {
    text-align: center !important;
    font-size: 3rem !important;
    font-weight: 400 !important;
    display: flex;
    justify-content: center;
    color: #EF233C;
    align-items: center;
}
.gform_legacy_markup_wrapper .gform_footer {
    text-align: center;
    display: flex;
}
.contact-page .gform_footer .btn {
    font-size: 1.6rem !important;
    padding: 1rem 2rem;
    margin: auto !important;
    border-radius: 4rem;
    text-align: right;
    background: url(../images/arrow-top.svg) no-repeat left 27% center/15% ,#EF233C;
    width: 30% !important;
}
/* bank_accounts-page */
.bank_accounts-page .item {
    border: 1px solid #D0D0D0;
    margin: 2rem 0.5rem;
    border-radius: 0.7rem;
    overflow: hidden;
}
.bank_accounts-page .item li {
    border-bottom: 1px solid #D0D0D0;
    text-align: center;
    padding: 1.5rem 1rem
}
.bank_accounts-page .item li:last-of-type {
    border: none;
    padding: 1.5rem 3rem;
}
.bank_accounts-page .item li .image {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #E2DFDF;
}
.bank_accounts-page .item li .title {
    padding: 0 1rem;
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
}
.bank_accounts-page .item li p {
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}
.bank_accounts-page .item li .btn {
    width: 100%;
    margin: 0;
}
/* governance-page */
.governance-page .item {
    max-height: 24rem;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}
.governance-page .item .name {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    background: #F8C361;
    box-shadow: 0 3px 25px #F8C361;
    padding: 1.5rem;
    color: #000;
    border-radius: 1rem;
}
.tax-governance_category  .item {
    margin: 2rem;
}
.tax-governance_category  .item .image {
    border-radius: 1rem;
    overflow: hidden;
}
.tax-governance_category  .item .caption {
    padding: 2rem;
}
.tax-governance_category  .item .caption h3 {
    color: #000;
    font-size: 2rem;
    font-weight: bold;
}
.tax-governance_category  .item .caption a {
    padding: 1rem;
    color: #000;
    background:#F8C361;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 1rem;
}
.ginput_counter,
.warningTextareaInfo {
    display: none;
}
.whatsapp-fixed {
    position: fixed;
    bottom: 7%;
    right: 3%;
    text-align: center;
}
.whatsapp-fixed span {
    display: block;
    color: #6D6D6D;
}
@media(max-width:768px) {
    html {
        font-size: 8px;
    }
    body.open__menu {
        overflow: hidden;
    }
    .main_title {
        font-size: 2.6rem;
        margin: 2rem 0;
    }
    header {
    }
    header.fixed-header .container,
    header .container {
        padding: 2rem 1.5rem;
    }
    header .vision {
        display: none;
    }
    header .donate a {
        padding: 1rem;
    }
    header .header__logo img {
        width: 60%;
    }
    header .header__logo {
        text-align: center;
    }
    .about__section {
        padding: 3rem 0;
        text-align: center;
    }
    .about__section .row {
        flex-direction: column-reverse;
    }
    .about__section .about__details .about__details--content {
        padding: 0;
    }
    .about__section .about__image img {
        width: 45%;
        margin: 2rem;
    }
    .title p {
        width: 100%;
    }
    .services_section .container {
        padding: 0;
    }
    .services_section .slick-slide .item {
        margin: 2rem 2rem 0 0;
        padding: 2rem;
        width: 100%;
    }
    .services_section .slick-slide .item .caption {
        flex: unset;
    }
    .services_section .slick-slide .item .caption h3 {
        font-size: 2rem;
    }
    .statistics__section {
        padding: 4rem 0;
    }
    .statistics__section .container {
        padding: 0;
    }
    .services_section .slick-next ,
    .statistics__section .slick-next {
        top: unset;
        bottom: -35px;
        left: 38%;
    }
    .services_section .slick-prev {
        top: unset;
        bottom: -40px !important;
        right: 38% !important;
    }
    .statistics__section .slick-prev {
        top: unset;
        bottom: -20px !important;
        right: 38% !important;
    }
    .statistics__section .item {
        margin-left: 2rem
    }
    .doc__section .text h3 {
        font-size: 2.5rem;
        text-align: center;
        margin: 0;
    }
    .doc__section .col-xl-6:last-of-type .item {
        padding: 0;
        justify-content: center;
    }
    .why__section .item p {
        font-size: 1rem
    }
    .why__section .item .caption {
        flex: unset;
    }
    .why__section .item {
        padding: 1rem 2rem;
        margin: 1rem;
    }
    .newsletter .title {
        padding: 0 0 2rem 0;
    }
    .newsletter .newsletter_form {
        padding: 0;
    }
    .newsletter .title h3 {
        font-size: 2.5rem;
    }
    .newsletter .title p {
        font-size: 1.5rem;
    }
    footer {
        padding:0;
    }
    .footer__top {
        padding: 2rem;
        background-size: cover;
    }
    .footer__top .row {
        /* flex-direction: column; */
    }
    .footer__top .col:last-of-type {
        display: flex;
        flex: 1;
        flex-basis: fit-content;
    }
    .footer__top .col-12:last-of-type {
        display: none;
    }
    .footer__bottom {
        padding: 2rem 0;
        text-align: center;
        margin: 0 1rem 2rem;
    }
    .footer__top .logo {
        text-align: center;
        margin: 2rem 0
    }
    .footer__bottom .d-flex .rowaad {
        text-align: center;
        width: 100%;
    }
    .footer__bottom .footer__right {
        text-align: right;
    }
    .footer__bottom p {
        font-size: 1.1rem;
        margin: 0;
    }
    .search-page.services_section .item {
        margin: 1rem  0;
    }
    .ls-wrapper svg {
        display: none; 
    }
    .content {
        background: transparent;
        display: block;
        height: 100%;
        overflow: hidden;
        /* width: 100%; */
    }
    .content nav {
        position: relative;
        height: 50px;
        background: transparent;
        display: inline-flex;
        justify-content: flex-end;
        align-items: center;
    }
    .content .nav-links {
        display: block;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        z-index: 99;
        right: 0;
        margin: auto;
        padding: 0;
        transition: all 0.3s;
        visibility: hidden;
        background: #fff;
    }
    .content .nav-links .search {
        background: #fff;
        padding: 2rem 0 0;
        margin: auto;
        text-align: center;
    }
    input[type=checkbox]:checked ~ .nav-links {
        /* display:block; */
        opacity: 1;
        visibility: visible;
        transform: translateY(0)
    }
    .content .nav-links .menu{
        padding: 0;
        margin: 0;
    }
    .content .nav-links .social{
        padding: 5px;
        margin: auto;
        background: #fff;
        display: flex;
        justify-content: center;
    }
    .content .nav-links .social li {
        border: 0;
    }
    .content .nav-links::before {
        background: rgba(0, 0, 0, 0.5);
        content: "";
        height: 100vh;
        left: 0;
        top: 0;
        position: absolute;
        opacity: 0;
        visibility: hidden;
        width: 100%;
        transition: all 0.3s;
        z-index: -1;
    }
    .content .nav-links li {
        border-bottom: 1px solid #D0D0D0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s;
    }
    .content .nav-links li a {
        border: none;
        background: #fff;
        color: #000;
        display: flex;
        font-size: 2rem;
        font-weight: 400;
        padding: 12px 20px;
        width: 100%;
        transition: all 0.3s;
    }
    .content .nav-links li a:hover {
        color: #EF233C;
    }
    
    input[type=checkbox] {
      position: absolute;
      opacity: 0;
      visibility: hidden;
    }
    .content input[type=checkbox]:checked + label {
        /* border: 4px solid silver; */
        /* border-radius: 50%; */
        height: 28px;
        top: 0;
        left: 0;
        width: 28px;
        transform: rotate(-135deg);
        border: none;
    }
    input[type=checkbox]:checked + label::before {
        background: #EF233C;
        top: 8px;
        left: 4px;
        width: 24px;
    }
    input[type=checkbox]:checked + label::after {
        background: #EF233C;
        opacity: 1;
        top: 8px;
        left: 4px;
        visibility: visible;
        width: 24px;
    }
    input[type=checkbox]:checked + label:hover {
        border: none;
    }
    input[type=checkbox]:checked + label:hover::before, input[type=checkbox]:checked + label:hover::after {
        background: #EF233C;
    }
    input[type=checkbox]:checked ~ .nav-links::before {
        opacity: 1;
        visibility: visible;
    }
    input[type=checkbox]:checked ~ .nav-links li {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .content label {
        background: none transparent;
        border: 3px solid #EF233C;
        border-left: 0 solid transparent;
        border-right: 0 solid transparent;
        cursor: pointer;
        display: block;
        height: 21px;
        position: relative;
        left: 0;
        width: 24px;
        transition: all 0.2s;
    }
    .content label::before {
        background: #EF233C;
        content: "";
        height: 3px;
        left: 0;
        position: absolute;
        top: 6px;
        width: 24px;
        transition: all 0.2s;
    }
    .content label::after {
        background: #EF233C;
        content: "";
        height: 3px;
        left: 0;
        position: absolute;
        top: 6px;
        opacity: 0;
        visibility: hidden;
        width: 100%;
        transform: rotate(90deg);
        transition: all 0.2s;
    }
    header .menu li.menu-item-has-children {
        position: relative;
    }
    header .menu li.menu-item-has-children:hover ul {
        position: relative;
        top: 0;
        width: 100%;
        border-radius: 0;
    }
    header .menu li.menu-item-has-children:after {
        right: unset;
        left: 3rem;
        top: 15px;
    }
    header .menu {
        flex-direction: column;
    }
    .about-page .about_content {
        padding: 0 2rem ;
        background: transparent;
    }
    .about-page .about_content .text {
        width: 100%
    }
    .about-page .vision {
        padding: 0;
    }
    .about-page .vision .d-flex {
        flex-direction: column;
    }
    .about-page .vision .image {
        margin: 0 2rem;
        padding: 2rem;
        text-align: center;
    }
    .about-page .vision .image img {
        width: 50%;
        margin: auto;
    }
    .about-page .vision .text {
        padding: 0 2rem
    }
    .achievements-page .archive .item {
        width: 50%;
        flex: unset;
    }
    .partners-page .item {
        width: 50%;
    }
    .single-services .gform_wrapper .gfield_radio {
        max-width: 100%;
    }
    .single-services .gform_wrapper legend ,
    .single-services .gform_wrapper .gfield_radio .gchoice label {
        font-size: 1.5rem !important;
    }
    .contact-page .gform_wrapper .gform_fields .gfield ,
    .page-id-2664 .gform_wrapper.gravity-theme .gform_fields .gfield {
        width: 100%;
    }
    .single__header {
        padding: 3rem 0 0
    }
    .contact-page .gform_wrapper {
        padding: 2rem 0;
        margin: 0;
        width: 100%;
    }
    .governance-page .item {
        margin: 1rem 0;
    }
    .governance-page .item .name {
        padding: 0.5rem;
    }
}
@media(max-width: 768px ) and (min-width: 500px) {
    html {
        font-size: 8px;
    }
    .contact-page .gform_footer .btn {
        width: 20% !important
    }
    .upload__file .ginput_container + .gfield_description {
        background-size: 3%;
    }
    .footer__top .emaillist form input.es_txt_email {
        /* background-size: 5%; */
    }
    .col {
        flex-grow: 2;
        max-width: 50%;
        width: 50%;
    }
    .footer__top .row {
        flex-direction: revert
    }
}
@media(max-width: 991px) and (min-width: 768px) {
    html {
        font-size: 8px;
    }
   
}
@media(max-width: 1191px) and (min-width: 992px) {
    html {
        font-size: 8px;
    }
    .footer__top {
        padding-top: 4.5rem;
    }
    .partners-page .item .image {
        padding: 1.4rem;
    }
    .partners-page .item .image img {
        width: 72%;
    }
}
@media(max-width: 1366px) and (min-width: 1191px) {
    html {
        /* font-size: 11px; */
    }
}
@media(max-width: 1366px) and (min-width: 1290px) {
    html {
        font-size: 11px;
    }
    .programs {
        padding-top: 5rem;
    }
    .about-page .about_content {
        padding-right: 12rem;
    }
}

.js .main-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0;
	background: rgba(0,0,0,0.3);
}

/* Layout for search container */
.search__wraper {
	padding: 20rem;
}

.js .search__wraper {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 100%;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	background: #fff;
}

.js .search__wraper::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #fff;
}

.btn--search-close {
	font-size: 2em;
	position: fixed;
	z-index: 1001;
	top: 1.25em;
	left: 1.25em;
	box-shadow:none
}

.search__input {
	font-family: inherit;
	font-size: 4rem;
	line-height: 1;
	display: inline-block;
	box-sizing: border-box;
	width: 100%;
	padding: 0.05em 0;
	color: #000;
	border: none;
	border-bottom: 4px solid #EF233C;
}

.search__input::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: #969696;
}

.search__input::-moz-placeholder {
	opacity: 1;
	/* Mozilla Firefox 19+ */
	color: #969696;
}

.search__input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #969696;
}

.search__input::-webkit-search-cancel-button,
.search__input::-webkit-search-decoration {
	-webkit-appearance: none;
}

.search__input::-ms-clear {
	display: none;
}

.search__info {
	font-size: 1.5rem;
	font-weight: bold;
	display: block;
	width: 50%;
	padding: 0.85em 0;
	color: #333;
}

.search__related {
	display: flex;
	width: 35%;
	padding: 4em 0 0 0;
	pointer-events: none;
}

.search__suggestion h3 {
	font-size: 1.35em;
	margin: 0;
}

.search__suggestion h3::before {
	content: '\21FE';
	display: inline-block;
	padding: 0 0 0 0.5em;
}

.search__suggestion p {
	font-size: 1.15em;
	line-height: 1.4;
	margin: 0.75em 0 0 0;
	color: #ff4848;
}

/************************/
/* Transitions 			*/
/************************/

.js .main-wrap::after {
	transition: opacity 0.3s;
	transition-timing-function: ease-out;
}

.js .main-wrap--overlay::after {
	opacity: 1;
	transition-delay: 0s;
}

.js .search__wraper {
	pointer-events: none;
	transition: transform 0.7s;
	transition-delay: 0.4s;
	transition-timing-function: ease-out;
}

.js .search--open {
	pointer-events: auto;
	transform: translate3d(100%,0,0);
	transition-delay: 0s;
}

.js .search__wraper::after {
	transition: transform 0.7s;
	transition-timing-function: ease-out;
}

.js .search--open::after {
	transform: translate3d(-100%,0,0);
	transition-delay: 0.4s;
}

.js .btn--search-close {
	transition: opacity 0.1s;
	transition-delay: 0.3s;
	border: none;
	background: no-repeat;
}

@media screen and (max-width: 40em) {
	.btn--search-close {
		font-size: 1.25em;
	}
	.search__related {
		font-size: 80%;
		width: 75%;
	}
	.search__input {
		font-size: 2em;
		width: 90%;
		border-width: 2px;
		padding: 9px;
	}
	.search__info {
		width: 90%;
	}
}

.js .main-wrap::after {
	content: '';
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0;
	background: rgba(0,0,0,0.3);
	z-index: 999;
}

/* Layout for search container */
.menu__wraper {
	padding: 5rem;
}
.menu__wraper li {
}
.menu__wraper li a {
	font-size:1.7rem;
	line-height:3;
	color:#777;
	text-transform:uppercase;
	font-weight:700;
	transition:all 0.5s ease-in-out;
	display:inline-block;
	position:relative;
}
/* .menu__wraper li a:after {
    width:0;
    height:2px;
    content:"";
    position:absolute;
    right:0;
    top:45%;
    background:#89c144;
	transition:all 0.5s ease-in-out;
} */
/* .menu__wraper li:hover a:after {
    width:100%
} */
.js .menu__wraper {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 100%;
	overflow: hidden;
	width: 30%;
	height: 100vh;
	background: #fff;
}

.js .menu__wraper::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #fff;
}

.btn--menu-close {
	font-size: 2em;
	position: fixed;
	z-index: 1001;
	top: 1.25em;
	left: 1.25em;
	box-shadow:none
}

/************************/
/* Transitions 			*/
/************************/

.js .main-wrap::after {
	transition: opacity 0.3s;
	transition-timing-function: ease-out;
}

.js .main-wrap--overlay::after {
	opacity: 1;
	transition-delay: 0s;
}

.js .menu__wraper {
	pointer-events: none;
	transition: transform 0.7s;
	transition-delay: 0.4s;
	transition-timing-function: ease-out;
}

.js .menu--open {
	pointer-events: auto;
	transform: translate3d(100%,0,0);
	transition-delay: 0s;
}

.js .menu__wraper::after {
	transition: transform 0.7s;
	transition-timing-function: ease-out;
}

.js .menu--open::after {
	transform: translate3d(-100%,0,0);
	transition-delay: 0.7s;
}

.js .btn--menu-close {
	transition: opacity 0.1s;
	transition-delay: 0.3s;
}

@media screen and (max-width: 40em) {
	.btn--menu-close {
		font-size: 1.25em;
	}
}

.main-wrap {
	position: relative;
}

.btn:focus {
	outline: none;
}

.btn--search {
	font-size: 1.5em;
	box-shadow: none;
	border: none;
	background: transparent;
}

.btn--hidden {
	pointer-events: none;
	opacity: 0;
}


/* Reset Search Input */


.search__input:focus {
	outline: none;
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}


/* Icons */

.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}

.codrops-links {
	position: relative;
	display: flex;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
}

.codrops-links::after {
	content: '';
	position: absolute;
	top: 15%;
	right: 50%;
	width: 2px;
	height: 70%;
	opacity: 0.1;
	background: currentColor;
	transform: rotate3d(0, 0, 1, 22.5deg);
}

.codrops-icon {
	display: inline-block;
	margin: 0.5em;
	padding: 0.5em;
}


/* Deco lines */

.decolines {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	pointer-events: none;
}

.decoline {
	position: absolute;
	width: 1px;
	height: 100%;
	background: #ddd;
}

.decoline:first-child {
	left: 88em;
}

.decoline:nth-child(2) {
	left: 68em;
}

.decoline:nth-child(3) {
	left: 48em;
}

.decoline:nth-child(4) {
	left: 28em;
}

.decoline:nth-child(5) {
	left: 8em;
}


.demo-6 { color: #ff4848; }
.demo-6 main { background-color: #fff; background-image: url(../img/bg_5.svg); }
.demo-6 a, .demo-6 .btn { color: #000; }

@media screen and (max-width: 40em) {
}

