/* 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;
    scroll-behavior: smooth;
}
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: #000000;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
}

img {
    max-width: 100%;
}

.no-margin {
    padding: 0;
    margin: 0;
}
h1, h2, h3 {
    font-family: "Montserrat", sans-serif;
}

h1 {
    font-weight: 700;
    font-size: 60px;
    color: #fff;
    margin: 5px
}
h2, h3{
    font-size: 45px;
}

h3 {
    margin-bottom: 10px;
    margin-top: 10px;
}

.main-banner {
    width: 100%;
    min-height: 80vh;
    background-image: url('../images/subconscious-mind.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
        max-width: 1200px;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
}

.top-container {
    padding-top: 40px
}

.flex-row-start {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.flex-60 {
    width: 60%;
}
.flex-center {
    display: flex;
    justify-content: center;
    width: 100%;
}
.center {
    text-align: center;
}

ul {
    list-style: none; /* Remove default bullets */
    padding-left: 1.5em; /* Add space for custom bullet */
}

ul li {
    position: relative;
    padding-left: 1.5em; /* Space between bullet and text */
    margin-bottom: 0.2em;
}

ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 0.35em solid transparent;
    border-bottom: 0.35em solid transparent;
    border-left: 0.5em solid #3478FF; /* Blue triangle */
}

ul {
    font-size: 20px;
    font-weight: 400;
}
li {
    line-height: 2;
}

p {
    line-height: 1.5;
}

.blue {
    color: #3478FF;
}
.orange {
    color: chocolate;
}
.bar {
    width: 40%;
    height: 1px;
    background-color: #ffffff;
    margin: 1em 0;
    max-width: 300px;
}

.top-container {
    font-size: 20px;
    padding-bottom: 20px;
}

.blue-button {
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    padding: 12px 24px;
    border-radius: 3px;
    text-align: center;
    background-color: #1f5dd8;
    text-decoration: none;
    color: #ffffff;
    display: inline-flex;
    gap: 0.5em;
    transition: all .3s;
}

a.blue-button svg {
    display: inline-block;
    fill: white;
}

a.blue-button:hover svg {
    transform: translateY(2px);
    transition: transform 0.2s ease;
}

.xl-padding {
    padding-top: 30px;
    padding-bottom: 30px;
}

.lg-text {
    font-size: 22px;
}

.blue-bg {
    background-color: #07142e;
    width: 100%;
    margin: 0;
}

.date {
    font-size: 35px;
    font-weight: 700;
    padding: 10px
}
.location {
    font-size: 24px;
    display: inline-flex;
}

.location svg {
    height: 1em;
    width: 1em;
    fill: #1f5dd8;
    margin-right: 10px;
}

.form-container {
    max-width: 600px;
    width: 1200px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

footer {
    background-color: #222;
    margin: 0;
    text-align: center;
    font-size: 13px;
}
.mobile {
    display: none;
}

@media (max-width: 767px) {
    .flex-60 {
        width: 100%;
    }
    h1, h2, h3{
        font-size: 6vh;
    }
}

@media (max-width: 550px) {
    .desktop-only {
        display: none;
    }
    h1, h2, h3 {
        font-size: 30px;
        text-align: center;
    }
    .top-container {
        font-size: 18px;
    }
    ul li {
        font-size: 18px;
        line-height: 25px;
    }
    .mobile {
        display: block;
    }
    .main-banner {
        background-position: top left;
        min-height: auto;
    }
    .mobile-banner {
        margin: 0;
    }
    .top-container {
        padding: 18px 20px;
    }
    .location svg {
        margin-right: 3px;
    }
}




