*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(to bottom, #0098ff, #ebf7ff);
}

.navbar {
    margin-top: 20px;
    position: fixed; /* Fixed positioning to stay on top */
    width: 100%; /* Full width */
    top: 0; /* Align to the top */
    z-index: 1000; /* High z-index to float above other content */
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Shadow effect for floating appearance */
    border-radius: 20px;
}

#navbar__logo img {
    width: 200px;
}

.navbar__menu {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Shadow effect for floating appearance */
    border-radius: 10px;
    display: flex;
    align-items: center;
    list-style: none;
    padding-left: 20px;
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    color: #000c14;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    width: 90px;
    height: 100%;
    transition: all 0.9s ease;
}

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button {
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #0098ff;  /* fallback for old browsers */
    color: #ebf7ff;
    transition:ease-in-out;
}

.button:hover {
    background: #000c14;
    transition: all 0.5s ease;
}

.navbar__links:hover {
    font-size: 1.4rem;
    color: #0098ff;
    transition: all 0.2s ease;
}

@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: -1;
    }

    .navbar__menu.active {
        background: #afe6ff;
        top: 100%; 
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 60vh;
        font-size: 1.6rem;
    }

    #navbar__logo{
        padding-left: 25px;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #ebf7ff;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }
    
    .navbar__btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    
    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translate(8px, 8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translate(-8px, -8px) rotate(-45deg);
    }
}

/* Notification */

.notification_area {
    position: absolute;
    z-index: 1;
    font-size: small;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Shadow effect for floating appearance */
    border-radius: 10px;
    padding: 10px;
    margin-top: 150px;
    margin-left: 57%;
}

.notification_area button{
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 0;
    height: 100%;
    width: 35%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #0098ff;  /* fallback for old browsers */
    color: #ebf7ff;
    transition:ease-in-out;
    margin: auto;
}

.notification_area button:hover {
    background: #000c14;
    transition: all 0.5s ease;
}

.notification_area a{
    padding: 10px;
    text-decoration: none;
    color: #ebf7ff;
    width: 100%;
    height: 100%;
}




/* Hero Section */


.hero {
    height: 1100px; /* adjust as needed */
    overflow: hidden; /* Ensure videos don't overflow */
    position: relative;
}

.video-stream {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: flex;
}

.video-stream video {
    width: 50%; /* Divide the width equally among videos */
    height: 100%;
    object-fit: cover;
}

.hero__container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 90%;
    text-align: center;
    padding: 30px;
}

.hero__heading {
    color: #fff;
    font-size: 100px;
    margin-bottom: 24px;
    cursor: default;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero__heading span{
    cursor: default;
}

.highlight {
    border-bottom: 4px solid #ff0098;
}

@media screen and (max-width:768px) {
    .hero__heading{
        font-size: 60px;
    }

    .hero__description{
        font-size: 40px;
    }

    .text-element {
        font-size: 24px;
        color: #000c14;
        transition: all 0.2s ease-in-out;
        position: relative;
    }
  
  .text-element:hover {
        font-size: 26px;
        color: #ebf7ff;
    }

    .video-stream video {
        width: 100%; /* Divide the width equally among videos */
        height: 100%;
        object-fit: cover;
    }
}


/* About Section */


.main {
    padding: 50px;
}

.main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 90%;
    z-index: 1;
    width: 100%;
    max-width: 1800px;
    padding: 0 50px;
}

.main__content {
    margin-left: 40px;
    color: #ebf7ff;
    width: 100%;
    align-self: center;
    justify-self: center;
}

.main__content h1 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 32px;
    cursor: default;
    background: linear-gradient(to bottom right, #000c14, #ffe8d8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main__content h2 {
    font-size: 4rem;
    background: #000c14;
    background: linear-gradient(to bottom right, #000c14, #ffe8d8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 32px;
    cursor: default;
}

.main__content p {
    color: #ebf7ff;
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    cursor: default;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.main__btn {
    font-size: 1.8rem;
    background: #0098ff;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #006ab3, #0098ff, #afe6ff);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #006ab3, #0098ff, #afe6ff);
    padding: 20px 60px;
    border: none;
    border-radius: 4px;
    color: #ebf7ff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline:none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.main__btn a {
    position: relative;
    z-index: 2;
    color: #ebf7ff;
    text-decoration: none;
}

.main__btn::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #111719;    
    background: -webkit-linear-gradient(to bottom, #0a0a0a, #111719, #303b3d);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #0a0a0a, #111719, #303b3d);
    transition: all 0.35s;
    border-radius: 4px;
}

.main__btn:hover {
    color: #ebf7ff;
}

.main__btn:hover:after {
    width: 100%;
}

.main__img--container {
    align-self: center;
    justify-self: center;
    max-height: 500px;
}

.main__img--card img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #afe6ff;
    border-radius: 20px;
}

.main__img--card {
    margin: 10px;
    height: 500px;
    width: 500px;
    border-radius: 20px;
    flex-direction: column;
    justify-content: center;
    color: #ebf7ff;
    transition: all 0.5s ease;
    cursor: default;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Mobile Responsive */
@media screen and (max-width: 1100px) {
    .main__container {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
        height: 90%;
    }

    .main__img--container {
        display: flex;
        justify-content: center;
    }

    .main__img--card {
        height: 425px;
        width: 425px;
    }

    .main__content{
        text-align: center;
        margin-bottom: 4rem;
    }

    .main__content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main__content h2 {
        font-size: 3rem;
    }

    .main__content p {
        margin-top: 1rem;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .main__img--card {
        width: 420px;
        height: 420px;
    }

    .main__img--container {
        display: flex;
        justify-content: center;
    }

    .fa-arrows-to-eye {
        font-size: 4rem;
    }

    .main__content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main__content h2 {
        font-size: 2rem;
    }

    .main__content p {
        margin-top: 2rem;
    }

    .main__btn {
        padding: 12px 36px;
        margin: 2.5rem 0;
    }
}

/* Services Section */

.services {
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.services__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    position: relative;
}

.services__card {
    margin: 20px;
    height: 425px;
    width: 300px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ebf7ff;
    background-image: linear-gradient(to right, #00dbde 0%, #fc00ff 100%);
    transition: 0.3s ease-in;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.services__card:nth-child(1) {
    background-image:url('Pictures/Content_pic.jpg');
    background-size: cover;
}

.services__card:nth-child(2) {
    background-image:url('Pictures/Management_pic.jpg');
    background-size: cover;
}

.services__card:nth-child(3) {
    background-image:url('Pictures/Consulting_pic.jpg');
    background-size: cover;
}

.services__card:nth-child(4) {
    background-image:url('Pictures/Courses_pic.jpg');
    background-size: cover;
}

.services__card h2 {
    font-size: 2rem;
    text-align: center;
    cursor: default;
    margin-top: 24px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.services__card p {
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 200px;
    font-size: 20px;
    cursor: default;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
    opacity: 0; /* Initially hide the <p> tag */
    transition: opacity 0.3s ease; /* Add a smooth transition effect */
}

.services__card:hover p {
    opacity: 1; /* Make the <p> tag visible on hover */
}

.services__btn {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.services__card button {
    margin-bottom: 24px;
    color: #ebf7ff;
    padding: 14px 24px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #000c14;
    font-size: 1.3rem;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.6);
}

.services__btn a{
    text-decoration: none;
    color: #ebf7ff;
}

.services__btn a:hover {
    color: #0098ff;
    transition: 0.3s ease;

}

.services__card button:hover {
    cursor: pointer;
    box-shadow: 0px 8px 15px rgba(0,0,0,0.6);
}

.services__card:hover {
    transform: scale(1.075);
    transition: 0.3s ease;
}

@media screen and (max-width: 1300px) {
    .services__wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .services__wrapper {
        grid-template-columns: 1fr;
    }
}

/* Contact us Section*/

.contactus {
    padding: 50px;
}

.contactwrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.signup__btn {
    font-size: 1.8rem;
    background: #0098ff;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #006ab3, #0098ff, #4db7ff);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #006ab3, #0098ff, #4db7ff);
    padding: 20px 60px;
    border: none;
    border-radius: 4px;
    color: #ebf7ff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline:none;
}

.signup__btn a {
    position: relative;
    z-index: 2;
    color: #ebf7ff;
    text-decoration: none;
}

.signup__btn::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #000c14;
    transition: all 0.35s;
    border-radius: 4px;
}

.signup__btn:hover {
    color: #ebf7ff;
}

.signup__btn:hover:after {
    width: 100%;
}

.contactus__img--container {
    position: relative;
    align-self: center;
    justify-self: center;
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.flipper {
    perspective: 1000px;
    transition: 0.6s;
    transform-style: preserve-3d;
}
  
.flipper.flipped {
    transform: rotateY(180deg);
    height: 500px;
}
  

.contact-container{
    padding: 20px;
    height: 100%;
    background: #afe6ff;
    display: flex;
    align-items: start;
    justify-content: space-evenly;
    border-radius: 20px;
}

.contactfront, .contactback {
    width: 500px;
    height: 500px;
    backface-visibility: hidden;
    top: 0;
    left: 0;
    border-radius: 20px;
}

.contactfront {
    z-index: 2;
    transform: rotateY(0deg);
    position: relative;
    background: #001727;
}

.contactfront img {
    width: 500px;
    height: 500px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 20px;
}

.contactback {
    transform: rotateY(180deg);
    position: absolute;
}


#contact-form {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
}
  
#contact-form label {
    display: block;
    margin-bottom: 10px;
    color: white;
}
  
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: #ccccccd0;
}

#contact-form textarea {
    height: 165px;
}
  
#contact-form input[type="submit"] {
    background-color: #0098ff;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin-right: 100%;
    margin-bottom: 1rem;
}

#contact-form a{
    color: #fff;
    margin-top: 0.2rem;
    margin-left: 1rem;
    font-size: 1.3rem;
    text-decoration: none;
    display: block;
}
  

/* Mobile Responsive */
@media screen and (max-width: 1100px) {
    .contactwrapper {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
        height: 90%;
    }

    .contactus__img--container {
        display: flex;
        justify-content: center;
    } 

    .flipper {
        height: 425px;
        width: 425px;
    }

    .contactfront, .contactback {
        height: 425px;
        width: 425px;
    }

    .contactfront img {
        height: 400px;
        width: 400px;
        margin-top: 5%;
    }

    #contact-form textarea {
        height: 150px;
    }

    .main__content{
        text-align: center;
        margin-bottom: 4rem;
    }

    .main__content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main__content h2 {
        font-size: 3rem;
    }

    .main__content p {
        margin-top: 1rem;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {

    .contactus__img--container {
        width: 300px;
        height: 425px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .contactfront img {
        margin: 0;
        margin-left: 0rem;
        margin-bottom: auto;
        height: 100%;
        width: 100%;
    }

    .flipper {
        width: 300px;
        height: 425px;
    }

    .contactfront, .contactback {
        height: 425px;
        width: 300px;
    }

    .contactback {
        margin-top: 40px;
    }

    .contact-container {
        padding: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .contact-container form{
        margin: 0;
        padding: 20px;
    }

    .contact-container form input{
        width: auto;
    }

    .contact-left-title {
        display: none;
    }

}

/* Footer Section*/

.footer__container {
    background: #000c14;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer__logo{
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.footer__links {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
}

.footer__link--wrapper {
    display: flex;
}

.footer__link--items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
}

.footer__link--items h2 {
    margin-bottom: 16px;
    color: #fff;
}

.footer__link--items a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: 0.3 ease-out;
}

.footer__link--items a:hover {
    color: #e9e9e9;
    transition: 0.3 ease-out;
}

.social__icon--link {
    color: #fff;
    font-size: 24px;
}

.social__media {
    max-width: 1000px;
    width: 100%;
}

.social__media--wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.social__icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
}

.website__rights {
    color: #fff;
}

@media screen and (max-width: 820px){
    .footer__links {
        padding-top: 2rem;
    }

    #footer__logo {
        margin-bottom: 2rem;
    }

    .website__rights {
        margin-bottom: 2rem;
    }

    .footer__link--wrapper {
        flex-direction: column;
    }

    .social__media--wrap {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .footer__link--items {
        margin: 0;
        padding: 10px;
        width: 100%;
    }
}



/* landing Page */

.contact-containerlp{
    background: #afe6ff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact-containerlp h2{
    font-size: 0.6rem;
}

.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-left-title h2{
    font-weight: 600;
    color: #000;
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-left-title hr{
    border: none;
    width: 140px;
    height: 5px;
    background-color: #000;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #6D5792;
    border-radius: 50px;
}

.contact-left textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-left h2{
    font-size: 0.6rem;
}

.contact-inputs:focus{
    border: 2px solid;
}

.contact-inputs::placeholder{
    color: #a9a9a9;
}

.contact-left button{
    font-weight: 550;
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg,#3777c8, #6D5792);
    cursor: pointer;
}

.contact-left button:hover{
    color: #000c14;
}

.contact-right img{
    width: 100vh;
    filter: drop-shadow(-4px -4px 2px black);
}


@media screen and (max-width:800px) {

    .contact-left{
        width: 80vh;
        margin: 20px;
    }
    
    .contact-right{
        display: none;
    }
}


/* Insights Corner */
.article {
    background-color: #afe6ff;

    display: flex;
}

.summary__box {
    color: #fff;
    text-align: left;
    font-size: 1.6rem;
    margin: 40px;
    margin-top: 150px;
    margin-left: 80px;
    width: 350px; 
    height: 100%;
    padding: 20px;
    background-color: #5fccff;
    position: sticky;
    top: 80px;
    border-radius: 4px;
    box-shadow:  0px 8px 15px rgba(0,0,0,0.6);
}


.text__box {
    color: black;
    font-size: 1.5rem;
    flex: 1;
    padding: 20px;
    padding-top: 40px;
    padding-right: 60px;
    padding-left: 0px;
    margin: 0 auto; /* Center the text__box */
    max-width: 1000px; /* Set a maximum width or adjust as needed */
    text-align: justify; /* Optional: Justify the text */
}


/* Style for images with captions */
.text__box img {
    margin-top: 40px;
    margin-bottom: 10px;
    max-width: 100%;
    height: auto;
    display: block;
}

.caption {
    font-style: italic;
    text-align: right;
    color: #777;
    margin-bottom: 20px;
}




/* Impressum */

.impressum_container {
    margin: 3rem;
    margin-top: 160px;
    padding: 2rem;
    background-color: #afe6ff;
    box-shadow: 0px 8px 15px rgba(0,0,0,0.6);
}

/* Portfolio */

.portfolio_wrapper{
    height: 100vh;
    margin: 0;
    padding-top: 160px;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.video-wrapper {
    border-radius: 10px;
    width: 450px; /* Adjust based on preference */
    max-height: 80vh; /* Adjust height as a percentage of the viewport height */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden; /* Ensures nothing spills out */
    z-index: 999;
}

.video-container {
    width: 100%;
    height: 100%; /* Takes full height of its parent */
    display: flex;
    justify-content: center;
}

video {
    height: 100%; /* Full height of its container */
    width: auto; /* Adjusts width automatically to maintain aspect ratio */
    max-width: 100%; /* Ensures it does not overflow its container */
}

.arrow_left {
    border-radius: 20px;
    z-index: 10;
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    background: rgba(0,0,0,0.5);
    border: none;
    padding: 10px;
    cursor: pointer;
}

.arrow_right {
    border-radius: 20px;
    z-index: 10;
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    background: rgba(0,0,0,0.5);
    border: none;
    padding: 10px;
    cursor: pointer;
}

.arrow_left, .arrow_right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.arrow_left {
    left: 10px;
}

.arrow_right {
    right: 10px;
}


.left_thumbnail, .right_thumbnail {
    position: absolute;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    bottom: 0;
    border-radius: 20px;
    width: 300px; /* Thumbnail width */
    height: 600px;
    filter: blur(5px);
    pointer-events: none; /* This makes the element not receive click events */
    background-size: cover;
    background-position: center;
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.left_thumbnail {
    left: 500px; /* Position slightly offscreen to the left */
}

.right_thumbnail {
    right: 500px; /* Position slightly offscreen to the right */
}

.farleft_thumbnail, .farright_thumbnail {
    position: absolute;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    bottom: 0;
    border-radius: 10px;
    width: 150px; /* Thumbnail width */
    height: 300px;
    filter: blur(5px);
    pointer-events: none; /* This makes the element not receive click events */
    background-size: cover;
    background-position: center;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.farleft_thumbnail {
    left: 400px; /* Position slightly offscreen to the left */
}

.farright_thumbnail {
    right: 400px; /* Position slightly offscreen to the right */
}

@media screen and (max-width:500px){

    .video-wrapper{
        width: 80%;
    }
    
    .left_thumbnail {
        left: 20px; /* Position slightly offscreen to the left */
        height: 50%;
    }
    
    .right_thumbnail {
        right: 20px; /* Position slightly offscreen to the right */
        height: 50%;
    }

    .farleft_thumbnail {
        left: 0px; /* Position slightly offscreen to the left */
    }
    
    .farright_thumbnail {
        right: 0px; /* Position slightly offscreen to the right */
    }
}

/* Warteliste */

.waitform_wrapper{
    margin-top: 300px;
    margin-left: auto;
    padding-left: 40%;
    height: 100vh;
}

.waitlistForm{
    background: linear-gradient(to bottom, #0099ff3a, #ebf7ff38);
    padding: 30px;
    width: 460px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    border-radius: 10px;
}

.waitlistForm h2{
    font-size: 0.6rem;
}

.waitlistForm input[type="text"],
.waitlistForm input[type="email"],
.waitlistForm input[type="number"] {
    border-radius: 10px;
}

.waitlistForm button{
    font-weight: 550;
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg,#3777c8, #6D5792);
    cursor: pointer;
}

.waitlistForm button:hover{
    color: #000c14;
}

.waitlist_inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #6D5792;
    border-radius: 50px;
}

.waitlist_inputs:focus{
    border: 2px solid;
}

.waitlist_inputs::placeholder{
    color: #a9a9a9;
}

@media screen and (max-width:800px) {

        
    .waitform_wrapper{
        padding-left: 10px;
        height: 100vh;
    }

    .waitlist_inputs{
        width: 320px;
    }

    

    .waitlistForm{
        width: 40vh;
        margin: 20px;
    }
}