﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url(../fonts/fonts.css);

@keyframes headerfade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

header {
    position: fixed;
    width: 100%;
    z-index: 1;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
}

    html ::-webkit-scrollbar, body ::-webkit-scrollbar {
        width: 0.3em;
        height: 0.3em;
    }

    html ::-webkit-scrollbar-thumb, body ::-webkit-scrollbar-thumb {
        background: slategray;
    }

    html ::-webkit-scrollbar-track, body ::-webkit-scrollbar-track {
        background: #b8c0c8;
    }

    html body, body body {
        scrollbar-face-color: slategray;
        scrollbar-track-color: #b8c0c8;
    }

@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
    html, body {
        font-size: 16px;
        font-weight: 400;
    }
}

@media screen and (max-width: 700px) {
    body {
        padding-top: 100px;
    }
}

:root {
    /* Not my favorite that line-height has to be united, but needed */
    --lh: 2.5rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    padding: 0px;
    margin: 0px;
    font-family: 'Inter', sans-serif;
}

* {
    padding: 0px;
    margin: 0px;
    font-family: 'Inter', sans-serif;
    /*font-family: 'Roboto', sans-serif;*/
    box-sizing: border-box;
    line-height: 100%;
    font-weight: normal;
}

header {
    background: #fff;
}

    header .wrapper {
        height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1240px;
        margin: 0px auto;
        overflow: hidden;
        position: relative;
    }

@media screen and (max-width: 1240px) {
    header .wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width: 700px) {
    header {
        position: fixed;
        top: 0px;
        right: 0px;
        left: 0px;
        z-index: 999999;
    }

        header .wrapper {
            padding-left: 0px;
            padding-right: 0px;
        }
}

header .wrapper a span.logo {
    width: 50px;
    height: 25px;
    background: url(../MicroSite/images/clmlogo.svg) no-repeat 0% 50%;
    background-size: 100% auto;
}

header .wrapper span.btns {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media screen and (max-width: 700px) {
    header .wrapper span.btns {
        padding-right: 80px;
    }
}

header .wrapper span.btns a {
    display: block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    margin: 0px 0px 0px 10px;
    transition: all ease .5s;
    min-width: 120px;
    text-align: center;
    text-transform: uppercase;
}

    header .wrapper span.btns a:hover {
        filter: grayscale(100%);
        transition: all ease .5s;
    }

    header .wrapper span.btns a.register {
        background: #ae5da2;
        color: #fff;
    }

@media screen and (max-width: 700px) {
    header .wrapper span.toggler {
        position: fixed;
        right: 10px;
        top: 30px;
        width: 32px;
        height: 32px;
        background: url(../MicroSite/images/toggler.png) no-repeat 50% 50%;
        background-size: auto 30px;
        display: block;
    }
}

header .wrapper ul.mainMenu {
    margin: 0px;
    padding: 0px 100px 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 700px) {
    header .wrapper ul.mainMenu {
        position: fixed;
        top: 100px;
        right: -300px;
        width: 300px;
        bottom: 0px;
        background: #fff;
        transition: all ease .5s;
        display: block;
        padding: 0px;
    }

        header .wrapper ul.mainMenu.open {
            display: block;
            right: 0px;
            transition: all ease .5s;
        }

        header .wrapper ul.mainMenu li {
            padding: 10px 0px 10px 10px;
        }
}

header .wrapper ul.mainMenu li {
    list-style: none;
}

    header .wrapper ul.mainMenu li a {
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        display: block;
        margin: 0px 10px;
        color: #000;
        text-decoration: none;
        letter-spacing: 0px;
        text-align: center;
    }

    header .wrapper ul.mainMenu li.active a {
        color: #0b84e0;
    }

section.hero {
    background: radial-gradient(center, #fdfdfe, #b7dcf3);
    background: -webkit-radial-gradient(center, #fdfdfe, #b7dcf3);
    height: 85%;
}

    section.hero .wrapper {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 1240px;
        margin: 0px auto;
        overflow: hidden;
        color: #ae5da2;
        flex-direction: column;
    }

@media screen and (max-width: 1240px) {
    section.hero .wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width: 700px) {
    section.hero .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
}

section.hero .wrapper h1 {
    font-weight: 700;
    font-size: 52px;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.01em;
    color: #66439a;
    margin: 0px;
    padding: 0px 0px 20px 0px;
}

section.hero .wrapper h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.01em;
    margin: 0px;
    padding: 0px 0px 20px 0px;
    color: #ae5da2;
}

section.hero .wrapper p {
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 26px;
    margin: 0px;
    padding: 0px 0px 20px 0px;
    color: #000;
}

    section.hero .wrapper p a {
        display: inline-block;
        text-align: center;
        background: #ae5da2;
        font-weight: 600;
        font-size: 15px;
        line-height: 22px;
        color: #fff;
        box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.04);
        border-radius: 6px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        padding: 12px 20px;
        text-decoration: none;
    }

.feature_multiple .wrapper p a.microBtn {
    display: inline-block;
    text-align: center;
    background: #ae5da2;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    color: #fff;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.04);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    padding: 12px 20px;
    text-decoration: none;
}

@media screen and (max-width: 1240px) {
    section.hero .wrapper h1 {
        font-size: 30px;
    }

    section.hero .wrapper h2 {
        font-size: 32px;
    }

    section.hero .wrapper p {
        text-align: center;
    }
}

section.stats {
    background: #fafbfc;
}

    section.stats .wrapper {
        padding: 65px 0px;
        max-width: 1240px;
        margin: 0px auto;
        overflow: hidden;
    }

@media screen and (max-width: 1240px) {
    section.stats .wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width: 700px) {
    section.stats .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
}

section.stats .wrapper ul {
    margin: 0px;
    padding: 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

@media screen and (max-width: 700px) {
    section.stats .wrapper ul {
        display: block;
    }

        section.stats .wrapper ul li {
            margin: 0px 0px 20px 0px;
        }
}

section.stats .wrapper ul li {
    list-style: none;
    padding: 80px 0px 0px 0px;
    position: relative;
    text-align: center;
}

    section.stats .wrapper ul li:before {
        content: "";
        width: 48px;
        height: 48px;
        display: block;
        margin: 0px auto;
        position: absolute;
        top: 0px;
        left: calc(50% - 24px);
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
    }

    section.stats .wrapper ul li:nth-child(1):before {
        background: #fff url(../MicroSite/images/stat1.svg) no-repeat 50% 50%;
    }

    section.stats .wrapper ul li:nth-child(2):before {
        background: #fff url(../MicroSite/images/stat2.svg) no-repeat 50% 50%;
    }

    section.stats .wrapper ul li:nth-child(3):before {
        background: #fff url(../MicroSite/images/stat3.svg) no-repeat 50% 50%;
    }

    section.stats .wrapper ul li h2 {
        font-weight: 600;
        color: black;
        font-size: 32px;
        line-height: 44px;
        margin: 0px;
    }

section.description {
    background: #fff;
}

    section.description .wrapper {
        max-width: 1240px;
        margin: 0px auto;
        overflow: hidden;
        text-align: center;
        padding: 50px 0px;
    }

@media screen and (max-width: 1240px) {
    section.description .wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width: 700px) {
    section.description .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
}

section.description .wrapper h2 {
    font-weight: 700;
    color: black;
    font-size: 32px;
    line-height: 40px;
    margin: 0px 0px 15px 0px;
}

section.description .wrapper p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: -0.1px;
    color: #5F6D7E;
    max-width: 800px;
    margin: 0px auto;
}

section.feature_single {
    padding: 50px 0px;
}

    section.feature_single > ul.micrositeUl {
        max-width: 1240px;
        margin: 0px auto;
        overflow: hidden;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

@media screen and (max-width: 1240px) {
    section.feature_single > ul.micrositeUl {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width: 700px) {
    section.feature_single > ul {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media screen and (max-width: 700px) {
    section.feature_single > ul {
        display: block;
    }

        section.feature_single > ul > li {
            width: 100% !important;
            padding: 20px !important;
        }
}

section.feature_single > ul > li {
    list-style: none;
}

    section.feature_single > ul > li:nth-child(1) {
        width: 35%;
    }

        section.feature_single > ul > li:nth-child(1) p {
            margin: 0px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            section.feature_single > ul > li:nth-child(1) p img {
                width: 100%;
            }

    section.feature_single > ul > li:nth-child(2) {
        width: 65%;
        padding: 0px 50px 0px 100px;
    }

        section.feature_single > ul > li:nth-child(2) h2 {
            font-family: 'Roboto';
            font-style: normal;
            font-weight: 800;
            font-size: 32px;
            line-height: 54px;
            color: #18191F;
            margin: 0px 0px 30px 0px;
        }

        section.feature_single > ul > li:nth-child(2) p {
            font-family: 'Roboto';
            font-style: normal;
            font-weight: 400;
            font-size: 18px;
            line-height: 32px;
            color: #18191F;
            margin: 0px 0px 30px 0px;
        }

            section.feature_single > ul > li:nth-child(2) p a {
                font-weight: 500;
                font-size: 16px;
                line-height: 24px;
                color: #1797f7;
                text-decoration: none;
            }

section.feature_multiple {
    padding: 50px 0px;
}

    section.feature_multiple .wrapper {
        text-align: center;
        max-width: 1240px;
        margin: 0px auto;
        overflow: hidden;
    }

@media screen and (max-width: 1240px) {
    section.feature_multiple .wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width: 700px) {
    section.feature_multiple .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
}

section.feature_multiple .wrapper h2 {
    font-weight: 800;
    font-size: 32px;
    line-height: 64px;
    margin: 0px 0px 10px 0px;
    color: #18191F;
}

section.feature_multiple .wrapper p {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #18191F;
    max-width: 932px;
    margin: 0px auto;
}


section.feature_multiple .wrapper ul {
    padding: 60px 0px;
    margin: 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 700px) {
    section.feature_multiple .wrapper ul {
        display: block;
    }

        section.feature_multiple .wrapper ul li {
            margin: 0px 0px 15px 0px;
        }
}

section.feature_multiple .wrapper ul li {
    list-style: none;
    text-align: center;
    padding: 0px 20px 0px 20px;
}

    section.feature_multiple .wrapper ul li h3 {
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
        color: #18191F;
        margin: 20px 0px 10px 0px;
    }

    section.feature_multiple .wrapper ul li p {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        color: #18191F;
    }

section.feature_multiple .wrapper ul.leaders {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    max-width: 675px;
    margin: 0px auto;
    padding: 40px 0px;
}

@media screen and (max-width: 700px) {
    section.feature_multiple .wrapper ul.leaders {
        display: block;
    }
}

section.feature_multiple .wrapper ul.leaders li {
    list-style: none;
    text-align: center;
    justify-content: center;
    align-items: center;
}

    section.feature_multiple .wrapper ul.leaders li span {
        display: block;
        width: 184px;
        height: 184px;
        border-radius: 100%;
        overflow: hidden;
        border: 3px solid #219cda;
        background: #FFFFFF;
    }

        section.feature_multiple .wrapper ul.leaders li span img {
            width: 100%;
            height: 100%;
        }


section.conferenceschedule {
    padding: 50px 0px;
}

    section.conferenceschedule .wrapper {
        max-width: 1240px;
        margin: 0px auto;
        overflow: hidden;
    }

@media screen and (max-width: 1240px) {
    section.conferenceschedule .wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width: 700px) {
    section.conferenceschedule .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
}

section.conferenceschedule .wrapper h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #272D37;
    margin: 0px 0px 10px 0px;
    text-align: center;
}

section.conferenceschedule .wrapper > p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    max-width: 800px;
    margin: 0px auto;
    text-align: center;
}

section.conferenceschedule .wrapper .eventsection ul.tab {
    margin: 0px;
    padding: 60px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    section.conferenceschedule .wrapper .eventsection ul.tab li {
        display: block;
        list-style: none;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #000;
        padding: 10px 70px;
        position: relative;
        cursor: pointer;
    }

        section.conferenceschedule .wrapper .eventsection ul.tab li.active:after {
            position: absolute;
            content: "";
            bottom: 0px;
            right: 10px;
            left: 10px;
            height: 2px;
            background: #437EF7;
        }

section.conferenceschedule .wrapper .eventsection .tabcontent {
    max-width: 800px;
    padding: 20px;
    margin: 0px auto;
}

    section.conferenceschedule .wrapper .eventsection .tabcontent ul {
        margin: 0px;
        padding: 0px;
    }

        section.conferenceschedule .wrapper .eventsection .tabcontent ul li {
            list-style: none;
            margin: 0px 0px 10px 0px;
        }

            section.conferenceschedule .wrapper .eventsection .tabcontent ul li span.time {
                font-weight: 400;
                font-size: 16px;
                line-height: 20px;
                padding: 0px 0px 0px 30px;
                display: block;
                background: url(../MicroSite/images/clock.svg) no-repeat 0% 50%;
                background-size: 16px auto;
                color: #828282;
            }

            section.conferenceschedule .wrapper .eventsection .tabcontent ul li span.name {
                font-weight: 400;
                font-size: 12px;
                line-height: 18px;
                color: #828282;
                display: block;
                padding-top: 10px !important;
            }

            section.conferenceschedule .wrapper .eventsection .tabcontent ul li h3 {
                font-weight: 700;
                font-size: 24px;
                line-height: 30px;
                margin: 10px 0px 0px 0px;
            }

            section.conferenceschedule .wrapper .eventsection .tabcontent ul li p {
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                color: #4F4F4F;
                padding: 10px 0px;
            }

                section.conferenceschedule .wrapper .eventsection .tabcontent ul li p span {
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 24px;
                    color: #4F4F4F;
                    padding: 10px 0px;
                }

            section.conferenceschedule .wrapper .eventsection .tabcontent ul li.break {
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative;
                padding: 20px 0px;
            }

                section.conferenceschedule .wrapper .eventsection .tabcontent ul li.break:before {
                    content: "";
                    height: 1px;
                    background: #E0E0E0;
                    position: absolute;
                    left: 0px;
                    right: 0px;
                    top: calc(50% - 1px);
                    z-index: 1;
                }

                section.conferenceschedule .wrapper .eventsection .tabcontent ul li.break span {
                    border: 1px solid #E0E0E0;
                    border-radius: 800px;
                    padding: 15px 40px 15px 70px;
                    display: block;
                    background: #fff url(../MicroSite/images/teacup.svg) no-repeat 40px 50%;
                    position: relative;
                    z-index: 99;
                }

        section.conferenceschedule .wrapper .eventsection .tabcontent ul.detailed {
            max-width: 1200px;
        }

            section.conferenceschedule .wrapper .eventsection .tabcontent ul.detailed > li {
                border-bottom: 1px solid #000000;
                padding: 10px 0px;
            }

                section.conferenceschedule .wrapper .eventsection .tabcontent ul.detailed > li h4 {
                    text-transform: uppercase;
                    font-size: 14px;
                    color: #000;
                    margin: 0px 0px 20px 0px;
                    font-weight: 600;
                }

                section.conferenceschedule .wrapper .eventsection .tabcontent ul.detailed > li h5 {
                    text-transform: uppercase;
                    font-size: 15px;
                    color: #00a4ef;
                }

                section.conferenceschedule .wrapper .eventsection .tabcontent ul.detailed > li ul {
                    margin: 0px;
                    padding: 0px 0px 0px 10px;
                }

                    section.conferenceschedule .wrapper .eventsection .tabcontent ul.detailed > li ul li {
                        position: relative;
                        margin: 0px 0px 10px 0px;
                        font-size: 12px;
                        padding: 0px 0px 0px 15px;
                    }

                        section.conferenceschedule .wrapper .eventsection .tabcontent ul.detailed > li ul li:before {
                            content: "";
                            display: block;
                            width: 6px;
                            height: 6px;
                            border-radius: 100%;
                            -webkit-border-radius: 100%;
                            -moz-border-radius: 100%;
                            background: #000;
                            position: absolute;
                            top: 3px;
                            left: 0px;
                        }

                section.conferenceschedule .wrapper .eventsection .tabcontent ul.detailed > li p.break {
                    background: #00a4ef;
                    padding: 6px 0px;
                    text-align: center;
                    border-radius: 10px;
                    -webkit-border-radius: 10px;
                    -moz-border-radius: 10px;
                    color: #fff;
                    margin: 30px 0px;
                }

                    section.conferenceschedule .wrapper .eventsection .tabcontent ul.detailed > li p.break span {
                        display: block;
                        font-size: 20px;
                        text-align: center;
                        font-weight: 600;
                        margin: 0px 0px 20px 0px;
                    }

                    section.conferenceschedule .wrapper .eventsection .tabcontent ul.detailed > li p.break label {
                        display: block;
                        font-size: 12px;
                    }

section.testimonials {
    padding: 50px 0px;
    background: #FAFBFC;
}

    section.testimonials .wrapper {
        max-width: 1240px;
        margin: 0px auto;
        overflow: hidden;
    }

@media screen and (max-width: 1240px) {
    section.testimonials .wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width: 700px) {
    section.testimonials .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
}

section.testimonials .wrapper > h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    margin: 0px 0px 10px 0px;
    color: #272D37;
}

section.testimonials .wrapper > p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #5F6D7E;
    text-align: center;
}

section.testimonials .wrapper ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 700px) {
    section.testimonials .wrapper ul {
        display: block;
    }

        section.testimonials .wrapper ul li {
            width: 100% !important;
        }
}

section.testimonials .wrapper ul li {
    list-style: none;
    padding: 20px;
    text-align: center;
    width: calc(100%/3);
}

    section.testimonials .wrapper ul li span.star {
        display: block;
        background: url(../MicroSite/images/star.svg) repeat-x 0% 50%;
        width: 120px;
        height: 30px;
        margin: 0px auto;
    }

    section.testimonials .wrapper ul li p {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        padding: 25px 0px;
        color: #272D37;
    }

section.sponsors {
    padding: 50px 0px 100px 0px;
}

    section.sponsors .wrapper {
        max-width: 1240px;
        margin: 0px auto;
        overflow: hidden;
        text-align: center;
        position: relative;
    }

@media screen and (max-width: 1240px) {
    section.sponsors .wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width: 700px) {
    section.sponsors .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
}

section.sponsors .wrapper:before, section.sponsors .wrapper:after {
    content: "";
    display: block;
    height: 1px;
    left: 0px;
    right: 0px;
    background: linear-gradient(90deg, rgba(192, 204, 218, 0.1) 0%, rgba(192, 204, 218, 0.6) 50.38%, rgba(192, 204, 218, 0.1) 100%);
    position: absolute;
    top: 0px;
}

section.sponsors .wrapper:after {
    top: inherit;
    bottom: 0px;
}

section.sponsors .wrapper p {
    display: grid;
    padding: 40px 0px;
    max-width: 1110px;
    margin: 0px auto;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 30px 50px;
}

@media screen and (max-width: 600px) {
    section.sponsors .wrapper p {
        display: block;
    }

        section.sponsors .wrapper p span {
            padding: 20px 0px;
            text-align: center;
        }

            section.sponsors .wrapper p span img {
                max-width: 200px;
            }
}

section.sponsors .wrapper p span {
    display: flex;
    justify-content: center;
    align-items: center;
}

    section.sponsors .wrapper p span img {
        width: 100%;
        max-width: 100px;
    }

section.cta {
    background: #66439a;
    padding: 80px;
    color: #fff;
}

    section.cta h2 {
        text-align: center;
        font-weight: 800;
        font-size: 32px;
        line-height: 64px;
        margin: 0px 0px 40px 0px;
    }

    section.cta p.btns {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        section.cta p.btns a {
            display: block;
            background: #fff;
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: #66439a;
            padding: 12px 32px;
            border-radius: 6px;
            -webkit-border-radius: 6px;
            -moz-border-radius: 6px;
            text-decoration: none;
        }

    section.cta p.feature {
        margin: 100px auto 0px auto !important;
        max-width: 1240px;
        margin: 0px auto;
        overflow: hidden;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

@media screen and (max-width: 1240px) {
    section.cta p.feature {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width: 700px) {
    section.cta p.feature {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media screen and (max-width: 1240px) {
    section.cta p.feature {
        display: block;
    }

        section.cta p.feature span {
            width: 100% !important;
        }
}

section.cta p.feature span {
    width: calc(100%/3);
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    padding-left: 25px;
    background: url(../MicroSite/images/clockwhite.svg) no-repeat 0% 50%;
    background-size: 16px auto;
}

section.events {
    padding: 50px 0px;
}

    section.events .wrapper {
        max-width: 1240px;
        margin: 0px auto;
        overflow: hidden;
        background: #ae5da2;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 100px 0px;
        border-radius: 40px;
        -webkit-border-radius: 40px;
        -moz-border-radius: 40px;
    }

@media screen and (max-width: 1240px) {
    section.events .wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width: 700px) {
    section.events .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
}

section.events .wrapper h1 {
    font-weight: 700;
    font-size: 52px;
    color: #fff;
    line-height: 150%;
    margin: 0px auto 30px auto;
    max-width: 600px;
    text-align: center;
}

section.events .wrapper h2 {
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    line-height: 150%;
    margin: 0px auto 30px auto;
    text-align: center;
}

section.events .wrapper p {
    display: flex;
    justify-content: center;
    align-items: center;
}

    section.events .wrapper p a {
        background: #fff;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        padding: 15px 30px;
        color: #437EF7;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
    }

section.speakers .wrapper {
    max-width: 1200px;
    margin: 0px auto;
    padding: 40px 20px;
}

    section.speakers .wrapper h2 {
        font-size: 32px;
        color: #652c8f;
        margin: 0px;
        padding: 0px;
        font-weight: 600;
        padding-left: 18px;
    }

    section.speakers .wrapper ul {
        margin: 0px;
        padding: 20px 20px 50px 20px;
        display: grid;
        grid-template-columns: repeat(auto-fill, 160px);
        grid-gap: 40px 30px;
    }

@media screen and (max-width: 800px) {
    section.speakers .wrapper ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 700px) {
    section.speakers .wrapper ul {
        display: block;
    }

    section.speakers .wrapper ul {
        display: block;
    }

        section.speakers .wrapper ul li {
            margin: 0px 0px 10px 0px;
        }

            section.speakers .wrapper ul li span.prfpic {
                height: auto !important;
            }
}

section.speakers .wrapper ul li {
    list-style: none;
    border: 1px solid #E0E0E0;
}

    section.speakers .wrapper ul li span.prfpic {
        display: block;
        height: 100px;
        text-align: center;
        overflow: hidden;
    }

        section.speakers .wrapper ul li span.prfpic img {
            width: 100px;
            height: 100px;
        }

    section.speakers .wrapper ul li h3 {
        font-size: 19px;
        margin: 10px 0px 10px 0px;
        padding: 0px 20px;
        font-weight: 600;
    }

    section.speakers .wrapper ul li h4 {
        font-size: 14px;
        margin: 10px 0px 10px 0px;
        padding: 0px 20px;
        color: #652c8f;
    }

    section.speakers .wrapper ul li h5 {
        font-size: 14px;
        margin: 10px 0px 10px 0px;
        padding: 0px 20px;
        color: #737c90;
    }

section.participants {
    padding: 50px 0px;
}

    section.participants .wrapper {
        max-width: 1240px;
        margin: 0px auto;
        overflow: hidden;
    }

@media screen and (max-width: 1240px) {
    section.participants .wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width: 700px) {
    section.participants .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
}

section.participants .wrapper h1 {
    font-weight: 700;
    font-size: 52px;
    color: #18191F;
    line-height: 150%;
    margin: 0px auto 30px auto;
    max-width: 600px;
    text-align: center;
}

section.participants .wrapper > p.participation-sort {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 13px;
    margin: 0px 0px 20px 0px;
}

    section.participants .wrapper > p.participation-sort span, section.participants .wrapper > p.participation-sort label {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0px 0px 0px 10px;
    }

        section.participants .wrapper > p.participation-sort span input[type="radio"], section.participants .wrapper > p.participation-sort label input[type="radio"] {
            margin: 0px 5px 0px 0px;
        }

section.participants .wrapper .participationTab > p.tabs {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-bottom: 1px solid #18191F;
}

    section.participants .wrapper .participationTab > p.tabs span {
        display: block;
        padding: 10px 20px;
        background: #fafbfc;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        border: 1px solid #737c90;
        border-bottom: 0px;
        margin: 0px 0px 0px 1px;
    }

        section.participants .wrapper .participationTab > p.tabs span.selected {
            background: #00a4ef;
            color: #fff;
            border: 1px solid #00a4ef;
        }

section.participants .wrapper .tblAttendees {
    padding: 10px;
}

    section.participants .wrapper .tblAttendees table {
        width: 100%;
        border-collapse: collapse;
        border-left: 1px solid #E0E0E0;
        border-top: 1px solid #E0E0E0;
    }

        section.participants .wrapper .tblAttendees table th {
            background: #00a4ef;
            padding: 10px;
            font-size: 13px;
            text-align: left;
            color: #fff;
            border-right: 1px solid #fff;
        }

        section.participants .wrapper .tblAttendees table td {
            padding: 10px;
            font-size: 13px;
            text-align: left;
            color: #18191F;
            border-right: 1px solid #E0E0E0;
            border-bottom: 1px solid #E0E0E0;
        }

section.travelandair {
    padding: 50px 0px;
}

    section.travelandair .wrapper {
        max-width: 1240px;
        margin: 0px auto;
        overflow: hidden;
        text-align: center;
    }

        section.travelandair .wrapper #travelDiv .box-model event-hotel-accomodation {
            padding-bottom: 25px !important;
        }

        section.travelandair .wrapper h1 {
            font-weight: 700;
            font-size: 52px;
            color: #18191F;
            line-height: 150%;
            margin: 0px auto 30px auto;
            max-width: 600px;
            text-align: center;
        }

.modal .modal-dialog .bootstrap-modal-body {
    font-family: 'Inter', sans-serif !important;
    box-sizing: border-box !important;
}

.modal .modal-dialog .modal-content .modal-header {
    position: relative;
}

    .modal .modal-dialog .modal-content .modal-header .close {
        position: absolute;
        right: 10px;
    }

.modal .modal-dialog .modal-content .btn-primary {
    font-size: 12px;
    font-family: 'Inter', sans-serif !important;
    box-sizing: border-box !important;
    margin: 0px 5px;
}

section.sponsorsfull {
    padding: 50px 0px;
    max-width: 1200px;
    margin: 0px auto;
    text-align: center;
}

    section.sponsorsfull h1 {
        font-size: 52px;
        text-align: center;
        color: #18191F;
        font-weight: 600;
        margin: 0px 0px 20px 0px;
    }

    section.sponsorsfull h2 div {
        font-size: 52px;
        padding-bottom: 30px;
        padding-top: 30px;
        text-align: center;
        color: #272D37;
        font-weight: 600;
        margin: 0px 0px 20px 0px;
    }

    section.sponsorsfull .event-sponsor-images {
        max-width: 800px;
        margin: 0px auto;
        padding: 10px;
    }

        section.sponsorsfull .event-sponsor-images ul {
            margin: 0px;
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            border: 1px solid #f2f2f2;
        }

            section.sponsorsfull .event-sponsor-images ul li {
                list-style: none;
                width: 50%;
                padding: 10px;
            }

@media screen and (max-width:600px) {



    section.sponsorsfull .event-sponsor-images ul {
        display: block;
    }



        section.sponsorsfull .event-sponsor-images ul li {
            width: 100%;
        }

            section.sponsorsfull .event-sponsor-images ul li a {
                display: block;
            }

                section.sponsorsfull .event-sponsor-images ul li a img {
                    max-width: calc(100% - 20px);
                }
}

.modal-body * {
    font-family: Arial !important;
}


section.travelandair {
    padding: 50px 0px;
    max-width: 1200px;
    margin: 0px auto;
    text-align: center;
}

    section.travelandair .wrapper {
        max-width: 1240px;
        margin: 0px auto;
        overflow: hidden;
        font-size: 16px;
        line-height: 150%;
        text-align: center;
        color: #18191F;
        font-weight: 500;
    }

@media screen and (max-width: 1240px) {
    section.travelandair .wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width: 700px) {
    section.travelandair .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
}

section.travelandair .wrapper h1 {
    font-size: 52px;
    text-align: center;
    color: #18191F;
    font-weight: 600;
}

section.travelandair .wrapper h2 {
    font-weight: 600;
    text-align: center !important;
    color: #18191F !important;
    font-size: 32px;
    line-height: 40px;
}

section.travelandair .wrapper h3 {
    font-size: 24px;
    text-align: center;
    color: #18191F;
    font-weight: 500;
    margin: 0px 0px 20px 0px;
}

section.travelandair .wrapper p {
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #18191F;
    font-weight: 400;
    margin: 0px 0px 20px 0px;
}


section.policySection {
    padding: 50px 0px !important;
    max-width: 1200px !important;
    margin: 0px auto !important;
    text-align: center !important;
}

    section.policySection .wrapper {
        max-width: 1240px !important;
        margin: 0px auto !important;
        overflow: hidden !important;
        font-size: 16px !important;
        line-height: 150% !important;
        text-align: center !important;
        color: #18191F !important;
        font-weight: 500 !important;
    }

@media screen and (max-width: 1240px) {
    section.policySection .wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width: 700px) {
    section.policySection .wrapper {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

section.policySection .wrapper h1 {
    font-size: 52px !important;
    text-align: center !important;
    color: #18191F !important;
    font-weight: 600 !important;
}

section.policySection .wrapper .policyh2 {
    font-size: 35px !important;
    display: block !important;
    text-align: center !important;
    color: #18191F !important;
    font-weight: 600 !important;
    margin: 0px 0px 0px 0px !important;
}

section.policySection .wrapper .policyDiv {
    color: #18191F !important;
}

section.policySection .wrapper .policyPtag {
    font-size: 16px !important;
    line-height: 150% !important;
    text-align: center !important;
    color: #18191F !important;
    font-weight: 400 !important;
    margin: 0px 0px 20px 0px !important;
}

section.policySection .wrapper .policyCenter {
    display: block !important;
    text-align: center !important;
}

section.policySection .wrapper .policyh3 {
    display: block !important;
    text-align: center !important;
    font-size: 24px;
}

section.pricing .wrapper > h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    margin: 0px 0px 10px 0px;
    color: #272D37;
}

section.pricing {
    padding: 50px 0px;
}

    section.pricing .wrapper {
        max-width: 1240px;
        margin: 0px auto;
        overflow: hidden;
        font-size: 16px;
        line-height: 150%;
        text-align: center;
        color: #272D37;
        font-weight: 500;
    }

@media screen and (max-width: 1240px) {
    section.pricing .wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width: 700px) {
    section.pricing .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
}

section.pricing .wrapper h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    margin: 0px 0px 0px 0px;
    color: #272D37;
    text-align: center;
}

section.pricing .wrapper table {
    max-width: 800px;
    border-collapse: collapse;
    margin: 0px auto;
    width: 100%;
}

    section.pricing .wrapper table th {
        padding: 10px;
        font-weight: 700;
        border-bottom: 2px solid #66439a;
        font-size: 16px;
        text-align: left;
    }

        section.pricing .wrapper table th p {
            margin: 0px;
            font-weight: 700;
            font-size: 16px;
            text-align: left;
        }

    section.pricing .wrapper table td {
        padding: 10px;
        font-size: 16px;
        color: #000;
        text-align: left;
    }

section.handout {
    padding: 43px 0px;
}

    section.handout .wrapper {
        max-width: 1200px;
        margin: 0px auto;
    }

        section.handout .wrapper .form-horizontal .handouts {
            padding: 30px;
            border: 1px solid #f1f1f1;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
            margin: 0px 0px 10px 0px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            section.handout .wrapper .form-horizontal .handouts label {
                width: 70%;
            }

            section.handout .wrapper .form-horizontal .handouts p {
                margin: 0px;
                font-family: 'Roboto';
                font-style: normal;
                font-weight: 400;
                font-size: 18px;
            }

        section.handout .wrapper h2 {
            font-weight: 700;
            font-size: 32px;
            line-height: 40px;
            text-align: center;
            margin: 0px 0px 10px 0px;
            color: #272D37;
            text-align: center;
        }

        section.handout .wrapper p {
            font-size: 16px;
            line-height: 150%;
            text-align: center;
            color: #18191F;
            font-weight: 400;
            margin: 0px 0px 20px 0px;
        }

        section.handout .wrapper h3 {
            font-size: 24px;
            text-align: center;
            color: #18191F;
            font-weight: 500;
            margin: 0px 0px 20px 0px;
        }

section.speakerbiosesction .wrapper p {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    font-size: 16px;
    color: #000000;
    margin: 0px 0px 30px 0px;
}

section.speakerbiosesction .wrapper {
    margin: 0px 20px -30px 20px;
}

section.speakersMicro .wrapper {
    max-width: 1200px;
    margin: 0px auto;
    padding: 40px 20px;
}

    section.speakersMicro .wrapper h2 {
        font-size: 32px;
        color: #652c8f;
        margin-left: 17px;
        padding: 0px;
        font-weight: 600;
    }

    section.speakersMicro .wrapper ul {
        margin: 0px;
        padding: 20px 20px 50px 20px;
        display: grid;
        grid-template-columns: repeat(auto-fill, 200px);
        grid-gap: 40px 30px;
    }

@media screen and (max-width: 800px) {
    section.speakersMicro .wrapper ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 700px) {
    section.speakersMicro .wrapper ul {
        display: block;
    }

    section.speakersMicro .wrapper ul {
        display: block;
    }

        section.speakersMicro .wrapper ul li {
            margin: 0px 0px 10px 0px;
        }

            section.speakersMicro .wrapper ul li span.prfpic {
                height: auto !important;
            }
}

section.speakersMicro .wrapper ul li {
    list-style: none;
    border: 1px solid #E0E0E0;
}

    section.speakersMicro .wrapper ul li span.prfpic {
        display: block;
        height: 100px;
        overflow: hidden;
        text-align: center;
    }

        section.speakersMicro .wrapper ul li span.prfpic img {
            width: 100px;
            height: 100px;
        }

    section.speakersMicro .wrapper ul li h3 {
        font-size: 19px;
        margin: 10px 0px 10px 0px;
        text-align: center;
        padding: 0px 2px;
        font-weight: 600;
    }

    section.speakersMicro .wrapper ul li h4 {
        font-size: 14px;
        margin: 10px 0px 10px 0px;
        text-align: center;
        padding: 0px 2px;
        color: #652c8f;
    }

    section.speakersMicro .wrapper ul li h5 {
        font-size: 14px;
        margin: 10px 0px 10px 0px;
        text-align: center;
        padding: 0px 2px;
        color: #737c90;
    }

section.feature_multiple .wrapper ul li h5 {
    font-size: 14px;
    margin: 10px 0px 10px 0px;
    text-align: center;
    padding: 0px 2px;
    color: #737c90;
}

section.feature_multiple .wrapper ul li h4 {
    font-size: 14px;
    margin: 10px 0px 10px 0px;
    text-align: center;
    padding: 0px 2px;
    color: #652c8f;
}

section.feature_multiple .wrapper ul li h3 {
    font-size: 24px;
    margin: 10px 0px 10px 0px;
    text-align: center;
    padding: 0px 2px;
    font-weight: 600;
}


section.feature_multiple .wrapper p.persoName {
    font-size: 20px;
    padding: 0px;
    color: #18191F;
    font-family: 'Inter', sans-serif;
    margin: 0px auto;
}

section.feature_multiple .wrapper p.persoPosition {
    font-size: 14px;
    padding: 0px;
    color: #652c8f;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin: 0px auto;
}

section.feature_multiple .wrapper p.persoCompany {
    font-size: 15px;
    padding: 0px;
    color: #737c90;
    font-family: 'Inter', sans-serif;
    margin: 0px auto;
}

span.personBioImg {
    position: absolute;
    top: 5px;
    left: 40px;
    width: 80px;
    height: 90px;
    border: 1px solid #f3f3f3;
    padding: 5px;
}

p.persoName {
    font-size: 20px;
    padding: 0px;
    color: #18191F;
}

p.persoPosition {
    font-size: 14px;
    padding: 0px;
    color: #652c8f;
    font-weight: 600;
}

p.persoCompany {
    font-size: 15px;
    padding: 0px;
    color: #737c90;
}

.speakers .wrapper div.personBio {
    font-weight: 400;
    line-height: 21px;
    font-size: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

    .speakers .wrapper div.personBio > p {
        padding-left: 16px;
        margin-bottom: 9px;
    }

        .speakers .wrapper div.personBio > p a {
            padding-left: 5px;
            display: list-item;
        }

            .speakers .wrapper div.personBio > p a:hover {
                text-decoration: none;
            }

            .speakers .wrapper div.personBio > p a::marker {
                content: " \25BA";
                font-size: 12px;
            }

    .speakers .wrapper div.personBio h4 {
        margin-top: 40px;
        padding: 0px 0px 15px 0;
        font-size: 16px;
    }

    .speakers .wrapper div.personBio div.pbio {
        line-height: 20px;
        padding-top: 20px;
    }

        .speakers .wrapper div.personBio div.pbio p {
            line-height: 20px;
        }

    .speakers .wrapper div.personBio div.persodetails {
        position: relative;
    }

.speakers .wrapper span.personBioImg {
    left: 0;
    top: 0;
}

    .speakers .wrapper span.personBioImg img {
        width: 100%;
        max-height: 100%;
        object-fit: cover;
    }

.speakers .wrapper div.personBio div.persodetails p {
    margin: 0px 0px 5px 110px;
    padding: 0px;
}

.speakers .wrapper div.personBio a.back {
    display: block;
    width: auto;
    float: right;
    text-align: right;
}

.accordion-inner {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4F4F4F;
    padding: 10px 0px;
}

    .accordion-inner * {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #4F4F4F;
        padding: 10px 0px;
    }

.speakers .wrapper div#divSpeakerDetails {
    padding-left: 80px !important;
    padding-right: 80px !important;
}

@media (max-width: 600.98px) {

    section.conferenceschedule .wrapper .eventsection ul.tab li {
        padding: 10px 25px;
    }

    .policySection .wrapper div {
        padding: 5px 20px !important;
    }

    section.policySection {
        padding-bottom: 10px !important;
    }

    section.sponsors {
        padding: 0px 0px 100px 0px !important;
    }

    .speakers .wrapper div#divSpeakerDetails {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

.hotel-accomodation-image img {
    width: 100%;
    height: auto;
}

.spksort {
    font-size: 16px !important;
    text-align: right !important;
    display: block !important;
    margin-bottom: 30px !important;
    padding-right: 80px;
}

section.speakers .wrapper .spksort .sortSection {
    height: 40px;
    position: relative;
    display: inline-block;
}

    section.speakers .wrapper .spksort .sortSection > span {
        position: absolute;
        font-size: 13px;
        background: #fff;
        left: 6px;
        top: -7px;
        padding-left: 5px;
        padding-right: 5px;
    }

    section.speakers .wrapper .spksort .sortSection > select {
        height: 100%;
        width: 250px;
        padding: 0px 2px;
        border-radius: 6px;
        font-size: 16px;
    }
