/* Remove the navbar's default rounded borders and increase the bottom margin */
body {
    background-color: #fff;
}

.navbar {
    margin-bottom: 50px;
    border-radius: 0;
    background-color: green;
}

.navbar-nav>li>a {
    font-size: 15px;
    padding: 15px 16px;
}

.container-fluid {
    padding-right: 46px;
    padding-left: 46px;
}

.navbar-inverse .navbar-nav>li>a {
    color: #fff;
    /* border: 1px solid ; */
}

.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:focus,
.navbar-inverse .navbar-nav>.active>a:hover {
    color: #fff;
    /* background-color: rgb(8, 8, 8); */
    margin: auto;
    padding: auto;
}

.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
    width: 70%;
    margin: auto;
}

.carousel-control {
    width: 0%;
    color: #000;
}

/* Remove the jumbotron's default bottom margin */
.jumbotron {
    margin-bottom: 0;
    background-color: #fff;
}

.jumbotron h2 {
    font-weight: bold;
    font-size: 28px;
}

@media (max-width: 768px) {
    .jumbotron h2 {
        font-size: 22px;
    }

    .jumbotron p {
        font-size: 14px;
    }
}

.jumbotron h2,
.jumbotron p {
    animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add a gray background color and some padding to the footer */
footer {
    background-color: #f2f2f2;
    padding: 25px;
}



.btn-grad {
    background-image: linear-gradient(to right, #67B26F 0%, #4ca2cd 51%, #67B26F 100%)
}

.btn-grad {
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
}

.btn-grad:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

footer a {
    color: #2e7d32;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
    color: #1b5e20;
}

.media-body p {
    text-align: justify;
}
.list-group-item:hover {
        background-color: #f0f9f0;
        transition: 0.3s ease-in-out;
        font-weight: 500;
    }