:root {
    --max-width: 1200px;
    --content-padding: 3rem;

    --font-primary: "Montserrat", sans-serif;
    --font-avenir-medium: "Avenir Next W05 Medium", Helvetica, Arial, sans-serif;
    --font-avenir-bold: "Avenir Next W05 Bold", "Montserrat", Helvetica, Arial, sans-serif;

    --color-accent-1: #fc552e;
    --color-accent-2: #a90062;
    --color-accent-3: #25b276;
    --color-accent-4: #60248c;
    --color-accent-5: #1fbcd5;
    --color-light: #ffffff;
    --color-dark: #393e41;
    --color-neutral: #f5f5f5;
}

/* Reset DOM
==================================================*/
*,
*::before,
*::after {
    margin: 0;
    border: 0;
    padding: 0;
}

/* General
============================================================== */
body {
    /* font-family: var(--font-primary) !important; */
    font-weight: normal !important; /* needed due to overlaying styles being loaded */
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Fonts
============================================================== */
/* h1 {
    font-family: var(--font-primary) !important;
    font-size: 4rem !important;
    font-weight: 700 !important;
}*/
h2 {
    line-height: 1;
}
/*
h3 {
    font-family: var(--font-primary) !important;
    font-size: 2rem !important;
    font-weight: 500 !important;
}
p {
    font-family: var(--font-primary) !important;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
} */
.text-xl {
    font-size: 1.25rem;
}
.text-2xl {
    font-size: 2rem;
}
.text-3xl {
    font-size: 3rem;
}
.text-4xl {
    font-size: 4rem;
}

/* Buttons
============================================================== */
.btn {
    display: inline-block;
    font-family: var(--font-avenir-bold);
    font-weight: 500;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    user-select: none;
    padding: 0.375rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    border: 2px solid transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
}
.btn:hover,
.btn:focus {
    text-decoration: none;
}
.btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25); /* Default focus shadow, can be customized in each type */
}
.btn:disabled,
.btn.disabled {
    opacity: 0.65;
    pointer-events: none;
}
/* Primary button styles */
.btn-primary {
    background-color: var(--color-accent-4);
    border-color: var(--color-accent-4);
    color: var(--color-light) !important;
}
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
    background-color: transparent;
    border-color: var(--color-accent-4);
    color: var(--color-accent-4) !important;
}
/* Secondary button styles */
.btn-secondary {
    background-color: transparent;
    border-color: var(--color-accent-4);
    color: var(--color-accent-4) !important;
}
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
    background-color: var(--color-accent-4);
    border-color: var(--color-accent-4);
    color: var(--color-light) !important;
}

/* Sitecore Tweaks
============================================================== */
.blockBox:not(:first-of-type) {
    padding: var(--content-padding) 0;
    box-sizing: border-box;
}

/* Conflict Fixes
============================================================== */
.mainNavigationMenu ul.topnavlist {
    top: 0px !important;
}
.topNavRegBtn a {
    display: inline-block;
    background-color: var(--color-accent-4) !important;
    margin: 0 0 0 10px !important;
    /* padding: 0.375rem 1rem !important; */
    padding: 0.375rem 0rem !important;
    box-shadow: none !important;
    border-radius: 0.375rem;
    border: 2px solid var(--color-accent-4);
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    color: var(--color-light) !important;
    vertical-align: middle;
    user-select: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
    width: unset !important;
    min-width: 135px !important;
}
.topNavRegBtn a:hover {
    background-color: transparent !important;   
    color: var(--color-accent-4) !important;
}

#contentBox div>.footer a {
    background-color: transparent !important;
    /* border-color: var(--color-accent-4); */
    border-radius: 0.375rem !important;
    box-shadow: 0 0 0 2px var(--color-accent-4) inset, 0 0 1px rgba(0, 0, 0, 0) !important;
    font-family: var(--font-avenir-bold);
    color: var(--color-accent-4) !important;
}
#contentBox div>.footer a:hover {
    background-color: var(--color-accent-4) !important;
    color: var(--color-light) !important;
}

/* Hero CTA Slider
============================================================== */
#hero-cta {
    background: var(--color-neutral) url(../img/seminars-hero-image-1.jpg) no-repeat center center / cover;
}
#hero-cta .cta-slides {
    width: 100%;
    height: 450px;
}
#hero-cta .cta-slides .cta-slide {
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Slider Alternate Backgrounds */
/*
#hero-cta .cta-slide:nth-child(1) {
    background: var(--color-neutral) url(../img/datapalooza-bg.png) no-repeat center center / cover;s

    h2 {
        color: #ecca1a;
        line-height: 1.2;
    }
    h3 {
        color: #fff;
    }
    .btn {
        background-color: #d98d30;
        border-color: #d98d30;
        color: #fff;

        &:hover {
            background-color: #d96e30;
            border-color: #d96e30;
            color: #fff !important;
        }
    }
}
#hero-cta .cta-slide:nth-child(2) {
    background: var(--color-neutral) url(../img/seminars-hero-image-1.jpg) no-repeat center center / cover;
}
*/

#hero-cta .cta-slide {
    position: relative;
    padding: 1rem;
    text-align: center;
}
#hero-cta .cta-slide > * {
    max-width: var(--max-width);
}
#hero-cta .cta-slide h2 {
    margin: 0.5rem;
    font-family: var(--font-avenir-bold);
}
#hero-cta .cta-slide h3 {
    margin: 0.625rem 0;
    font-family: var(--font-avenir-medium);
    color: var(--color-accent-4);
}
@media (max-width: 1776px) and (min-width: 767px) {
    #hero-cta .cta-slide h3 {
        border-radius: 0.25rem;
        background-color: rgba(255, 255, 255, 0.75);
        padding: 0.25rem;
        box-sizing: content-box;
    }
}
#hero-cta .cta-slide span {
    font-family: var(--font-avenir-bold);
    color: var(--color-accent-4);
}
#hero-cta .cta-slide .btn {
    margin-top: 1rem;
}
#hero-cta .slick-dots {
    bottom: 15px;
}
@media (max-width: 767px) {
    #hero-cta .slick-dots {
        display: none;
    }
}
#hero-cta .slick-dots li button:before {
    font-size: 10px;
}
.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}

@media (max-width: 767px) {
    #hero-cta .cta-slides {
        height: 600px;
    }
    #hero-cta .cta-slides .cta-slide {
        height: 600px;
    }
    /* #hero-cta .cta-slide > img {
        margin-bottom: 1rem;
    }
    #hero-cta .cta-slides .cta-slide:nth-child(1) > img {
        height: 50px;
    }
    #hero-cta .cta-slides .cta-slide:nth-child(2) > img {
        height: 75px;
    }
    #hero-cta .cta-slide > h1 {
        font-size: 36px;
    }
    #hero-cta .cta-slide > h2 {
        font-size: 24px;
    } */
}

/* Stat Bar
============================================================== */
.box-stat-bar {
    background-color: var(--color-neutral);
}
#tdwi-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0rem 1rem;
}
#tdwi-stats .stat {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
#tdwi-stats .stat .icon {
    width: 85px;
    aspect-ratio: 1/1;
    display: flex;
    flex-shrink: 0;
    flex-grow: 0;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: var(--color-accent-1);
}
#tdwi-stats .stat:nth-child(2) .icon {
    background-color: var(--color-accent-2);
}
#tdwi-stats .stat:nth-child(3) .icon {
    background-color: var(--color-accent-4);
}
#tdwi-stats .stat .icon > img {
    height: 55px;
}
#tdwi-stats .stat:nth-child(2) .icon > img {
    height: 45px;
}
#tdwi-stats .stat:nth-child(3) .icon > img {
    height: 45px;
}
#tdwi-stats .stat .value {
    margin-bottom: 0.625rem;
    font-family: var(--font-avenir-bold);
    font-size: 2rem;
    /* font-weight: 700; */
    color: #000;
}
#tdwi-stats .stat .description {
    max-width: 250px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-dark);
}
#tdwi-stats .stat:nth-child(2) .description {
    max-width: 300px;
}
/* #tdwi-stats p {
    padding: 0 !important;
} */
@media (min-width: 992px) {
    #tdwi-stats .stat + .stat {
        border-left: 2px solid var(--color-light);
        padding-left: 2rem;
    }
}
@media (max-width: 991px) {
    #tdwi-stats .stat .description,
    #tdwi-stats .stat:nth-child(2) .description {
        max-width: unset;
    }
    #tdwi-stats {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Featured Seminars
============================================================== */
.featured-seminars-text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    padding-top: var(--content-padding) !important;
    font-family: var(--font-avenir-bold);
    text-align: center;
}
.featured-seminars-text .text-2xl {
    margin: 2rem 0 1.5rem 0;
    color: var(--color-accent-4);
}
.featured-seminars-text .text-xl {
    text-wrap: balance;
}
.featured-seminars {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: var(--content-padding);
}
.featured-seminars ul li {
    text-align: left;
}
.featured-seminars ul li a {
    display: block;
    margin-bottom: 1rem !important;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: underline;
}
.featured-seminars ul li a:hover {
    text-decoration: none;
}
.featured-seminars ul li p {
    font-size: 1rem;
    line-height: 1.5;
}
.featured-seminars .slick-slide {
    padding: 0 2rem;
    box-sizing: border-box;
}
.featured-seminars .slick-dots li button:before {
    font-size: 8px;
    line-height: 25px;
}
.featured-seminars .footer {
    margin-top: 3rem !important;
}
.featured-seminars .gtm_btn {
    background-color: var(--color-accent-4) !important;
    color: #fff !important;
}
.featured-seminars .gtm_btn:hover {
    background-color: transparent !important;
    color: var(--color-accent-4) !important;
}

/* Bootcamp Cards
============================================================== */
.boxBootcamps {
    /*padding: 2rem 1em !important;*/
    box-sizing: border-box;
}

/* .boxBootcamps .summary {
    max-width: 1440px !important;
} */

#bootcamp-cards h2 {
    text-align: center;
}
#bootcamp-cards > h3 {
    margin: 0.7rem 0 1.5rem;
    text-align: center;
}

.cards {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* grid-template-columns: repeat(4, 1fr); */
    /* grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */
    gap: 2rem;
    margin: 0 auto;
}

.card {
    width: 350px;
    /* height: 300px; */
    border-radius: 5px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.card > .image {
    width: 100%;
    height: 200px;
}

.card:nth-child(1) > .image {
    background: url(/design/TDWI/Events/conferences/san-diego/2025/img/boot_ds-clear.png) no-repeat center center / contain;
    background-color: #1fbcd5;
}

.card:nth-child(2) > .image {
    background: url(/design/TDWI/Events/conferences/san-diego/2025/img/boot_dsc-clear.png) no-repeat center center / contain;
    background-color: #60248c;
}

.card:nth-child(3) > .image {
    background: url(/design/TDWI/Events/conferences/san-diego/2025/img/boot_dg-clear.png) no-repeat center center / contain;
    background-color: #25b276;
}

.card:nth-child(4) > .image {
    background: url(/design/TDWI/Events/conferences/san-diego/2025/img/boot_ml-clear.png) no-repeat center center / contain;
    background-color: #fc552e;
}

.card:nth-child(5) > .image {
    background: url(/design/TDWI/Events/conferences/san-diego/2025/img/boot_dl-clear.png) no-repeat center center / contain;
    background-color: #a90062;
}

.card > .description {
    padding: 1.5rem;
    box-sizing: border-box;
}

.cards .description > .tag {
    border-radius: 5px;
    padding: 0.25rem 0.5rem;
    background-color: #393e41;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
}

.cards .description > h3 {
    margin: 1rem 0 0.7rem 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.cards .description > p {
    margin-top: 0.5rem;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.cards .datecallout {
    /* display: none !important; */
    font-family: var(--font-avenir-bold);
    font-size: 0.81rem !important;
    color: #393e41 !important;
}

.cards .description .btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1.3rem;
    padding-right: 0.5rem;
    box-sizing: border-box;
}

#bootcamp-cards .btn-wrapper > a {
    text-decoration: none;
}

#bootcamp-cards .btn-wrapper > a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.card:nth-child(1) > .description > .btn-wrapper > a {
    color: #1fbcd5;
}

.card:nth-child(2) > .description > .btn-wrapper > a {
    color: #60248c;
}

.card:nth-child(3) > .description > .btn-wrapper > a {
    color: #25b276;
}

.card:nth-child(4) > .description > .btn-wrapper > a {
    color: #fc552e;
}

.card:nth-child(5) > .description > .btn-wrapper > a {
    color: #a90062;
}

.btn-wrapper > a i {
    transform: translateX(5px);
}

.btn-wrapper > a:hover i {
    transition: 150ms transform ease-in-out;
    transform: translateX(10px);
}

/* Explore by Topic
============================================================== */
#explore-by-topic {
    width: 100%;
    max-width: 2560px; /* Needed for massive screens */
    margin: 0 auto;
    padding-top: var(--content-padding);
    text-align: center;
}
#explore-by-topic h2 {
    padding: 0 1rem;
    text-align: center;
}
#explore-by-topic h3 {
    margin: 0.7rem 0 1.5rem;
    padding: 0 1rem;
    text-align: center;
}
#explore-by-topic .topics {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    overflow: hidden;
}
#explore-by-topic .topics a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.8rem 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    color: #fff;
}
#explore-by-topic .topics a:hover {
    transition: 150ms transform ease-in-out;
    transform: scale(1.05);
    transform-origin: center;
    text-decoration: underline;
}
#explore-by-topic .topics a:nth-child(1) {
    background-color: var(--color-accent-1);
}
#explore-by-topic .topics a:nth-child(2) {
    background-color: var(--color-accent-2);
}
#explore-by-topic .topics a:nth-child(3) {
    background-color: var(--color-accent-3);
}
#explore-by-topic .topics a:nth-child(4) {
    background-color: var(--color-accent-4);
}
#explore-by-topic .topics a:nth-child(5) {
    background-color: var(--color-accent-5);
}
#explore-by-topic .topics a:nth-child(6) {
    background-color: #393e41;
    color: #fff;
}
@media (max-width: 1200px) {
    #explore-by-topic .topics {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
    #explore-by-topic .topics {
        grid-template-columns: 1fr;
    }
}

/* Testimonials
============================================================== */
#testimonials {
    max-width: calc(var(--max-width) + 4rem); /* 4rem added to adjust for internal margin in slider */
    margin: 3rem auto 5rem auto;
}
#testimonials p {
    padding: 0 !important; /* Offset Global P Padding */
}
#testimonials .testimonial {
    min-height: 275px;
    margin: 0 2rem;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    border-radius: 15px;
    padding: 0 2rem;
    background: linear-gradient(30deg, #25b276, #1fbcd5);
    text-align: center;
    box-sizing: border-box !important;
}
#testimonials .testimonial:hover {
    cursor: grab;
}
#testimonials .testimonial:active {
    cursor: grabbing;
}
#testimonials .testimonial > p {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}
#testimonials .testimonial .person {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.3rem;
}
#testimonials .testimonial .person > img {
    width: 80px;
    aspect-ratio: 1/1;
    border-radius: 100%;
}
#testimonials .testimonial .person p {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    /* line-height: 1.3; */
}
#testimonials .testimonial .person p > span {
    color: #fff;
}
#testimonials .slick-dots li button:before {
    font-size: 8px;
    line-height: 25px;
}
@media (max-width: 1200px) {
    #testimonials .testimonial {
        margin: 0 1rem;
    }
}

/* TDWI Partners
============================================================== */
#tdwi-partners {
    width: 100%;
    max-width: 2560px; /* Needed for massive screens */
    margin: 0 auto;
    padding: 4rem 1rem 2rem 1rem;
    text-align: center;
    overflow: visible;
}
#tdwi-partners h3 {
    margin: 0.7rem 0 1.5rem 0;
}
#tdwi-partners .logos {
    overflow: hidden;
    white-space: nowrap;
}
#tdwi-partners .logos-slide {
    display: inline-flex;
    animation: scroll 35s linear infinite;
}
#tdwi-partners .logos-slide img {
    height: 80px;
    padding: 0 2rem; /* Adjust spacing between images */
    filter: grayscale(100%);
}
#tdwi-partners .logos-slide img:hover {
    filter: grayscale(0);
    transition: 250ms filter ease-in-out;
}
@media (max-width: 767px) {
    #tdwi-partners {
        padding: 2rem 1rem;
    }
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Box Home Speakers
============================================================== */
.boxHomeSpeakersScrolling {
    padding: var(--content-padding) 1rem !important;
}

#contentBox .boxHomeSpeakers {
    padding: 2em 0 4em;
    background: radial-gradient(#fc552e, #e44c29);
}

#contentBox .boxHomeSpeakers > h3 {
    margin: 0 auto 2em;
    color: #fff;
}

#contentBox .boxHomeSpeakers .speakerbox,
#contentBox .boxHomeSpeakers > ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 1.5em;
    justify-content: center;
    box-sizing: border-box;
    margin: 0 auto;
    list-style-type: none;
    padding: 0;
    max-width: 900px;
}

#contentBox .boxHomeSpeakers .speakerbox .speaker,
#contentBox .boxHomeSpeakers > ul > li {
    width: 100%;
    margin: 0 auto;
    border: none;
    padding: 0;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
}

#contentBox .boxHomeSpeakers .speakerbox .speaker.show,
#contentBox .boxHomeSpeakers > ul > li.show {
    opacity: 1;
}

#contentBox .boxHomeSpeakers .speakerbox .speaker a:focus,
#contentBox .boxHomeSpeakers .speakerbox .speaker a:hover,
#contentBox .boxHomeSpeakers .speakerbox .speaker a:active,
#contentBox .boxHomeSpeakers > ul > li a:focus,
#contentBox .boxHomeSpeakers > ul > li a:hover,
#contentBox .boxHomeSpeakers > ul > li a:active {
    color: #fc552e;
}

#contentBox .boxHomeSpeakers > ul > li > a {
    display: block;
}

#contentBox .boxHomeSpeakers > ul > li p {
    padding: 0;
    margin: 0;
}

#contentBox .boxHomeSpeakers .speakerbox .speaker div.info img,
#contentBox .boxHomeSpeakers > ul > li img {
    margin: 0 auto;
    transform: scale(0);
    /*	border-radius: 40cqi 40cqi 0 0; */
    border-radius: 50%;
    padding: 0;
    border: 4px solid #e0e1db;
    filter: grayscale(1);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    min-width: unset;
    max-width: 105px;
    min-height: unset;
    width: 100%;
}
#contentBox .boxHomeSpeakers .speakerbox .speaker.show div.info img,
#contentBox .boxHomeSpeakers > ul > li.show img {
    transform: scale(1);
}

#contentBox .boxHomeSpeakers .speakerbox .speaker:focus div.info img,
#contentBox .boxHomeSpeakers .speakerbox .speaker:hover div.info img,
#contentBox .boxHomeSpeakers .speakerbox .speaker:active div.info img,
#contentBox .boxHomeSpeakers > ul > li a:focus img,
#contentBox .boxHomeSpeakers > ul > li a:hover img,
#contentBox .boxHomeSpeakers > ul > li a:active img {
    border-color: #ecca1a;
}

#contentBox .boxHomeSpeakers .speaker div.info span.name,
#contentBox .boxHomeSpeakers > ul > li .es_name {
    font-size: 1em;
    color: #ecca1a;
    display: block;
    font-weight: bold;
}

#contentBox .boxHomeSpeakers .speaker div.info span.expertTitle,
#contentBox .boxHomeSpeakers > ul > li span.es_title {
    font-size: 0.8em;
    line-height: 1.3em;
    display: block;
    color: #fff;
}

#contentBox .boxHomeSpeakers .speaker:focus div.info span.expertTitle,
#contentBox .boxHomeSpeakers .speaker:hover div.info span.expertTitle,
#contentBox .boxHomeSpeakers .speaker:active div.info span.expertTitle,
#contentBox .boxHomeSpeakers > ul > li:focus span.es_title,
#contentBox .boxHomeSpeakers > ul > li:hover span.es_title,
#contentBox .boxHomeSpeakers > ul > li:active span.es_title {
    color: #fff;
}

#contentBox .boxHomeSpeakers .speakerbox .speaker ul,
#contentBox .boxHomeSpeakers > ul > li ul {
    display: none;
}

#contentBox .boxHomeSpeakers > ul > li span.es_hide {
    display: none;
}

@media only screen and (max-width: 800px) {
    #contentBox .boxHomeSpeakers .speakerbox,
    #contentBox .boxHomeSpeakers > ul {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media only screen and (max-width: 480px) {
    #contentBox .boxHomeSpeakers .speakerbox,
    #contentBox .boxHomeSpeakers > ul {
        grid-template-columns: 1fr 1fr;
        width: 90%;
    }

    #contentBox .boxHomeSpeakers .speakerbox,
    #contentBox .boxHomeSpeakers > ul > li {
        padding: 0 1em;
        box-sizing: border-box;
    }
}

.boxHomeSpeakersScrolling {
    padding: 2rem 1rem;
    box-sizing: border-box;
    background: var(--color-neutral) url(/design/TDWI/tdwi/redesign2024/images/dot-background.png) no-repeat center center / cover;
    /* background: var(--color-neutral) url(/design/TDWI/Events/conferences/las-vegas/2025/img/dots-background-25.png) no-repeat center center / cover; */
}
.boxHomeSpeakersScrolling ul {
    margin: 0 auto;
    padding: 1rem;
    box-sizing: border-box;
    width: 100%;
    max-width: 1100px;
}
.boxHomeSpeakersScrolling ul li img {
    width: 150px;
    margin: 0 auto !important;
    border: 4px solid var(--color-accent-4);
    border-radius: 100%;
    aspect-ratio: 1/1;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.slick-prev:before,
.slick-next:before {
    color: var(--color-accent-4) !important;
    font-size: 40px !important;
}
.boxHomeSpeakersScrolling .es_hide {
    display: none !important;
}
.boxHomeSpeakersScrolling .es_name {
    display: block;
    margin-top: 0.25rem;
    box-sizing: border-box;
    font-weight: 700;
    text-align: center;
}
.boxHomeSpeakersScrolling .es_title {
    display: block;
    padding: 0 1rem;
    box-sizing: border-box;
    font-size: 0.9rem;
    text-align: center;
}

/* Prefooter (Old Original Footer) */
/* #prefooter .follow .stayConnected {
	margin: 0 0 0 .25em;
	padding: 0;
	list-style-type: none;
}

#prefooter .follow .stayConnected li {
	margin: 0 0 .35em;
	padding: 0;
	list-style-type: none;
}

#prefooter .follow .stayConnected li:last-child {
	margin: 0;
}

#prefooter .follow .stayConnected li:before {
	display: inline-block;
	font-family: FontAwesome;
	position: relative;
	left: -.25em;
	top: .0675em;
	font-weight: normal;
	font-size: 1.25em;
}

#prefooter .follow .stayConnected li.linkedin:before {
	content: "\f08c";
}

#prefooter .follow .stayConnected li.twitter:before {
	content: "\f081";
}

#prefooter .follow .stayConnected li.facebook:before {
	content: "\f082";
}

#prefooter .follow .stayConnected li.gplus:before {
	content: "\f0d4";
}

#prefooter .follow .stayConnected li.youtube:before {
	content: "\f166";
}

#prefooter .follow .stayConnected li.instagram:before {
	content: "\f16d";
}

#prefooter .follow .stayConnected li a {
	display: inline-block;
	font-family: "Avenir Next W05 Medium","Montserrat",Helvetica,Arial,sans-serif;
	color: #fff;
	line-height: 1em;
}

#prefooter .follow .stayConnected li a img {
	width:110px!important;
    height:auto;
    border:0 none;
} */


/* Real Sitecore Footer */
/* footer {
    display: grid !important;
    grid-template-columns: 0.5fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem 4rem;
    box-sizing: border-box;

    @media (max-width: 767px) {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 1rem;
    }

    .logos {
        width: 100% !important;
        order: 1;
        border-right: none !important;
    }

    .follow {
        width: 100% !important;
        order: 2;
        border-right: none !important;
    }

    .footerRegBtn {
        height: 140px !important;
        min-height: unset !important;
        width: 100% !important;
        order: 3;

        p {
            @media (max-width: 767px) {
                text-align: left !important;
            }
        }

        a {
            text-align: center !important;
        }
    }

    section#copyright {
        order: 4;
        grid-column: 1 / -1;

        @media (max-width: 767px) {
            padding: 0 !important;
        }
    }
} */


/* Footer (Fake Footer from Main Site)
============================================================== */
/* Footer */
#footer {
    padding: 2rem 1rem 2rem 1rem;
    background-color: var(--color-dark); /* neutral default*/
}
#footer .container {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
#footer .logo-socials-subscribe {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
#footer .footer-logo {
    height: 165px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(0%) hue-rotate(350deg) brightness(107%) contrast(100%);
}
#footer .socials {
    display: flex;
    gap: 1rem;
}
#footer .socials img,
#footer .links img {
    height: 30px;
    vertical-align: middle;
}
#footer .socials img:hover,
#footer .links img:hover {
    transition: 150ms transform ease-in-out;
    transform-origin: center;
    transform: scale(1.15);
}
#footer .btn-primary {
    color: #000 !important;
}
/* #footer .subscribe em {
    color: #000 !important;
} */
#footer .footer-links {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
#footer .footer-links .link-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#footer .footer-links .link-group h3 {
    font-weight: 700;
    font-size: 28px !important;
    color: var(--color-accent-3);
}
#footer .footer-links .link-group a {
    color: #fff; /* 000 default */
    text-decoration: underline;
}
#footer .footer-links .link-group a:hover {
    text-decoration: none;
}

#footer .btn-primary {
    background-color: var(--color-yellow) !important;
    border-color: var(--color-yellow) !important;
    color: #000 !important;
    font-family: "Avenir Next W05 Medium", Helvetica, Arial, sans-serif !important;
}
#footer .btn-primary:hover {
    background-color: #d4bd17 !important;
    border-color: #d4bd17 !important;
    color: #000 !important;
}
#footer .container {
    max-width: 1440px !important;
}
@media (max-width: 1200px) {
    #footer .container {
        grid-template-columns: auto 1fr;
        gap: 8rem;
    }
}
@media (max-width: 991px) {
    #footer .container {
        gap: 4rem;
    }
}
@media (max-width: 767px) {
    #footer .container {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 575px) {
    #footer .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    #footer .container {
        gap: 2rem;
    }
}

#scrollToTop {
    display: none !important;
}

/* Copyright
============================================================== */
#copyright {
    padding: 0rem 1rem;
    background-color: var(--color-dark);
}
#copyright ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}
#copyright ul li {
    list-style-type: none;
}
#copyright ul li a,
#copyright p {
    text-align: center;
    color: #fff;
    font-size: 16px;
}
#copyright ul li a {
    text-decoration: underline;
}

#copyright ul li a:hover {
    display: block;
    transition: 150ms all ease-in-out;
    transform-origin: bottom;
    transform: translateY(-4px);
    text-decoration: none;
}

@media (max-width: 767px) {
    #copyright ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    #copyright p {
        text-align: left;
    }
}