html,
body {
    background-color: rgb(62, 068, 68);
    color: #fff;
    font-family: 'Montserrat', sans-serif
}

p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
}


.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center center;
}

.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* This will center the child horizontally */
}

.navbar {
    width: 100%;
    z-index: 3;
    /* Even higher than overlay-content to handle navbar interactions */
}

.navbar-nav {
    margin-left: auto;
}

.navbar-dark .navbar-nav .nav-link {
    color: white;
    margin-right: 1rem;
    /* Space between navigation links */
}

.carousel-control {
    z-index: 2;
}

.scroll-down {
    /* position: absolute; */
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 2rem;
    /* Adjust the size as you see fit */
    cursor: pointer;
    animation: bounce 2s infinite;
    color: white;
}

.fa-arrow-down {
    color: #fff;
}

.content-intro {
    padding: 80px 0px;
    text-align: center;
}

.content-intro p {
    line-height: 1.5;
    letter-spacing: 1px;
    font-weight: 200;
    font-size: 25px;
}

.content-images-text {
    margin-bottom: 20px;
}

.text-md-right {
    text-align: right;
}

.btn {
    border-radius: 0;
    background: #231f20;
    color: #fff !important;
    text-transform: uppercase;
    display: inline-block;
    /* font-size: 14px !important; */
    text-decoration: none !important;
    letter-spacing: 4px !important;
}

.btn:hover {
    opacity: 0.6;
    background: #231f20;
}

.features-cta {
    margin-top: 10px;
    text-align: center;
}



.footer {
    margin-top: 20px;
    background-color: #333;
    /* Dark background color */
    color: white;
    padding: 20px 0;
    /* Some padding at the top and bottom */
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .copy {
    text-align: left;
}

.footer .link-group {
    list-style: none;
    display: flex;
    gap: 20px;
    /* Adjust as needed */
}

@media (max-width: 576px) {
    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer .link-group {
        justify-content: center;
        padding: 0;
    }
}