* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

*::after,
*::before {
    box-sizing: inherit;
}

html {
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    color: var(--black);
}


body.disable-scroll {
    position: fixed;
    width: 100%;
    overflow-y: hidden;
}


.table-component_wrapper ::-webkit-scrollbar {
    height: 10px;
    width: 4px;
    background: #D9D9D9;
    border-radius: 5px;
}

.table-component_wrapper ::-webkit-scrollbar-thumb:horizontal {
    background: var(--black);
    border-radius: 10px;

}

img {
    height: auto;
    max-width: 100%;
    vertical-align: top;
    border: 0;
}

a:not([class*="cta-"], header a),
.content-link {
    color: var(--dark-red);
    font-weight: 700;
}

a:not([class*="cta-"]),
.content-link {
    text-decoration: none;
    cursor: pointer;
}

.bg-black a:not([class*="cta-"], .link-container a),
.bg-black .content-link{
    color: var(--white);
}


a,
input:focus {
    outline: none;
}

a:hover,
a:active {
    outline-width: 0;
}

a:not([class*="cta-"]):hover {
    color: var(--black);
}

.bg-black a:not([class*="cta-"]):hover {
    color: var(--white);
}

ul.list-block {
    margin-bottom: var(--spacing-04);
}

ul.list-block li {
    position: relative;
    padding-left: 5px;
    line-height: 1.5;
}

ul.list-block li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: #000;
    position: relative;
    left: -5px;
    top: -3px;
    display: inline-block;
}

.page-content-row a:hover,
.see-how-cta:hover {
    color: var(--black) !important;
}

.hide {
    display: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul li {
    display: block;
}

section {
    display: block;
    position: relative;
}

section:after {
    content: "";
    clear: both;
    display: block;
}

.container {
    width: 100%;
    max-width: 1272px;
    padding: 0 var(--spacing-05);
    margin: 0 auto;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: end;
}

.align-between {
    align-content: space-between;
}

.align-content-center {
    align-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: start;
}

b,
strong {
    font-weight: 700;
}

sup,
sub {
    line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: var(--spacing-03);
}

h1 {
    font-size: 42px;
    line-height: 46px;
}

h2 {
    font-size: 40px;
    line-height: 44px;
}

h3 {
    font-size: 28px;
    line-height: 30px;
}

h4 {
    font-size: 24px;
    line-height: 27px;
}

h5 {
    font-size: 20px;
    line-height: 23px;
}

h6 {
    font-size: 18px;
    line-height: 20px;
}

p {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: var(--spacing-04);
}

p:last-child {
    padding-bottom: 0;
}

blockquote {
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
}

.stats {
    font-size: 44px;
    line-height: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

[class*='eyebrow-small'] {
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 1.56px;
    text-transform: uppercase;
}

[class*="eyebrow"] {
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    font-weight: 700;
}

.no-padding {
    padding: 0 !important;
}

.no-padding-top {
    padding-top: 0 !important;
}

.no-padding-bottom {
    padding-bottom: 0 !important;
}


.cta-link {
    font-size: var(--spacing-03);
    line-height: 22px;
    font-weight: 800;
    color: var(--black);
    text-decoration: none;
    padding-bottom: 1px;
    display: inline;
    transition: all 0.35s linear;
    background-image: linear-gradient(to bottom, #000 0%, #000 98%);
    background-size: 29px 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
}

.cta-link.text-white {
    background-image: linear-gradient(to bottom, #fff 0%, #fff 98%);
}

.cta-link:hover {
    background-size: 100% 2px;
}

.border-black {
    border: 1px solid var(--black);
}

.cta-btn {
    padding: 11px 24px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all .5s;
    text-transform: capitalize;
}

.cta-btn:not(.cta-btn--rounded):hover {
    color: var(--white);
}

.cta-btn:not(.cta-btn--rounded):after {
    position: absolute;
    content: '';
    background: var(--primary-red);
    width: 0;
    top: -1px;
    bottom: -1px;
    left: -15px;
    z-index: -1;
    transition: all 0.3s;
    border-radius: 20px;
    transition: all .5s;
}

.cta-btn:not(.cta-btn--rounded):hover:after {
    width: calc(100% + 30px);
}

.bg-red .cta-btn {
    border: 1px solid transparent;
}

.bg-red .cta-btn:hover {
    border-color: var(--white);
}

.cta-btn--rounded {
    border-radius: 20px;
}

.cta-btn--rounded:hover {
    background: var(--primary-red);
}

.text-white {
    color: var(--white);
}

.text-blue {
    color: var(--blue);
}

.cta-link.text-blue:after {
    background: var(--blue);
}

.text-black {
    color: var(--black);
}

.text-orange{
    color: var(--orange);
}

.text-red{
    color: var(--primary-red);
}

.text-extra-dark-red{
    color: var(--extra-dark-red);
}

.text-bold{
    font-weight: 700;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.text-dark-red{
    color: var(--dark-red);
}


[class*="has-decorative-elm"] {
    position: relative;
    z-index: 1;
}

[class*="has-decorative-elm"]:after,
[class*="has-decorative-elm"]:before {
    position: absolute;
    content: '';
}

[class*="short-description"],
[class*="short-description"] p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

[class*="__head"] {
    padding-top: var(--spacing-06);
    margin-top: calc(var(--spacing-06) * -1);
}

.bg-peach {
    background-color: var(--peach);
}

.bg-white {
    background-color: var(--white);
}

.bg-orange {
    background-color: var(--orange);
}

.bg-red {
    background-color: var(--primary-red);
}

.blue-bg,
.bg-blue,
.bg-black {
    background-color: var(--black);
}

.bg-grey {
    background-color: var(--grey);
}

.bg-dark-grey {
    background-color: var(--dark-grey);
}

.rounded {
    border-radius: 12.5px;
}

small {
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 1.56px;
}

.slick-initialized .slick-slide {
    display: flex !important;
}

.col {
    width: 100%;
}

.col-2 {
    width: 100%;
}

[data-columns] {
    display: grid;
    grid-gap: var(--spacing-01);
}

.carousel-dash {
    position: absolute;
    bottom: 30px;
    display: flex;
}

.carousel-dash .glider-dot,
.carousel-dash button {
    font-size: 0;
    width: 20px;
    height: 5px;
    margin: 0 8px 0 0;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    cursor: pointer;
    border-radius: 0;
}

.carousel-dash .slick-active button {
    background: var(--white);
}

.pp-multiple-authors-wrapper {
    display: none;
}

.border {
    position: relative;
    padding-bottom: var(--spacing-04);
}

.border:after {
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    left: 0;
    bottom: 0;
}

.border-short:after {
    width: 100px;
}

.border-blue:after {
    background: var(--blue);
}

.border-bottom-orange {
    border-bottom: 22px solid var(--orange);
}

.cta-wrapper a:not(:last-child) {
    margin-bottom: var(--spacing-04);
}

.get-started .cta-wrapper {
    min-width: 170px;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: self-start;
}


.hover-logo {
    /* display: none; */
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.aspect-ratio-modal:not(.cta-link),
.iframe-video-cotainer {
    position: relative;
    display: block;
}

.video-play-icon-iframe {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
    width: 65px
}


.scroll-top {
    position: fixed;
    bottom: 0;
    right: 10px;
    height: 37px;
    width: 37px;
    background: rgba(153, 153, 153, .4);
    transition: all .2s ease-in-out;
    cursor: pointer;
    opacity: 0;
    z-index: 99
}

.scroll-top.show {
    opacity: 1
}

.scroll-top:after {
    content: '';
    position: absolute;
    height: 16px;
    width: 27px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: url(../images/scroll_top.png) no-repeat center center/contain;
}

@media all and (min-width: 680px) and (max-width: 767px) {
    .cta-wrapper a:not(:last-child) {
        margin-bottom: 0;
        margin-right: var(--spacing-04);
    }
}


@media all and (max-width: 767px) {
    .text-sm-center {
        text-align: center;
    }

    .text-sm-left {
        text-align: left;
    }

    .get-started .inner-content a {
        margin-bottom: 10px;
    }
}


.load_more,
.load_more:before,
.load_more:after {
    border-radius: 50%;
    width: 2em;
    height: 2em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out;
}

.load_more {
    color: var(--primary-red);
    font-size: 10px;
    margin: -40px auto 40px;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.load_more:before,
.load_more:after {
    content: '';
    position: absolute;
    top: 0;
}

.load_more:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.load_more:after {
    left: 3.5em;
}


@-webkit-keyframes load7 {

    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

@keyframes load7 {

    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

@media all and (min-width: 480px) {
    [data-columns="2"] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media all and (min-width: 768px) {

    [data-columns="3"] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .col-2 {
        width: 50%;
    }

    h3 {
        font-size: 35px;
        line-height: 38px;
    }

    .scroll-top {
        right: 21px
    }

}
@media all and (min-width: 992px) {
    h1 {
        font-size: 44px;
        line-height: 48px;
    }

    h3 {
        font-size: 35px;
        line-height: 38px;
    }

    h4 {
        font-size: 30px;
        line-height: 33px;
    }

    h5 {
        font-size: 23px;
        line-height: 26px;
    }

    blockquote {
        font-size: 32px;
        line-height: 35px;
    }

    [class*="subhead"] {
        font-size: 26px;
        line-height: 28px;
    }

    [class*="eyebrow"] {
        font-size: 18px;
        line-height: 19px;
        letter-spacing: 2.16px;
    }

    .stats {
        font-size: 52px;
        line-height: 57px;
    }

    [data-columns] {
        grid-gap: var(--spacing-06);
    }

    [data-columns="2"] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    [data-columns="4"] {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }


    .cards-block .cards-block__container {
        grid-gap: var(--spacing-02);
    }

    .cards-block .cards-block__container .cards-block__card p {
        font-weight: 500;
        color: #53565a;
    }

    .video-play-icon-iframe {
        width: 125px;
    }
}

@media all and (min-width: 1280px) {

    header a[href="javascript:void(0);"],
    header a[href="javascript:void(0)"],
    header a[href="#"] {
        pointer-events: none;
    }
    .cta-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .cta-wrapper a:not(:last-child) {
        margin-right: 40px;
        margin-bottom: 0;
    }
}