/*** Service Start ***/
.success-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 60px;
    font-weight: bold;
    color: #001F87;
    height: 300px;
    justify-content: center;
}

.letter {
    opacity: 0;
    transform: translateY(20px);
    rotate:-90deg;
    animation: fadeInUp 0.5s ease-in-out forwards;
}

.letter:nth-child(1) { animation-delay: 0s; }
.letter:nth-child(2) { animation-delay: 0.2s; }
.letter:nth-child(3) { animation-delay: 0.4s; }
.letter:nth-child(4) { animation-delay: 0.6s; }
.letter:nth-child(5) { animation-delay: 0.8s; }
.letter:nth-child(6) { animation-delay: 1s; }
.letter:nth-child(7) { animation-delay: 1.2s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(20px);
    }
}

.service-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    background-color: #fff;
}

.service-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service-item:hover::after {
    /* width: 100%;
    height: 100%; */
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
    position: relative;
    z-index: 2;
}

.service-item .service-content a,
.service-item .service-content p {
    transition: 0.5s;
}


/* .service-item:hover .service-content p, .service-item:hover .service-content .h4 {
    color: var(--bs-white);
}  */

.majorhighlights-home .home-h2{
    color:#d6e5fc;
    padding-bottom:60px;
}

.service-item .service-btn {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.service-item .service-btn i {
    transition: 0.5s;
}

.service-item:hover .service-btn {
    background: var(--bs-white);
}

.service-item:hover .service-btn i {
    transform: rotate(360deg);
    color: var(--bs-primary) !important;
}

.service-content .h4{
    font-size:18px;
}

.service-content p{
    font-size:15px;
    font-weight:300;
}
/*** Service End ***/



/*** Recent Work Start ***/
.causes .causes-item {
    overflow: hidden;
}

.causes .causes-item .causes-img {
    position: relative;
    transition: 0.5s;
}

.causes .causes-item .causes-img .causes-link {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0 !important; 
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: end;
    background: rgba(0, 0, 0, .2);
    transition: 0.5s;
}

.causes .causes-item .causes-img:hover .causes-link {
    background: rgba(0, 0, 0, .6);
}

.causes .causes-item .causes-img img {
    transition: 0.5s;
    border-radius:10px 10px 0 0;
}

.causes .causes-item .causes-img:hover img {
    transform: scalex(-1);
}

.videosList .causes-item .causes-img:hover img {
    transform: scalex(1);
}

.causes .causes-item .causes-img .causes-dination {
    position: absolute;
    top: 0; 
    right: 0;
}

.causes .causes-item .causes-img .causes-dination a {
    font-size: 14px;
}

.causes .causes-item .causes-content {
    background: #f1f1f1;
    border-color: var(--bs-white);
    border-style: dotted;
    border-top: 0;

}

.causes .causes-item .progress {
    height: 10px;
    overflow: visible;
}

.causes .causes-item .progress .progress-bar {
    position: relative;
    width: 0;
    overflow: visible;
    background: var(--bs-primary);
    transition: 2s;
}

.causes .causes-item .progress .progress-bar span {
    position: absolute;
    top: 50%;
    right: -1px;
    transform: translateY(-50%);
    padding: 1px 5px;
    font-size: 12px;
    color: var(--bs-white);
    background: var(--bs-dark);
    z-index: 1;
}

.causes-content .btn{
    border:1px solid var(--bs-primary);
    border-radius:5px;
    color: var(--bs-primary);
    font-size: 13px;
}

.causes-content .btn:hover{
    background: var(--bs-primary);
    color:#f1f1f1;
}
/*** Recent Work End ***/