/* Home Page  */

.card {
    border-radius: 1.5rem;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    max-height: 300px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    max-width: 300px;
}

.card-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 0.25rem;
}

.card-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.card-text {
    font-size: 0.875rem;
    color: gray !important;
    margin-bottom: 0;
    line-height: 1.4;
}

.myLogo {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    margin-top: 2rem;
    align-self: flex-start;
}

.card-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
}

.card-wrapper>.card {
    flex: 1 1 100%;
    max-width: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}



@media (min-width: 768px) {
    .card-wrapper>.card {
        flex: 1 1 48%;
        max-width: 48%;
    }
}

@media (min-width: 1200px) {
    .card-wrapper>.card {
        flex: 1 1 23%;
        max-width: 23%;
    }
}


.scrolltotop * {
    color: white !important;
}

@media (max-width: 2254px) {
    /* .sliding-boxes .swiper-slide {
                max-width: 15% !important;
            } */

    .smallImg {
        height: 80px;
    }

    .custom-width {
        width: 270px;
    }
}

@media (max-width:501px) {
    .myCustomCss {
        text-align: center;
        justify-content: center;
        display: block;
    }

    .custom-text-center {
        text-align: center !important
    }
}


/* insights */

.myhover:hover {
    background-color: black !important;
    color: white;
}

.bi-arrow-right::before {

    color: white !important;
}

.bi-arrow-left::before {

    color: white !important;
}

.button-circle-lightgray {
    background-color: #a9a9a9 !important;
}


/* Home Page End */


/* Industries Section Start */

.myContainer-customs {
    max-width: 25rem;
    box-shadow: 2px 2px 2px 2px #a9a9a9;
    border-radius: 10px;
    padding-left: 8px;

}

.customPadding{
    padding-top: 10px;
    padding-left: 10px;

}

.myJustify {
    text-align: justify;
}

#scroll-myContainer {
    height: calc(3 * 4.5rem);
    overflow: hidden;
    position: relative;
    padding-left: 15px;
}

#scroll-myContent {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: slideUpLoop 17s linear infinite;
    position: relative;
    animation-play-state: running;
}

#scroll-myContainer:hover #scroll-myContent {
    animation-play-state: paused;
    cursor: pointer;
}

#scroll-content>div p:first-child {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

#scroll-content>div p:last-child {
    color: #6b7280;
    margin: 0;
}

@keyframes slideUpLoop {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(calc(-50%));
    }
}

/* Industries Section End */




