/* ==========================
   RESET
========================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Titillium Web", serif !important;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    letter-spacing: 0.5px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.row {
    margin: 0;
}

a {
    text-decoration: none;
}

.wm-hero {
    min-height: 100lvh;
    margin-bottom: 8rem;
}

.wm-navbar {
    min-height: 10lvh;
    padding: 4rem 8rem 2rem;
}

.logo img {
    width: 500px;
}

.btn {
    font-size: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 0.8rem;
}

.wm-btn1 {
    background-color: #176ee3;
    color: #fff;
}

.wm-btn1:hover {
    background-color: #1061cc;
    color: #fff;
}

.wm-btn2 {
    background-color: #4ec460;
    color: #fff;
}

.wm-btn2:hover {
    background-color: #41a750;
    color: #fff;
}

.wm-hero-content {
    min-height: 88lvh;
    background-image: url("./../assets/img/hero-banner.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 40px;
    margin: 0 2rem;
    align-content: center;
}

.wm-height {
    padding: 2rem 8rem;
}

.wm-btn3 {
    background-color: #176ee3;
    color: #fff;
    width: auto;
    margin-bottom: 2.5rem;
    cursor: text;
}

.wm-btn3:hover {
    background-color: #176ee3;
    color: #fff;
}

.wm-btn3:active {
    background-color: #176ee3 !important;
    color: #fff !important;
    border: 1px solid #176ee3 !important;
}

.wm-hero-left h1 {
    color: #fff;
    font-size: 7rem;
    margin-bottom: 3rem;
}

.wm-hero-left h1 span {
    color: #4EC460;
}

.wm-hero-left .wm-para {
    color: #fff;
    font-size: 2.6rem;
    font-weight: lighter;
    margin-bottom: 4rem;
}

.wm-box {
    background-color: #176EE3;
    border-radius: 1.5rem;
    width: fit-content;
    margin-bottom: 4rem;
}

.wm-box p {
    margin: 0;
    color: #fff;
    font-size: 2.2rem;
    font-weight: lighter;
    padding: 1.4rem 2rem;
}

.wm-hero-right img {
    width: 100%;
}

/* HR */
.wm-hr {
    border-color: #003D84;
    border-width: 4px;
    opacity: 1;
    width: 97%;
    margin: auto;
}

/* Section 1 */
.wm-section1 {
    padding: 8rem 0rem 0rem 10rem;
}

.wm-section1-left h1 {
    font-size: 6rem;
    color: #176EE3;
    margin-bottom: 6rem;
}

.wm-section1-left p {
    font-size: 2.6rem;
    margin-bottom: 10rem;
}

.wm-section1-right {
    text-align: end;
    display: grid;
    justify-items: end;
}

.wm-section1-right img {
    width: 88%;
}

/* Section 2 */
.wm-section2 {
    padding: 8rem 10rem;
    /* background-color: #003D84; */
    background-color: #0A315D;
    color: #fff;
}

.wm-section2 h1 {
    font-size: 6rem;
    margin-bottom: 8rem;
}

/* Speaker Section animation */
.flip-card {
    background-color: transparent;
    width: auto;
    /* Bigger size */
    height: 700px;
    /* Square for your 500x500 images */
    perspective: 1000px;
    border-radius: 2rem;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front {
    /* background-image: url("./../assets/img/user.png"); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    align-content: end;
    border-radius: 2rem;
    /* border: 2px solid #fff; */
}

.wm-speaker1 {
    background-image: url("./../assets/img/EJ_Davis.png");
}

.wm-speaker2 {
    background-image: url("./../assets/img/Amir_Mireskandari.png");
}

.wm-speaker3 {
    background-image: url("./../assets/img/Maria_Masaniello.png");
}

.wm-speaker4 {
    background-image: url("./../assets/img/Jeremy_Krystosik.png");
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-card-front img,
.flip-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ensures no distortion */
}

.flip-card-back {

    /* padding: 1rem; */
    align-content: center;
    border-radius: 2rem;
    background-color: #176EE3;
    /* border: 2px solid #fff; */
    transform: rotateY(180deg);
}

.flip-card-back p {
    padding: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.25;
    text-align: left;
}

.wm-tag-outer {
    bottom: -28px;
    position: absolute;
    width: 100%;
    height: fit-content;
    display: grid;
    justify-items: center;
}

.wm-tag {
    align-content: center;
    width: fit-content;
    background-color: #4EC460;
    padding: 2px 32px;
    height: 60px;
    border-radius: 1rem;
}

.wm-tag p {
    font-size: 1.8rem;
    padding: 0;
}

.wm-linkedin {
    margin-top: 3rem;
}

.wm-linkedin a {
    text-decoration: none;
    color: #fff;
}

.wm-linkedin a i {
    font-size: 2.5rem;
}

/* Speaker Section animation END */




.wm-speaker-section {
    margin-bottom: 8rem;
}

/* .flip-card {
        border: 2px solid #fff;
        border-radius: 2rem;
        text-align: center;
        background-image: url("./../assets/img/user.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position-y: top;
        height: 600px;
        align-content: end;
    } */

.wm-speaker-info {
    /* background: rgba(105, 105, 255, 0.145); */
    background: rgb(20 20 42 / 70%);
    /* Transparent white */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */

    border: 1px solid rgba(255, 255, 255, 0.178);

    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    padding: 1rem 1rem 2.8rem;
}

.wm-speaker-info h4 {
    font-weight: 700;
    font-size: 3rem;
}

.wm-speaker-info p {
    font-weight: 100;
    font-size: 1.6rem;
    margin: 0;
    line-height: 1.2;
}

/* Event Details */
.wm-event-details {
    margin: 6rem 0;
}

.wm-event-date {
    border-right: 1px solid #666666;
    height: 100%;
    align-content: center;
    padding: 2rem 0;
}

.wm-event-date h1 {
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 0rem;
}

.wm-event-date h1 span {
    font-weight: 600;
    color: #4EC460;
}

.wm-event-date p {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0rem;
}

.wm-time h1 {
    font-size: 7rem;
    font-weight: 600;
    margin-bottom: 0;
}

.wm-time p {
    color: #4EC460;
    font-size: 2.6rem;
    font-weight: 500;
    padding-bottom: 10px;
    padding-left: 10px;
    margin-bottom: 0;
}

.wm-event-details-center {
    padding: 2rem 0;
}

.wm-event-details-center p {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0rem;
}

.wm-event-live {
    border-left: 1px solid #666666;
    height: 100%;
    align-content: center;
    padding: 2rem 0;
}

.wm-event-live h1 {
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 0rem;
}

.wm-event-live h1 span {
    font-weight: 600;
    color: #4EC460;
}

.wm-event-live p {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0rem;
}

/* Time Zone */
.wm-border1 {
    padding: 3rem 0;
    border-right: 1px solid #666666;
}

.wm-border2 {
    padding: 3rem 0;
    border-right: 1px solid #666666;
}

.wm-border3 {
    padding: 3rem 0;
    border-right: 1px solid #666666;
}

.wm-border4 {
    padding: 3rem 0;
    border-right: 0px solid #fff;
}

.wm-timezone {
    padding: 4rem 6rem;
    background-color: #05499C;
    border-radius: 2rem;
    margin-bottom: 4rem;
}

.wm-timezone h2 {
    font-size: 4rem;
    font-weight: 600;
    margin: 0;
}

.wm-timezone h2 span {
    color: #4EC460;
    font-weight: 600;
}

.wm-timezone h4 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
}

.wm-timezone h4 span {
    color: #4EC460;
    font-weight: 600;
}

/* Message */
.wm-message {
    padding: 4rem 8rem;
    background-color: #001D3F;
    text-align: center;
    border-radius: 2rem;
    margin-bottom: 8rem;
}

.wm-message h4 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
}

.wm-message h4 span {
    font-weight: 600;
    color: #4EC460;
}

.wm-message h4 span:hover {
    color: #3aa04a;
}


/* What you'll tale away */
.wm-takeaway-card {
    padding: 2rem 0;
    background-color: #05499C;
    border-radius: 2rem;
    margin: 1rem;
}

.wm-takeaway-card img {
    width: auto;
    height: 275px;
    padding: 4rem 4rem;
    border-right: 1px solid #666666;
}

.wm-after {
    padding: 0 2rem;
}

.wm-after h4 {
    font-size: 4rem;
    font-weight: 600;
    color: #226BC8;
    margin-bottom: 0;
}

.wm-after p {
    font-size: 2.6rem;
    font-weight: 100;
    color: #fff;
    margin-bottom: 0;
}

.wm-artwork {
    position: relative;
    height: 100%;
}

.wm-artwork img {
    position: absolute;
    bottom: -8rem;
    left: 34%;
    width: 35%;
}

/* Section 3 */
.wm-section3 {
    padding: 8rem 10rem;
    background-color: #003D84;
    color: #fff;
}

.wm-section3 h1 {
    font-size: 6rem;
    margin-bottom: 8rem;
}

.wm-section3 p {
    font-size: 2.6rem;
    margin: 0;
    font-weight: 100;
}

.wm-section3 img {
    width: 70%;
    margin: auto;
}

/* Registration Form */
.wm-registration-form {
    padding: 8rem 10rem;
}

.wm-registration-form h1 {
    font-size: 6rem;
    margin-bottom: 12rem;
    color: #176EE3;
}

.wm-registration-form img {
    width: 90%;
}

.wm-form-design {
    padding: 3rem;
    background-color: #EBEBEB;
    border-radius: 2rem;
}

.wm-btn4 {
    background-color: #4ec460;
    color: #fff;
    margin-top: 2rem;
}

.wm-btn4:hover {
    background-color: #41a750;
    color: #fff;
}

.wm-frm-msg {
    font-size: 1.8rem;
    margin: 1rem 0 0 0;
}

.wm-mobview {
    display: none;
}


/* AI CSS */
.ask-ai-widget {
    margin-top: 1rem;
    display: grid;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-family: inherit;
}

.ask-ai-label {
    font-weight: 500;
    font-size: 32px;
    color: #707070;
}

.ask-ai-icons {
    display: flex;
    gap: 10px;
}

.ask-ai-icons img {
    width: 100%;
}

.ask-ai-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: opacity .15s ease;
}

.ask-ai-btn:hover {
    opacity: .85;
}

/* .ask-ai-chatgpt {
    background: #10a37f;
}

.ask-ai-perplexity {
    background: #20808d;
}

.ask-ai-claude {
    background: #d97757;
}

.ask-ai-grok {
    background: #000;
} */

/* AI CSS END */

@media (max-width: 2560px) {
    .wm-navbar {
        min-height: 14lvh;
    }

    .btn {
        font-size: 1.8rem;
    }

    .wm-hero-content {
        min-height: 84lvh;
    }

    .wm-btn3 {
        font-size: 1.8rem;
    }

    .wm-hero-left h1 {
        font-size: 5rem;
    }

    .wm-hero-left .wm-para {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }

    .wm-box {
        margin-bottom: 3rem;
    }

    .wm-box p {
        font-size: 1.8rem;
    }

    /* Section 1 */
    .wm-section1-left h1 {
        font-size: 4.5rem;
    }

    .wm-section1-left p {
        font-size: 1.8rem;
    }

    .wm-section1-right img {
        width: 75%;
    }

    /* Section 2 */
    .wm-speaker-info {
        padding: 1rem 1rem 2.5rem;
    }

    .wm-speaker-info h4 {
        font-weight: 700;
        font-size: 2.6rem;
    }

    .wm-speaker-info p {
        font-size: 1.4rem;
    }

    .flip-card-back p {
        font-size: 1.5rem;
    }

    .wm-tag {
        height: 52px;
    }

    .wm-section2 h1 {
        font-size: 4.5rem;
    }

    .wm-event-date h1 {
        font-size: 3.5rem;
    }

    .wm-event-date p {
        font-size: 1.8rem;
    }

    .wm-time h1 {
        font-size: 5rem;
    }

    .wm-time p {
        font-size: 2rem;
        padding-bottom: 6px;
        padding-left: 6px;
    }

    .wm-event-details-center p {
        font-size: 1.8rem;
    }

    .wm-event-live h1 {
        font-size: 3.5rem;
    }

    .wm-event-live p {
        font-size: 1.8rem;
    }

    .wm-timezone h2 {
        font-size: 3rem;
    }

    .wm-timezone h4 {
        font-size: 2rem;
    }

    /* What you'll tale away */
    .wm-after p {
        font-size: 1.8rem;
    }

    /* Section 3 */
    .wm-section3 h1 {
        font-size: 4.5rem;
    }

    .wm-section3 p {
        font-size: 1.8rem;
        margin: 0;
    }

    .wm-section3 img {
        width: 50%;
    }


    /* From */
    .wm-registration-form h1 {
        font-size: 5rem;
        margin-bottom: 12rem;
    }

    /* .form-label {
        font-size: 1.8rem;
    }

    .form-control {
        border-radius: 1.2rem;
        font-size: 1.6rem;
        padding: 1rem 1.5rem;
    } */

    .wm-btn4 {
        margin-top: 1rem;
    }

    .wm-frm-msg {
        font-size: 1.6rem;
    }
}

@media (max-width: 1920px) {
    .wm-navbar {
        padding: 2rem 4rem 1rem;
        min-height: 11lvh;
    }

    .logo img {
        width: 350px;
    }

    .btn {
        font-size: 1.2rem;
    }

    .wm-hero {
        margin-bottom: 6rem;
    }

    .wm-hero-content {
        min-height: 86lvh;
        margin: 0 1.5rem;
    }

    .wm-height {
        padding: 2rem 5rem;
    }

    .wm-hero-left h1 {
        font-size: 3.6rem;
        margin-bottom: 0.5rem;
    }

    .wm-hero-left .wm-para {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .wm-box {
        margin-bottom: 2.5rem;
    }

    .wm-box p {
        font-size: 1.2rem;
        padding: 1rem 1.2rem;
    }

    .wm-hr {
        border-width: 2px;
    }

    /* Section 1 */
    .wm-section1 {
        padding: 6rem 0 0 8rem;
    }

    .wm-section1-left h1 {
        font-size: 3.2rem;
        margin-bottom: 4rem;
    }

    .wm-section1-left p {
        font-size: 1.4rem;
        margin-bottom: 8rem;
    }

    /* Section 2 */
    .wm-section2 {
        padding: 6rem 8rem;
    }

    .wm-section2 h1 {
        font-size: 3.2rem;
        margin-bottom: 6rem;
    }

    .wm-speaker-section {
        margin-bottom: 6rem;
    }

    .flip-card {
        height: 450px;
    }

    .flip-card-back p {
        font-size: 1rem;
        margin: 0;
        line-height: 1.3;
    }

    .wm-speaker-info {
        padding: 0.5rem 1rem 2rem;
    }

    .wm-speaker-info h4 {
        font-size: 1.8rem;
        /* margin: 0; */
        margin-bottom: 2px;
    }

    .wm-speaker-info p {
        font-size: 1.2rem;
        margin: 0;
        line-height: 1.2;
    }

    .wm-tag-outer {
        bottom: -20px;
    }

    .wm-tag {
        height: 40px;
        border-radius: 0.6rem;
    }

    .wm-tag p {
        font-size: 1.4rem;
    }

    .wm-linkedin {
        margin-top: 2rem;
    }

    .wm-linkedin a i {
        font-size: 2rem;
    }

    .wm-event-details {
        margin: 4rem 0;
    }

    .wm-event-date h1 {
        font-size: 2.6rem;
        margin-bottom: 0rem;
    }

    .wm-event-date p {
        font-size: 1.4rem;
    }

    .wm-time h1 {
        font-size: 2.6rem;
        margin-bottom: 0rem;
    }

    .wm-event-details-center p {
        font-size: 1.4rem;
    }

    .wm-event-live h1 {
        font-size: 2.6rem;
        margin-bottom: 0rem;
    }

    .wm-event-live p {
        font-size: 1.4rem;
    }

    .wm-timezone {
        padding: 2rem 4rem;
    }

    .wm-timezone h2 {
        font-size: 2.6rem;
    }

    .wm-timezone h4 {
        font-size: 1.8rem;
    }

    .wm-message {
        padding: 3rem 3rem;
        margin-bottom: 6rem;
    }

    .wm-message h4 {
        font-size: 2rem;
    }

    .wm-artwork img {
        bottom: -6rem;
        left: 32%;
        width: 40%;
    }

    .wm-takeaway-card img {
        width: auto;
        height: 210px;
        padding: 3rem 3rem;
    }

    .wm-after h4 {
        font-size: 2.8rem;
    }

    .wm-after p {
        font-size: 1.4rem;
    }

    /* Section 3 */
    .wm-section3 {
        padding: 6rem 8rem;
    }

    .wm-section3 h1 {
        font-size: 3.2rem;
        margin-bottom: 6rem;
    }

    .wm-section3 p {
        font-size: 1.4rem;
    }

    .wm-section3 img {
        width: 54%;
    }

    /* From */
    .wm-registration-form {
        padding: 6rem 8rem;
    }

    .wm-registration-form h1 {
        font-size: 3rem;
        margin-bottom: 8rem;
    }

    .wm-registration-form img {
        width: 80%;
    }

    /* .form-label {
        font-size: 1.4rem;
    }

    .form-control {
        border-radius: 0.6rem;
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    } */

    .wm-btn4 {
        margin-top: 0.5rem;
    }

    .wm-frm-msg {
        font-size: 1.2rem;
        margin: 0.5rem 0 0 0;
    }

    .ask-ai-widget {
        gap: 8px;
    }

    .ask-ai-label {
        font-size: 16px;
    }

    .ask-ai-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 1800px) {
    .wm-section1-right img {
        width: 83%;
    }

    .wm-speaker-info p {
        font-size: 1rem;
    }

    .flip-card-back p {
        font-size: 1rem;
        line-height: 1.2;
        padding: 0.2rem 1rem;
    }

    .wm-tag-outer {
        bottom: -17px;
    }

    .wm-tag {
        height: 35px;
        padding: 2px 25px;
    }

    .wm-tag p {
        font-size: 1.2rem;
    }

    .wm-linkedin {
        margin-top: 1.5rem;
    }
}

@media (max-width: 1600px) {
    .logo img {
        width: 280px;
    }

    .wm-section1 {
        padding: 4rem 0 0 8rem;
    }

    .wm-hero {
        margin-bottom: 4rem;
    }

    .wm-box {
        border-radius: 0.8rem;
    }

    .wm-box p {
        padding: 0.6rem 1rem;
    }

    .wm-section2 {
        padding: 4rem 8rem;
    }

    .wm-section1-left p {
        font-size: 1.2rem;
        margin-bottom: 6rem;
    }

    .btn {
        font-size: 1rem;
        border-radius: 0.8rem;
    }

    .wm-btn3 {
        margin-bottom: 1.5rem;
    }

    .wm-hero-left h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .wm-hero-left .wm-para {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .wm-box {
        margin-bottom: 1.5rem;
    }

    .wm-box p {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }

    .wm-section1-left h1 {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }

    .wm-section1-right img {
        width: 75%;
    }

    /* Section 2 */
    .wm-section2 h1 {
        font-size: 2.8rem;
        margin-bottom: 4rem;
    }

    .wm-speaker-section {
        margin-bottom: 4rem;
    }

    .flip-card {
        height: 400px;
        border-radius: 1.2rem;
    }

    .flip-card-front {
        border-radius: 1.2rem;
    }

    .flip-card-back {
        border-radius: 1.2rem;
    }

    .flip-card-back p {
        font-size: 0.8rem;
    }

    .wm-speaker-info {
        padding: 0.5rem 0.5rem 1.6rem;
        border-bottom-left-radius: 1.2rem;
        border-bottom-right-radius: 1.2rem;
    }

    .wm-speaker-info h4 {
        font-size: 1.4rem;
    }

    .wm-speaker-info p {
        font-size: 1rem;
    }

    .wm-tag-outer {
        bottom: -14px;
    }

    .wm-tag {
        height: 30px;
        padding: 2px 18px;
    }

    .wm-tag p {
        font-size: 1rem;
    }

    .wm-linkedin {
        margin-top: 1.2rem;
    }

    .wm-linkedin a i {
        font-size: 1.5rem;
    }

    .wm-event-date h1 {
        margin-bottom: 0;
    }

    .wm-time h1 {
        font-size: 3rem;
        margin-bottom: 0;
    }

    .wm-time p {
        padding-bottom: 2px;
        padding-left: 2px;
    }

    .wm-timezone h2 {
        font-size: 2.4rem;
    }

    .wm-timezone h4 {
        font-size: 1.6rem;
    }

    .wm-event-live h1 {
        margin-bottom: 0;
    }

    .wm-border1 {
        padding: 2rem 0;
    }

    .wm-border2 {
        padding: 2rem 0;
    }

    .wm-border3 {
        padding: 2rem 0;
    }

    .wm-border4 {
        padding: 2rem 0;
    }

    .wm-event-date h1 {
        font-size: 2.2rem;
    }

    .wm-event-live h1 {
        font-size: 2.2rem;
    }

    .wm-message {
        margin-bottom: 4rem;
    }

    .wm-message h4 {
        font-size: 1.6rem;
    }

    .wm-takeaway-card img {
        width: auto;
        height: 145px;
        padding: 2rem 3rem;
    }

    .wm-after h4 {
        font-size: 2.5rem;
    }

    .wm-after p {
        font-size: 1.2rem;
    }

    .wm-artwork img {
        bottom: -4rem;
        left: 30%;
        width: 40%;
    }

    /* Section 3 */
    .wm-section3 {
        padding: 4rem 8rem;
    }

    .wm-section3 h1 {
        font-size: 2.8rem;
        margin-bottom: 4rem;
    }

    .wm-section3 p {
        font-size: 1.2rem;
    }

    .wm-frm-msg {
        font-size: 1rem;
    }


    .wm-registration-form {
        padding: 4rem 8rem;
    }

    .wm-registration-form h1 {
        font-size: 2.8rem;
    }

    .wm-form-design {
        padding: 2rem;
        border-radius: 1.2rem;
    }
}

@media (max-width: 1470px) {
    .wm-section1 {
        padding: 4rem 0 0 6rem;
    }

    .wm-section2 {
        padding: 4rem 6rem;
    }

    .wm-section3 {
        padding: 4rem 6rem;
    }

    .wm-registration-form {
        padding: 4rem 6rem;
    }

    .wm-speaker-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 1440px) {

    .logo img {
        width: 280px;
    }

    .wm-hero {
        margin-bottom: 2.5rem;
    }

    .wm-hero-content {
        min-height: 83lvh;
    }

    .wm-hero-left h1 {
        font-size: 2.8rem;
        margin-bottom: 0.5rem;
    }

    .wm-box {
        border-radius: 0.8rem;
    }

    .wm-box p {
        padding: 0.6rem 1rem;
    }

    .wm-section2 h1 {
        font-size: 2.5rem;
    }

    .wm-speaker-section {
        margin-bottom: 4rem;
    }

    .flip-card {
        height: 325px;
        border-radius: 1.2rem;
    }

    .flip-card-back p {
        padding: 0.2rem 1rem;
        line-height: 1.2;
        font-size: 0.75rem;
        font-weight: 200;
    }

    .wm-speaker-info {
        border-bottom-left-radius: 1.2rem;
        border-bottom-right-radius: 1.2rem;
        padding: 0.5rem 0.5rem 1.6rem;
    }

    .wm-speaker-info h4 {
        font-size: 1.4rem;
    }

    .wm-speaker-info p {
        font-size: 0.8rem;
    }

    .wm-tag p {
        font-size: 1rem;
        padding: 0;
        font-weight: normal;
    }

    .wm-event-date h1 {
        font-size: 2.2rem;
    }

    .wm-event-live h1 {
        font-size: 2.2rem;
    }

    .wm-message {
        margin-bottom: 4rem;
    }

    .wm-message h4 {
        font-size: 1.4rem;
    }

    .wm-takeaway-card img {
        width: auto;
        height: 140px;
        padding: 2rem 2.5rem;
    }

    .wm-after h4 {
        font-size: 2.5rem;
    }

    .wm-after p {
        font-size: 1rem;
    }

    .wm-registration-form h1 {
        font-size: 2.6rem;
    }

    .wm-form-design {
        padding: 2rem;
        border-radius: 1.2rem;
    }

    .form-label {
        font-size: 1rem;
    }

    .wm-frm-msg {
        font-size: 0.8rem;
    }

    .wm-hero-content {
        min-height: 84lvh;
    }

    .wm-event-date p {
        font-size: 1.2rem;
    }

    .wm-event-details-center p {
        font-size: 1.2rem;
    }

    .wm-event-live p {
        font-size: 1.2rem;
    }

    .wm-timezone h2 {
        font-size: 2.2rem;
    }

    .wm-timezone h4 {
        font-size: 1.4rem;
    }

    .wm-artwork img {
        left: 30%;
        width: 42%;
    }

    /* Section 3 */
    .wm-section3 h1 {
        font-size: 2.5rem;
    }

    .wm-section3 img {
        width: 72%;
    }
}

@media (max-width: 1280px) {
    .wm-height {
        padding: 2rem 4rem;
    }

    .btn {
        font-size: 0.8rem;
        border-radius: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

    .wm-btn3 {
        margin-bottom: 1rem;
    }

    .wm-hero-left h1 {
        font-size: 2.4rem;
    }

    .wm-hero-left .wm-para {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .wm-section1 {
        padding: 2.5rem 0 0 4rem;
    }

    .wm-section1-left h1 {
        font-size: 2.2rem;
    }

    .wm-section1-left p {
        font-size: 1rem;
    }

    .wm-section2 {
        padding: 2.5rem 4rem;
    }

    .wm-section2 h1 {
        margin-bottom: 2.5rem;
        font-size: 2.2rem;
    }

    .wm-speaker-info h4 {
        font-size: 1.25rem;
    }

    .wm-speaker-section {
        margin-bottom: 2.5rem;
    }

    .wm-tag-outer {
        bottom: -12px;
    }

    .wm-tag {
        height: 25px;
        border-radius: 0.4rem;
    }

    .wm-tag p {
        font-size: 0.8rem;
    }

    .wm-linkedin a i {
        font-size: 1.2rem;
    }

    .wm-event-details {
        margin: 2rem 0;
    }

    .wm-event-date {
        border-right: 1px solid #666666;
    }

    .wm-event-date h1 {
        margin-bottom: 0;
        font-size: 2rem;
    }

    .wm-event-date p {
        font-size: 1rem;
    }

    .wm-time h1 {
        font-size: 2rem;
        margin-bottom: 0;
    }

    .wm-time p {
        font-size: 1rem;
        padding-bottom: 0px;
        padding-left: 2px;
    }

    .wm-event-details-center p {
        font-size: 1rem;
    }

    .wm-event-live {
        border-left: 1px solid #666666;
    }

    .wm-event-live h1 {
        font-size: 2rem;
        margin-bottom: 0;
    }

    .wm-event-live p {
        font-size: 1rem;
    }

    .wm-timezone {
        padding: 1rem 3rem;
        margin-bottom: 2.5rem;
    }

    .wm-timezone h2 {
        font-size: 2rem;
    }

    .wm-border1 {
        border-right: 1px solid #666666;
    }

    .wm-border2 {
        border-right: 1px solid #666666;
    }

    .wm-border3 {
        border-right: 1px solid #666666;
    }

    .wm-timezone h4 {
        font-size: 1.2rem;
    }

    .wm-message {
        padding: 2rem 3rem;
        margin-bottom: 2.5rem;
    }

    .wm-message h4 {
        font-size: 1.2rem;
    }

    .wm-takeaway-card img {
        width: auto;
        height: 130px;
        padding: 1.6rem 2.2rem;
    }

    .wm-after {
        padding: 0 1rem;
    }

    .wm-after h4 {
        font-size: 2.2rem;
    }

    .wm-artwork img {
        bottom: -2.5rem;
        width: 38%;
        left: 30%;
    }

    /* Section 3 */
    .wm-section3 {
        padding: 2.5rem 4rem;
    }

    .wm-section3 h1 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .wm-section3 p {
        font-size: 1rem;
    }

    .wm-section3 img {
        width: 62%;
    }

    .wm-registration-form {
        padding: 2.5rem 4rem;
    }

    .wm-registration-form h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 1024px) {
    .logo img {
        width: 240px;
    }

    .wm-hero-content {
        margin: 0 1.2rem;
        min-height: 82lvh;
    }

    .wm-hero-left h1 {
        font-size: 2rem;
    }

    .wm-hero-left .wm-para {
        font-size: 0.8rem;
        line-height: 1.2rem;
        margin-bottom: 1rem;
    }

    .wm-box {
        border-radius: 0.6rem;
    }

    .wm-box p {
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.4rem 0.8rem;
        border-radius: 0.6rem;
    }

    .wm-hr {
        border-width: 1px;
    }


    /* Section 1 */
    .wm-section1 {
        padding: 2.5rem 0 0 4rem;
    }

    .wm-section1-left h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .wm-section1-left p {
        font-size: 0.8rem;
        margin-bottom: 4rem;
    }

    /* Section 2 */

    .wm-section2 {
        padding: 2.5rem 2.5rem;
    }

    .wm-section2 h1 {
        font-size: 2rem;
    }

    .flip-card {
        height: 250px;
    }

    .flip-card-back p {
        font-size: 0.6rem;
        line-height: 1.1;
        padding: 0.2rem 0.5rem;
    }

    .wm-speaker-info {
        padding: 0.25rem 0.25rem 1.2rem;
    }

    .wm-speaker-info h4 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .wm-speaker-info p {
        font-size: 0.6rem;
    }

    .wm-tag-outer {
        bottom: -10px;
    }

    .wm-tag {
        height: 20px;
        border-radius: 0.4rem;
        padding: 2px 12px;
    }

    .wm-tag p {
        font-size: 0.6rem;
    }

    .wm-linkedin {
        margin-top: 1rem;
    }

    .wm-linkedin a i {
        font-size: 1rem;
    }

    .wm-event-date h1 {
        font-size: 1.8rem;
    }

    .wm-event-date {
        padding: 1rem 0;
    }

    .wm-event-date p {
        font-size: 0.8rem;
    }

    .wm-event-details-center {
        padding: 1rem 0;
    }

    .wm-event-details-center p {
        font-size: 0.8rem;
    }

    .wm-event-live {
        padding: 1rem 0;
    }

    .wm-time h1 {
        font-size: 2rem;
    }

    .wm-event-live p {
        font-size: 0.8rem;
    }

    .wm-timezone {
        padding: 1rem 2rem;
        border-radius: 1rem;
    }

    .wm-timezone h2 {
        font-size: 1.6rem;
    }

    .wm-timezone h4 {
        font-size: 1rem;
    }

    .wm-message {
        border-radius: 1rem;
    }

    .wm-message h4 {
        font-size: 1rem;
    }

    .wm-takeaway-card {
        border-radius: 1rem;
        padding: 1rem 0;
    }

    .wm-takeaway-card img {
        width: auto;
        height: 120px;
        padding: 1.2rem 1.8rem;
    }

    .wm-after h4 {
        font-size: 2rem;
    }

    .wm-after p {
        font-size: 0.8rem;
        line-height: 1.1rem;
    }

    /* Section 3 */
    .wm-section3 {
        padding: 2.5rem 4rem;
    }

    .wm-section3 h1 {
        font-size: 2rem;
    }

    .wm-section3 p {
        font-size: 0.8rem;
        margin-bottom: 4rem;
    }

    .wm-registration-form {
        padding: 2.5rem 4rem;
    }

    .wm-registration-form h1 {
        font-size: 2rem;
    }

    .wm-form-design {
        padding: 1.4rem;
    }

    /* .form-label {
        font-size: 0.8rem;
    }

    .form-control {
        border-radius: 0.3rem;
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    } */

    .wm-frm-msg {
        font-size: 0.7rem;
    }
}

@media (max-width: 1024px) and (min-height: 1024px) {
    .wm-navbar {
        min-height: 8lvh;
    }

    .logo img {
        width: 300px;
    }

    .btn {
        font-size: 1rem;
    }

    .wm-hero-content {
        min-height: 90lvh;
    }

    .wm-height {
        padding: 2rem 3rem;
    }

    .wm-hero-left h1 {
        font-size: 2.4rem;
    }

    .wm-hero-left .wm-para {
        font-size: 1rem;
        line-height: 1.4rem;
        margin-bottom: 1rem;
    }

    .wm-box p {
        font-size: 1rem;
    }

    /* Section */
    .wm-section1 {
        padding: 2.5rem 0 0 2.5rem;
    }

    .wm-section1-left p {
        font-size: 1rem;
    }

    /* Section 2 */
    .wm-section2 {
        padding: 2.5rem;
    }

    .wm-speaker-info {
        padding: 0.4rem 0.2rem 1.2rem;
    }

    .wm-tag-outer {
        bottom: -10px;
    }

    /* Section 3 */
    .wm-section3 {
        padding: 2.5rem;
    }

    .wm-section3 p {
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    .wm-height {
        flex-direction: column-reverse;
    }

    .wm-hero-left {
        text-align: center;
    }

    .wm-box {
        margin: 1.5rem auto;
    }

    .wm-hero-right {
        display: grid;
        justify-items: center;
        margin-bottom: 4rem;
    }

    .wm-hero-right img {
        width: 65%;
    }

    .wm-hero-left h1 {
        font-size: 3rem;
    }

    .wm-hero-left .wm-para {
        font-size: 1.4rem;
        line-height: 1.8rem;
        margin-bottom: 1rem;
    }

    .wm-box p {
        font-size: 1.2rem;
    }

    /* Section 1 */
    .wm-section1 {
        padding: 2.5rem 0rem 0 2.5rem;
    }

    .wm-section1-left {
        padding-right: 2.5rem;
    }

    .wm-section1-left h1 {
        font-size: 2.5rem;
    }

    .wm-section1-left p {
        font-size: 1.5rem;
    }

    /* Section 2 */
    .wm-section2 {
        padding: 2.5rem;
    }

    .wm-section2 h1 {
        font-size: 2.5rem;
    }

    .flip-card {
        height: 415px;
    }

    .flip-card-back p {
        font-size: 1rem;
        line-height: 1.3;
    }

    .wm-speaker-info {
        padding: 0.8rem 0.2rem 2rem;
    }

    .wm-speaker-info h4 {
        font-size: 1.8rem;
    }

    .wm-speaker-info p {
        font-size: 1.2rem;
    }

    .wm-tag-outer {
        bottom: -16px;
        height: fit-content;
    }

    .wm-tag {
        height: 32px;
        border-radius: 0.4rem;
        padding: 2px 26px;
    }

    .wm-tag p {
        font-size: 1rem;
    }

    .wm-linkedin {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .wm-linkedin a i {
        font-size: 1.4rem;
    }

    .wm-event-date h1 {
        font-size: 1.8rem;
    }

    .wm-time h1 {
        font-size: 2rem;
    }

    .wm-event-live h1 {
        font-size: 1.8rem;
    }

    /* Section 3 */
    .wm-section3 {
        padding: 2.5rem;
    }

    .wm-section3 h1 {
        font-size: 2.5rem;
    }

    .wm-section3 p {
        font-size: 1.5rem;
    }


    .wm-registration-form {
        padding: 2.5rem;
    }

    .ask-ai-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 856px) {
    .flip-card-back p {
        font-size: 1rem;
        line-height: 1.2;
    }
}

@media (max-width: 820px) {
    .wm-hero-left h1 {
        font-size: 2.6rem;
    }

    .wm-hero-left .wm-para {
        font-size: 1.4rem;
    }

    .wm-message {
        padding: 1.5rem;
    }

    .wm-message h4 {
        line-height: 1.5;
    }

    .wm-takeaway-card img {
        height: 115px;
        padding: 1rem 1.4rem;
    }

    .wm-after h4 {
        font-size: 1.6rem;
    }

    .wm-after p {
        line-height: 1.2;
    }

    .wm-section1-left p {
        font-size: 1.4rem;
    }

    /* Section 2 */
    .wm-speaker-info {
        padding: 0.8rem 0.2rem 1.8rem;
    }

    .wm-speaker-info p {
        font-size: 1rem;
    }

    .wm-tag-outer {
        bottom: -16px;
    }

    .wm-artwork img {
        width: 50%;
        left: 24%;
    }

    .wm-section3 p {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .wm-navbar {
        padding: 2rem 2.5rem 1rem;
    }

    .wm-hero-left h1 {
        font-size: 2.4rem;
    }

    .wm-hero-left .wm-para {
        font-size: 1.2rem;
    }

    .wm-box p {
        font-size: 1rem;
    }

    .wm-hero-right {
        margin-bottom: 2rem;
    }

    .wm-section1-left p {
        font-size: 1.4rem;
    }

    .wm-timezone {
        padding: 1rem 1rem;
    }

    .flip-card-back p {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .wm-tag p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {

    .wm-navbar {
        min-height: 10lvh;
    }

    .wm-hero-content {
        min-height: 88lvh;
    }

    .wm-event-date {
        border-right: 0px solid #fff;
    }

    .wm-event-live {
        border-left: 0px solid #fff;
    }

    .wm-border1 {
        border-right: 0px solid #fff;
    }

    .wm-border2 {
        margin-bottom: 2rem;
    }

    .wm-border3 {
        margin-bottom: 2rem;
    }

    .wm-border4 {
        margin-bottom: 2rem;
    }

    .wm-after h4 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .wm-after p {
        font-size: 1rem;
    }

    .wm-takeaway-card {
        margin: 1rem 0;
    }

    .wm-artwork {
        height: 200px;
    }

    .wm-artwork img {
        width: 32%;
        left: 35%;
    }

    .wm-registration-form h1 {
        margin-bottom: 3rem;
    }

    .wm-registration-form img {
        width: 65%;
        margin-bottom: 3rem;
    }
}

@media (max-width: 602px) and (min-height:860px) {
    .flip-card-back p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .wm-tag p {
        font-size: 1rem;
    }
}

@media (max-width: 540px) {

    .wm-hero {
        margin-bottom: 1.5rem;
    }

    .wm-hero-content {
        min-height: 85lvh;
        background-position: 35% center;
    }

    .wm-height {
        padding: 2rem 2rem;
    }

    .wm-hero-left h1 {
        font-size: 1.8rem;
    }

    .wm-hero-left .wm-para {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .wm-box {
        margin: 1rem auto;
        border-radius: 0.4rem;
    }

    .wm-box p {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .wm-hero-right img {
        width: 40%;
    }

    /* Section 1 */
    .wm-section1 {
        padding: 1.5rem 0rem 0 1.5rem;
    }

    .wm-section1-left {
        padding-right: 1.5rem;
    }

    .wm-section1-left h1 {
        font-size: 2rem;
    }

    .wm-section1-left p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 2rem;
    }

    .wm-section1-right img {
        width: 75%;
    }

    /* Section 2 */
    .wm-speaker-section {
        margin-bottom: 1.5rem;
    }

    .wm-section2 {
        padding: 1.5rem;
    }

    .wm-section2 h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .flip-card {
        height: 415px;
        width: 360px;
        margin: 0 auto;
    }

    .wm-event-details {
        margin: 1.5rem 0;
    }

    .wm-event-date h1 {
        margin-bottom: 0;
    }

    .wm-time h1 {
        margin-bottom: 0rem;
    }

    .wm-event-live h1 {
        margin-bottom: 0;
    }

    .wm-border1 {
        padding: 1rem 0;
        margin-bottom: 0rem;
    }

    .wm-border2 {
        border-right: 0px solid #fff;
        padding: 1rem 0;
        margin-bottom: 0rem;
    }

    .wm-border3 {
        border-right: 0px solid #fff;
        padding: 1rem 0;
        margin-bottom: 0rem;
    }

    .wm-border4 {
        padding: 1rem 0;
        margin-bottom: 0rem;
    }

    .wm-message {
        margin-bottom: 1.5rem;
    }

    .wm-takeaway-card img {
        height: 100px;
        padding: 1rem 1.4rem;
    }

    .wm-after h4 {
        font-size: 1.6rem;
        margin-bottom: 0rem;
    }

    .wm-after p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .wm-artwork img {
        bottom: -1.5rem;
        width: 40%;
        left: 30%;
    }

    /* Section 3 */
    .wm-section3 {
        padding: 1.5rem;
    }

    .wm-section3 h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .wm-section3 p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .wm-registration-form {
        padding: 1.5rem;
    }

    .wm-registration-form h1 {
        margin-bottom: 2rem;
    }

    .wm-registration-form img {
        width: 50%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 460px) {
    .wm-navbar {
        padding: 2rem 2rem 1rem;
    }

    .logo img {
        width: 200px;
    }
}

@media (max-width: 430px) {

    .wm-hero-content {
        min-height: 86lvh;
        background-position: 45% center;
    }

    .wm-navbar {
        padding: 2rem 1.2rem 1rem;
    }

    .logo img {
        width: 180px;
    }

    .btn {
        padding: 0.2rem 0.5rem;
        border-radius: 0.4rem;
    }

    .wm-hero-left h1 {
        font-size: 1.4rem;
    }

    .wm-mobview {
        display: block;
    }

    .wm-deskview {
        display: none;
    }

    .wm-hero-right img {
        width: 55%;
    }

    .wm-section1-left h1 {
        font-size: 1.5rem;
    }

    /* Section 2 */
    .wm-section2 h1 {
        font-size: 1.5rem;
    }

    .wm-after p {
        line-height: 1.1;
    }

    .flip-card {
        height: 415px;
        width: 100%;
    }

    .wm-artwork {
        height: 145px;
    }

    /* Section 3 */
    .wm-section3 h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 390px) {
    .wm-height {
        padding: 2rem 1rem;
    }

    .flip-card-back p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

@media (max-width: 375px) {
    .wm-speaker-info {
        padding: 0.8rem 0.2rem 1.6rem;
    }

    .wm-speaker-info h4 {
        font-size: 1.6rem;
    }

    .wm-speaker-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .logo img {
        width: 160px;
    }

    .wm-hero-left h1 {
        font-size: 1.2rem;
    }

    .wm-section1 {
        padding: 1.2rem 0rem 0 1.2rem;
    }

    .wm-section1-left {
        padding-right: 1.2rem;
    }

    .wm-section1-left h1 {
        font-size: 1.4rem;
    }

    .wm-section1-left p {
        margin-bottom: 2rem;
    }

    .flip-card-back p {
        line-height: 1.2;
    }

    .wm-speaker-info {
        padding: 0.8rem 0.2rem 1.4rem;
    }

    .wm-speaker-info h4 {
        font-size: 1.2rem;
    }

    .wm-speaker-section {
        margin-bottom: 1rem;
    }

    .wm-tag-outer {
        bottom: -12px;
    }

    .wm-tag {
        height: 25px;
        border-radius: 0.4rem;
        padding: 2px 18px;
    }

    .wm-tag p {
        font-size: 0.8rem;
    }

    .wm-event-details {
        margin: 1rem 0;
    }

    .wm-takeaway-card img {
        height: 70px;
        padding: 0.5rem 0.8rem;
    }

    .wm-after h4 {
        font-size: 1.2rem;
        margin-bottom: 0rem;
    }

    .wm-after p {
        font-size: 0.6rem;
    }

    .wm-artwork {
        height: 100px;
    }

    /* Section 3 */
    .wm-section3 h1 {
        font-size: 1.4rem;
    }

    .wm-registration-form h1 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .wm-registration-form img {
        margin-bottom: 1rem;
    }
}

@media (max-width: 345px) {
    .flip-card {
        height: 320px;
    }

    .btn {
        font-size: 0.6rem;
    }
}

@media (max-width: 320px) {
    .flip-card {
        height: 350px;
    }

    .flip-card-back p {
        line-height: 1.25;
        font-size: 0.8rem;
    }
}