@charset "UTF-8";

.lg-event-page {
    --bg-color: #F2F3F8;
    background-color: var(--bg-color);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

.lg-event-header {
    position: relative;
    min-height: 320px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 32px 0 120px;
}

@media (min-width: 768px) {
    .lg-event-header {
        gap: 16px;
        min-height: 400px;
        padding: 32px 0 84px;
    }
}

.lg-event-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.lg-event-header__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 767px) {
    .lg-event-header__bg-desktop {
        display: none;
    }
}

@media (min-width: 768px) {
    .lg-event-header__bg-mobile {
        display: none;
    }
}

.lg-event-header__type, .lg-event-header__title {
    position: relative;
    z-index: 1;
}

.lg-event-header__type {
    text-transform: uppercase;
    padding: 6px 10px;
    font-weight: 600;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 0.875rem;
    line-height: 0.875rem;
}

@media (min-width: 768px) {
    .lg-event-header__type {
        font-size: 1.25rem;
        line-height: 1.25rem;
    }
}

.lg-event-header__title {
    text-align: center;
    margin: 0;
}

.lg-event-header h1 {
    font-weight: 600;
    margin: 0;
    display: inline;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0 12px 5px;
    line-height: normal !important;
    font-size: 1.5rem;
    line-height: 1.5rem;
}

@media (min-width: 768px) {
    .lg-event-header h1 {
        padding: 0 12px 9px;
        font-size: 3rem;
        line-height: 3rem;
    }
}

.lg-event-info {
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: -100px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .lg-event-info {
        margin-top: -56px;
    }
}

.lg-event-info__content {
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: white;
    border-radius: 20px;
    gap: 40px;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .lg-event-info__content {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .lg-event-info__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.lg-event-info__date-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .lg-event-info__date-wrap {
        text-align: left;
    }
}

.lg-event-info__date {
    font-size: 1.75rem;
    line-height: 1.75rem;
}

.lg-event-info__free-label {
    font-size: 1.125rem;
    line-height: 1.125rem;
}

@media (max-width: 767px) {
    .lg-event-info .btn {
        width: 100%;
    }
}

.lg-event-speakers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.lg-event-speaker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background-color: white;
    border-radius: 14px;
    width: 280px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .lg-event-speaker {
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        max-width: 576px;
        padding-right: 40px;
    }
}

.lg-event-speaker__img {
    width: 280px;
    height: 280px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (min-width: 768px) {
    .lg-event-speaker__img {
        width: 220px;
        height: 220px;
    }
}

.lg-event-speaker__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

@media (max-width: 767px) {
    .lg-event-speaker__info {
        padding: 0 32px 40px;
    }
}

.lg-event-speaker__name {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2.0625rem;
}

.lg-event-speaker__position {
    margin-top: 8px;
    font-size: 0.875rem;
    line-height: 1.125rem;
}

.lg-event-speaker__company {
    margin-top: 20px;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.375rem;
}

.lg-event-speaker__label {
    font-weight: bold;
    padding: 6px 12px 7px;
    color: #E1312F;
    border-radius: 4px;
    background-color: rgba(231, 50, 48, 0.1);
    font-size: 0.875rem;
    line-height: 0.875rem;
    position: absolute;
    top: 10px;
}

@media (max-width: 767px) {
    .lg-event-speaker__label {
        left: 10px;
    }
}

@media (min-width: 768px) {
    .lg-event-speaker__label {
        right: 10px;
    }
}

.lg-you-will-know {
    padding-right: 20px;
    padding-left: 20px;
}

@media (min-width: 768px) {
    .lg-you-will-know {
        padding-right: 40px;
        padding-left: 40px;
    }
}

@media (min-width: 1024px) {
    .lg-you-will-know {
        padding-right: 56px;
        padding-left: 56px;
    }
}

.lg-you-will-know .lg-block__header-subtitle-container__wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.lg-you-will-know .lg-block__header-subtitle-container__head {
    max-width: 376px;
    width: 100%;
}

@media screen and (min-width: 856px) {
    .lg-you-will-know .lg-block__header-subtitle-container__head {
        max-width: 776px;
    }
}

@media screen and (min-width: 1288px) {
    .lg-you-will-know .lg-block__header-subtitle-container__head {
        max-width: 1176px;
    }
}

.lg-you-will-know .lg-block__header-subtitle-container__wrap {
    row-gap: 64px;
}

@media (min-width: 768px) {
    .lg-you-will-know .lg-block__header-subtitle-container__wrap {
        row-gap: 84px;
    }
}

.lg-card-container {
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 64px;
}

.lg-you-will-know__card {
    background-color: white;
    padding: 64px 24px 24px;
    position: relative;
    max-width: 376px;
}

.lg-you-will-know__card:hover {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.lg-you-will-know__card::before {
    display: block;
    position: absolute;
    top: -52px;
    left: 24px;
    font-weight: bold;
    color: #CED0DB;
    font-size: 6.5rem;
    line-height: 6.5rem;
}

.lg-you-will-know__card:nth-child(1)::before {
    content: "1";
}

.lg-you-will-know__card:nth-child(2)::before {
    content: "2";
}

.lg-you-will-know__card:nth-child(3)::before {
    content: "3";
}

.lg-you-will-know__card p {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.625rem;
}

@media (min-width: 768px) {
    .lg-you-will-know__card p {
        font-size: 1.5rem;
        line-height: 1.9375rem;
    }
}

.lg-event-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .lg-event-form {
        margin-bottom: 62.4px;
    }
}

@media (min-width: 1024px) {
    .lg-event-form {
        margin-bottom: 81.12px;
    }
}

@media (min-width: 1256px) {
    .lg-event-form {
        margin-bottom: 105.456px;
    }
}

.lg-event-form__wrap {
    margin: 0;
    position: relative;
    z-index: 1;
    background-color: var(--bg-color);
}

@media (min-width: 768px) {
    .lg-event-form__wrap {
        padding: 0 40px;
    }
}

.lg-event-form__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
}

.lg-event-form__header {
    opacity: 0.8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.lg-event-form__header p:first-child {
    margin-top: 0;
}

.lg-event-form__header p:last-child {
    margin-bottom: 0;
}

.lg-event-form__header h2, .lg-event-form__header h3 {
    margin: 0;
}

.lg-event-form__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lg-event-form__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center;
}

@media (max-width: 767px) {
    .lg-event-form__bg-desktop {
        display: none;
    }
}

.lg-event-form .webform-submission-form {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.lg-event-form .webform-submission-form .webform-button--submit {
    border-color: #E73230;
    background: #E73230;
    border-radius: 6px;
    width: 100%;
}

.lg-event-form .webform-submission-form .webform-button--submit:hover {
    background: #BD1E1D;
    border-color: #BD1E1D;
}

.lg-event-form .webform-submission-form .a-prv {
    text-align: left;
}

.lg-event-about {
    margin-top: 32px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 48px;
}

@media (min-width: 768px) {
    .lg-event-about {
        margin-top: 41.6px;
    }
}

@media (min-width: 1024px) {
    .lg-event-about {
        margin-top: 54.08px;
    }
}

@media (min-width: 1256px) {
    .lg-event-about {
        margin-top: 70.304px;
    }
}

@media (min-width: 768px) {
    .lg-event-about {
        padding-right: 40px;
        padding-left: 40px;
    }
}

@media (min-width: 1024px) {
    .lg-event-about {
        padding-right: 56px;
        padding-left: 56px;
    }
}

@media (min-width: 768px) {
    .lg-event-about {
        padding-bottom: 62.4px;
    }
}

@media (min-width: 1024px) {
    .lg-event-about {
        padding-bottom: 81.12px;
    }
}

@media (min-width: 1256px) {
    .lg-event-about {
        padding-bottom: 105.456px;
    }
}

.lg-event-about h2 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.5rem;
}

@media (min-width: 768px) {
    .lg-event-about h2 {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }
}

.lg-event-about ul {
    margin: 20px 0;
    padding: 0;
}

.lg-event-about ul > li {
    padding: 0 0 0 28px;
    position: relative;
}

.lg-event-about ul > li:before {
    display: inline-block;
    vertical-align: middle;
    content: "—";
    color: #E1312F;
    position: absolute;
    top: 0;
    left: 0;
}

.lg-event-about ul li {
    margin: 16px 0;
    list-style: none;
}

@media (max-width: 767px) {
    .lg-event-about ul ol {
        margin-left: -28px;
    }
}

.lg-event-about .lg-block__img-text__wrap {
    max-width: 1094px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.lg-event-about .lg-block__img-text__image {
    -webkit-box-shadow: 0 100px 100px -50px rgba(0, 28, 55, 0.5);
    box-shadow: 0 100px 100px -50px rgba(0, 28, 55, 0.5);
}

.lg-event-about__video {
    width: 100%;
    max-width: 520px;
    -webkit-box-shadow: 0 100px 100px -50px rgba(0, 28, 55, 0.5);
    box-shadow: 0 100px 100px -50px rgba(0, 28, 55, 0.5);
    aspect-ratio: 16/9;
    background-color: white;
}

.lg-event-about__video video {
    max-width: 520px;
    width: 100%;
}

.lg-event-about .lg-btn-wrap {
    margin-top: 20px;
}

.lg-event-about .btn {
    min-width: 260px;
}

.lg-footer {
    margin-top: 0 !important;
}