#heading h1 {
    color: #C4261C;
    font-weight: 600;

}

input {
    display: none;
}

h1{
    font-weight: normal;
    font-size: 35px;
    position: relative;
    margin: 40px 0;
}

h1::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 3px;
    background-color: crimson;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%);
    animation: animate 4s linear infinite;
}

.card{
    border-radius: 25px;

}

.card-text{
    /* font-weight: 200; */
    font-size: 20px;
}
@keyframes animate {
    0% {
        width: 100px;
    }

    50% {
        width: 225px;
    }

    100% {
        width: 100px;
    }
}

.img-fluid {
    
    border-radius: 35px;
    padding: 20px;
    align-items: center;
    align-self: center;
    align-self: center;
}
.carousel-inner {
    &::before {
        content: '';
        overflow: hidden;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0);
        z-index: 1;
    }
}
.carsoul1 {
    padding-left: 10%;
    padding-right: 10%;
    /* padding-top: 10px; */
}

.card1 {
    padding-top: 80px;
    padding-bottom: 40px;
    padding-left: 10%;
    padding-right: 10%;

}

#footer {
    width: 100%;
    height: 20rem;
    background-color: rgb(237, 159, 15);
}

/* body{
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
} */

/* Card Animation start */
.containers:hover .information {
    animation: show-data 1s forwards;
    opacity: 1;
    transition: opacity .3sec;
}

.containers:hover {
    animation: remove-overflow 2s forward;
}

.containers:not(:hover) {
    animation: show-overflow 2s forwards;
}

.containers:not(:hover) .information {
    animation: remove-data 1s forwards;
}

@keyframes show-data {
    50% {
        transform: translateY(-2rem);
    }

    100% {
        transform: translateY(-.8rem);
    }
}

@keyframes remove-overflow {
    to {
        overflow: initial;
    }
}

@keyframes remove-data {
    0% {
        transform: translateY(-.8rem);
    }

    50% {
        transform: translateY(-2rem);
    }

    100% {
        transform: translateY(-.3rem);
    }
}

/* Card Animation end */

.col-md-4 {
    display: flex;
    justify-content: center;
}
