.arrow-anim {
    width: 120px;
    height: 120px;
    color: #003e9c ;
    animation: arrowMove 4s infinite;
}

@keyframes arrowMove {
    0% { transform: translateY(0) rotate(0deg); }
    20% { transform: translateY(20px) rotate(180deg); }
    40% { transform: translateY(0) rotate(0deg); }
    60% { transform: translateY(20px) rotate(180deg); }
    80% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(0) rotate(0deg); }
}
.text-main{
    color: #003e9c ;
}
.btn-main{
    background-color: #003e9c ;
    color: var(--bs-white);
}
.border-bottom-black{
    border-bottom: 1px solid black;
}
.border-top-main{
    border-top: 1px solid #003e9c;
}
.border-bottom-main{
    border-bottom: 1px solid #003e9c;
}
.border-right-main{
    border-right: 1px solid #003e9c;
}
.border-left-main{
    border-left: 1px solid #003e9c;
}
.feature-div svg{
    width: 50px;
    height: 50px;
}
.eaib-image{
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}
.eaib-image img{
    display: none;
}
@media (max-width: 991px) {
    .border-top-main{
        border-top: unset;
    }
    .border-bottom-main{
        border-bottom: unset;
    }
    .border-right-main{
        border-right: unset;
    }
    .border-left-main{
        border-left: unset;
    }
    .border-main{
        border-bottom: 1px solid #003e9c;
    }
    .eaib-image{
        background-image: unset;
        min-height: unset;
    }
    .eaib-image img{
        display: block;
    }
    .feature-div .border-main:has(.feature-item:nth-of-type(odd)) {
        border-right: 1px solid #003e9c;
    }
}

.news_press a.active{
    color: #d14200;
}

@media (max-width: 767px) {
    .feature-div .border-main:has(.feature-item:nth-of-type(odd)) {
        border-right: unset;
    }
}
@media (max-width: 576px) {
    .p-5{
        padding: 1rem!important;
    }
    .px-5{
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .py-5{
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    .pt-5{
        padding-top: 1rem !important;
    }
    .pb-5{
        padding-bottom: 1rem !important;
    }

}
@media (max-width: 482px) {

}
@media(min-width: 768px){

}

.hide-on-scroll {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.reveal-text {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.reveal-text.is-visible {
    opacity: 1;
    transform: translateY(0);
}