/* Reset some default styles */
body,
html {
    margin: 0;
    font-family: Helvetica, sans-serif;
    font-weight: 550;
    font-size: 15px;
}

/* Style the navbar */
header {
    background-color: #333;
    /*Background color of the navbar */
    color: #fff;
}

nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    width: 100%;
    text-align: right;
    padding-right: 60px;
}

nav ul li {
    display: inline-block;
    margin: 10px 20px;
}

nav ul li a {
    color: aliceblue;
    text-decoration: none;
}


/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;

    }

    .navbar a {
        margin: 10px 0;
        font: 10px;
    }
}

#main_area {
    overflow: hidden;
    flex-direction: row;
    height: 100%;
    display: flex;
    background-color: #00BAFF;
}

.scrollable {

    overflow: scroll;
    width: 70%;
    height: 100%;
    background-color: #b1b0aa;

}

.fixed {
    background-color: #13021c;
    text-align: center;
    width: 30%;
    overflow: hidden;
}

.center {
    display: inline-block;
    margin: 10px;
    margin-top: 45px;
}

body,
html {
    margin: 0;
    padding: 0;
}

/* Style the carousel container */
.carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    /* max-width: 800px; */
    /* Adjust as needed */
    margin: 0 auto;
    background-color: aquamarine;
}

/* Style individual slides */
.carousel-slide {
    flex: 0 0 100%;
    /* Each slide takes 100% width */
    transition: transform 0.5s;
    /* Add a smooth transition effect */
}

.carousel-slide img {
    width: 100%;
    height: auto;
    /* Maintain image aspect ratio */
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#image {
    /* position: absolute; */
    /* top: 0;
    left: 0; */
    /* margin-top: -500px; */
    height: 600px;
    width: 100%;
    z-index: -1;
    object-fit: cover;
    opacity: 100%;
    /* Ensure it's behind the content */
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 95%;
    background: rgba(101, 101, 101, 0.6);
    /* Adjust the opacity (the last value) as needed */
    z-index: 2;
    /* Place the overlay above the image */
    backdrop-filter: blur(2px);
}

.content {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    /* Center the text both horizontally and vertically */
    z-index: 3;
    /* Place the text above the video */
    display: flex;
    text-align: left;
    justify-content: left;
    /* background-color: rgba(0, 0, 0, 0.5);  */
    padding: 200px;
}


h1 {
    position: absolute;
    top: 10%;
    z-index: 4;
    font-size: 58px;
    text-align: left;
    color: #ffffff;
    width: 100%;
    margin-left: 30px;
    text-shadow: 30px;


}

h4 {
    position: absolute;
    bottom: 50%;
    z-index: 4;
    margin-left: 30px;
    margin-right: 30px;
    color: #fff;
    font-size: 24px;
    margin-top: 100px;
    top: 30%;
}

#ww_01667c8e54329 {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 5;
}

button {
    border: none;
    border-radius: 7.5px;
    color: rgb(26, 12, 12);
    cursor: pointer;
    font-size: 15px;
    margin: 10px 0;
    outline: none;
    padding: 10px 20px;
    width: 30%;
    position: relative;
    top: 70%;
    left: 35%;
    align-content: center;
}

.FB-btn {
    background-color: #3b5998;
    color: white;
}

span {
    color: white;

}

.footer-container {
    background-image: url(images_day_11/footer1.jpg);
    padding-bottom: 4rem;
}

.footer {
    width: 80%;
    height: 40vh;
    background-image: url(images_day_11/footer1.jpg) opacity: 0.7;
    color: #3c2649;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin 0 auto;

}

.footer-heading {
    display: flex;
    flex-direction: column;
    margin-right: 4rem;
}

.footer-heading h2 {
    margin-bottom: 2rem;
    margin-top: 50px;
}

.footer-heading a {
    color: #533b5f;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-heading a:hover {
    color: aquamarine;
    transition: 0.3s ease-out;
}

.footer-heading1 {
    display: flex;
    flex-direction: column;
    margin-right: 4rem;
}

.footer-heading1 h2 {
    margin-bottom: 2rem;
    margin-top: 50px;
}

.footer-heading1 a {
    color: #533b5f;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-heading1 a:hover {
    color: aquamarine;
    transition: 0.3s ease-out;
}




.footer-email-form h2 {
    margin-bottom: 2rem;
    margin-top: 50px;
}

#footer-email {
    width: 250px;
    height: 40px;
    border-radius: 4px;
    outline: none;
    border: none;
    padding-left: 0.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #404457;
}

#footer-email::placeholder {
    color: lightgrey;
}

#footer-email-btn {
    width: 100px;
    height: 40px;
    border-radius: 4px;
    background-color: #fad00c;
    outline: none;
    border: none;
    color: #010721;
    font-size: 1rem;
}

#footer-email-btn:hover {
    cursor: pointer;
    background-color: #00BAFF;
    transition: all 0.4s ease-out;

}