/* Global Styles */
:root {
    --primary-color: #14A19F;
    --secondary-color: #182A42;
    --accent-color: #BEF3F2;
    --text-color: #333;
    --background-color: #fff;
    --max-width: 1440px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Montserrat, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('../images/BG-transparency-4k-Privacy.png') bottom/contain no-repeat, linear-gradient(180deg, #FFF 34.97%, #35ADAB 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    color: #11273D;
}
.hero-top-content {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px
}
.menu-title{
    color: #11273D;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    backdrop-filter: blur(10px);
    cursor: pointer;
    text-decoration: none;
}
.register-button {
    background-color: #14A19F;
    color: var(--background-color);
    padding: 1rem 2rem;
    border: 2px solid var(--background-color);
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.register-button:hover {
    border: 2px solid #14A19F;
    background-color: var(--background-color);
    color: #11273D;
}
.small-logo{
    position: absolute;
    width: 180px;
    height: 60px;
    top: 2rem;
    left: 2%;
    display: flex;
}

.logo {
    text-align: center;
}

.event-description-container {
    text-align: left;
}

.hero-section .content {
    max-width: var(--max-width);
    z-index: 1;
}
.video-wrapper{
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
}
.video-wrapper video {
    width: 100%;

}
.video-wrapper img {
    width: 100%;

}
.logo img {
    width: 100%;
    max-width: 1920px;
    height: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.event-details {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}
.event-description-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 60px;
}

.event-description-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 95%;
    margin: 1rem auto;
}
.desc-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}
.event-description {
    font-size: 1.2rem;
    flex: 1;
    margin: 0;
}

@media (max-width: 768px) {
    .event-description-wrapper{
        gap: 20px
    }
    .event-description{
        width: 100%;
        text-align: center;
    }
}

.highlight {
    color: #11273D;
    font-weight: bold;
}

/* Info Section */
.info-section {
    width: 100%;
    background-color: #F5F5F5;
    padding: 4rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-section>* {
    max-width: 45%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 3.24rem;
}

.info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: var(--primary-color);
    text-transform: uppercase;
}

.info-section h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem;
}

.info-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-section h3 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.info-section p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Form Section */
.form-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    max-width: 43%;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
}

.form-section h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem;
    max-width: 45%;
}

.form-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 45%;
    text-align: center;
}
.form-container {
    max-width: 768px;
    width: 98%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group {
    display: flex;
    gap: 1rem;
}

input {
    padding: 1rem;
    font-size: 1rem;
    width: 100%;
    border-radius: 12px;
    border: 2px solid #BFCACA;
    background: #F8F8F8;
}

.form-container button, .register-btn {
    background-color: #272727;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 300px;
    align-self: center;
}

.form-container button:hover, .register-btn:hover {
    background-color: #0d8482;
}

.form-message {
    margin-top: 1rem;
    text-align: center;
    font-size: 1rem;
    min-height: 24px;
    transition: all 0.3s ease;
}

.form-container button:disabled, .register-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* CTA Section */
.cta-section {
    position: relative;
    text-align: center;
    padding: 4rem 2rem;
    background: url('../images/CTA BG IMAGE.png') center/cover no-repeat;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.details {
    display: flex;
    gap: 2rem;
    justify-content: center;
    font-size: 1.2rem;
}

/* Features Section */
.features-section {
    padding: 4rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.features-section h2 {
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 64px;
    height: 64px;
    color: var(--primary-color);
    filter: invert(45%) sepia(82%) saturate(385%) hue-rotate(135deg) brightness(87%) contrast(98%);
}

.details .icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.details span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: left;
}

.feature-description {
    color: var(--secondary-color);
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
}

@media (max-width: 1200px) {
    .features-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .event-description-container {
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
    }
    .event-description-container video {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-section h3 {
        max-width: 92%;
        text-align: left;
    }

    .form-section p {
        max-width: 92%;
        text-align: left;
    }
    .video-wrapper{
        gap: 20px
    }
}

@media (max-width: 480px) {
    .features-container {
        grid-template-columns: 1fr;
    }
}

/* Questions Section */
.questions-section {
    padding: 6rem 2rem;
    background: linear-gradient(209deg, #182A42 0.12%, #35ADAB 84.89%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.questions-section h2 {
    margin-bottom: 4rem;
    max-width: 55%;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    text-align: center;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 30px */
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.questions-container {
    max-width: 88%;
    margin: 0 auto;
    padding: 2rem 0;
}

.questions-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.question-item {
    padding: 1rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid #C6EAE9;
    background: #BEF3F2;
    color: #11273D;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.more-text {
    margin-top: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
    color: #BEF3F2;
    text-align: center;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

/* Recordings Section */
.recordings-section {
    padding: 10rem 2rem;
    text-align: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.recording-desc{
    width: 35%;
    margin: 0 auto;
}
.carousel-section{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 6rem;
}

.summit-title{
    padding-top: 4rem;
    line-height: 140%;
    color: #14A19F;
    font-family: 'Inter';
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.summit-desc{
    display: flex;
    max-width: 45%;
    color: #11273D;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    backdrop-filter: blur(10px);
    padding-top: 1rem;
}
.carousel-images{
    width: 100vw;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 3.5rem 0;
}
.carousel-images::-webkit-scrollbar {
    display: none;
}

.review-component{
    display: flex;
    width: 80%;
    gap: 24px;
    overflow-x: auto;
    justify-content: center;
}

.review-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    max-width: 29%;
    border-radius: 24px;
    border: 1px solid #CDCDCD;
    background: #FFF;
}
.review-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #CDCDCD;
    background: #F5F5F5;
    color: #14A19F;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}
.review-title .bold {
    font-weight: 700;
}
.review-desc {
    display: flex;
    padding: 1rem 1.5rem;
    background: #fff;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}
.carousel-images img {
    scroll-snap-align: center;
    border-radius: 17px;
    border: 3px solid #14A19F;
}

.item-list {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.video-container {
    margin-top: 2rem;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    box-shadow: 2px -20px 150px 1px #14A19E;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.3s;
}

/*Speakers section*/

.speaker-section{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
    gap: 40px;
    background: #14A19F;
}
.speaker-title{
    color: #FFF;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
}
.speaker-slider{
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.view-all-href{
    text-decoration: none;
}
.view-all{
    display: flex;
    padding: 20px 50px;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: 2px solid #FFF;
    background: #FFF;
    color: #14A19F;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.speaker-card-wrapper {
    display: flex;
    width: 345px;
    height: 459px;
    padding: 40px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 20px;
    border: 1px solid #BEF3F2;
    background: #FFF;
    box-shadow: 0 10px 24px 0 rgba(19, 26, 76, 0.15);
    gap: 15px;
}
.speaker-img {
    width: 162px;
    height: 162px;
    flex-shrink: 0;
    border-radius: 91px;
    object-fit: contain;
    background-blend-mode: color, normal;
    margin: 0 auto 25px;
}

.speaker-name{
    display: flex;
    min-height: 57px;
    color: #272727;
    leading-trim: both;
    text-edge: cap;
    font-family: Poppins;
    backdrop-filter: blur(10px);
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
}

.speaker-desc{
    display: flex;
    align-items: center;
    min-height: 84px;
    color: #11273D;
    leading-trim: both;
    text-edge: cap;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    backdrop-filter: blur(10px);
}

.social-network-speaker{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 13px;

}

/* Become a sponsor section */

.become-sponsor-section{
    width: 100%;
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 7.03%, #F5F5F5 41.22%);
    padding-bottom: 6rem;
}
.become-sponsor-component{
    width: 76%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}
.sponsors-container{
    display: flex;
    width: 100%;
    gap: 25px;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 110px;
    overflow: auto;
    /*flex-wrap: wrap;*/
}
.sponsor-title {
    color: #11273D;
    text-align: center;
    font-family: Poppins;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    padding: 1rem;
}

.sponsor-desc {
    display: flex;
    padding: 4rem 2.5rem;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    border-radius: 15px;
    background: linear-gradient(270deg, #35ADAB 0.07%, #182A42 99.13%);
    backdrop-filter: blur(10px);
}

.desc-text{
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #fff;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.desc-text .bold {
    font-size: 28px;
    font-weight: 600;
    line-height: 35px;
}

.sponsor-boxes{
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    gap: 32px
}
.sponsor-box-component{
    display: flex;
    padding: 2.5rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    align-self: stretch;
    width: 30%;
    border-radius: 15px;
    border: 2px solid #14A19F;
    background: #fff;
    backdrop-filter: blur(10px);
}
.sponsor-box-title {
    color: #14A19F;
    font-family: Poppins;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
    backdrop-filter: blur(10px);
}
.sponsor-box-desc {
    color: #11273D;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.contact-us{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.contact-us-title{
    color: #11273D;
    text-align: center;
    font-size: 29px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.contact-us-mail {
    display: flex;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    border: 2px solid #14A19F;
    color: #14A19F;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    text-decoration: unset;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: #BEF3F2;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: #11273D;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #a9e9e8;
}

.faq-question .icon {
    margin-right: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--secondary-color);
    line-height: 1.6;
}

.faq-item {
    overflow: hidden;
}

.faq-item h3 {
    padding: 1.5rem;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item p {
    max-height: 0;
}

.faq-item.active p {
    max-height: 100px;
}

/*Media Partner Section*/
.media-section{
    width: 100%;
    padding: 4rem 2rem;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #ECF6F6 100%);
}

.media-header{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 45px;
    max-width: var(--max-width);
}
.media-header h2 {
    color: #272727;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}
.media-item-wrapper{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
    overflow: auto;
}

.media-item{
    display: flex;
    height: 140px;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex: 1 0 0;
    border-radius: 12px;
    border: 0.8px solid #CDCDCD;
    background: #FFF;
}

.bgi-venue-wrapper{
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.venue-container {
    width: 100%;
    max-width: 470px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 29px;
    padding-bottom: 20px;
}
.venue-container h2{
    color: #14A19F;
    font-size: 123px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    backdrop-filter: blur(10px);
}
.venue-container h3{
    color: #14A19F;
    font-size: 80px;
    font-style: normal;
    font-weight: 600;
    line-height: 80px;
    backdrop-filter: blur(10px);
}
.venue-desc{
    color: #595A63;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    backdrop-filter: blur(10px);
}
.venue-location{
    color: #272727;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    backdrop-filter: blur(10px);
}
.venue-info-text{
    color: #272727;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    backdrop-filter: blur(10px);
}
.map-container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
#map {
    height: 820px;
    width: 100%;
}

/* Footer */
.footer {
    background: url('../images/CTA BG IMAGE.png') center/cover no-repeat;
    color: white;
    padding: 4rem 2rem 2rem;
    position: relative;
}

.footer-content {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-left {
    flex: 0 0 auto;
    max-width: 300px;
}

.footer-logo {
    width: 100%;
    height: auto;
}

.footer-right {
    flex: 0 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-section,
.social-section {
    text-align: left;
}

.footer h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer .links a {
    color: #BEF3F2;
    text-decoration: none;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.footer .links a:hover {
    transform: translateY(-3px);
}

.footer a:not(.links a) {
    color: white;
    text-decoration: none;
}

.footer a:not(.links a):hover {
    color: var(--accent-color);
}

.footer>p {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

/* Privacy Policy Section */
.privacy-section {
    padding: 4rem 2rem;
    background-color: white;
}

.privacy-section h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin: 2rem 0;
}

.privacy-section h2 {
    color: #11273D;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.privacy-section p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.privacy-section h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 500;
}

.privacy-section ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.privacy-section li {
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.privacy-link {
    color: white;
    text-decoration: underline;
}

.privacy-top-section {
    position: relative;
    background: url('../images/BG-transparency-4k-Privacy.png') bottom/cover, #d3d3d354 0px -770.414px / 100% 307.659% no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #11273D;
}

.privacy-top-section .logo img {
    max-width: 800px;
}

.privacy-top-section {
    position: relative;
    background: url('../images/BG-transparency-4k-Privacy.png') bottom/cover, #d3d3d354 0px -770.414px / 100% 307.659% no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #11273D;
}

.container {
    max-width: 74rem;
    margin: 0 auto;
    padding: 0 1rem;
}

a {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .contact-section,
    .social-section {
        text-align: center;
    }
    .small-logo{
        width: 120px;
        height: 40px;
    }

    .register-button {
        display: flex;
        align-items: center;
        font-size: 12px;
        padding: 0.5rem;
    }
    #map {
        height: 560px;
    }
}

/* Responsive Design */
@media (max-width: 1020px) {
    .info-section>* {
        max-width: 98%;
        text-align: left;
    }
    .form-section h2 {
        max-width: 98%;
        text-align: left;
    }
    .cta-section {
        padding: 4rem 1rem;
    }
    .cta-section h2 {
        font-size: 1rem;
    }
    .features-section h2 {
        font-size: 1.7rem;
    }
    .faq-section h2{
        font-size: 1.8rem;
    }
    .review-component{
        padding: 0 1rem;
        width: 100%;
        gap: 14px;
        justify-content: flex-start;
    }
    .review-box{
        min-width: 90%;
    }
    .review-title, .review-desc{
        padding: 0.5rem 1rem;
    }

    .sponsor-boxes{
        flex-direction: column;
    }
    .sponsor-box-component{
        width: 100%;
        padding: 1rem 0.5rem;
    }
    .become-sponsor-component{
        width: 100%;
    }
    .contact-us-title{
        font-size: 18px;
    }
    .menu-title{
        display: none;
    }
    .venue-container{
        max-width: 45%;
    }
    .venue-container h2{
        font-size: 80px;
    }
    .venue-container h3{
        font-size: 65px;
    }

}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 2rem;
    }

    .event-details {
        flex-direction: column;
        gap: 1rem;
    }

    .input-group {
        flex-direction: column;
    }

    .details {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        text-align: center;
    }

    .footer .links {
        justify-content: center;
    }
    .questions-section{
        padding: 3rem 2rem;
    }
    .question-item{
        padding: 0.5rem 1rem;
        font-size: 12px;
    }
    .questions-section h2 {
        font-size: 25px;
        margin-bottom: 3rem;
        max-width: 100%;
    }
    .recording-desc{
        width: 100%;
    }
    .summit-title{
        width: 100%;
        font-size: 28px;
        padding: 3rem 1rem 1rem;
        text-align: left;
    }
    .summit-desc {
        text-align: left;

        max-width: 90%;
    }
    .recordings-section {
        padding: 8rem 1rem;
    }
    .become-sponsor-section{
        width: 100%;
        padding: 0 1rem 5rem;
    }
    .sponsor-title{
        font-size: 28px;
    }
    .sponsor-desc{
        width: 100%;
        flex-direction: column;
        padding: 0.5rem 1rem;
        align-items: flex-start;
    }
    .desc-text {
        font-size: 14px;
    }
    .desc-text .bold{
        font-size: 20px;

    }
    .bgi-venue-wrapper{
        flex-direction: column;
    }
    .venue-container{
        max-width: 95%;
    }
    .venue-container h2{
        font-size: 75px;
    }
    .venue-container h3{
        font-size: 53px;
    }
}

.mySwiper {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}
.swiper-wrapper{
    width: 100%;
    display: flex;
    align-items: center;
}

.mySwiper::before,
.mySwiper::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    top: 10px;
    right: -1px;
    bottom: 10px;
    box-shadow: 40px 1px 150px 180px #14A19F;
    border-radius: 10px;
    z-index: 999;
}

.mySwiper::after {
    left: -1px;
    richness: unset;
    box-shadow: 1px 1px 150px 180px #14A19F;
}
.swiper-slide{
    display: flex;
    align-items: center;
}
.swiper-pagination-wrapper{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 20px;
}
.speaker-section .swiper-pagination-wrapper .swiper-pagination{
    top: 0;
    bottom: 0;
}
.swiper-pagination-wrapper .swiper-pagination .swiper-pagination-bullet{
    width: 20px;
    height: 20px;
    background: white;
    opacity: 1;
}
.swiper-pagination-wrapper .swiper-pagination .swiper-pagination-bullet-active{
    width: 20px;
    height: 20px;
    background: #11273D;
    opacity: 1;
}

@media (max-width: 480px) {
   .speaker-section .mySwiper .swiper-slide {
        display: flex;
        justify-content: center;
    }
    .mySwiper::before,
    .mySwiper::after {
        content: unset;
    }
    .swiper-pagination-wrapper .swiper-pagination .swiper-pagination-bullet {
        width: 18px;
        height: 18px;
    }
}


/*Speakers page*/

.speakers-container{
    display: flex;
    width: 100%;
    padding: 5rem;
    gap: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.speakers-page-title {
    color: #14A19F;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    backdrop-filter: blur(10px);
}
.speaker-items-container{
    width: 100%;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1440px;
}
