.body,
html {
    overflow-x: hidden;
}

.pardot-header {
    padding: 48px 0 40px;
}

.pardot-header img {
    width: 378px;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.pardot-landing-hero {
    border-radius: 48px;
    border: 1px solid var(--Brand-100, #C7E2FF);
    background: linear-gradient(180deg, var(--Brand-50, #E5F3FF) 0%, #FFF 71.02%);
    padding: 0 149px;
}

.plhero-row {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
}

.plhero-row>div {
    flex: 1;
    max-width: calc(50% - 16px);
}

.plhero-row-top-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pl-tag {
    color: #1434CB;
    padding: 7px 20px;
    display: inline-block;
    border: 1px solid #99C6FF;
    border-radius: 22px;
    font-size: var(--fontSizeLarge);
    line-height: var(--lineheightLarge);
    letter-spacing: var(--letterSpacingTextLarge);
}

.pl-hero-logo img {
    width: 100%;
    max-width: 476px;
}

.pl-hero-logo.accquire-logo img {
    width: 100%;
    max-width: 150px;
}

.plhero-row-top-left ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    gap: 16px;
    flex-direction: column;
    color: #000823;
}

.plhero-row-top-left ul li {
    position: relative;
    display: flex;
    gap: 12px;
    align-items: center;
    color: #000823;
    font-size: var(--fontSizeLarge);
    line-height: var(--lineheightLarge);
    letter-spacing: var(--letterSpacingTextLarge);
}

.plhero-row-top-left ul li i {
    display: inline-block;
    width: 40px;
}

.plhero-row-top {
    padding-bottom: 100px;
}

.plhero-row-top.plhero-row:has(+ .plhero-row-btm.plhero-row) {
    border-bottom: 1px solid #C7E2FF;
}

.plhero-row-btm {
    padding: 100px 0;
}

.plhero-row-btm-left img {
    max-width: 100%;
    width: 600px;
    height: auto;
}

.plhero-row-btm-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-right: 40px;
}

.plhero-row-btm-right .text-xl {
    gap: 24px;
}

.plhero-row-top-right {
    box-shadow: var(--web-gray-32-dp-3-xl-x, 0) 40px 96px -20px rgba(20, 52, 203, 0.15);
    margin-top: -24px;
    min-height: 842px;
    position: relative;
    border-radius: 24px;
    display: flex;
}

.plhero-row-top-right-inner {
    padding: 48px;
    background: #FFF;
    border-radius: 24px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.plhero-row-top-right::after {
    position: absolute;
    right: -94px;
    top: -19px;
    content: '';
    background-image: url('../images/radial-img.webp');
    width: 719px;
    height: 719px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    max-width: 100%;
}

.plhero-row-top-right::before {
    position: absolute;
    left: -8px;
    right: -8px;
    top: -8px;
    bottom: -8px;
    content: '';
    background-color: #E5F3FF;
    border-radius: 24px;
    z-index: -1;
}

.meet-team-section .section-header {
    margin-bottom: 40px;
    gap: 24px;
    max-width: 85%;
}

.pardot-webinar-section,
.meet-team-section {
    border-radius: 48px;
    border: 1px solid var(--Brand-100, #C7E2FF);
    background: linear-gradient(180deg, var(--Brand-50, #E5F3FF) 0%, rgba(255, 255, 255, 0.00) 50.03%);
    padding: 120px 149px;
    margin-top: 40px;
}

.pardot-webinar-section {
    background: #fff
}

.webinar-flex,
.webinar-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.webinar-content {
    gap: 32px;
}

.webinar-content :is(h2, h4, p, ul) {
    margin: 0;
}


.webinar-teams-cards .team-card {
    width: unset
}

.webinar-teams-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--teams-gap);
}

/* Default: 3 cards per row */
.webinar-teams-cards .team-card {
    grid-column: span 2;
}

/* When last row has exactly 2 cards (e.g. total = 5, 8, 11...) */
.webinar-teams-cards .team-card:nth-last-child(2):nth-child(3n + 1),
.webinar-teams-cards .team-card:last-child:nth-child(3n + 2) {
    grid-column: span 3;
}


/* Teams section =============== */
:root {
    --teams-gap: 32px;
    --teams-padding: 32px;
    --teams-radius: 24px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--teams-gap);
}

.team-card {
    border-radius: var(--teams-radius);
    border: 1px solid var(--Brand-100, #C7E2FF);
    background: #FFF;
    box-shadow: var(--web-gray-32-dp-3-xl-x, 0) 18px 28px -20px rgba(153, 198, 255, 0.08);
    padding: var(--teams-padding);
    width: calc((100% - (var(--teams-gap) * 3)) / 4);
}

.team-grid-tree>.team-card:first-child {
    width: 100%;
}

.team-grid-tree>.team-card:nth-child(2),
.team-grid-tree>.team-card:nth-child(3) {
    width: calc((100% - (var(--teams-gap) * 1)) / 2);
}

.team-grid-tree>.team-card:nth-child(4),
.team-grid-tree>.team-card:nth-child(5),
.team-grid-tree>.team-card:nth-child(6) {
    width: calc((100% - (var(--teams-gap) * 2)) / 3);
}

.team-card {
    border-radius: var(--teams-radius);
    border: 1px solid var(--Brand-100, #C7E2FF);
    background: #FFF;
    box-shadow: var(--web-gray-32-dp-3-xl-x, 0) 18px 28px -20px rgba(153, 198, 255, 0.08);
    padding: var(--teams-padding);
    width: calc((100% - (var(--teams-gap) * 3)) / 4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--teams-gap);
    text-align: center;
}

.team-card-image img {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
}

.team-card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-card-image {
    width: 120px;
    height: 120px;
    background-color: #C7E2FF;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.team-card-info p {
    color: #6B7080;
    margin-bottom: 0;
}
.meet-team-grid.team-grid,
.team-grid-tree {
    margin-bottom: 80px;
}

.team-card-info .companys-logo {
    margin-top: 12px;
}

.companys-logo img {
    max-width: 100%;
    max-height: 32px;
}

@media only screen and (min-width: 767px) {

    .team-grid-tree>.team-card:first-child {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 44px;
        padding-left: 61px;
        background-position: right -1px;
        background-image: url(../images/team-member-bg.webp);
        min-height: 284px;
        background-repeat: no-repeat;
        background-size: auto calc(100% + 1px);
        overflow: hidden;
    }

    .team-grid-tree>.team-card:first-child .team-card-image {
        background-color: rgba(0, 0, 0, 0);
        border-radius: 0;
        width: 364px;
        height: auto;
        margin: calc(-1 * var(--teams-padding)) 0 calc(-1 * var(--teams-padding)) 0;
        overflow: hidden;
        height: calc(100% + calc(var(--teams-padding) * 2));
        display: flex;
        align-items: flex-end;
    }

    .team-grid-tree>.team-card:first-child .team-card-info h3 {
        font-size: var(--fontSizeH3);
        line-height: var(--lineheightH3);
        letter-spacing: var(--letterSpacingH3);
    }

    .team-grid-tree>.team-card:first-child .team-card-info .text-lg {
        margin-bottom: 16px;
        font-size: var(--fontSizeExtraLarge);
        line-height: var(--lineheightExtraLarge);
        letter-spacing: var(--letterSpacingTextExtraLarge);
    }

    .teamcompany-logo img {
        width: 100%;
        max-width: 234px;
    }
}

       @keyframes slide {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-100%);
            }
        }

        .logos {
            overflow: hidden;
            padding: 40px 0;
            background: #E7EFFD;
            white-space: nowrap;
            position: relative;
        }

        .logos:before,
        .logos:after {
            content: "";
            position: absolute;
            top: 0;
            width: 250px;
            height: 100%;
            z-index: 2;
        }

        .logos:hover .logos-slide {
            animation-play-state: paused;
        }

        .logos-slide {
            display: inline-block;
            animation: slide 80s infinite linear;
        }

        .logos-slide img {
            height: 50px;
            margin: 0 40px;
            width: 80px;
            object-fit: contain;
        }
        
        h3.logosTitle {
            color: #1534CB;
            font-size: 36px;
            font-weight: 600;
            padding-bottom: 40px;
            line-height: 38px;
            text-align: center;
        }
        
        section.contentPage-logo-section {
            /* max-width: 94%; */
            margin: 120px auto 120px auto;
        }
        
        .pardot-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .pardot-container.pt-0 {
            padding-top: 0;
        }
        
        .periodDot {
            color: #F97C00;
        }
        
        @media only screen and (max-width: 1440px) {
            section.contentPage-logo-section {
                max-width: 94%;
                margin: 80px auto 80px auto !important;
            }
            
            .logos {
                margin-top: 110px;
            }
        }
        
        @media only screen and (max-width: 625px) {
            section.contentPage-logo-section {
                margin: 0 auto 80px auto !important;
            }
        }

.pl-sect03-row,
.pl-sect04-row,
.pl-sect05-row {
    display: flex;
    gap: 32px;
    align-items: center;
}

.pl-sect03-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}

.pl-sect03-row>div,
.pl-sect04-row>div,
.pl-sect05-row>div {
    flex: 1;
    max-width: calc(50% - 16px);
}

.pl-sect03-row:not(:has(.pl-sect03-right))>.pl-sect03-left {
    max-width: 100%;
}

.webinar-content ul,
.pl-sect03-left ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.webinar-content ul li,
.pl-sect03-left ul li {
    font-size: var(--fontSizeExtraLarge);
    line-height: var(--lineheightExtraLarge);
    letter-spacing: var(--letterSpacingTextExtraLarge);
    font-weight: 300;
    padding-left: 24px;
    position: relative;
}

.webinar-content ul li:before,
.pl-sect03-left ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--orange);
    border-radius: 50%;
}

.pardot-landing-section-03 {
    border-radius: 48px;
    background-color: #1434CB;
    color: var(--white);
    padding: 120px 149px;
    position: relative;
    overflow: hidden;
}

.pardot-landing-section-03::after {
    background-image: url('../images/globe-bg-01.webp');
    background-size: 388px auto;
    background-position: right bottom;
    background-repeat: no-repeat;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
}

.pardot-landing-section-03::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url('../images/pl-sect-03.webp');
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.pl-sect03-row {
    position: relative;
    z-index: 3;
}

.pl-sect03-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pl-sect03-right img {
    max-width: 100%;
    height: auto;
    width: 685px;
}

.pardot-landing-section-04-wrap {
    border-radius: 48px;
}

.pardot-landing-section-04 {
    border-radius: 48px;
    background-color: #1434CB;
    color: var(--white);
    padding: 120px 149px;
    position: relative;
    overflow: hidden;
}

.pardot-landing-section-04::after {
    background-image: url('../images/globe-bg-02.webp');
    background-size: 316px auto;
    background-position: right top;
    background-repeat: no-repeat;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
}

.pardot-landing-section-04::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url('../images/pl-sect-04.webp');
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.pl-sect04-row {
    position: relative;
    z-index: 3;
}

.pl-wistia img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
}

.pl-sect04-left .section-header {
    margin-bottom: 40px;
}

.pl-sect04-right {
    position: relative;
}

.pl-wistia-btn {
    position: absolute;
    width: 96px;
    height: 95px;
    right: 48px;
    bottom: 48px;
    border: none;
    background-color: var(--orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    transition: var(--transitionDefault);
}

.pl-wistia-btn svg {
    transform: translateX(4px);
}

.pl-wistia-btn:hover,
.pl-wistia-btn:focus {
    background-color: var(--orange-dark);
}

.pardot-landing-section-03,
.pardot-landing-section-04 {
    margin-top: 40px;
}

.pardot-landing-section-05-wrap.globe-only {
    margin-top: 70px;
}

.pardot-landing-section-05 {
    padding: 120px 149px;
    position: relative;
}

.pl-sect05-left {
    padding-right: 64px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.pl-sect05-left h2 {
    padding-right: 10px;
    line-height: 1.1;
}

.pl-sect05-left .text-xl {
    gap: 24px;
}

.pl-sect05-right {
    display: flex;
    justify-content: center;
}

.pl-sect05-right img {
    border-radius: 24px;
    background: #FFF;
    box-shadow: -8.116px 12.174px 40.581px 0 rgba(63, 113, 255, 0.20), 0 87.249px 56.814px -32.465px rgba(20, 52, 203, 0.15);
    width: 444px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.right-cube img {
    box-shadow: none;
    background-color: transparent;
    width: 100%;
}

.pl-sect05-lottie {
    position: absolute;
    bottom: -211px;
    right: -81px;
    width: 746px;
    z-index: -1;
}

.pl-sect05-lottie img {
    width: 100%;
    height: auto;
}

.pardot-landing-section-06-wrap.leading-brands-section {
    margin-top: 64px;
}

.pardot-landing-section-06 {
    border-radius: 48px;
    border: 1px solid var(--Brand-100, #C7E2FF);
    background: var(--Brand-50, #E5F3FF);
    padding: 100px 150px;
}

.pardot-landing-section-06 .section-header {
    align-items: center;
}

.pl-sect06-slide img {
    width: 100%;
    height: 198px;
    object-fit: cover;
}

.pl-sect06-slide {
    display: flex;
    width: calc((100% - calc(32px * 3)) / 4);
    flex-direction: column;
    gap: 24px;
}

.pl-sect06-thumb {
    position: relative;
}

.pl-sect06-thumb span {
    font-size: 16.676px;
    font-weight: 400;
    line-height: 20.011px;
    background-color: #000;
    color: #fff;
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 7px 10px;
}

.pl-sect06-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.pardot-landing-section-07-wrap {
    margin-top: 64px;
    background-color: #C7E2FF;
    padding: 100px;
    background-repeat: no-repeat;
    background-position: center top;
    background-image: url(../images/pl-sect07-bg.webp);
    background-size: cover;
}

.pardot-landing-section-07 {
    max-width: 1462px;
    margin: 0 auto;
}

.pl-sect07-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

.pl-sect07-left {
    width: 313px;
    max-width: 313px;
    border-radius: 50%;
    background-color: #C7E2FF;
    height: 313px;
    overflow: hidden;
    min-width: 313px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.pl-sect07-left img {
    width: 92.01276%;
    height: auto;
}

.pl-sect07-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.pl-sect07-info {
    display: flex;
    align-items: center;
}

.pl-sect07-info-left {
    max-width: 181px;
}

.pl-sect07-info-left img {
    max-width: 100%;
    height: auto;
}

.pl-sect07-info-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 24px;
    padding-left: calc(24px + 8px);
}

.pl-sect07-info-right:before {
    content: '';
    width: 8px;
    height: 8px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--orange);
    position: absolute;
    left: 0;
    border-radius: 50%;
}

footer.pardot-footer {
    padding: 80px 0;
}

.pardot-footer .footer {
    background-color: #fff;
}

.pl-sect04-left .section-header .section-title {
    font-weight: 500;
}

@media screen and (max-width: 1600px) {
    .pl-tag {
        letter-spacing: -1px;
    }

    .pardot-landing-hero {
        border-radius: 40px;
        padding: 0 104px;
    }

    .plhero-row {
        gap: 24px;
    }

    .plhero-row-top {
        padding-bottom: 80px;
    }

    .plhero-row>div.plhero-row-top-left {
        max-width: calc(39.84% - 12px);
    }

    .plhero-row>div.plhero-row-top-right {
        max-width: calc(60.16% - 12px);
        min-height: 810px;
    }

    .plhero-row-top-left {
        gap: 28px;
    }

    .plhero-row-top-left ul li {
        gap: 8px;
    }

    .plhero-row-top-left ul {
        gap: 16px;
    }

    .pl-hero-logo img {
        max-width: 312px;
    }

    .plhero-row-top-right::after {
        right: -102px;
        top: 40px;
        width: 488px;
        height: 488px;
    }

    .plhero-row-btm {
        padding: 80px 0;
    }

    .pardot-webinar-section,
    .meet-team-section {
        border-radius: 40px;
        padding: 80px 104px;
    }

    .team-grid-tree>.team-card:first-child {
        padding-left: 0;
        background-image: url(../images/team-member-bg-lg.webp);
    }

    .webinar-content {
        gap: 28px;
    }

    .team-card {
        width: calc((100% - (var(--teams-gap) * 2)) / 3);
    }

    .team-grid-tree>.team-card:first-child .team-card-image {
        width: 345px;
    }

    .pardot-landing-section-03,
    .pardot-landing-section-04 {
        margin-top: 40px;
    }

    .pl-sect03-row,
    .pl-sect04-row,
    .pl-sect05-row {
        gap: 24px;
    }

    .pl-sect03-row>div,
    .pl-sect04-row>div,
    .pl-sect05-row>div {
        flex: 1;
        max-width: calc(50% - 12px);
    }

    .pl-sect03-right img {
        width: 476px;
    }

    .pardot-landing-section-03 {
        padding: 80px 104px;
        border-radius: 40px;
    }

    .pardot-landing-section-03::after {
        background-image: url('../images/globe-bg-01-lg.webp');
        background-size: 280px auto;
    }

    .pardot-landing-section-03::before {
        background-image: url('../images/pl-sect-03-lg.webp');
    }

    .pardot-landing-section-04-wrap {
        border-radius: 40px;
    }

    .pardot-landing-section-04 {
        border-radius: 40px;
        padding: 84px 104px;
    }

    .pardot-landing-section-04::after {
        background-size: 220px auto;
        background-image: url('../images/globe-bg-02-lg.webp');
    }

    .pardot-landing-section-04::before {
        background-image: url('../images/pl-sect-04-lg.webp');
    }

    .pl-wistia-btn {
        width: 66px;
        height: 66px;
        right: 32px;
        bottom: 32px;
    }

    .pl-wistia-btn svg {
        transform: translateX(1px) translateY(-2px);
        width: 18px;
        height: auto;
    }

    .pardot-landing-section-05 {
        padding: 80px 104px;
    }

    .pl-sect05-right img {
        border-radius: 20px;
        width: 346px;
    }

    .pl-sect05-row {
        align-items: flex-start;
    }

    .pl-sect05-lottie {
        bottom: 0;
        right: -70px;
        width: 219px;
    }

    .pl-sect05-left {
        padding-right: 0;
    }

    .pl-sect05-left .text-xl {
        letter-spacing: -0.66px;
    }

    .pardot-landing-section-06 .section-header {
        gap: 24px;
        margin-bottom: 48px;
    }

    .pl-sect06-row {
        gap: 24px;
    }

    .pl-sect06-slide {
        width: calc((100% - calc(24px * 3)) / 4);
        gap: 16px;
    }

    .pardot-landing-section-07-wrap {
        margin-top: 40px;
        padding: 80px 0px;
    }

    .pardot-landing-section-07 {
        max-width: 1014px;
    }

    .pl-sect07-row {
        gap: 28px;
    }

    .pl-sect07-left {
        width: 202px;
        max-width: 202px;
        height: 202px;
        min-width: 202px;
    }

    .plhero-row-btm-right {
        padding-right: 0;
    }

    .meet-team-section .section-header {
        max-width: inherit;
    }

    .pl-sect07-right {
        gap: 28px;
    }

    .pl-sect07-info-left {
        max-width: 128px;
    }

    .pl-sect07-info-right {
        gap: 6px;
        margin-left: 17px;
        padding-left: calc(17px + 6px);
    }

    .pl-sect07-info-right:before {
        width: 6px;
        height: 6px;
    }

    .cta-band .container-sm {
        max-width: 1024px;
    }

    footer.pardot-footer {
        padding: 40px 0;
    }

    .pardot-landing-section-06 {
        padding: 80px 104px;
        border-radius: 40px;
    }

    .pl-sect06-slide img {
        height: 134px;
    }

    .pl-sect06-thumb span {
        font-size: 11.344px;
        left: 7px;
        bottom: 7px;
        padding: 4.538px 6.807px;
        line-height: 13.613px;
    }

    .plhero-row>div {
        max-width: calc(50% - 12px);
    }

    .pardot-header img {
        width: 288px;
    }

    .pl-sect03-left .h5 {
        letter-spacing: -1.25px;
    }

    .pl-sect04-left .section-title {
        letter-spacing: -2.2px;
    }
}

@media screen and (max-width: 1199px) {
    :root {
        --fontSizeLarge: 16px;
        --lineheightLarge: 20px;
    }
.meet-team-grid.team-grid,
    .team-grid-tree {
        margin-bottom: 60px;
    }

    .meet-team-section .section-header {
        max-width: inherit;
        gap: 18px;
        margin-bottom: 30px;
    }

    .plhero-row-top-left ul li {
        font-size: 16px;
        line-height: 20px;
    }

    .pl-tag {
        font-size: 16px;
        line-height: 20px;
    }

    .plhero-row>div.plhero-row-top-right {
        min-height: 788px;
    }

    .plhero-row-top-right-inner {
        padding: 48px 40px;
    }

    .plhero-row>div.plhero-row-top-right,
    .plhero-row-top-right::before {
        border-radius: 16px;
    }

    .pl-hero-logo img {
        max-width: 237px;
    }

    .pardot-header img {
        width: 214px;
    }

    .plhero-row-top-right::after {
        right: -58px;
        top: 36px;
        width: 487px;
        height: 487px;
    }

    :root {
        --teams-gap: 24px;
        --teams-padding: 24px;
        --teams-radius: 16px;
    }

    .pardot-landing-hero {
        border-radius: 24px;
        padding: 0 80px;
    }

    .plhero-row-top {
        padding-bottom: 60px;
        align-items: flex-start;
    }

    .plhero-row>div.plhero-row-top-left {
        max-width: calc(40.21% - 12px);
        gap: 24px;
        padding-top: 40px;
    }

    .plhero-row-btm {
        padding: 60px 0;
    }

    .plhero-row>div.plhero-row-btm-left {
        max-width: calc(40% - 12px);
    }

    .plhero-row>div.plhero-row-btm-right {
        max-width: calc(60% - 12px);
    }

    .plhero-row-btm {
        align-items: flex-start;
    }

    .webinar-content {
        gap: 24px;
    }

    .team-grid-tree>.team-card:first-child .team-card-image {
        width: 260px;
    }

    .team-grid-tree>.team-card:first-child {
        gap: 34px;
        min-height: 214px;
    }

    .team-card-info {
        gap: 6px;
    }

    .team-grid-tree>.team-card:first-child .team-card-info .text-lg {
        margin-bottom: 12px;
    }

    .teamcompany-logo img {
        width: 100%;
        max-width: 182px;
    }

    .pardot-webinar-section,
    .meet-team-section {
        border-radius: 24px;
        padding: 60px 80px;
    }

    .team-card-image {
        width: 90px;
        height: 90px;
    }

    /* .pardot-landing-section-03 {
        background-size: 312px auto;
        padding: 60px 80px;
        border-radius: 24px;
    } */
    .pl-sect03-row {
        align-items: flex-start;
    }

    .pl-sect03-left {
        gap: 24px;
    }

    .pl-sect03-left ul {
        gap: 18px;
    }

    .webinar-content ul li,
    .pl-sect03-left ul li {
        letter-spacing: 0;
        padding-left: 18px;
    }

    .webinar-content ul li::before,
    .pl-sect03-left ul li::before {
        top: 7px;
        width: 6px;
        height: 6px;
    }

    .pardot-landing-section-03 {
        padding: 60px 80px;
        border-radius: 24px;
    }

    .pardot-landing-section-03::after {
        background-image: url('../images/globe-bg-01-md.webp');
        background-size: 210px auto;
    }

    .pardot-landing-section-03::before {
        background-image: url('../images/pl-sect-03-md.webp');
    }

    .pardot-landing-section-04-wrap {
        border-radius: 24px;
    }

    .pardot-landing-section-04 {
        border-radius: 24px;
        padding: 60px 80px;
    }

    .pardot-landing-section-04::after {
        background-size: 166px auto;
    }

    .pardot-landing-section-04::before {
        background-image: url('../images/pl-sect-04-md.webp');
    }

    .pl-sect04-left .section-header {
        margin-bottom: 30px;
    }

    .pl-sect04-left {
        padding-right: 10px;
    }

    .pl-wistia img {
        border-radius: 16px;
    }

    .pl-wistia-btn {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 20px;
    }

    .pl-wistia-btn svg {
        transform: translateX(2px);
        width: 16px;
    }

    .pardot-landing-section-05 {
        padding: 60px 80px;
    }

    .pl-sect05-left {
        padding-right: 0;
        gap: 24px;
    }

    .pl-sect05-left .text-xl {
        gap: 18px;
    }

    .pl-sect05-right img {
        border-radius: 16px;
        width: 292px;
    }

    .pardot-landing-section-06 {
        padding: 60px;
        border-radius: 24px;
    }

    .pardot-landing-section-06 .section-header {
        gap: 16px;
        margin-bottom: 32px;
    }

    .pl-sect06-row {
        max-width: 770px;
        margin: 0 auto;
    }

    .pl-sect06-slide img {
        height: 100px;
    }

    .pl-sect06-thumb span {
        font-size: 8.41px;
        left: 5px;
        bottom: 5px;
        padding: 3.364px 5.046px;
        line-height: 10.092px;
    }

    .pardot-landing-section-07-wrap {
        padding: 60px 0px;
    }

    .pardot-landing-section-07 {
        max-width: 770px;
    }

    .pl-sect07-row {
        gap: 48px;
    }

    .pl-sect07-left {
        width: 150px;
        max-width: 150px;
        height: 150px;
        min-width: 150px;
    }

    .pl-sect07-right {
        gap: 22px;
    }

    .pl-sect07-info-left {
        max-width: 96px;
    }

    .pl-sect07-info-right {
        gap: 4px;
        margin-left: 12px;
        padding-left: calc(12px + 4px);
    }

    .pl-sect07-info-right:before {
        width: 4px;
        height: 4px;
    }

    .cta-band .container-sm {
        max-width: 540px;
    }

    .team-grid-tree>.team-card:nth-child(n+10) {
        width: calc((100% - (var(--teams-gap) * 1)) / 2);
    }

    .companys-logo img {
        max-height: 24px;
    }

    /* .team-grid-tree > .team-card:first-child .team-card-image {
        margin-left: -18px;
    } */
    .team-grid-tree>.team-card:first-child {
        min-height: 214px;
    }

    .pardot-footer .footer {
        gap: 26px;
    }

    .pardot-footer .logo-powered img {
        width: 214px;
    }

    .pardot-footer .copyright,
    .pardot-footer ul.footer-bottom-links li a {
        font-size: 16px;
        line-height: 22px;
    }

    .pardot-footer .footer-bottom-links li:not(:last-child) {
        padding-right: 26px;
    }

    .pardot-footer ul.footer-bottom-links {
        gap: 24px;
    }

    .pl-sect05-left h2 {
        letter-spacing: -1.49px;
        padding-right: 0;
    }

    .pl-sect05-lottie {
        bottom: 0;
        right: -50px;
        width: 164px;
    }

    .pl-sect05-row>div.pl-sect05-left {
        min-width: calc(50% - 10px);
    }
}

@media screen and (max-width: 991px) {
    .pardot-landing-section-03::after {
        background-image: url('../images/globe-bg-01-sm.webp');
    }

    .plhero-row>div.plhero-row-top-right {
        min-height: 746px;
    }

    .pardot-header img {
        width: 214px;
        max-width: 100%;
        height: auto;
        vertical-align: middle;
    }

    .pardot-landing-hero {
        border-radius: 16px;
        padding: 0 40px;
    }

    .plhero-row-top {
        flex-direction: column;
        gap: 40px;
    }

    .plhero-row>div.plhero-row-top-left {
        max-width: 100%;
    }

    .plhero-row>div.plhero-row-top-right {
        max-width: 100%;
        width: 100%;
        margin-top: 0;
        box-shadow: none;
    }

    .plhero-row-top-right-inner {
        padding: 40px;
        border-radius: 16px;
        border: 1px solid #1434CB;
    }

    .plhero-row>div.plhero-row-btm-left,
    .plhero-row>div.plhero-row-btm-right {
        max-width: calc(50% - 12px);
    }

    .plhero-row-btm {
        padding: 60px 0 40px;
    }

    .pardot-webinar-section,
    .meet-team-section {
        border-radius: 16px;
        padding: 40px;
    }

    .meet-team-section .section-header {
        margin-bottom: 24px;
        gap: 14px;
    }

    .team-grid-tree>.team-card:first-child .team-card-image {
        width: 214px;
    }

    .team-card-image {
        width: 70px;
        height: 70px;
    }

    .team-grid-tree>.team-card:first-child {
        gap: 17px;
        min-height: 165px;
        padding: 18px 18px 18px 32px;
        background-image: url(../images/team-member-bg-sm.webp);
    }

    .team-card-info {
        gap: 4px;
    }

    .team-grid-tree>.team-card:first-child .team-card-info .text-lg {
        margin-bottom: 10px;
    }

    .teamcompany-logo img {
        max-width: 141px;
    }

    .team-card:nth-child(n+2) {
        width: calc((100% - (var(--teams-gap) * 1)) / 2) !important;
    }

    .team-grid:not(.team-grid-tree)>.team-card:first-child {
        width: calc((100% - (var(--teams-gap) * 1)) / 2) !important;
    }

    :root {
        --teams-gap: 18px;
        --teams-padding: 18px;
        --teams-radius: 16px;
    }

    .team-card-info .companys-logo {
        margin-top: 8px;
    }

    .companys-logo img {
        max-height: 18px;
    }

    .pl-sect03-left {
        gap: 18px;
    }

    .webinar-content ul li,
    .pl-sect03-left ul li {
        padding-left: 12px;
        letter-spacing: -0.65px;
    }

    .webinar-content ul li::before,
    .pl-sect03-left ul li::before {
        top: 8px;
        width: 4px;
        height: 4px;
    }

    .pardot-landing-section-03 {
        padding: 40px;
        border-radius: 16px;
    }

    .pardot-landing-section-03::after {
        background-image: url('../images/globe-bg-01-sm.webp');
        background-size: 158px auto;
    }

    .pardot-landing-section-03::before {
        background-image: url('../images/pl-sect-03-sm.webp');
    }

    .pl-wistia-btn {
        width: 40px;
        height: 40px;
    }

    .pl-wistia-btn svg {
        transform: translateX(1px);
        width: 11px;
    }

    .pl-sect04-row {
        gap: 46px;
        align-items: flex-start;
    }

    .pl-sect04-left .section-header {
        margin-bottom: 24px;
    }

    .pardot-landing-section-04-wrap {
        border-radius: 16px;
    }

    .pardot-landing-section-04 {
        border-radius: 16px;
        padding: 40px;
    }

    .pardot-landing-section-04::after {
        background-size: 132px auto;
    }

    .pardot-landing-section-04::before {
        background-image: url('../images/pl-sect-04-sm.webp');
    }

    .pl-sect05-row {
        align-items: flex-start;
        max-width: 596px;
        margin: 0 auto;
    }

    .pl-sect05-row>div.pl-sect05-right {
        max-width: calc(39.38% - 12px);
    }

    .pl-sect05-row>div.pl-sect05-left {
        max-width: calc(64% - 12px);
        flex-grow: 1;
    }

    .pl-sect05-right img {
        border-radius: 12px;
        width: 202px;
        box-shadow: -3.676px 5.513px 18.378px 0 rgba(63, 113, 255, 0.20), 0 39.513px 25.73px -14.703px rgba(20, 52, 203, 0.15);
    }

    .pardot-landing-section-06 {
        padding: 40px;
        border-radius: 16px;
    }

    .pl-sect06-slide .text-lg {
        --fontSizeLarge: 16px;
    }

    .pardot-landing-section-07-wrap {
        padding: 40px 0px;
    }

    .pardot-landing-section-07 {
        max-width: 596px;
    }

    .pl-sect07-row {
        gap: 38px;
    }

    .pl-sect07-left {
        width: 114px;
        max-width: 114px;
        height: 114px;
        min-width: 114px;
    }

    .pl-sect07-right {
        gap: 16px;
    }

    .footer .logo-powered img {
        width: 156px;
    }

    .pl-hero-logo img {
        max-width: 237px;
    }

    .pl-tag {
        --fontSizeLarge: 16px;
    }

    .plhero-row-top-right::before,
    .plhero-row-top-right::after {
        display: none;
    }
.meet-team-grid.team-grid,
    .team-grid-tree {
        margin-bottom: 40px;
    }

    .pl-sect03-left .h5 {
        letter-spacing: -1.5px;
    }

    .pl-sect03-left ul {
        gap: 14px;
    }

    .pl-sect04-left .section-title {
        letter-spacing: -1.4px;
    }

    .pardot-landing-section-05 {
        padding: 40px 60px;
    }

    .pl-sect05-lottie {
        bottom: -2px;
        right: -25px;
        width: 168px;
    }

    .pl-sect06-slide img {
        height: 83px;
    }

    .pl-sect06-thumb span {
        font-size: 6.822px;
        left: 4px;
        bottom: 4px;
        padding: 2.729px 4.093px;
    }

    footer.pardot-footer {
        padding-inline: 12px;
    }

    .pardot-footer .footer {
        gap: 20px;
    }

    .pardot-footer .copyright,
    .pardot-footer ul.footer-bottom-links li a {
        font-size: 12px;
        line-height: 16px;
    }

    .webinar-teams-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .webinar-teams-cards .team-card {
        grid-column: span 1;
    }

    .webinar-teams-cards .team-card:nth-child(n+2) {
        width: unset !important;
    }

    .webinar-teams-cards .team-card:nth-last-child(2):nth-child(3n + 1),
    .webinar-teams-cards .team-card:last-child:nth-child(3n + 2) {
        grid-column: unset;
    }

    .webinar-teams-cards .team-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 767px) {
    .pardot-landing-section-03::after {
        background-image: url('../images/globe-bg-01-xs.webp');
    }

    :root {
        --teams-gap: 16px;
        --teams-padding: 16px;
        --teams-radius: 16px;
    }

    .pardot-header img {
        width: 152px;
    }

    .pardot-header {
        padding: 16px 0;
    }

    .pardot-landing-hero {
        border-radius: 16px;
        padding: 0;
        background: none;
        border: none;
        margin-top: 40px;
    }

    .pl-hero-logo {
        margin-top: 8px;
    }

    .plhero-row>div.plhero-row-top-left {
        padding-top: 0;
        gap: 16px;
    }

    .pl-tag {
        font-size: 14px;
        line-height: 18px;
    }

    .plhero-row-top-left .h2 {
        padding-right: 20px;
    }

    .plhero-row-top-left ul {
        gap: 6px;
        border-top: 1px solid #C7E2FF;
        padding-top: 24px;
        margin-block: 8px;
    }

    .plhero-row-top-left ul li {
        gap: 12px;
        font-size: 14px;
        line-height: 18px;
        letter-spacing: -0.45px;
    }

    .plhero-row-top-left ul li i {
        width: 28px;
        min-width: 28px;
    }

    .plhero-row-top-left ul li i img {
        width: 100%;
    }

    .plhero-row-top-right-inner {
        padding: 24px;
    }

    .meet-team-section .section-header:nth-of-type(2) .section-title {
        font-size: 18px;
        line-height: 22px;
        letter-spacing: -0.7px;
    }

    .plhero-row-top {
        padding-bottom: 40px;
    }

    .plhero-row-top.plhero-row:has(+ .plhero-row-btm.plhero-row) {
        border: none;
    }

    .plhero-row-btm {
        padding: 24px;
        border-radius: 16px;
        border: 0.588px solid var(--Brand-100, #C7E2FF);
        background: linear-gradient(180deg, var(--Brand-50, #E5F3FF) 0%, rgba(255, 255, 255, 0.00) 50.03%);
        flex-direction: column-reverse;
        gap: 40px;
    }

    .plhero-row-btm-right {
        gap: 24px;
    }

    .plhero-row>div.plhero-row-btm-right {
        max-width: inherit;
    }

    .plhero-row-btm-right .text-xl {
        gap: 16px;
        letter-spacing: -0.7px;
    }

    .plhero-row>div.plhero-row-btm-left {
        max-width: inherit;
        margin: 0 auto;
    }

    .pl-sect03-right,
    .pl-sect04-right {
        margin: 0 auto;
    }

    .pl-wistia {
        width: 286px;
        margin: 0 auto;
        max-width: 100%;
    }

    .plhero-row-btm-left img {
        width: 278px;
    }

    .pl-sect03-right img {
        width: 286px;
    }

    .meet-team-section .section-header {
        margin-bottom: 40px;
        gap: 24px;
    }

    .pardot-webinar-section,
    .meet-team-section {
        border-radius: 16px;
        padding: 24px;
    }

    .webinar-content {
        gap: 16px;
    }

    .webinar-teams-cards {
        grid-template-columns: 1fr !important;
    }
.webinar-teams-cards .team-card:last-child:nth-child(odd),
    .webinar-teams-cards .team-card {
        grid-column: span 3;
    }

    .team-card {
        min-width: 100%;
        flex-direction: row;
        align-items: flex-start;
        padding: 16px !important;
        gap: 16px !important;
    }

    .team-grid-tree .team-card {
        align-items: center;
    }

    .team-card-info {
        gap: 8px;
        align-items: flex-start;
        text-align: left;
    }

    .team-grid-tree>.team-card:first-child .team-card-image {
        width: 64px;
    }

    .team-grid-tree>.team-card:first-child .team-card-info .text-lg {
        margin-bottom: 0;
    }

    .teamcompany-logo {
        display: none;
    }

    .team-grid-tree>.team-card:first-child {
        gap: 16px;
        min-height: inherit;
        padding: 16px;
        background-image: none;
    }
.meet-team-grid.team-grid,
    .team-grid-tree {
        margin-bottom: 40px;
    }

    .meet-team-section .section-header:nth-of-type(2) {
        margin-bottom: 16px;
    }

    .team-card-info .companys-logo {
        margin-top: 0;
    }

    .team-card-image {
        width: 64px;
        height: 64px;
        flex-shrink: 0;
    }

    .team-card-info p {
        font-size: 14px;
    }

    .pl-sect03-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 32px;
    }

    .pl-sect03-row>div,
    .pl-sect04-row>div,
    .pl-sect05-row>div {
        max-width: inherit;
    }

    .pardot-landing-section-03 {
        padding: 48px 24px;
    }

    .pardot-landing-section-03::after {
        background-image: url('../images/globe-bg-01-xs.webp');
        background-size: 145px auto;
    }

    .pardot-landing-section-03::before {
        background-image: url('../images/pl-sect-03-xs.webp');
    }

    .pardot-landing-section-04 {
        padding: 48px 24px;
    }

    .pardot-landing-section-04::before {
        background-image: url('../images/pl-sect-04-xs.webp');
    }

    .pl-sect04-row {
        gap: 48px;
        flex-direction: column;
    }

    .pardot-landing-section-05 {
        padding: 48px 0;
    }

    .pl-sect05-row {
        align-items: flex-start;
        max-width: inherit;
        flex-direction: column;
        gap: 48px;
    }

    .pl-sect05-row>div.pl-sect05-left {
        max-width: inherit;
    }

    .pl-sect05-row>div.pl-sect05-right {
        max-width: inherit;
        display: flex;
        align-items: center;
        width: 100%;
    }

    .pl-sect05-right img {
        width: 246px;
        border-radius: 8px;
    }

    .pardot-landing-section-06 {
        padding: 48px 24px;
    }

    .pardot-landing-section-06 .section-header {
        gap: 16px;
        margin-bottom: 40px;
        text-align: center;
    }

    .pl-sect06-slide {
        width: 249px;
    }

    .pl-sect06-row {
        flex-wrap: nowrap;
        gap: 18px;
    }

    .pl-sect06-thumb span {
        font-size: 13.755px;
        left: 8px;
        bottom: 8px;
        padding: 5.502px 8.253px;
        line-height: 16.506px;
    }

    .pardot-landing-section-07-wrap {
        padding: 48px 0;
    }

    .pl-sect07-right {
        gap: 24px;
        align-items: center;
    }

    .pl-sect07-row {
        gap: 32px;
        flex-direction: column;
        text-align: center;
    }

    .pl-sect07-info {
        flex-direction: column;
        width: 100%;
    }

    .pl-sect07-info-right {
        gap: 4px;
        margin-left: 0;
        padding-left: 0;
        padding-top: 16px;
        margin-top: 12px;
    }

    .pl-sect07-info-right:before {
        left: 0;
        right: 0;
        top: 0;
        margin: auto;
        transform: none;
    }

    .pl-sect06-row .slick-list {
        margin-inline-end: calc(-1 * var(--gutterWidth));
        padding-inline-end: var(--gutterWidth);
    }

    .pl-sect06-row .slick-track {
        display: flex;
        gap: 18px;
    }

    .pl-sect06-slide img {
        height: 162px;
    }

    .pl-sect06-slide .text-lg {
        margin-top: 16px;
    }

    .plhero-row>div.plhero-row-top-right {
        min-height: 908px;
    }

    .pl-sect03-left .text-xl {
        letter-spacing: -0.7px;
    }

    .pl-sect03-left .h5 {
        letter-spacing: -1.5px;
        font-size: 24px;
        line-height: 28px;
    }

    .pl-sect04-left .section-title {
        letter-spacing: -0.6px;
    }

    .pl-sect07-info-right .text-lg {
        font-size: 14px;
        line-height: 18px;
    }

    footer.pardot-footer {
        padding: 24px 0;
    }

    .pardot-footer .footer {
        gap: 16px;
    }
}


/* ======================================
   TEAM GRID â€“ BASE
====================================== */
.team-grid.speaker-grid,
.meet-team-grid.team-grid {
  display: grid;
  gap: var(--teams-gap);
  width: 100%;
}

.team-grid.speaker-grid .team-card,
.meet-team-grid .team-card {
  width: 100%;
}

/* ======================================
   FEATURED CARD â€“ FULL ROW
====================================== */

.meet-team-grid.team-grid.has-featured .team-card.is-featured {
  grid-column: 1 / -1;
}

/* ======================================
   DESKTOP LAYOUTS
====================================== */
.webinar-teams-cards.custom-grid .team-card {
    grid-column: unset !important
}
.webinar-teams-cards.layout-2,
.team-grid.speaker-grid.layout-2,
.meet-team-grid.team-grid.layout-2 {
  grid-template-columns: repeat(2, 1fr);
}

.webinar-teams-cards.layout-3,
.team-grid.speaker-grid.layout-3,
.meet-team-grid.team-grid.layout-3 {
  grid-template-columns: repeat(3, 1fr);
}

.webinar-teams-cards.layout-4,
.team-grid.speaker-grid.layout-4,
.meet-team-grid.team-grid.layout-4 {
  grid-template-columns: repeat(4, 1fr);
}

.meet-team-grid.team-grid.layout-4.accquire-speakers {
  grid-template-columns: repeat(3, 1fr);
}

.webinar-teams-cards.layout-5,
.team-grid.speaker-grid.layout-5,
.meet-team-grid.team-grid.layout-5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1200px) {

  .webinar-teams-cards.layout-2,
  .webinar-teams-cards.layout-3,
  .webinar-teams-cards.layout-4,
  .team-grid.speaker-grid.layout-3,
  .team-grid.speaker-grid.layout-4,
  .team-grid.speaker-grid.layout-5,
  .meet-team-grid.team-grid.layout-3,
  .meet-team-grid.team-grid.layout-4,
  .meet-team-grid.team-grid.layout-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid.speaker-grid:not(.team-grid-tree)>.team-card:first-child,
  .team-grid.speaker-grid .team-card:nth-child(n+2),
  .team-grid.speaker-grid .team-card,
  .meet-team-grid.team-grid:not(.team-grid-tree)>.team-card:first-child,
  .meet-team-grid .team-card:nth-child(n+2),
  .meet-team-grid .team-card {
    width: 100% !important
  }
}


@media (max-width: 767px) {

  .webinar-teams-cards.layout-2,
  .webinar-teams-cards.layout-3,
  .webinar-teams-cards.layout-4,
  .webinar-teams-cards.layout-5,
  .team-grid.speaker-grid,
  .team-grid.speaker-grid.layout-2,
  .team-grid.speaker-grid.layout-3,
  .team-grid.speaker-grid.layout-4,
  .team-grid.speaker-grid.layout-5,
  .meet-team-grid.team-grid,
  .meet-team-grid.team-grid.layout-2,
  .meet-team-grid.team-grid.layout-3,
  .meet-team-grid.team-grid.layout-4,
  .meet-team-grid.team-grid.layout-5 {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .team-grid.speaker-grid:not(.team-grid-tree)>.team-card:first-child,
  .team-grid.speaker-grid .team-card:nth-child(n+2),
  .team-grid.speaker-grid .team-card,
  .meet-team-grid.team-grid:not(.team-grid-tree)>.team-card:first-child,
  .meet-team-grid .team-card:nth-child(n+2),
  .meet-team-grid .team-card {
    width: 100% !important
  }

 
  .meet-team-grid.team-grid .team-card {
    align-items: center;
  }
}


/*=====CSS Video Grid =====*/ 
      .w-gallery-view__section,
        .w-css-reset {
            padding: 0 !important
        }
        .w-css-reset div,
        .w-gallery-view__section   div,
        .w-gallery-view__gallery-card-cover.w-css-reset.w-css-reset-tree,
        .w-gallery-view.w-css-reset.w-text-highlight-allowed{
            background: transparent !important;
            background-image: none !important
        }
        .pardot-landing-section-06{
            padding-bottom : 60px !important
        }
        .pardot-landing-section-06 .section-header{
            margin-bottom: 0 !important
        }
        .w-gallery-view__video-cards{
            padding-left: 0 !important
        }
        .w-gallery-view__video-cards + div{
            margin-bottom : 0 !important
        }
       
        .w-video-card__thumbnail-wrapper + div + div > div{
            height: unset !important;
            margin: 0 !important
        }
        @media (min-width: 768px) and (max-width: 1200px){
            .pardot-landing-section-06{
                padding-bottom: 20px !important
            }
        }
        @media (max-width: 767px){
            .w-video-card{
                width: 100% !important
            }
        }