body {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-style: normal;
    /* height: 10000px; */
    line-height: 1.6;
    color: rgb(17, 59, 23);
}

.card-title {
    margin-bottom: var(--bs-card-title-spacer-y);
    color: rgb(17, 59, 23);
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: #53b760;
    text-decoration: none;
}

.fs-large {
    font-size: 6rem;
    margin-top: 20px;
    font-weight: 700;
}

@media screen and (max-width: 992px) {
    .fs-large {
        font-size: 4.6rem;
    }
}

@media screen and (max-width: 768px) {
    .fs-large {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 576px) {
    .fs-large {
        font-size: 2rem;
    }
}

.welcome {
    position: relative;
    height: 60vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.welcome .bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: -1;
    background: url("image/banner1.webp") no-repeat center center/cover;
    filter: brightness(0.5);
    height: 100%;
    width: 100%;
    animation: changeBackground 10s infinite ease;
}

@keyframes changeBackground {
    0% {
        background: url("image/banner1.webp") no-repeat center center/cover;
    }

    50% {
        background: url("image/banner2.webp") no-repeat center center/cover;
    }

    100% {
        background: url("image/banner1.webp") no-repeat center center/cover;
    }

}

.welcome h1 {
    font-size: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    padding: 20px;
    text-shadow: 11px 7px 4px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.welcome h1 img {
    filter: invert(1);
    height: 200px;
}

@media screen and (max-width: 768px) {
    .welcome h1 {
        font-size: 2.2rem;
        padding: 10px;
    }

    .welcome h1 img {
        height: 150px;
    }

}

@media screen and (max-width: 576px) {
    .welcome h1 {
        font-size: 1.3rem;
        padding: 5px;
    }

    .welcome h1 img {
        height: 100px;
    }

}

.heading {
    position: relative;
}

.heading:before {
    position: absolute;
    content: "";
    width: 100px;
    height: 5px;
    border-radius: 5px;
    background-color: rgb(17, 59, 23);
    top: 110%;
    left: 0;
    transform: translateY(-50%);
}

.heading h3 {
    margin-bottom: 13px;
}

.about .img-2 {
    margin-top: -100px;
    margin-left: 25px;
    height: 200px;
    border: 3px solid white;
}

@media screen and (max-width: 768px) {
    .about .img-2 {
        margin-top: -50px;
        margin-left: 15px;
        height: 150px;
    }

}

.about .con-top {
    display: inline-block;
    padding: 10px 25px;
    background-color: rgb(196 227 200);
    border-radius: 50px;
    border: 2px solid rgb(36 116 46);
    color: rgb(36 116 46);
    font-weight: 600;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    /* text-align: center; */
    margin-bottom: 25px;
}

footer {
    background-color: rgb(17, 59, 23);
    color: white;
    /* padding: 20px 0; */
}

.slider-track {
    overflow-x: scroll;
}

.slider-track::-webkit-scrollbar {
    height: 5px;
}

.slider-track::-webkit-scrollbar-track {
    background-color: #c2c2c2;
}

.slider-track::-webkit-scrollbar-thumb {
    background-color: #217d2e;
    border-radius: 50px;
}

.card {
    /* width: 600px; */
    max-width: 600px;
    min-width: 300px;
    height: 100%;
}