/* MAIN */
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%
}
img {
    max-width: 100%;
}
body > section {
    padding: 60px 0;
}
body {
    margin: 0;
    background: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #030303;
    line-height: 28px;
    font-size: 18px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #292f36;
}
h5 {
    color: #ffffff;
    font-size: 18px;
}
h1, h2, h3 {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0 0;
}
h1 {
    font-size: 55px;
    color: #ffffff;
    line-height: 50px;
}
h2, h3 {
    font-size: 35px;
    line-height: 50px;
    margin-bottom: 20px;
}

.smaller-heading {
    font-size: 30px;
}

header {
    width: 100%;
    background-color: #ffffff;
    position: fixed;
    top:0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer {
    padding: 10px;
    font-size: 12px;
    text-align: center;

}

nav {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 15px;
}

.no-margin {
    padding: 0;
    margin: 0;
}

button {
    margin-top: 50px;
    padding: 15px 30px;
    border: none;
    background-color: #1da2fc;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    border-radius: 8px;
    font-size: 25px;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
}
button:hover {
    background-color: #5bb3ff;
    cursor: pointer;
}
.top-button {
    margin: 5px 20px;
    float: right;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
    transition: transform 0.3s ease;
}
.top-button:hover {
    transform: scale(1.2);
}

.top-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #000000;
    font-size: 26px;
}
.gray {
    color: #333333;
    font-size: 30px;
    font-weight: 800;
}

.container {
    width: 1170px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (max-width: 1200px) {
    .container {
        width: 90%
    }
}

.flex-row-center {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flex-row-start {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.flex-row-space {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.flex-col-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.flex-center {
    justify-content: center;
}
.flex-vert-center {
    align-items: center;
}

.flex-two-col {
    width: 50%;
}
.flex-70 {
    width: 70%;
}
.flex-30 {
    width: 29%;
}
.flex-three-col {
    width: 32.5%;
    padding-right: 40px;
}
.wrap {
    flex-wrap: wrap;
}
@media (max-width: 767px) {

    h1 {
        color: #ffffff;
        line-height: 38px;
    }
    h2, .x-large-font {
        font-size: 40px;
        line-height: 38px;
    }
}
.spacer {
    height: 30px;
    width: 100%;
}
.spacer-85 {
    height: 85px;
    width: 100%;
}

.spacer-60 {
    height: 70px;
    width: 100%;
}

.center {
    margin-right: auto;
    margin-left: auto;
}

.center-text {
    text-align: center;
    padding-bottom: 55px;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 75%;
    max-width: 600px;
    padding: 20px;
    position: relative;
}

.close-modal-btn {
    position: absolute;
    top: -50px;
    right: -20px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    background-color: transparent;
    width: 30px;
    height: 30px;
    margin: 0;
    box-shadow: none;
}

.close-modal-btn:hover {
    color: #000000;
    background-color: transparent;
}

.hide {
    display: none;
}

.copyright {
    font-size: 12px;
    text-align: center;
}

.workshop-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    width: calc(100% / 3 - 20px);
    flex: 0 0 calc(100% / 3 - 20px);
}
.rounded-edge {
    border-radius: 8px;
}

.divider {
    height: 1px;
    background-color: #4e4e4e;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
}

/* LANDING PAGES */
.main-banner {
    width: 100%;
    height: 98vh;
    min-height: 750px;
}

.subheader {
    font-size: 24px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.video-background-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: auto;
    transform: translateX(-50%);
    z-index: -1;
}

.overlay-content {
    position: relative;
    z-index: 1;
    padding-left: 15%;
    padding-top: 25%;
    width: 60%
}

.one-two-three {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
}
.blue {
    color: #00a6ed;
}

.orange {
    color: #ff7d00;
}

.green {
    color: #4cb944;
}

.review-text {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 30px;
}

.bar-graph {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.bar-and-text {
    display: flex;
    flex-direction: row;
    padding-bottom: 20px;
}

.bar {
    border-radius: 0 8px 8px 0;
    color: white;
    font-size: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.green-bar {
    background-color: #00C853;
    height: 100px;
    width: 80px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.green-bar span {
    color: white;
    font-size: 24px;
}

.gray-bar {
    background-color: #BDBDBD;
    height: 100px;
    width: 75%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gray-bar span {
    color: black;
    font-size: 24px;
    position: absolute;
    right: 20px;
}

.bar-text {
    font-size: 24px;
    align-self: center;
}

.carousel-container {
    background-color: #f4f5f7 ;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.carousel {
    overflow: hidden;
    position: relative;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    width: calc(100% / 3 - 20px);
    flex: 0 0 calc(100% / 3 - 20px);

}

p.stars {
    color: #ff9900;
    font-size: 18px;
    margin: 0;
}

.carousel-controls {
    margin-top: 20px;
    text-align: center;
}

.prev, .next {
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    outline: none;
    margin: 0 10px;
    color: #2e2e2e;
}

.prev:hover, .next:hover {
    background-color: #BDBDBD;
}

.events-list-container {
    background-color: #ee626d;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1200px;
    color: white;
}
.events-list-text {
    padding-right: 20px;
}

.events-list-text>button {
    background-color: #2e2e2e;
}
.events-list-text>button:hover {
    background-color: #4e4e4e;
}
.black-button {
    background-color: #2e2e2e;
}
.black-button:hover {
    background-color: #4e4e4e;
}

.check-list {
    list-style-type: none;
    padding-left: 40px;
}

.check-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 16px;
}


.events-list-text>h3 {
    color: #ffffff;
    font-size: 50px;
    line-height: 120%;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 10px;
}

.faq-container {
    background-color: #f4f5f7;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
}

.faq-header {
    font-size: 18px;
    color: #1da2fc;
    margin: 0;
}

.faq-subheader {
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    background-color: #ffffff;
    margin-top: 0;
    color: #333;
    border: none;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    text-align: left;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.faq-question:hover {
    background-color: #ffffff;
}

.arrow {
    background-color: #e0e0e0;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.arrow::before {
    content: '\25B6'; /* Right arrow */
    color: #333;
    font-size: 8px;
}

.faq-question.active .arrow::before {
    content: '\25BC'; /* Down arrow */
}

.faq-answer {
    display: none;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.contact-section {
    text-align: center;
    padding: 20px;
}

.contact-images {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-text .question {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-text p {
    font-size: 16px;
    margin: 5px 0;
}

.contact-link {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.contact-link:hover {
    text-decoration: underline;
}


.calendar-container {
    width: 100%;
    max-width: 1200px;
    background-color: #1a73e8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
}

.calendar-header {
    color: white;
    margin-bottom: 20px;
}

.calendar {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    overflow: hidden;
}

.workshop {
    background-color: #185abc;
    color: white;
    padding: 20px;
    border-radius: 10px;
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    box-sizing: border-box;
}

.workshop h2 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.workshop .date {
    font-size: 1.2em;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.workshop .date .month {
    font-size: 1em;
}

.workshop .date .day {
    font-size: 2.5em;
    font-weight: bold;
    padding-top: 2px;
}

.workshop .time {
    font-size: 1em;
    margin-bottom: 20px;
}

.register-button {
    background-color: #ffffff;
    color: #185abc;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
}

.register-button:hover {
    background-color: #e0e0e0;
}
.workshop-title {
    color: #ffffff;
}

.you-tube-container {
    position: relative;
    width: 80%; /* 80% of container width */
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    margin: 0 auto; /* Center the iframe horizontally */
}

#player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.unmute-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #1da2fc;
    color: white;
    border: none;
    border-radius: 5px;
}

.unmute-button:hover {
    background-color: #5bb3ff;
}

@media (max-width: 560px) {
    .workshop {
        flex: 0 0 calc(100% - 20px);
    }
    .calendar {
        display: flex;
        justify-content: space-around;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }

    .calendar::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
    }
}


@media (max-width: 1155px) {
    h1 {
        font-size: 40px;
    }
    .main-banner {
        height: 60vh;
    }
    .faq-question {
        font-size: 18px;
    }
    .overlay-content {
        position: absolute;
        width: 60%;
        bottom: 20px;
    }

}

@media (max-width: 875px) {
    .video-background {
        height: 100%;
        width: auto;
        left: 40%;
    }
    .overlay-content {
        padding-top: 32%;
        padding-left: 10%;
        width: 85%;
    }
    h1 {
        font-size: 30px;
    }
    h2, h3 {
        font-size: 38px;
    }
    .events-list-text>h3 {
        font-size: 38px;
    }
    .overlay-content>button {
        margin-top: 25px;
    }
    .subheader {
        font-size: 20px;
    }
    button {
        font-size: 22px;
    }
    .flex-row-start, .flex-row-space, .flex-row-center {
        flex-direction: column;
    }
    .flex-three-col {
        padding-bottom: 40px;
    }
    .flex-two-col {
        width: 100%;
    }
    .flex-three-col {
        width: 100%;
    }
    .card {
        width: calc(100% / 2 - 20px);
        flex: 0 0 calc(100% / 2 - 20px);
    }

    .events-list-container {
        width: auto;
    }
    .events-list-text>button {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .check-list {
        padding-left: 0;
    }
    .smaller-heading {
        font-size: 26px;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-container {
        width: auto;
    }
    .workshop-card {
        width: calc(100% - 20px);
    }
}

@media (max-width: 560px) {
    .container {
        width: 100%;
    }
    .top-title {
        font-size: 20px;
    }
    .flex-70 {
        width: 57%;
    }
    .flex-30 {
        width: auto;
    }
    .flex-three-col {
        padding-right: 0;
    }
    .top-button {
        font-size: 16px;
    }
    body > section {
        padding: 40px 0;
    }
    .main-banner {
        height: 76vh;
        max-height: 580px;
        min-height: 500px;
    }
    .video-background {
        position: absolute;
        top: 0;
        left: 50%;
        width: 100%;
        height: auto;
        transform: translateX(-50%);
        z-index: -1;
    }
    .overlay-content {
        position: absolute;
        bottom: 20px;
        padding-top: 0;
    }
    .gray {
        font-size: 24px;
    }
    .review-text {
        font-size: 20px;
    }
    .card {
        width: calc(100% - 20px);
        flex: 0 0 calc(100% - 20px);
    }
    .events-list-container {
        padding: 40px;
    }
    .events-list-text>h3 {
        font-size: 28px;
    }
    .faq-container {
        padding: 20px;
    }
    .faq-subheader {
        font-size: 28px;
    }
    .modal-content {
        width: 80%;
    }
}

@media (max-width: 375px) {
    h1 {
        font-size: 4vh;
        line-height: 30px;

    }
    .top-title {
        font-size: 5vw;
        line-height: 0;
    }
    .top-button {
        padding: 10px 12px;
        font-size: 5vw;
    }
}