
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 01. Variables */
:root{
    --color-red: #d10b27;
    --color-blue: #302c51;
    --color-body: #757575;
    --color-green: #23b187;
    --color-white: #fff;
    --font-family: "Times New Roman", serif;
    /* Transitions */
    --hover-up: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

/* 02. General Styling */
body{
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--color-body);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent
}
*:focus,
select:focus,
.custom-select:focus,
button:focus,
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
  outline: none !important;
  box-shadow: none !important;
}

a,a:link{
    text-decoration: none;
    transition: all 0.5s ease;
}
.header__text{
    margin-bottom: 30px;
}
.header__text h2{
    font-weight: bold;
}
.header__text h2 span{
    color: var(--color-red);
}
.card:hover{
    transform: translateY(-20px);
}
.p50{
    padding: 50px 0px;
}
.p100{
    padding: 100px 0px;
}
.card{
    transition: all 0.5s ease;
    margin-bottom: 20px;
}
p{
    color: var(--color-body);
    font-size: 18px;
}
.badge-primary{
    background-color: var(--color-red);
}
.badge-success{
    background-color: var(--color-green);
}
.btn-primary{
    background-color: var(--color-red);
    border: none;
}
.btn-primary:hover{
    background-color: var(--color-blue);
}
h1,h2,h3,h4,h5,h6{
    font-weight: bold;
    color: var(--color-blue);
}
.card.card__outline{
    padding: 50px 0px !important;
    border: 2px dotted var(--color-red) !important;
}
/* <!-- HTML !-->
<button class="button-64" role="button"><span class="text">Button 64</span></button> */

/* CSS */
.main-nav nav .navbar-nav .nav-item.button-64{
    padding: 0px 5px !important;
}
/* CSS */
.button-30 {
  align-items: center;
  appearance: none;
  background-color: #FCFCFD;
  border-radius: 4px;
  border-width: 0;
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,#D6D6E7 0 -3px 0 inset;
  box-sizing: border-box;
  color: #36395A;
  cursor: pointer;
  display: inline-flex;
  font-family: "JetBrains Mono",monospace;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow .15s,transform .15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow,transform;
  font-size: 18px;
}

.button-30:focus {
  box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.button-30:hover {
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
  transform: translateY(-2px);
}

.button-30:active {
  box-shadow: #D6D6E7 0 3px 7px inset;
  transform: translateY(2px);
}
/* Breadcrumb */
.breadscrumb__wrapper{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0px;
    position: relative;
    margin-top: 50px;
}
.breadscrumb__wrapper .crumb__text{
    color: var(--color-white);
    z-index: 9999;
}
.breadscrumb__wrapper h1{
    font-weight: bold;
    font-size: 42px;
    color: var(--color-white);
}
.breadscrumb__wrapper a{
    color: var(--color-white);
    font-size: 22px;
}

/* Blog */
.ci-blog__wrapper{
    padding-bottom: 50px;
}
.ci-blog__articles .card{
    border: none;
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0px 10px 25px 0px rgba(37, 42, 52, 0.08);
    border-radius: 10px;
}
.ci-blog__articles .card hr{
    border: none;
    border-top: 5px dotted var(--color-red);
}
.ci-blog__articles .card .blog__image img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}
.ci-blog__articles .card .blog__meta{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    background-color: rgb(255, 209, 129);
    border-radius: 10px;
    margin-top: 20px;
    font-size: 14px;
}
.ci-blog__articles .card .date,
.ci-blog__articles .card .author{
    margin: 10px;
}
.ci-blog__articles .card .body-text{
    padding-left: 10px;
    padding-right: 10px;
}
/* .ci-blog__articles .card .blog__data{
    padding: 0px 20px 20px 20px;
}
.ci-blog__articles .card .date{
    text-align: center;
    background: var(--color-red);
    max-width: max-content;
    padding: 10px;
    border-radius: 5px;
    margin-top: -30px;
    margin-left: 20px;
    margin-right: 20px;
}
.ci-blog__articles .card .date span{
    display: block;
    font-weight: 500;
    color: var(--color-white);
} */
.ci-blog__articles .card .comments{
    margin-top: 10px;
}
.ci-blog__articles .card .comments span{
    font-size: 14px;
}
.ci-blog__articles .card h5{
    margin-top: 20px;
    line-height: 1.3;
}
.ci-blog__articles .card h5 a{
    color: var(--color-blue);
    font-weight: bolder;
    font-size: 22px;
}
.ci-blog__articles .card h5 a:hover{
    color: var(--color-red);
}
.ci-blog__articles .card .blog__link a{
    color: var(--color-body);
    font-weight: bold;
}
.ci-blog__articles .card .blog__link a i{
    color: var(--color-red);
}
.ci-blog__articles .card .blog__link a:hover{
    color: var(--color-red);
}
.ci-blog__articles .card .category__widget{
    background: var(--color-red);
    max-width: fit-content;
    padding: 5px 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.ci-blog__articles .card .category__widget a{
    color: var(--color-white);
}
.ci-blog__details .blog__image img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}
.ci-blog__details .badge{
    padding: 5px 20px;
}
.ci-blog__details .card{
    border: none;
}
.ci-blog__details .blog__meta{
    margin-bottom: 20px;
}
.ci-blog__details .blog__sidebar{
    background-color: #f4f8f7;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}
.ci-blog__details .blog__sidebar .logo{
    width: 80px;
    /* height: 50px; */
    margin: auto;
    margin-bottom: 20px;
}
.ci-blog__details .blog__sidebar .social__links i{
    font-size: 18px;
    margin: 10px;
    color: var(--color-red);
}
.ci-blog__details .recent__articles img{
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}
.ci-blog__details .recent__articles h5 a{
    color: var(--color-red);
}
.ci-blog__details .recent__articles h5 a:hover{
    color: var(--color-blue);
    transition: all 0.3s ease-in-out;
}
/* Event */
.stf-event__articles .card{
    /* padding: 0;
    position: relative;
    border-radius: 10px; */
    background: url(//s.ytimg.com/yt/imgbin/www-refreshbg-vflC3wnbM.png) 0;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    transition: 0.3s;
    box-shadow: 0px 10px 25px 0px rgba(37, 42, 52, 0.08);
    border: 0px;
}
.stf-event__articles .card .card-body{
    padding: 0;
}

.stf-event__articles .card .event__image{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}
.stf-event__articles .event__date{
    background-color: var(--color-white);
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.stf-event__articles .event__link a{
    color: var(--color-red);
}
/* .stf-event__articles .card .event__meta{
    position: absolute;
    z-index: 2;
    top: 25px;
    left: 25px;
    right: 18px;
    color: var(--color-white);
} */
/* .stf-event__articles .card .event__meta a{
    color: var(--color-white);
    font-weight: bold;
    font-size: 22px;
} */
/* .stf-event__articles .div__overlay{
    position: absolute;
    background-color: var(--color-blue);
    height: 100%;
    width: 100%;
    z-index: 0;
    border-radius: 10px;
    opacity: 0.5;
} */


/* Gallery */
.stf-gallery__articles .card{
    border-radius: 10px;
    padding: 0px;
    position: relative;
    cursor: pointer;
}
.stf-gallery__articles .card .event__image img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}
.stf-gallery__articles .card .div__overlay{
    position: absolute;
    background-color: var(--color-blue);
    height: 100%;
    width: 100%;
    z-index: 1;
    border-radius: 10px;
    opacity: 0.5;
    display: none;
    transition : 0.5s ease-in-out;
}
.stf-gallery__articles .card:hover .div__overlay,
.stf-gallery__articles .card:hover .overlay__text{
    display: block;
    transition-delay: 0.2s;
}
.stf-gallery__articles .card .overlay__text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: none;
}
.stf-gallery__articles .card .overlay__text h4{
    color: var(--color-white);
}
.plyr{
    border-radius: 10px;
}
.video__gallery .card{
    border: none;
}
.video__gallery .card .video__name{
    margin-top: 15px;
}
.plyr__video-embed iframe, .plyr__video-wrapper--fixed-ratio video{
    border-radius: 10px;
    height: 200px;
}

/* Counters */
.counters__row .card{
    background-color: rgba(209,11,39,0.1);;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 #dddddd8c;
    padding: 10px;
    border: none;
}

.counters__row .card h3{
    font-weight: bold;
    color: var(--color-red);
}


/* Resources */
.stf-resource__articles .card{
    padding: 10px;
    box-shadow: -1px 0px 5px 0px rgba(0,0,0,0.34);
    -webkit-box-shadow: -1px 0px 5px 0px rgba(0,0,0,0.34);
    -moz-box-shadow: -1px 0px 5px 0px rgba(0,0,0,0.34);
    cursor: pointer;
}
.stf-resource__articles .card:hover{
    background-color: var(--color-blue);
    color: var(--color-white);
}
.stf-resource__articles .card h5{
    font-size: 14px;
}
.stf-resource__articles .card:hover h5,
.stf-resource__articles .card:hover p{
    color: var(--color-white);
}
.stf-resource__articles .icon i{
    font-size: 50px;
}
.stf-resource__articles .icon i.fa-folder-open{
    color: orange;
}
.stf-resource__articles h5{
    margin: 0px;
    color: var(--color-red);
    font-weight: bold;
}
.stf-resource__articles .resource__content{
    margin-top: 10px;
}

/* Projects */
.stf-projects__articles .card{
    border: none;
}
.stf-projects__articles .card,
.stf-projects__articles .card img{
    border-radius: 10px;
}
.stf-projects__articles .card img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.stf-projects__articles .card .card-body{
    padding: 0px;
    position: relative;
}
.stf-projects__articles .card .card__info{
    margin-top: 20px;
}
.stf-projects__articles .card .card__info h5{
    font-weight: bold;
    font-size: 22px;
    color: var(--color-blue);
}
.stf-projects__articles .card .card__info h5:hover{
    color: var(--color-red);
}
.stf-projects__articles .date__badge{
    margin-bottom: 10px;
}
.stf-projects__articles .date__badge .badge{
    padding: 5px 15px;
}
.stf-projects__articles .btn{
    padding: 5px 30px;
    border-radius: 25px;
    font-size: 19px;
    display: none;
    transition: all 0.5s ease-in-out;
}
.stf-projects__articles .card:hover{
    box-shadow: -1px 0px 5px 0px rgba(0,0,0,0.34);
-webkit-box-shadow: -1px 0px 5px 0px rgba(0,0,0,0.34);
-moz-box-shadow: -1px 0px 5px 0px rgba(0,0,0,0.34);
}
.stf-projects__articles .card:hover .btn{
    display: block;
    transition: all 0.5s ease-in-out;
}
.stf-projects__articles .card__button{
    position: absolute;
    top: 180px;
    right: 50%;
    transform: translateX(50%);
}
.stf-projects__articles .card__info p{
    color: var(--color-body);
    margin-top: 20px;
}
.stf-projects__articles .card__info{
    padding: 0px 20px;
}
.stf-projects__articles .card__project{
    background-color: var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 5px 25px;
    color: var(--color-white);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.project__details .card:hover{
    box-shadow: none;
}
.project__details .card img{
    height: 100%;
}
.project__sidebar{
    margin-bottom: 20px;
}
.project__sidebar img{
    object-fit: cover;
    border-radius: 5px;
}
.project__sidebar h5 a{
    color: var(--color-red);
}

/* Departments */
.department__image img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}
.department__text{
    align-items: center;
}
.department__text h2{
    color: var(--color-blue);
    font-weight: bold;
}
.department__text span{
    color: var(--color-red);
}

/* About */
.stf-about__wrapper .about__image img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    animation: border-transform-default 10s linear infinite alternate forwards;
}
.stf-about__wrapper .about__image{
    border-radius: 10px;
    animation: border-transform-default 10s linear infinite alternate forwards;
}

@-webkit-keyframes border-transform-default {

    0%,
    to {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%
    }

    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%
    }

    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%
    }

    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%
    }

    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%
    }

    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%
    }

    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%
    }
}

@keyframes border-transform-default {

    0%,
    to {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%
    }

    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%
    }

    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%
    }

    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%
    }

    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%
    }

    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%
    }

    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%
    }
}
.stf-about__wrapper .about__text h6{
    color: var(--color-red);
    font-size: 22px;
}
.stf-about__wrapper .about__text h2{
    font-weight: bold;
    color: var(--color-blue);
}


.stf-about__wrapper .about__text p.text-white span{
    color: #ffffff !important;
}
.stf-mission__wrapper{
    padding: 50px 0px;
    /* background-color: #f4f8f7; */
    background: #302c51;
}
.stf-mission__cards .card{
    padding: 20px;
    border-radius: 10px;
    border: none;
    box-shadow: -1px 1px 5px 0px rgba(0,0,0,0.19);
    -webkit-box-shadow: -1px 1px 5px 0px rgba(0,0,0,0.19);
    -moz-box-shadow: -1px 1px 5px 0px rgba(0,0,0,0.19);
    position: relative;
}
.stf-mission__cards h4{
    font-weight: bold;
}
.stf-mission__cards .number{
    background-color: var(--color-red);
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 50%;
    color: var(--color-white);
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.stf-about__wrapper.home .btn-link{
    color: var(--color-red);
    font-weight: bold;
}

/* Values */
.stf-values__cards .list__title{
    display: flex;
    align-items: center;
}
.stf-values__cards .list__title .number{
    background-color: #ff000036;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    color: var(--color-blue);
    margin-right: 10px;
}
.stf-values__cards .list__title h4{
    margin-top: 5px;
}
.stf-values__cards .list__content{
    margin-top: 20px;
}
.stf-values__cards .values__list{
    margin-bottom: 30px;
}

/* Members */
.stf-members__wrapper{
    background-color: #f4f8f7;
}
.stf-members__cards .card{
    border-radius: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0px 10px 25px 0px rgba(37, 42, 52, 0.08);
    margin-bottom: 20px;
}
.stf-members__cards .card-body{
    padding: 10px;
}
.stf-members__cards .card-body img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.31);
-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.31);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.31);
}
.stf-members__cards .member__info{
    padding: 20px 10px 0px 10px;
    text-align: center;
}
.stf-members__cards .member__info h5{
    font-weight: bold;
}
.stf-members__cards .card:hover h5{
    color: var(--color-red);
    transition: all 0.3s ease-in;
}

/* Locations */
.stf-locations__wrapper{
    background-color: #f4f8f7;
}
.stf-locations__cards .card{
    border-radius: 10px;
    -webkit-box-shadow: 0 0 20px 0 #dddddd8c;
    box-shadow: 0 0 20px 0 #dddddd8c;
    border: none;
    position: relative;
    padding: 20px;
}
.stf-locations__cards .card h5{
    margin-bottom: 10px;
}
.stf-locations__cards .number{
    /* position: absolute;
    background-color: #ff000036;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 50%;
    color: var(--color-blue);
    margin-right: 10px;
    bottom: 10px;
    right: 10px; */
    position: absolute;
    right: 15px;
    bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ff000036;
    width: 30px;
    height: 30px;
}

/* Partners */
.stf-partners__wrapper{
    background-color: #f4f8f7;
}
.stf-partner__cards .card{
    border: none;
}
.stf-partner__cards .card img{
    width: 100%;
    height: 120px;
    border-radius: 5px;
}
.partner1__slides .partner img{
    width: 100px;
    height: 80px;
    border-radius: 5px;
}

/* Impact */
.stf-impact__counters{
    background-color: #f4f8f7;
}
.stf-impact__counters.bg-red{
    background-color: var(--color-red);
}
.stf-impact__counters .card{
    background-color: var(--color-white);
    border-radius: 10px;
    -webkit-box-shadow: 0 0 20px 0 #dddddd8c;
    box-shadow: 0 0 20px 0 #dddddd8c;
    padding: 10px;
}
.stf-impact__materials{
    background-color: var(--color-blue);
}
.stf-impact__materials .card{
    background: transparent;
}
.stf-impact__materials .card h3,
.stf-impact__materials .card p{
    color: var(--color-white);
}
.stf-impact__content .card{
    -webkit-box-shadow: 0 0 20px 0 #dddddd8c;
    box-shadow: 0 0 20px 0 #dddddd8c;
    padding: 10px;
    border-radius: 10px;
}

/* Contact */
.stf-contact__cards .btn{
    display: block;
    width: 100%;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 20px;
}
.stf-contact__wrapper .card strong{
    font-weight: bold;
}
.input-group-text{
    border: 0px;
    color: var(--color-red);
    background-color: #f4f8f7;
}
.input-group>.form-control, .input-group>.form-floating, .input-group>.form-select{
    background-color: #f4f8f7;
    border: none;
    padding: 10px;
}
.stf-contact__cards .contact__info i{
    font-size: 22px;
    color: var(--color-red);
    margin-bottom: 20px;
}
.stf-contact__cards .contact__info .card{
    -webkit-box-shadow: 0 0 20px 0 #dddddd8c;
    box-shadow: 0 0 20px 0 #dddddd8c;
    padding: 10px;
}
.stf-contact__cards .contact__info .card p{
    margin: 0px;
}
.map-area #map{
    width: 100%;
    height: 400px;
    border: 0px;
    display: block;
}

/* Job */
.ci-careers__articles .card{
    padding: 20px;
}
.ci-careers__articles .card h4{
    margin-bottom: 20px;
}
.ci-careers__articles .card h4 a{
    color: var(--color-blue);
}
.ci-careers__articles .card h4 a:hover{
    color: var(--color-red);
    transition: all 0.3s ease-in-out;
}
.ci-careers__articles .card .job__meta{
    margin-bottom: 10px;
}
.ci-careers__articles .card .job__meta span.date{
    margin-right: 20px;
    font-weight: bold;
}
.ci-careers__articles .card .job__link a{
    color: var(--color-red);
}
.ci-careers__articles .card .job__link a:hover{
    color: var(--color-blue);
    transition: all 0.3s ease-in-out;
}
.career__details span{
    margin-right: 10px;
}
.career__details{
    position: relative;
}
.career__details span strong{
    font-weight: bold;
}
.career__details .status{
    text-align: center;
    width: fit-content;
    padding: 5px 30px;
    color: var(--color-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.career__details .status.active{
    background-color: var(--color-green);
}
.career__details .status.expired{
    background-color: var(--color-red);
}
.career__details .title{
    margin-top: 40px;
}
.ci-careers__articles .blog__sidebar{
    background-color: var(--color-white);
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    border: none;
}
.ci-careers__articles .blog__sidebar .logo{
    width: 80px;
    /* height: 50px; */
    margin: auto;
    margin-bottom: 20px;
}
.ci-careers__articles .blog__sidebar .social__links i{
    font-size: 18px;
    margin: 10px;
    color: var(--color-red);
}

/* Home Banner */
.home__wrapper{
    position: relative;
}
.home__wrapper .btn-wrap{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.home__wrapper .home__slider img{
    width: 100%;
    height: 650px;
    object-fit: cover;
}
.slick-dots li.slick-active button:before{
    opacity: 0.9;
    color: var(--color-white);
    font-size: 16px;
}
.slick-dots li button{
    background-color: #f4f8f7;
    border-radius: 50%;
}
.slick-dots li.slick-active button{
    background: var(--color-red);
    
}
.slick-arrow {
	z-index: 1;
	width: 40px;
	height: 40px;
}
.slick-arrow:before {
	display: none;
}
.slick-next {
	right: 0;
}
.slick-prev {
	left: 0;
}
.btn-wrap {
	text-align: center;
	width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}
.btn-wrap button{
    background-color: var(--color-red);
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	margin: 10px;
	font-size: 18px;
	font-weight: 600;
	transition: all 0.5s;
}
.btn-wrap button i{
    color: var(--color-white);
}
.home__wrapper .div__overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.19);
    z-index: 1;
}

.stf-about__wrapper.home.message a{
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 15px 30px;
    border-radius: 25px;
    margin-top: 20px;
}
.stf-projects__wrapper.home{
    /* background-color: rgba(209,11,39,0.1); */
    /* background-image: linear-gradient(to top, #feada6 0%, #f5efef 100%); */
}

.ci-partner__wrapper{
    background: #f4f8f7;
    padding: 50px 0px;
}
.ci-partner__wrapper .partner__title{
    position: relative;
}
.ci-partner__wrapper .partner__title h6{
    color: var(--color-blue);
    font-weight: bold;
}
.ci-partner__wrapper .partner__title h6::after{
    content: "";
    width: 114px;
    height: 1px;
    background-color: var(--color-red);
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    left: 200px;
}

/* Footer */
.r-bcqeeo{
    font-size: 14px;
}
.footer__wrapper{
    background-color: var(--color-blue);
    padding-top: 100px;
}
.footer__wrapper .cause__item{
    margin-bottom: 20px;
}
.footer__wrapper .cause__item img{
    width: 100px;
    border-radius: 5px;
}
.footer__wrapper .quick__links ul{
    margin-left:-20px;
}
.footer__wrapper .quick__links li{
    list-style: none;
    line-height: 2.5rem;
    border-bottom: 1px dotted #8a8a8a;
}
.footer__wrapper .quick__links li::before {
  content: "✦";
  margin: 0 12px;
  color: #ffd181;
  font-size: 0.8rem;
}
.footer__wrapper h4{
    margin-bottom: 20px;
}
.footer__wrapper h5,
.footer__wrapper h4{
    color: var(--color-white);
}
.footer__wrapper ul li a{
    color: var(--color-white);
}
.footer__wrapper .footer__bottom{
    padding: 30px 0px;
}
.footer__wrapper .footer__bottom p{
    color: var(--color-white);
}

/* Menu */
.header-area {
    background-color: var(--color-blue);
    padding-top: 15px;
    padding-bottom: 0px;
    position: relative;
    z-index: 99999
}

.header-area .left ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 15px
}

.header-area .left ul li:last-child {
    margin-right: 0
}

.header-area .left ul li i {
    display: inline-block;
    color: var(--color-white);
    font-size: 15px
}

.header-area .left ul li a {
    display: inline-block;
    color: var(--color-white);
    font-size: 14px
}

.header-area .left ul li a:hover {
    color: var(--color-red)
}

.header-area .right {
    text-align: right;
    vertical-align: middle;
    float: right;
}

.header-area .right ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px
}

.header-area .right ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 5px;
    align-items: center;
}

.header-area .right ul li:last-child {
    margin-right: 0
}

.header-area .right ul li span {
    display: inline-block;
    color: var(--color-white);
    margin-right: 5px;
    font-size: 14px
}

.header-area .right ul li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    border-radius: 50%;
    font-size: 13px
}

.header-area .right ul li a i {
    line-height: 30px
}

.header-area .right ul li a:hover {
    color: var(--color-white);
    background-color: var(--color-red);
    border: 1px solid var(--color-red);
}

.main-nav {
    background: #fff;
    -webkit-box-shadow: 0 10px 20px 0 #ddd3;
    box-shadow: 0 10px 20px 0 #ddd3;
    -webkit-transition: .5s all ease;
    transition: .5s all ease;
    padding-top: 12px;
    padding-bottom: 12px
}

.main-nav.menu-shrink {
    padding-top: 10px;
    padding-bottom: 10px
}

.main-nav nav {
    padding: 0
}

.main-nav nav .navbar-nav {
    margin-left: auto;
    margin-right: auto
}

.main-nav nav .navbar-nav .nav-item:hover a {
    color: #d10b27
}

.main-nav nav .navbar-nav .nav-item a {
    text-transform: capitalize;
    color: #302c51;
    font-weight: 600;
    margin-left: 12px;
    margin-right: 12px;
    -webkit-transition: .5s all ease;
    transition: .5s all ease
}

.main-nav nav .navbar-nav .nav-item a:hover,
.main-nav nav .navbar-nav .nav-item a:focus,
.main-nav nav .navbar-nav .nav-item a.active {
    color: #d10b27
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu {
    padding: 0;
    background: #302c51;
    -webkit-transition: .3s;
    transition: .3s;
    border-radius: 0
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li {
    border-bottom: 1px solid #ddd3
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child {
    border: 0
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
    top: 0 !important
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover a {
    color: #fff
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
    position: relative;
    font-weight: 600
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    top: 18px;
    left: 17px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .5s all ease;
    transition: .5s all ease;
    -webkit-animation: rotate360 1s infinite linear;
    animation: rotate360 1s infinite linear;
    border: 2px solid #d10b27
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
    padding-left: 30px;
    color: #fff
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover:before,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus:before,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active:before {
    opacity: 1;
    visibility: visible
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    left: unset;
    right: -100%
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
    color: #fff
}

.main-nav .dropdown-toggle::after {
    display: none
}
.mean-container .mean-bar{
    background-color: var(--color-blue);
}

.mean-container .mean-nav .donate-btn{
    float: right;
    position: absolute;
    right: 80px;
    top: 10px;
    
}

.side-nav .donate-btn{
    background-image: linear-gradient(to right, #FF512F 0%, #DD2476  51%, #FF512F  100%);
    color: var(--color-white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.side-nav .donate-btn:hover{
    background-position: right center;
    color: #fff;
    text-decoration: none;
}

@-webkit-keyframes rotate360 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotate360 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

audio.player{
    width: 100% !important;
}
.audio-card{
    border: none;
}
.footer-news {
    position: relative;
    color: #fff;
    overflow: visible; /* important so the ::before can appear */
    padding-top: 3.5rem;
}

/* Top “newspaper-style” border */
.footer-news::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px; /* thickness of the border */
    background: repeating-linear-gradient(
        135deg,
        #ffd181,
        #ffd181 10px,
        #302c51 10px,
        #302c51 20px,
        #e53935 20px,
        #e53935 30px
    );
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    /* transform: skewY(-5deg); */
    z-index: 2; /* make sure it’s above background */
}

/* Container adjustments */
.colorful-breadcrumb {
  position: relative;
  background: transparent;
  /* padding-bottom: 0.5rem; */
  /* margin-bottom: 2rem; */
}

/* Breadcrumb items styling */
.colorful-breadcrumb .breadcrumb-item a {
  color: #555;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.colorful-breadcrumb .breadcrumb-item a:hover {
  color: #e53935;
}

/* Bottom border effect */
.colorful-breadcrumb::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px; /* thickness of the border */
  border-radius: 3px;
  background: linear-gradient(90deg, #e53935, #1e88e5, #fdd835, #ffd181, #e53935);
  background-size: 400% 100%;
  animation: gradientSlide 6s linear infinite;
}

/* Gradient animation */
@keyframes gradientSlide {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Optional: adjust active breadcrumb styling */
.colorful-breadcrumb .breadcrumb-item.active {
  font-weight: 600;
  color: #1e88e5;
}

        .contact-card-rotating {
  position: relative;
  border-radius: 1rem;
  background: #fff;
  overflow: hidden; /* Ensures border stays clean */
  padding: 1rem;
  z-index: 1;
}

/* Rotating border effect */
.contact-card-rotating::before {
  content: "";
  position: absolute;
  inset: -6px; /* border thickness */
  border-radius: 1.2rem;
  background: conic-gradient(
    from 0deg,
    #e53935,
    #1e88e5,
    #43a047,
    #fbc02d,
    #e53935
  );
  animation: rotateBorder 6s linear infinite;
  z-index: -1;
}

/* Inner layer to preserve card background */
.contact-card-rotating::after {
  content: "";
  position: absolute;
  inset: 6px; /* matches border thickness */
  border-radius: 1rem;
  background: #fff;
  z-index: -1;
}

/* Keyframes for rotation */
@keyframes rotateBorder {
  to {
    transform: rotate(360deg);
  }
}

.rough-edges-card {
  position: relative;
  background: url(//s.ytimg.com/yt/imgbin/www-refreshbg-vflC3wnbM.png) 0;
}

.rough-edges-card:before, .rough-edges-card:after {
  content: '';
  position: absolute;
  height: 6px;
  width: 100%;
  left: 0;
  -webkit-clip-path: polygon(1% 0%, 4% 100%, 9% 0%, 13% 100%, 19% 1%, 21% 100%, 26% 5%, 30% 100%, 36% 2%, 43% 100%, 50% 1%, 52% 100%, 61% 0%, 69% 94%, 70% 0%, 76% 100%, 81% 0%, 84% 100%, 91% 0%, 97% 100%, 99% 3%);
}

.rough-edges-card:before {
  background-color: #ff0000;
  top: 0;
}

.rough-edges-card:after {
  background: url(//s.ytimg.com/yt/imgbin/www-refreshbg-vflC3wnbM.png) 0;
  bottom: -2px;
}

/* Torn paper card */
.paper-torn {
  background: #fff;
  border: none;
  border-radius: 0;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  overflow: hidden;
  z-index: 0; /* base */
}

/* Torn edges */
.paper-torn::before,
.paper-torn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 20px;
  background: repeating-linear-gradient(
    -45deg,
    #fff,
    #fff 5px,
    #eee 5px,
    #eee 10px
  );
  z-index: 1; /* keep them under pin but above background */
  pointer-events: none; /* so they don’t block clicks */
}

.paper-torn::before {
  top: 0;
}

.paper-torn::after {
  bottom: 0;
  transform: rotate(180deg);
}

/* Pin effect */
.paper-torn .pin {
  width: 20px;
  height: 20px;
  background: #e63946;
  border-radius: 50%;
  position: absolute;
  top: -0px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  z-index: 5; /* <-- bring pin above everything */
}

.paper-torn .pin::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
}
.career__details{
    border: none;
}



