/* Global Styles */
body {
    margin: 0;
    padding: 10px;
    font-family: Arial, sans-serif;
}

.nav12 {
    background-color: black;
    color: #fff;
    width:100%;
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.nav__logo {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
}

.nav__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav__link {
    color: #fff;
    text-decoration: none;
    padding: 0 1rem;
    display: block;
}

    .nav__link:hover, .nav__link--active {
        background-color: #555;
    }

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

    .nav__toggle span {
        background-color: #fff;
        height: 2px;
        width: 25px;
        margin: 4px 0;
    }

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__links.nav-mobile {
        display: none;
        flex-direction: column;
        width: 100%;
    }

        .nav__links.nav-mobile.active {
            display: flex;
        }

    .nav__link {
        padding: 1rem;
        text-align: center;
        width: 100%;
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    .nav-mobile {
        display: none;
    }
}
      
/* Carousel Styles */
.carousel-inner img {
    width: 100%;
    height: auto;
}

.carousel {
    max-width: 80%;
    margin: auto;
}

/* Wrapper Styles */
.wrapper {
    padding: 2rem;
}

/* Content Container Row Styles */
.content-container-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: calc(100% - 50px);
    width: 1200px;
}
.carousel-container {
    max-width: 1800px; /* Set a max-width to control the width of the carousel */
    margin: auto; /* Center align the carousel */
    padding-top: 60px;
    padding-bottom: 0px;
    background-color: black;
}

    .content-container-row img {
        width: 50%;
        height: auto;
    }

/* Text Box Styles */
.text-box {
    width: 50%;
    padding: 40px;
    background-color: #fff;
    color: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}

    .text-box h2 {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .text-box p {
        font-size: 1.2em;
        margin-bottom: 20px;
    }

/* Content Container 6 Styles */
.content-container6 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #3A3D40;
    color: rebeccapurple;
    padding: 50px 20px;
}

/* Table Styles */
.table {
    display: table;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    border-collapse: collapse;
}

.table-row {
    display: table-row;
}

.table-cell {
    display: table-cell;
    padding: 20px;
    vertical-align: top;
}

.left-cell {
    width: 40%;
}

.right-cell {
    width: 60%;
}

.left-cell p1 {
    font-size: 2em;
    margin-bottom: 0px;
}

.right-cell p {
    font-size: 1.2em;
    line-height: 1.6;
}

/* Divider Styles */
.divider {
    width: 80%;
    height: 1px;
    background-color: rebeccapurple;
    margin: 20px auto;
}

/* Content Container 2 Styles */
.content-container2 {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
}

/* General Content Container Styles */
.content-container {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 50px 0;
    background-size: cover;
    background-position: center;
}

/* Overlay Box Styles */
.overlay-box {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 90px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}

    .overlay-box h2 {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .overlay-box p {
        font-size: 1.2em;
        margin-bottom: 20px;
    }

    .overlay-box button {
        background-color: #3A3D40;
        color: #fff;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        font-size: 1em;
    }

        .overlay-box button:hover {
            background-color: #5a5d60;
        }

 
/* Medium Container Styles */
.container.medium {
    width: 900px;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .content-container-row {
        flex-direction: column;
    }

    .left-cell {
        font-size: 20px;
    }

    .right-cell p {
        font-size: 14px;
    }

    .table-cell {
        padding: 10px;
    }

    .carousel {
        max-width: 100%;
    }
}

/* Specific Content Styles */
.content-container-row h1 {
    margin-right: 30px;
    color: white;
}

.box {
    border: none;
    background-color: mediumseagreen;
}

    .box p {
        color: white;
        font-size: larger;
    }

.overlay-box {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-links a,
.footer-contact p,
.footer-contact a {
    color: white;
    margin: 0 10px;
}
