@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');
:root{
    --bg-orange:#fe3c47;
    --bg-gary:#f9fafb ;
    --bg-light-gary:#f8f9fa;
    --secondary-font:"Dosis", sans-serif;
    --fs-22:22px;
    --fs-28:28px;
    --fs-18:18px;
    
}

.bg-light-gary{
    background-color: var(--bg-light-gary) !important;
}
.fs-22{
    font-size: var(--fs-22);
}
.fs-28{
    font-size: var(--fs-28);
}
.fs-18{
    font-size: var(--fs-18);
    color: #777777;
}
.btn:focus {
    outline: none;
    box-shadow: none;
}
.card{
        border: 1px solid #eee !important;
}
.card-footer{
     border-top: 1px solid #eee !important;
}


.btn-primary {
    background-color: #000 !important;
    border: none;
}
.bg-gary{
    background-color: var(--bg-gary) !important;
}

.btn-danger {
    color: #fff !important;
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
}

.support-btn {
    height: 39px;
    padding: 10px;
    display: inline-flex;
}

.support-input-group {
    margin-top: 15px;
}

.error {
    color: #dc3545;
}

.input-group label.error {
    top: 100%;
    position: absolute;
}


.timepicki.time_pick input {
    width: 100%;
    border: 1px solid #ced4da;
}

.timepicki .timepicker_wrap {
    margin-bottom: 30px;
    background-color: #ffffff;
    box-shadow: 0px 5px 20px 0 rgba(123, 123, 123, 0.25);
}

.timepicki .timepicker_wrap .prev,
.timepicki .timepicker_wrap .next {
    width: 58px;
    padding: 17px;
}

.timepicki .timepicker_wrap .timepicki-input {
    padding: 15px 10px;
    font-size: 16px !important;
    font-weight: 700;
}

.pincode-input-container input:focus,
.pincode-input-container input:active {
    box-shadow: none;
    border-color: #7367f0;
}

.pincode-input-container input~input:focus,
.pincode-input-container input~input:active {
    border-left-width: 1px;
}

.custom-switch .custom-control-label::after {
    top: calc(.25rem + -2px);
}

.timepicker_wrap .action-next,
.timepicker_wrap .action-prev {
    position: relative;
}

.timepicker_wrap .action-next::before,
.timepicker_wrap .action-prev::before {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    color: #000000;
    left: 23px;
}

.timepicker_wrap .action-next::before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    top: 0;
}

.timepicker_wrap .action-prev::before {
    bottom: 0;
}

.cookies-card {
    width: 520px;
    padding: 30px;
    color: #1E2337;
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 999999;
    transition: all .5s;
    background: #d1d1d1;
    border-radius: 5px;
}

.cookies-card.hide {
    bottom: -500px !important;
}

.radius--10px {
    border-radius: 10px;
}

.cookies-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #6e6f70;
    color: #fff;
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
}

.cookies-btn {
    color: #363636;
    text-decoration: none;
    padding: 10px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 999px;
}

.cookies-btn:hover {
    color: #363636;
}

@media (max-width: 767px) {
    .cookies-card {
        width: 100%;
        left: 0;
        bottom: 0;
        font-size: 14px;
        padding: 15px;
    }
}

label.required:after {
    content: '*';
    color: #dc3545 !important;
    margin-left: 2px;
}


/*=========== Custom Dropdown Css Start=========== */
.custom--dropdown {
    margin-left: 20px;
}

@media screen and (max-width: 1199px) {
    .custom--dropdown {
        margin-left: 10px;
    }
}

.custom--dropdown.open>.custom--dropdown__selected::before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.custom--dropdown>.custom--dropdown__selected {
    background-color: transparent;
    position: relative;
    cursor: pointer;
    padding: 10px;
    font-size: 14px;
    padding-right: 30px;
}

.custom--dropdown>.custom--dropdown__selected::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    content: "\f107";
    display: inline-block;
    position: absolute;
    margin-left: auto;
    width: unset !important;
    right: 10px;
    color: #fff;
    font-size: 12px;
}

@media screen and (max-width: 1399px) {
    .custom--dropdown>.custom--dropdown__selected::before {
        right: 2px;
    }
}

@media screen and (max-width: 1399px) {
    .custom--dropdown>.custom--dropdown__selected {
        padding-right: 15px;
    }
}

.custom--dropdown>.dropdown-list {
    position: absolute;
    background-color: hsl(var(--black));
    width: 100%;
    border-radius: 3px;
    -webkit-box-shadow: 0px 12px 24px rgba(21, 18, 51, 0.13);
    box-shadow: 0px 12px 24px rgba(21, 18, 51, 0.13);
    opacity: 0;
    overflow: hidden;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    transform-origin: top center;
    top: 100%;
    margin-top: 5px;
    z-index: -1;
    visibility: hidden;
    max-height: 230px;
    width: 105px;
    overflow-y: auto !important;
}

@media screen and (max-width: 991px) {
    .custom--dropdown>.dropdown-list {
        left: auto;
        right: 0;
    }
}

.custom--dropdown .dropdown-list__link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.custom--dropdown>.dropdown-list::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.custom--dropdown>.dropdown-list::-webkit-scrollbar-thumb {
    background-color: hsl(var(--black) / 0.15);
}

.custom--dropdown>.dropdown-list::-webkit-scrollbar-thumb {
    background-color: hsl(var(--black) / 0.3);
}

.custom--dropdown.open>.dropdown-list {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    z-index: 999 !important;
    background-color: #031e66 !important;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

.dropdown-list>.dropdown-list__item {
    padding: 10px 8px !important;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 14px;
}

.dropdown-list>.dropdown-list__item:hover {
    background-color: #ff6a00 !important;
}

.dropdown-list>.dropdown-list__item:hover .text {
    color: #fff !important;
}

.dropdown-list>.dropdown-list__item,
.custom--dropdown>.custom--dropdown__selected {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dropdown-list>.dropdown-list__item .thumb img,
.custom--dropdown>.custom--dropdown__selected .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover !important;
    object-fit: cover !important;
}

.dropdown-list>.dropdown-list__item .thumb img,
.custom--dropdown>.custom--dropdown__selected .thumb img {
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    overflow: hidden;
    margin-right: 5px;
    border-radius: 50%;
}

.dropdown-list>.dropdown-list__item .text,
.custom--dropdown>.custom--dropdown__selected .text {
    width: calc(100% - 24px);
    padding-left: 4px;
    color: #fff !important;
}

.dropdown-list__item .icon {
    width: 24px;
    font-size: 24px;
    color: #fff;
}

/*=========== Custom Dropdown Css End=========== */

/*=========== Language Start =========== */

.dropdown-lang {
    margin-left: 30px !important;
}

@media (max-width: 1199px) {
    .dropdown-lang {
        margin-left: 0px !important;
    }
}

.dropdown-lang .language-btn .flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.dropdown-lang .language-btn::after {
    color: #fff !important;
}

.dropdown-lang .language-text {
    color: hsl(var(--white));
    font-size: 16px;
}

.dropdown-lang .dropdown-menu {
    width: 112px !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0px !important;
    max-height: 370px;
    overflow-y: auto;
    background-color: #ddd;
    z-index: 999;
    box-shadow: var(--box-shadow);
    transform: inherit;
    min-width: 130px !important;
}

.dropdown-lang .dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
}

.dropdown-lang .dropdown-menu a {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: hsl(var(--white)) !important;
    transition: 0.3s;
}

@media (max-width: 575px) {
    .dropdown-lang .dropdown-menu a:last-child {
        border-bottom: none;
    }
}

.dropdown-lang .dropdown-menu li:hover {
    color: #fff !important;
    background-color: #00b580 !important;
}

.dropdown-lang .dropdown-menu li {
    border-bottom: none !important;
    padding: 4px 8px !important;
}

.dropdown-lang .dropdown-menu li:last-child a {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.dropdown-lang .dropdown-menu a .flag {
    width: 20px;
    margin-right: 10px;
    height: 15px;
}

.dropdown-lang .dropdown-menu li:last-child a {
    margin-bottom: 0px;
}

.dropdown-lang .a {
    color: #fff !important;
}

@media (max-width: 575px) {
    .dropdown-lang .dropdown-menu a {
        padding: 0px !important;
    }
}

/*=========== Language End =========== */




/* color var */
.header{
    background-color: var(--bg-orange) !important;
}

.btn--base{
    background-color: var(--bg-orange) !important;
}

.social__icons a i.lab{
    width: 24px;
    height: 24px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    text-align: center;
    color: #666;
    background: #fafafa;
    line-height: 24px;
    font-size: 14px;
}

.social__icons i{
    color: #ffffff;
    margin-right: 5px;
    display: inline-block;
}

.slide_h2 {
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
    font-family: "Source Sans Pro", sans-serif !important;
    font-size: clamp(28px, 5vw, 60px) !important;
    line-height: clamp(36px, 6vw, 70px) !important;
    font-weight: 700;
    margin: 24px 0 0;
    color: #1a1a1a;
    text-transform: uppercase;
}

.slide_h3 {
    font-family: "Source Sans Pro", sans-serif !important;
    color: #1a1a1a;
    font-size: clamp(18px, 3vw, 32px) !important;
    line-height: clamp(28px, 4vw, 50px);
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    margin: 16px 0 0;
}

.btn-slider{
    font-size: 18px;
    margin-top: 40px;
    background: var(--bg-orange);
    border: 2px solid var(--bg-orange);
    color: #ffffff;
    line-height: 32px;
    padding: 10px 24px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.03em;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}
.btn-slider:hover{
    background: var(--bg-orange);
    border: 2px solid var(--bg-orange);
    color: #ffffff;
}

.slide_border::before{
    bottom: 0px;
    left: 0;
    border-top: 0px !important;
    border-right: 0px !important;
}
.slide_border::before{
    content: "";
    width: 130px;
    height: 130px;
    background: transparent;
    border: 5px solid var(--bg-orange);
    position: absolute;
    z-index: 999;
}

.slide_border::after{
    top: 0px;
    right: 0;
    border-left: 0px !important;
    border-bottom: 0px !important;
}
.slide_border::after{
    content: "";
    width: 130px;
    height: 130px;
    background: transparent;
    border: 5px solid var(--bg-orange);
    position: absolute;
    z-index: 999;
}

.slider_card_bg{
    background: rgba(255, 255, 255, 0.9);
}

/* Hide arrows initially */
/* Container needs to allow overflow for arrows to go outside */
.multiple-items {
    position: relative;
    overflow: visible;
  }
  
  /* Arrow base styles */
  .custom-prev,
  .custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--bg-orange);
    color: #ffffff;
  }
  
  /* Position outside the box */
  .custom-prev {
    left: -100px;  /* Adjust this to push arrow further outside */
  }
  .custom-next {
    right: -100px;
  }
  
  /* Show on hover */
  .hero_section:hover .custom-prev,
  .hero_section:hover .custom-next {
    opacity: 1;
    pointer-events: auto;
  }

  .cta-section{
        background: #f8f9fa;
    padding: 40px 0;
    color: #333333;
  }
  

  .btn-cta-1{
        background: var(--bg-orange);
    color: #ffffff;
    border: 3px solid var(--bg-orange);
    font-size: 22px;
    font-weight: 700;
    padding-left: 28px;
    padding-right: 28px;
    text-transform: uppercase;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    transition: all 0.3s ease-out 0.2s;
  }
  .btn-cta-1:hover{
     background: #ffffff ;
    color: var(--bg-orange);
     border: 3px solid var(--bg-orange);
  }
 .caption.text--base{
    color: #FAC42D !important;
  }
  .btn-cta-2{
    background: #fe3c47;
    border: 2px solid #fe3c47;
    color: #ffffff;
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    padding: 12px 25px;
    position: relative;
    text-transform: uppercase;
    transition: all 0.3s ease-out 0s;
    margin-top: 25px;
  }
  .btn-cta-2{
    color: #ffffff !important;
  }

  .preloader div:before {
    background-color: #ffffff !important;
  }
  
  .cta-section h2{
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #1a1a1a;
    font-weight: 600;
  }

  .custom--table thead, .header, .header.menu-fixed .header__bottom, .language-select option, .inner-hero::after, .avaiable-blood-single, .about-item__icon, .donor-card::before, .work-item__icon, .testimonial-card, .sidebar-widget__header, .contact-form .select option, .section--bg2, .preloader-holder, .blood-donor-info-area{
    background-color: var(--bg-orange) !important;
  }
.about-item__icon,.work-item__icon i{
color: #ffffff !important;
  }
  .overview-item__icon{
    color: var(--bg-orange) !important;
  }
  .about-thumb,.play-btn{
    background-color: var(--bg-orange) !important;
  }
  .scroll-to-top{
    background-color: var(--bg-orange) !important;
  }
.work-item__icon .step{
    background-color: #ffffff !important;
    color: var(--bg-orange) !important;
}
.text-gary{
    color: #808080 !important;
}
.sc-icons a{
    display: inline-block;
    height: 40px;
    line-height: 40px;
    margin: 0 2px;
    text-align: center;
    width: 40px;
    color: var(--bg-orange);
    border: 1px solid #eee;
    background: #ffffff;
}
  /* .work-item__icon{
    background-color: var(--bg-orange) !important;
  }
  .work-item__icon i{
    color: #fff !important;
  } */

  .camp-title{
    font-size: clamp(2rem, 5vw + 1rem, 4.5rem) !important;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 65px;
    font-weight: 500;
}

.event-latest .event-details{
    padding: 10px 15px 0 0;
}

.event-latest .latest-date{
        border: 2px solid #333333;
    border-radius: 0px;
    background: #333333;
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    padding: 2px 20px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}
  

.event-latest .event-latest-details a{
    border-right: 1px solid #a1a1a1;
    color: #6e6e6e;
    display: inline-block;
    line-height: 14px;
    margin-right: 3px;
    padding-right: 8px;
    transition: all 0.3s ease 0s;
}
.event-latest .event-latest-details a:last-child {
    border-right: medium none;
    margin-right: 0;
    padding-right: 0;
}


.event-latest .event-latest-details {
    font-size: 14px;
    margin-bottom: 16px;
}
.event-latest .event-latest-title a {
    color: #fe3c47;
}
.event-latest .event-details {
    padding: 10px 15px 0 0;
}
@media only screen and (max-width: 991px) {
    .event-latest .event-details {
        padding: 12px 6px 0 12px;
    }
}

a.btn-load-more {
    margin-bottom: -36px;
    margin-top: 48px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    background: transparent;
    color: #fe3c47;
    background: #ffffff;
    border: 1px solid #fe3c47;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    -webkit-transition: 0.3s 0.2s ease-out;
    -moz-transition: 0.3s 0.2s ease-out;
    -o-transition: 0.3s 0.2s ease-out;
    transition: 0.3s 0.2s ease-out;
}
a.btn-load-more:hover {
    color: #ffffff;
    background: #fe3c47;
    border: 1px solid #fe3c47;
}
.img-cards-main .gallery-img {
    display: block;
    position: relative;
    max-width: 100%;
    padding: 6px;
}
.img-cards-main {
    display: block;
    overflow: hidden;
    position: relative;
        transition: all 0.3s ease-out;
}
.gallery-img{
    margin: 0px !important;
}

.img-cards-main:hover .gallery-img:before {
    background: rgba(237, 47, 44, 0.5);
    width: 100%;
    height: -webkit-fill-available;
}
.img-cards-main .gallery-img::before{
 background: rgba(237, 47, 44, 0.1);
    width: 100%;
    height: 0px;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.img-cards-main:hover .gallery-img:after {
    opacity: 1;
    top: 50%;
    left: 50%;
    margin-top: -24px;
}
.img-cards-main .gallery-img::after{
        font-family: FontAwesome;
    content: "\f1c5";
    position: absolute;
    right: 150%;
    margin-left: -21px;
    bottom: -64px;
    background: #ffffff;
    color: #fe3c47;
    text-align: center;
    width: 42px;
    height: 42px;
    line-height: 42px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.img-cards-main .gallery-img img{
        width: 100%;
    max-width: 100%;
    display: block;
    opacity: 1;
    -webkit-transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
}

.footer .footer-contact-list li .icon i{
    color: var(--bg-orange) !important;
}
.footer-widget__title::after{
    background-color: var(--bg-orange) !important;
}
.text-orange{
    color: var(--bg-orange) !important;
}

.footer-links-list li a:hover{
    color: var(--bg-orange) !important;
}
.btn--base, .btn--base:hover, body::-webkit-scrollbar-thumb, .scroll-to-top, .about-thumb .play-btn, .donor-card,  .blog-post__meta .tag, .footer-widget__title::after, .subscribe-form button, .contact-wrapper-content > .title::after, .preloader div:before {
    background-color: var(--bg-orange) !important;
}

.event-content-title {
    font-size: 24px;
    border-bottom: 3px solid #eeeeee;
    color: #5c5c5c;
    padding-bottom: 15px;
    position: relative;
}
.event-content-title:after {
    bottom: -3px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 32px;
    background: #fe3c47;
}
.event-content-info {
    font-size: 14px;
}
.event-sub-content-title {
    margin-top: 12px !important;
    font-weight: bold;
    display: block;
}
.event-content-title + .event-content-info {
    margin-top: 12px;
}
.event-sub-content-title em.date {
    font-weight: normal;
    border-bottom: 1px dashed #b3b3b3;
    cursor: help;
}