#landing-page {
    .container {
        @media screen and (min-width: 1200px) {
            max-width: 960px;
        }
    }
    .carousel-control-prev,
    .carousel-control-next {
        background: transparent;
        border: 0;
        padding: 0;
        width: fit-content;
        padding: 0 12px;

        span {
            width: 24px;
            height: 24px;

            @media screen and (min-width: 960px) {
                width: 48px;
                height: 48px;
            }
        }
    }
    img {
        border-radius: 8px;
    }
    .modal-body {
        padding: 0;

        img {
            padding: 20px 0;
            width: auto;
            max-height: 80vh;
            max-width: 80vw;
            height: 100%;
        }
    }
    .modal-content,
    .modal-dialog {
        max-height: 80vh;
        max-width: 80vw;
        margin: 0 auto;
    }
    .rx-button {
        &:hover {
            background-color: var(--primary-color);
            color: #fff;
        }
    }
    section {
        padding: 40px 0;

        &.dark {
            background-color: var(--primary-color);
            color: #fff;

            hr {
                background-color: #fff;
            }
            .rx-button {
                color: #fff;
                border-color: #fff;

                &:hover {
                    background-color: #fff;
                    color: var(--primary-color);
                }
            }
        }
    }
    #s0 {
        text-align: center;

        &.dark, 
        &.dark h1 {
            color: #fff;
        }
        h1 {
            font-family: var(--primary-font);
            letter-spacing: 1px;
            margin: 0;
            color: var(--primary-color);

            @media screen and (max-width: 960px) {
                font-size: 44px;
            }
        }
        p {
            font-family: var(--secondary-font);
            font-size: 20px;
            margin: 0;
        }
        img {
            width: initial;
            height: auto;
            margin-top: 16px;
        }
    }
    #s2 {
        img {
            width: 100%;
            height: auto;
        }
        .rx-button {
            width: 100%;
            text-align: center;

            @media screen and (min-width: 960px) {
                max-width: fit-content;
            }
        }
        iframe {
            width: 100%;
            height: 100%;
            border-radius: 8px;
            overflow: hidden;

            @media screen and (max-width: 960px) {
                height: 250px;
            }
        }
    }
    #s3 {
        text-align: center;

        img {
            width: 100%;
            height: 120px;
            object-fit: cover;
        }
        iframe {
            width: 100%;
            height: 450px;
            border-radius: 8px;
            overflow: hidden;

            @media screen and (max-width: 960px) {
                height: 250px;
            }
        }
    }
    #s5 {
        text-align: center;

        p {
            font-family: var(--secondary-font);
        }
    }
    #s6 {
        .container {
            @media screen and (min-width: 1200px) {
                max-width: 1140px;
            }
        }
        .table-title {
            font-size: 18px;
            font-weight: bold;
            padding: 0 0 20px;
            font-family: var(--primary-font);
        }
        .single-event {
            font-family: var(--secondary-font);
            text-transform: uppercase;
            font-size: 13px;
            border-top: 1px solid #D1D1D1;
            padding: 16px 0;
        }
        .speaker {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            justify-items: center;
            font-size: 11px;

            img {
                width: 36px;
                height: 36px;
                border-radius: 50%;
                margin-right: 8px;
            }
        }
    }
}