/* = global -------------------- */
*,
*:before,
*:after {
    box-sizing: border-box;
}

/* = hubspot fix -------------------- */
.row-fluid [class*="span"]:first-child {
    min-height: auto!important;
}

.header-container,
.body-container,
.footer-container {
    padding: 0!important;
}

@media (min-width: 576px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1280px;
    }
}


img {
    max-width: 100%;
}

a {
    color: #4B4B4B;
    cursor: pointer;
    text-decoration: none!important;
}

section {
    outline: none!important;
}


/* = variables -------------------- */
.shadow-sml {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl	{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/
/* = menu cards -------------------- */
.card-item {
    width: 100%;
    padding: 0 1rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease-in-out;
    outline: none!important;
}

.card-item .card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media screen and (min-width: 37.500em) {
    .card-item {
        width: 50%;
        height: 100%;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 56.250em) {
    .card-item {
        width: 50%;
        height: 100%;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 75.000em) {
    .card-item {
        width: 33.3333%;
    }
}

.card-item .card {
    position: relative;
    display: block;
    border-radius: 0;
    border: 0;
    background: #fff;
    overflow: hidden;
    height: 100%;
    width: 100%;
    text-align: left;
    transition: box-shadow 0.3s ease-in-out;
}

.card-item .card figure {
    position: relative;
    width: 100%;
    padding-top: 60%;
    margin: 0px;
    overflow: hidden;
}

.card-item .card figure .card-img-top {
    position: absolute !important;
    display: inline-block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 0px;
    border-radius: 0!important;
    transform: translateY(-50%);
    overflow: hidden;
}

.card-item .card figure .card-img-top img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 1;
    transition: none 0s ease 0s;
}

.card-item .card a {
    display: block!important;
    width: 100%;
    height: 100%;
    color: #4B4B4B!important;
    text-decoration: none!important;
}

.card-item .card .card-body {
    font-weight: 400;
}

.card-item .card h4 {
    font-size: 1.120rem;
    min-height: 80px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .card-item .card h4 {
        min-height: 95px;
    }
}

.card-item .card .card-body span {
    position: relative;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3399CC;
    padding-bottom: 8px;
}

.card-item .card .card-body span i {
    margin-left: 8px;
}

.card-item .card .card-body span::after {
    content: "";
    position: absolute;
}

.card-item .card .card-body span::after {
    top: 75%;
    height: 2px;
    width: 0%;
    left: 0;
    background: #3399CC;
    transition: 0.5s ease all 0.3s;
}

.card-item .card:hover .card-body span::after {
    width: 95%;
    transition: 0.3s ease all;
}

/* = hero banner -------------------- */
section.hero {
    position: relative;
    display: flex;
    display: -ms-flexbox;
    align-items: flex-end;
    padding-top: 400px;
    padding-bottom: 0;
    overflow: hidden;
}

section.hero .s-welcome__bg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

@media screen and (min-width: 56.250em) /* 900px - Tablet Landscape & Up */ {
    section.hero {
        height: 660px;
        height: calc(165px * 4);
        padding-top: 0;
        padding-bottom: 0;
    }

    section.error-hero-banner {
        position: relative;
        display: flex;
        display: -ms-flexbox;
        align-items: center;
        height: 800px;
        height: calc(200px * 4);
        overflow: hidden;
    }

    section.hero .s-welcome__bg {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center right;
        background-repeat: no-repeat;
    }

}

@media screen and (min-width: 112.500em) {
    section.hero .s-welcome__bg {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center right;
        background-repeat: no-repeat;
    }
}

section.hero .intro {
    padding: 30px;
    background: #3399CC;
    color: #fff;
}

@media screen and (min-width: 75.000em) {
    section.hero .intro h1,
    section.error-hero-banner h1 {
        font-size: 2.775rem;
    }

    section.error-hero-banner p {
        font-size: 22px;
        max-width: 38em;
    }

}

/* = blog hero banner -------------------- */
section.hero-blog-banner {
    position: relative;
    display: flex;
    display: -ms-flexbox;
    align-items: flex-end;
    padding-top: 350px;
    padding-bottom: 0;
    overflow: hidden;
}

section.hero-blog-banner .s-welcome__bg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

@media screen and (min-width: 56.250em) /* 900px - Tablet Landscape & Up */ {
    section.hero-blog-banner {
        height: 650px;
        height: calc(165px * 2);
        padding-top: 0;
        padding-bottom: 0;
    }

    section.hero-blog-banner .s-welcome__bg {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center right;
        background-repeat: no-repeat;
    }
}

@media screen and (min-width: 112.500em) {
    section.hero-blog-banner .s-welcome__bg {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 100%; 
        background-size: cover;
        background-position: center right;
        background-repeat: no-repeat;
    }
}

section.hero-blog-banner .intro {
    padding: 30px;
    background: #3399CC;
    color: #fff;
    text-align: center;
    padding-bottom: calc(135px * 1);
}

section.hero-blog-banner .intro h1 {
    margin-bottom: 0!important;
}

@media screen and (min-width: 56.250em) {
    section.hero-blog-banner .intro h1 {
        font-size: 3.222rem;
    }
}

/* = two column text -------------------- */
section.two-column-text {
    padding: 60px 0;
}

section.two-column-text .d-flex .row {
    flex-direction: column;
}

@media screen and (min-width: 56.250em) {
    section.two-column-text .d-flex .row {
        flex-direction: row;
    }
}

section.two-column-text h2,
section.one-column-text h2 {
    font-size: 2.500rem;
}

section.one-column-text h3 {
    color: #3399CC;
}

section.two-column-text p,
section.one-column-text p {
    max-width: 46em;
}

body.hs-content-id-30858828923 section.two-column-text p {
    max-width: auto;
}

section.two-column-text p strong,
section.two-column-text strong {
    font-size: 1.111rem;
}

/* = cta strip -------------------- */
section.blue-cta-strip {
    padding: 60px 0;
}

section.blue-cta-strip .blue-strip {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    color: #fff;
    transition: box-shadow 0.3s ease-in-out;
}

@media screen and (min-width: 56.250em) {
    section.blue-cta-strip .blue-strip {
        flex-direction: row;
        align-items: center;
    }
}

section.blue-cta-strip .blue-strip:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

section.blue-cta-strip .blue-strip p {
    font-size: 1.250rem;
    font-weight: 600;
    max-width: 38em;
    margin-bottom: 15px;
}

@media screen and (min-width: 56.250em) {
    section.blue-cta-strip .blue-strip p {
        margin-bottom: 0;
    }
}

section.blue-cta-strip .blue-strip .cta_button:hover {
    background: none!important;
    border: 1px solid #fff!important;
    color: #fff!important;
}

section.blue-cta-strip .blue-strip .social a {
    color: #fff;
    transition: .3s all ease-in;
}

section.blue-cta-strip .blue-strip .social a span i.fab {
    color: #4B4B4B;
}

section.blue-cta-strip .blue-strip .social a.facebook:hover {
    color: #3b5998;
}

section.blue-cta-strip .blue-strip .social a.twitter:hover {
    color: #1DA1F2;
}

section.blue-cta-strip .blue-strip .social a.instagram:hover {
    color: #f700aa;
}

section.blue-cta-strip .blue-strip .social a.youtube:hover {
    color: #c4302b;
}

section.blue-cta-strip .blue-strip .social a.pinterest:hover {
    color: #c8232c;
}

section.blue-cta-strip .blue-strip .social a:hover span i.fab {
    color: #fff;
}

/* = things to consider -------------------- */
section.things-to-consider {
    padding: 60px 0;
}

section.things-to-consider h4,
section.things-to-consider p {
    color: #fff;
}

section.things-to-consider .consideration {
    padding: 15px 30px;
    border-radius: 100rem;
    background: #fff;
    font-weight: 600;
    color: #325790;
    margin-bottom: 15px;
}

section.things-to-consider .consideration a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* = start your family -------------------- */
section.start-your-family {
    padding: 60px 0;
    background: #F5F5F5;
}

@media screen and (min-width: 56.250em) {
    section.start-your-family h2 {
        font-size: 2.111rem;
        color: #3399CC;
    }
}

section.start-your-family .card-item {
    width: 100%;
    padding: 1rem 0;
    margin-bottom: 0;
}

section.start-your-family .card-item .card a {
    display: flex!important;
    width: 100%;
    flex-direction: row;
}

section.start-your-family .card-item .card figure {
    position: relative;
    width: 155px;
    padding-top: 0;
    margin: 0px;
    overflow: hidden;
}

section.start-your-family .card-item .card .card-body h4 {
    min-height: auto!important;
}

section.start-your-family .card-item .card .card-body span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3399CC;
}

section.start-your-family .card-item .card .card-body span i {
    margin-left: 8px;
}

body.expecting section.start-your-family h2 {
    color: #325790;
}

body.expecting .card-item .card .card-body span {
    color: #325790;
}

/* = client bar -------------------- */
section.client-logos {
    padding: 60px 0;
}

section.client-logos img {
    height: 65px;
    margin: 0 auto!important;
    outline: none!important;
}

/* = news sliders -------------------- */
section.latest-news-slider,
section.popular-news-slider,
section.discussed-news-slider {
    position: relative;
    padding: 60px 0;
}

section.latest-news-slider .badge,
section.popular-news-slider .badge,
section.discussed-news-slider .badge {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0;
    padding: .5rem;
    font-size: 0.889rem;
    color: #fff;
    text-transform: uppercase;
    z-index: 2;
}

section.latest-news-slider .badge {
    background: #3399CC;
}

section.popular-news-slider .badge {
    background: #325790;
}

section.discussed-news-slider .badge {
    background: #3399CC;
}

section.popular-news-slider {
    padding: 60px 0 120px;
}

section.latest-news-slider h3 {
    color: #3399CC;
}

section.popular-news-slider h3 {
    color: #325790;
}

section.discussed-news-slider h3 {
    color: #3399CC;
}

section.latest-news-slider .slide-intro,
section.popular-news-slider .slide-intro,
section.discussed-news-slider .slide-intro {
    position: relative;
}

section.latest-news-slider .slide-intro p,
section.popular-news-slider .slide-intro p,
section.discussed-news-slider .slide-intro p {
    margin-bottom: 15px;
}

@media screen and (min-width: 56.250em) {
    section.latest-news-slider .slide-intro p,
    section.popular-news-slider .slide-intro p,
    section.discussed-news-slider .slide-intro p {
        max-width: 38em;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    section.latest-news-slider .slide-intro p,
    section.popular-news-slider .slide-intro p,
    section.discussed-news-slider .slide-intro p {
        margin-bottom: 15px;
    }
}

section.latest-news-slider .slide-intro .visit i,
section.popular-news-slider .slide-intro .visit i,
section.discussed-news-slider .slide-intro .visit i {
    margin-left: 8px;
}

@media screen and (min-width: 75.000em) {
    section.latest-news-slider .slide-intro .visit,
    section.popular-news-slider .slide-intro .visit,
    section.discussed-news-slider .slide-intro .visit {
        position: relative;
        left: 70%;
        bottom: 25px;
        right: 165px;
        padding-bottom: 8px;
        font-weight: 600;
        text-transform: uppercase;
        transition: .3s all ease-in;
    }
}

section.latest-news-slider .slide-intro .visit {
    color: #3399CC;
}

section.popular-news-slider .slide-intro .visit {
    color: #325790;
}

section.discussed-news-slider .slide-intro .visit {
    color: #3399CC;
}

section.latest-news-slider .slide-intro .visit::after {
    content: "";
    position: absolute;
}

@media screen and (min-width: 56.250em) {
    section.latest-news-slider .slide-intro .visit::after {
        top: 75%;
        height: 2px;
        width: 0%;
        left: 0;
        background: #3399CC;
        transition: 0.5s ease all 0.3s;
    }
}

section.latest-news-slider .visit:hover::after {
    width: 95%;
    transition: 0.3s ease all;
}

section.popular-news-slider .slide-intro .visit::after {
    content: "";
    position: absolute;
}

section.popular-news-slider .slide-intro .visit::after {
    top: 75%;
    height: 2px;
    width: 0%;
    left: 0;
    background: #325790;
    transition: 0.5s ease all 0.3s;
}

section.popular-news-slider .visit:hover::after {
    width: 95%;
    transition: 0.3s ease all;
}

section.discussed-news-slider .slide-intro .visit::after {
    content: "";
    position: absolute;
}

section.discussed-news-slider .slide-intro .visit::after {
    top: 75%;
    height: 2px;
    width: 0%;
    left: 0;
    background: #3399CC;
    transition: 0.5s ease all 0.3s;
}

section.discussed-news-slider .visit:hover::after {
    width: 95%;
    transition: 0.3s ease all;
}

@media screen and (min-width: 56.250em) {
    section.latest-news-slider .slick-list,
    section.popular-news-slider .slick-list {
        overflow: visible!important;
    }
}

@media screen and (min-width: 56.250em) {
    section.discussed-news-slider .slick-track {
        min-height: 415px;
    }
}
/*
@media screen and (min-width: 56.250em ) {
section.latest-news-slider .slick-list::before,
section.popular-news-slider .slick-list::before,
section.discussed-news-slider .slick-list::before {
position: absolute;
content: "";
display: block;
width: 100%;
height: 110%;
top: 0;
left: -100%;
bottom: 0;
background: #fff;
z-index: 5;
}
}
*/
section.latest-news-slider .slick-arrow,
section.popular-news-slider .slick-arrow,
section.discussed-news-slider .slick-arrow {
    position: absolute;
    top: 100%;
    background: #3399CC;
    width: 30px;
    height: 30px;
}

@media screen and (min-width: 56.250em) {
    section.latest-news-slider .slick-arrow,
    section.popular-news-slider .slick-arrow,
    section.discussed-news-slider .slick-arrow {
        top: -95px;
    }
}

section.popular-news-slider .slick-arrow {
    background: #325790;
}

section.discussed-news-slider .slick-arrow {
    background: #3399CC;
}

section.latest-news-slider .slick-prev:before,
section.latest-news-slider .slick-next:before,
section.popular-news-slider .slick-prev:before,
section.popular-news-slider .slick-next:before,
section.discussed-news-slider .slick-prev:before,
section.discussed-news-slider .slick-next:before {
    font-family: "Font Awesome 5 Pro" !important;
    font-size: 1rem !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    opacity: 1 !important;
    color: #fff !important;
}

section.latest-news-slider .slick-prev:before,
section.popular-news-slider .slick-prev:before,
section.discussed-news-slider .slick-prev:before {
    content: "\f053" !important;
}

section.latest-news-slider .slick-next:before,
section.popular-news-slider .slick-next:before,
section.discussed-news-slider .slick-next:before {
    content: "\f054" !important;
}

section.latest-news-slider .slick-prev,
section.popular-news-slider .slick-prev {
    left: 75%;
}

@media screen and (min-width: 56.250em) {
    section.latest-news-slider .slick-prev,
    section.popular-news-slider .slick-prev {
        left: 65rem;
    }
}

@media screen and (min-width: 900px) and (max-width: 1200px) {
    section.latest-news-slider .slick-prev,
    section.popular-news-slider .slick-prev {
        left: 60rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    section.latest-news-slider .slick-prev,
    section.popular-news-slider .slick-prev {
        left: 46rem;
    }
}

section.latest-news-slider .slick-next,
section.popular-news-slider .slick-next,
section.discussed-news-slider .slick-next {
    right: 1rem!important;
}

/* = store cols -------------------- */
section.store-buttons {
    position: relative;
    padding: 120px 0 60px;
}

body.hs-content-id-30584975078 section.store-buttons {
    padding: 60px 0 120px;
}

section.store-buttons .d-flex {
    flex-direction: column;
}

@media screen and (min-width: 56.250em) {
    section.store-buttons .d-flex {
        flex-direction: row;
    }
}

section.store-buttons .store-cols-item {
    flex: 1 1 0;
    width: 100%;
    padding: 0 1em;
    transition: box-shadow 0.3s ease-in-out;
    margin-bottom: 2em;
}

@media screen and (min-width: 56.250em) {
    section.store-buttons .store-cols-item {
        height: 100%;
    }
}

section.store-buttons .store-cols-item .store-cols {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 1.111rem;
    background: #F5F5F5;
    color: #4B4B4B!important;
    transition: .3s all;
    cursor: pointer;
}

section.store-buttons .store-cols-item .store-cols span {
    font-size: 0.875rem;
    font-weight: 600;
}

section.store-buttons .store-cols-item .store-cols span i {
    margin-left: 8px;
}

section.store-buttons .store-cols-item .store-cols:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* = purple story -------------------- */
section.purple-story {
    position: relative;
    padding: 60px 0;
    background: #3399CC;
    color: #fff;
}

@media screen and (min-width: 56.250em) {
    section.purple-story h3 {
        font-size: 3.222rem;
    }
}

section.purple-story strong {
    font-size: 1.125rem;
}

section.purple-story .cta_button:hover {
    background: none!important;
    border: 1px solid #fff!important;
    color: #fff!important;
}

/* = testimonial slide -------------------- */
section.testimonial-slider,
section.founder-information {
    position: relative;
    padding: 60px 0;
    background: #F5F5F5;
}

section.testimonial-slider .testimonial-slide .card-item .card,
section.founder-information .card-item .card {
    background: none;
    outline: none!important;
}

section.testimonial-slider .testimonial-slide .card-item .card:hover,
section.founder-information .card-item .card:hover {
    box-shadow: none;
}

section.testimonial-slider .testimonial-slide .card-item .card .card-img-top {
    position: relative;
    width: 170px;
    height: 170px;
    border-radius: 100rem;
    margin: 0 auto!important;
}

section.testimonial-slider .card-item .card .card-img-top img {
    border-radius: 100rem;
}

section.founder-information .card-item .card a {
    display: inline!important;
    font-weight: 600;
    color: #3399CC!important;
}

section.testimonial-slider .slick-arrow {
    position: absolute;
    top: 100%;
    background: #3399CC;
    width: 30px;
    height: 30px;
}

@media screen and (min-width: 56.250em) {
    section.testimonial-slider .slick-arrow {
        top: -95px;
    }
}

section.testimonial-slider .slick-arrow {
    background: #4B4B4B;
}

section.testimonial-slider .slick-arrow {
    background: #4B4B4B;
}

section.testimonial-slider .slick-prev:before,
section.testimonial-slider .slick-next:before {
    font-family: "Font Awesome 5 Pro" !important;
    font-size: 1rem !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    opacity: 1 !important;
    color: #fff !important;
}

section.testimonial-slider .slick-prev:before {
    content: "\f053" !important;
}

section.testimonial-slider .slick-next:before {
    content: "\f054" !important;
}

section.testimonial-slider .slick-prev {
    left: 75%;
}

@media screen and (min-width: 56.250em) {
    section.testimonial-slider .slick-prev {
        left: 65rem;
    }
}

@media screen and (min-width: 900px) and (max-width: 1200px) {
    section.testimonial-slider .slick-prev {
        left: 60rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    section.testimonial-slider .slick-prev {
        left: 46rem;
    }
}

section.testimonial-slider .slick-next {
    right: 1rem!important;
}

section.founder-information .card-item {
    height: auto!important;
}

@media screen and (min-width: 37.500em) {
    section.founder-information .card-item {
        width: 50%;
        margin-bottom: 0;
    }

    section.founder-information .card-item .card-body {
        padding: 1.25rem 0;
    }
}

@media screen and (min-width: 56.250em) {
    section.founder-information .card-item {
        width: 50%;
        margin-bottom: 0;
    }
}

/* = large quote -------------------- */
section.large-quote {
    padding: 60px 0;
}

section.large-quote blockquote {
    position: relative;
    font-size: 2.500rem;
    font-weight: 600;
    color: #2EB0BD;
    line-height: 1.2
}

section.large-quote blockquote .icon {
    position: absolute;
    top: -80px;
    left: 0;
}

@media screen and (min-width: 37.500em) {
    section.large-quote blockquote .icon {
        top: -45px;
        left: -100px;
    }
}

section.large-quote cite {
    font-style: normal;
    color: #2EB0BD;
}

/* = youtube video large -------------------- */
section.large-video {
    position: relative;
    padding: 60px 0;
}

section.large-video::before {
    position: absolute;
    content: "";
    top: 50%;
    margin-top: -200px;
    width: 100%;
    height: 400px;
    background: #2EB0BD;
}

body.hs-content-id-30584975078 section.large-video::before {
    position: absolute;
    content: "";
    top: 50%;
    margin-top: -200px;
    width: 100%;
    height: 400px;
    background: #3399CC;
}

section.large-video .youtube {
    background-color: #000;
    margin-bottom: 30px;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    cursor: pointer;
}

section.large-video .youtube img {
    width: 100%;
    top: -16.82%;
    left: 0;
    opacity: 0.7;
}

section.large-video .youtube .play-button {
    width: 90px;
    height: 90px;
    background-color: #2EB0BD;
    box-shadow: 0 0 30px rgba( 0,0,0,0.6 );
    z-index: 1;
    opacity: 1;
    border-radius: 100rem;
}

section.large-video .youtube .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff;
}

section.large-video .youtube img,
section.large-video .youtube .play-button {
    cursor: pointer;
}

section.large-video .youtube img,
section.large-video .youtube iframe,
section.large-video .youtube .play-button,
section.large-video .youtube .play-button:before {
    position: absolute;
}

section.large-video .youtube .play-button,
section.large-video .youtube .play-button:before {
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0 );
}

section.large-video .youtube iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

/* = youtube slide -------------------- */
section.youtube-slider {
    padding: 60px 0;
}

section.youtube-slider .badge {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0;
    padding: .5rem;
    font-size: 0.889rem;
    color: #fff;
    text-transform: uppercase;
    z-index: 2;
}

section.youtube-slider .badge {
    background: #3399CC;
}

section.youtube-slider h3 {
    color: #3399CC;
}

section.youtube-slider .slide-intro {
    position: relative;
}

section.youtube-slider .slide-intro p {
    margin-bottom: 15px;
}

@media screen and (min-width: 56.250em) {
    section.youtube-slider .slide-intro p {
        max-width: 38em;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    section.youtube-slider .slide-intro p {
        margin-bottom: 15px;
    }
}

section.youtube-slider .slide-intro .visit i {
    margin-left: 8px;
}

@media screen and (min-width: 75.000em) {
    section.youtube-slider .slide-intro .visit {
        position: relative;
        left: 70%;
        bottom: 25px;
        right: 165px;
        padding-bottom: 8px;
        font-weight: 600;
        text-transform: uppercase;
        transition: .3s all ease-in;
    }
}

section.youtube-slider .slide-intro .visit {
    color: #3399CC;
}

section.youtube-slider .slide-intro .visit::after {
    content: "";
    position: absolute;
}

section.youtube-slider .slide-intro .visit::after {
    top: 75%;
    height: 2px;
    width: 0%;
    left: 0;
    background: #3399CC;
    transition: 0.5s ease all 0.3s;
}

section.youtube-slider .visit:hover::after {
    width: 95%;
    transition: 0.3s ease all;
}

@media screen and (min-width: 56.250em) {
    section.youtube-slider .slick-list {
        overflow: visible!important;
    }
}

section.youtube-slider .slick-track {
    height: 425px;
}

section.youtube-slider .slick-arrow {
    position: absolute;
    top: 100%;
    background: #3399CC;
    width: 30px;
    height: 30px;
}

@media screen and (min-width: 56.250em) {
    section.youtube-slider .slick-arrow {
        top: -95px;
    }
}

section.youtube-slider .slick-prev:before,
section.youtube-slider .slick-next:before {
    font-family: "Font Awesome 5 Pro" !important;
    font-size: 1rem !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    opacity: 1 !important;
    color: #fff !important;
}

section.youtube-slider .slick-prev:before {
    content: "\f053" !important;
}

section.youtube-slider .slick-next:before {
    content: "\f054" !important;
}

section.youtube-slider .slick-prev {
    left: 75%;
}

@media screen and (min-width: 56.250em) {
    section.youtube-slider .slick-prev {
        left: 65rem;
    }
}

@media screen and (min-width: 900px) and (max-width: 1200px) {
    section.youtube-slider .slick-prev {
        left: 60rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    section.youtube-slider .slick-prev {
        left: 46rem;
    }
}

section.youtube-slider .slick-next {
    right: 1rem!important;
}

section.youtube-slider .card-item .card {
    height: auto;
}

section.youtube-slider img {
    width: 100%;
    top: -16.82%;
    left: 0;
    opacity: 0.7;
}

section.youtube-slider .play-button {
    width: 70px;
    height: 70px;
    background-color: #3399CC;
    box-shadow: 0 0 30px rgba( 0,0,0,0.6 );
    z-index: 1;
    opacity: 1;
    border-radius: 100rem;
    z-index: 5;
}

section.youtube-slider .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff;
}

section.youtube-slider img,
section.youtube-slider .play-button {
    cursor: pointer;
}

section.youtube-slider img,
section.youtube-slider iframe,
section.youtube-slider .play-button,
section.youtube-slider .play-button:before {
    position: absolute;
}

section.youtube-slider .play-button,
section.youtube-slider .play-button:before {
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0 );
}

section.youtube-slider iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

section.youtube-slider .video-thumb {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    width: calc((100% - 4rem) / 2);
    height: 0;
    padding-top: calc(((100% - 4rem) / 2) * 0.5625);
    margin: 1rem 1rem;
    overflow: hidden;
    position: relative;
    font-size: 1rem;
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    box-shadow: 0 0 0 rgba(0,0,0,0.0);
    -webkit-transition: all 0.2s ease-out 0.05s;
    transition: all 0.2s ease-out 0.05s;
}

section.youtube-slider .video-thumb:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(13,1,61,0.35);
}

section.youtube-slider .video-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: 50% 50%;
    background: #2b2b2b;
}

/* = video modal -------------------- */
.video-modal,
.video-modal .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3000;
}

.video-modal {
    overflow: hidden;
    position: fixed;
    opacity: 0.0;
    -webkit-transform: translate(500%,0%);
    transform: translate(500%,0%);
    -webkit-transition: -webkit-transform 0s linear 0s;
    transition: transform 0s linear 0s;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.video-modal .overlay {
    z-index: 0;
    background: rgba(13,1,61,0.82); /* overlay color */
    opacity: 0.0;
    -webkit-transition: opacity 0.2s ease-out 0.05s;
    transition: opacity 0.2s ease-out 0.05s;
}

.video-modal-content {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
    margin: 0 auto;
    overflow-y: visible;
    background: #000;
    width: calc(100% - 15em);
    height: 0;
    padding-top: calc((100% - 15em) * 0.5625); /* 16:9 calc */
}

@media (min-aspect-ratio: 16/9) {
    .video-modal-content {
        width: 0;
        height: calc(100vh - 20em);
        padding-top: 0;
        padding-left: calc((100vh - 20em) * 1.7778); /* 16:9 calc */
    }
}

@media (max-width: 640px) {
    .video-modal-content {
        width: calc(100% - 1em);
        padding-top: calc((100% - 1em) * 0.5625); /* 16:9 calc */
    }
}

.close-video-modal {
    display: block;
    position: absolute;
    left: 0;
    top: -40px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

iframe#youtube {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: #000;
    box-shadow: 0px 2px 16px rgba(0,0,0,0.5);
}

.show-video-modal .video-modal {
    opacity: 1.0;
    transform: translate(0%,0%);
    -webkit-transform: translate(0%,0%);
}

.show-video-modal .video-modal .overlay {
    opacity: 1.0;
}

.show-video-modal .video-modal-content {
    transform: translate(0%,0%);
    -webkit-transform: translate(0%,0%);
}

/* = tab information -------------------- */
section.tab-filter {
    padding: 60px 0 0;
}

section.tab-filter .nav-tabs {
    justify-content: space-between;
    border: 0;
}

section.tab-filter .nav-tabs .nav-item {
    border: 0;
    font-size: 1.333rem;
    font-weight: 600;
    color: #495057!important;
}

section.tab-information {
    padding: 60px 0;
}

section.tab-information .tab-pane {
    padding: 0;
    font-size: 1.222rem;
    font-weight: 600;
    text-align: center;
    color: #fff;
}

section.tab-information .fade:not(.show) {
    display: none;
}

/* = download guides -------------------- */
section.download-guides {
    padding: 60px 0;
    background: #3399CC;
}

section.download-guides .download-item {
    height: 100%;
    padding: 1em;
    color: #4B4B4B!important;
    transition: box-shadow 0.3s ease-in-out;
    background: #fff;
}

section.download-guides .download-item span {
    font-size: 0.875rem;
    font-weight: 600;
}

section.download-guides .download-item span i {
    margin-left: 8px;
}

section.download-guides .download-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* = partner popover -------------------- */
section.partner-card-popover {
    padding: 60px 0;
}

/* = blog filter -------------------- */
section.blog-filter {
    padding: 60px 0;
    background: #F5F5F5;
}

section.blog-filter h3 {
    margin-bottom: 1.688rem;
}

section.blog-filter .list-inline-item {
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin-bottom: 1.25rem;
}

section.blog-filter .list-inline-item input {
    position: absolute;
    opacity: 0;
    height: 18px;
    width: 18px;
    cursor: pointer;
    z-index: 5;
}

section.blog-filter .list-inline-item label {
    margin-left: 30px;
}

section.blog-filter .list-inline-item .checkbox-custom {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border-radius: 0px;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    border: 1px solid #9A9A9A;
}

section.blog-filter .list-inline-item input:checked ~ .checkbox-custom {
    background-color: #FFFFFF;
    border-radius: 0px;
    -webkit-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    opacity:1;
    border: 1px solid #9A9A9A;
}


section.blog-filter .list-inline-item .checkbox-custom::after {
    position: absolute;
    content: "";
    left: 9px;
    top: 9px;
    height: 0px;
    width: 0px;
    border-radius: 0;
    border: solid #009BFF;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(0deg) scale(0);
    -ms-transform: rotate(0deg) scale(0);
    transform: rotate(0deg) scale(0);
    opacity:1;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}


section.blog-filter .list-inline-item input:checked ~ .checkbox-custom::after {
    -webkit-transform: rotate(45deg) scale(1);
    -ms-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1);
    opacity:1;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid #009BFF;
    border-width: 0 2px 2px 0;
    background-color: transparent;
    border-radius: 0;
}



/* For Ripple Effect */
section.blog-filter .list-inline-item .checkbox-custom::before {
    position: absolute;
    content: "";
    left: 10px;
    top: 10px;
    width: 0px;
    height: 0px;
    border-radius: 5px;
    border: 2px solid #FFFFFF;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);	
}

section.blog-filter .list-inline-item input:checked ~ .checkbox-custom::before {
    left: -3px;
    top: -3px;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    -webkit-transform: scale(3);
    -ms-transform: scale(3);
    transform: scale(3);
    opacity:0;
    z-index: 999;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

section.blog-filter button.clear-filters {
    padding: 0;
    border: 0!important;
    background: 0!important;
    color: #009BFF;
    text-decoration: underline;
}



/* = blog listing -------------------- */
section.blog-listing {
    position: relative;
    padding: 120px 0 60px;
}

section.blog-listing .card-item .card .card-body p {
    height: 85px;
}

section.blog-listing .card-item .card .card-body span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3399CC;
    text-transform: uppercase;
}

section.blog-listing .card-item .card .card-body span i {
    margin-left: 8px;
}

section.blog-listing .mix,
section.blog-listing .gap {
    position: relative;
    width: calc(100%/1 - (((1 - 1) * 1rem) / 1));
    display: inline-block;
    vertical-align: top;
}

.mixitup-page-list button {
    border: 0;
    background: none;
    color: #9da5aa;
    margin: 0 8px;
    transition: .3s all ease-in;
    outline: none!important;
}

.mixitup-page-list button.mixitup-control-active {
    font-weight: 600;
    color: #3399CC;
}

/* = 3 Columns -------------------- */
@media screen and (min-width: 767px) {
    section.blog-listing .mix,
    section.blog-listing .gap {
        width: calc(100%/2 - (((2 - 1) * 1rem) / 2));
    }
}

/* = 2 Columns -------------------- */
@media screen and (min-width: 992px) {
    section.blog-listing .mix,
    section.blog-listing .gap {
        width: calc(100%/2 - (((2 - 1) * 1rem) / 2));
    }
}

/* = 3 Columns -------------------- */
@media screen and (min-width: 1200px) {
    section.blog-listing .mix,
    section.blog-listing .gap {
        width: calc(32.8% - .75rem);
    }
}

/* = dadvocacy blog listing -------------------- */
section.featured-post {
    padding: 0 0 60px;
}

section.featured-post .card-item .card .card-body p {
    font-size: 0.889rem;
    font-weight: 600;
    min-height: 75px;
}

@media screen and (min-width: 56.250em) {
    section.featured-post .card-item {
        width: 50%!important;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 75.000em) {
    section.featured-post .card-item {
        width: 50%!important;
        margin-bottom: 0;
    }
}

section.dadvocacy-listing {
    position: relative;
    padding: 60px 0 0;
}

body.hs-blog-id-25058011487 section.one-column-text {
    padding: 60px 0 0;
}

@media screen and (min-width: 56.250em) {
    body.hs-blog-id-25058011487 section.discussed-news-slider .card-item {
        width: 50%;
        margin-bottom: 0;
    }

    section.discussed-news-slider .slide-intro .visit {
        left: 60%;
    }

    section.discussed-news-slider .slick-prev {
        left: 88%;
    }
}

aside.most-popular-sidebar {
    padding: 30px 15px;
    background: #F5F5F5;
}

@media screen and (min-width: 37.500em) {
    aside.most-popular-sidebar .card-item {
        width: 100%!important;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 75.000em) {
    aside.most-popular-sidebar .card-item {
        width: 100%;
    }
}

aside.most-popular-sidebar h4,
aside.most-popular-sidebar p {
    padding: 0;
}

aside.most-popular-sidebar h4 {
    color: #3399CC;
}


body.hs-blog-id-30552133583 section.blog-filter,
body.hs-blog-id-30552854779 section.blog-filter,
body.hs-blog-id-30552133585 section.blog-filter,
body.hs-blog-id-30598429966 section.blog-filter,
body.hs-blog-id-30598429966 section.blog-filter,
body.hs-blog-id-30598452047 section.blog-filter,
body.hs-blog-id-30594300670 section.blog-filter,
body.hs-blog-id-30599775753 section.blog-filter {
    display: none;
}

body.hs-blog-id-30552133583 section.blog-listing,
body.hs-blog-id-30552854779 section.blog-listing,
body.hs-blog-id-30552133585 section.blog-listing,
body.hs-blog-id-30598429966 section.blog-listing,
body.hs-blog-id-30598429966 section.blog-listing,
body.hs-blog-id-30598452047 section.blog-listing,
body.hs-blog-id-30594300670 section.blog-listing,
body.hs-blog-id-30599775753 section.blog-listing {
    padding: 60px 0;
}

.blog-pagination a {
    padding: 0 1rem;
    color: #3399CC;
}

/* = blog post -------------------- */
section.single-blog-post {
    position: relative;
    padding: 120px 0 60px;
}

section.single-blog-post .post-header {
    margin-bottom: 30px;
}

section.single-blog-post ul#hubspot-topic_data {
    /*display: flex;
    justify-content: flex-start;*/
    padding: 0;
    margin: 0 0 30px;
}

section.single-blog-post ul#hubspot-topic_data li {
    list-style: none;
  display: inline-block;
    margin: 0 5px 10px 0;
}

section.single-blog-post ul#hubspot-topic_data li a { 
    font-weight: 600;
    color: #3399CC;
  padding-right: 5px;
}

section.single-blog-post .author-date a {
    font-weight: 600;
}

section.single-blog-post .author-date a,
section.single-blog-post .author-date {
    color: #AAA7A7;
}

@media screen and (min-width: 56.250em) {
    section.single-blog-post h1 {
        font-size: 2.222rem;
    }
}

section.single-blog-post .post-body img {
    position: relative;
   /* margin: 3rem auto!important;*/
}

/* = timeline slider -------------------- */
section.timeline-slider {
    padding: 120px 0;
}

section.timeline-slider h3 {
    color: #2EB0BD;
}

section.timeline-slider .card-item {
    position: relative;
    border-left: 3px solid #2EB0BD;
    margin-bottom: 0;
}

section.timeline-slider .card-item .card:hover {
    box-shadow: none;
}

section.timeline-slider .card-item:before {
    position: absolute;
    content: "";
    top: 0;
    left: -11px;
    width: 19px;
    height: 19px;
    background: #2EB0BD;
    border-radius: 100rem;
}

section.timeline-slider .timeline-date {
    font-size: 3.333rem;
    font-weight: 600;
    color: #2EB0BD;
}

section.timeline-slider .slick-list {
    overflow: visible!important;
}

section.timeline-slider .slick-track {
    border-bottom: 3px solid #2EB0BD;
}

section.timeline-slider .slick-arrow {
    position: absolute;
    top: 115%;
    background: #2EB0BD;
    width: 30px;
    height: 30px;
}

@media screen and (min-width: 56.250em) {
    section.timeline-slider .slick-arrow {
        top: -95px;
    }
}

section.timeline-slider .slick-prev:before,
section.timeline-slider .slick-next:before {
    font-family: "Font Awesome 5 Pro"!important;
    font-size: 1rem!important;
    font-weight: 300!important;
    line-height: 1!important;
    opacity: 1!important;
    color: #fff!important;
}

section.timeline-slider .slick-prev:before {
    content: "\f053"!important;
}

section.timeline-slider .slick-next:before {
    content: "\f054"!important;
}

section.timeline-slider .slick-prev {
    left: 75%;
}

@media screen and (min-width: 56.250em) {
    section.timeline-slider .slick-prev {
        left: 65rem;
    }
}

@media screen and (min-width: 900px) and (max-width: 1200px) {
    section.timeline-slider .slick-prev {
        left: 56rem;
    }
}

@media screen (min-width: 768px) and (max-width: 1024px) {
    section.timeline-slider .slick-prev {
        left: 46rem!important;
    }
}

section.timeline-slider .slick-next {
    right: 1rem;
}

/* = directory downloads -------------------- */
section.directory-downloads {
    padding: 60px 0;
}

section.directory-downloads .card-item .card figure .card-img-top img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    opacity: 1;
    transition: none 0s ease 0s;
}

section.directory-downloads .card-item .card .card-body h5 {
    font-size: 0.938rem!important;
    min-height: 55px;
}

section.directory-downloads .card-item .card .card-link {
    padding: 1.25rem;
}

section.directory-downloads .list-inline-item {
    display: block;
    margin-bottom: 15px;
}

section.directory-downloads .list-inline-item button {
    width: 100%;
    background: none;
    border: 0;
    text-align: left;
}

section.directory-downloads .checkbox input[type="checkbox"] {
    opacity: 0;
}

section.directory-downloads .checkbox label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
}

section.directory-downloads .checkbox label::before,
section.directory-downloads .checkbox label::after {
    position: absolute;
    content: "";
    display: inline-block;
}

section.directory-downloads .checkbox label::before{
    height: 22px;
    width: 22px;
    border: 1px solid;
    left: 0px;
    top: 3px;
}

section.directory-downloads .checkbox label::after {
    height: 5px;
    width: 9px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
    left: 8px;
    top: 10px;
}

section.directory-downloads .checkbox input[type="checkbox"] + label::after {
    content: none;
}

section.directory-downloads .checkbox input[type="checkbox"]:checked + label::after {
    content: "";
}

section.directory-downloads .checkbox input[type="checkbox"]:focus + label::before {
    outline: rgb(59, 153, 252) auto 5px;
}

section.directory-downloads .mix,
section.directory-downloads .gap {
    position: relative;
    width: calc(100%/1 - (((1 - 1) * 1rem) / 1));
    display: inline-block;
    vertical-align: top;
}

.mixitup-page-list button {
    border: 0;
    background: none;
    color: #9da5aa;
    margin: 0 8px;
    transition: .3s all ease-in;
    outline: none!important;
}

.mixitup-page-list button.mixitup-control-active {
    font-weight: 600;
    color: #3399CC;
}

section.directory-downloads .card-item {
    height: auto;
    margin-bottom: 60px;
}


/* = 3 Columns -------------------- */
@media screen and (min-width: 767px) {
    section.directory-downloads .mix,
    section.directory-downloads .gap {
        width: calc(100%/2 - (((2 - 1) * 1rem) / 2));
    }
}

/* = 2 Columns -------------------- */
@media screen and (min-width: 992px) {
    section.directory-downloads .mix,
    section.directory-downloads .gap {
        width: calc(100%/2 - (((2 - 1) * 1rem) / 2));
    }
}

/* = 3 Columns -------------------- */
@media screen and (min-width: 1200px) {
    section.directory-downloads .mix,
    section.directory-downloads .gap {
        width: calc(32.8% - .75rem);
    }
}

/* become a contributor -------------------- */
section.become-a-contributor {
    padding: 60px 0;
    background: #2EB0BD;
    color: #fff;
}

@media screen and (min-width: 56.250em) {
    section.become-a-contributor h3 {
        font-size: 3.222rem;
    }
}

section.become-a-contributor p {
    font-size: 1.111rem;
}

section.become-a-contributor .form-general form input[type=email] {
    height: 48px;
    margin-bottom: 0;
    padding-left: 30px;
    background: #fff;
    border: 2px solid #f8f8f8;
    border-radius: 0;
    font-size: 0.889rem;
    padding: 8px 15px;
    width: 100%;
}

@media screen and (min-width: 56.250em) {
    section.become-a-contributor .form-general form input[type=email] {
        width: 70%;
    }
}

section.become-a-contributor .form-general form .hs-button:hover {
    background: none;
    border: 1px solid #fff;
    color: #fff;
}

/* = form columns -------------------- */
section.one-column-form,
section.two-column-form {
    padding: 60px 0;
}

section.one-column-form form fieldset,
section.two-column-form form fieldset {
    padding: 0;
    border: 0;
    max-width: 100%;
    margin-bottom: 15px;
}

section.one-column-form form fieldset label,
section.two-column-form form fieldset label {
    display: block;
    font-size: 0.889rem;
    margin-bottom: 0.278rem;
}

section.one-column-form form fieldset input[type=text],
section.one-column-form form fieldset input[type=email],
section.one-column-form form fieldset input[type=tel],
section.one-column-form form fieldset input[type=password],
section.one-column-form form fieldset input[type=search],
section.one-column-form form fieldset textarea,
section.two-column-form form fieldset input[type=text],
section.two-column-form form fieldset input[type=email],
section.two-column-form form fieldset input[type=tel],
section.two-column-form form fieldset input[type=password],
section.two-column-form form fieldset input[type=search],
section.two-column-form form fieldset textarea {
    width: 100%;
    height: 48px;
    padding: 0 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #E2E8F0;
    background: #fff;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: none;
}

section.one-column-form form fieldset select,
section.two-column-form form fieldset select {
    width: 100%;
    height: 48px;
    padding: 0 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #E2E8F0;
    background: #fff;
    outline: none;
}

section.one-column-form form fieldset textarea,
section.two-column-form form fieldset textare {
    padding: 0.75rem;
    width: 100%!important;
    min-height: 300px;
}

section.one-column-form form .hs-button,
section.two-column-form form .hs-button {
    height: auto;
    padding: 15px 30px;
    border-radius: 0;
    background: #3399CC;
    color: #fff;
    cursor: pointer;
}

section.one-column-form .form-general form .legal-consent-container p,
section.two-column-form .form-general form .legal-consent-container p {
    margin-bottom: 15px;
}

section.one-column-form .form-general form .legal-consent-container .hs-form-booleancheckbox-display,
section.two-column-form .form-general form .legal-consent-container .hs-form-booleancheckbox-display {
    justify-content: flex-start;
}

section.one-column-form .form-general form .hs-button,
section.two-column-form .form-general form .hs-button {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    margin-top: 0;
}

/* = footer -------------------- */
footer {
    position: relative;
    padding: 60px 0;
    background: #2E2E2E;
    color: #fff;
}

footer .d-flex {
    flex-direction: column;
}

@media screen and (min-width: 75.000em) {
    footer .d-flex {
        flex-direction: row;
    }
}

footer .menu-col {
    width: 100%;
}

@media screen and (min-width: 56.250em) {
    footer .menu-col {
        width: 25%;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 75.000em) {
    footer .menu-col {
        width: 20%;
    }
}

footer h5 {
    margin-bottom: 15px;
}

footer h5 a {
    color: #fff!important;
}

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

footer ul li {
    margin-bottom: 0px;
}

footer ul li a {
    position: relative;
    padding-bottom: 8px;
    color: #fff!important;
}

footer ul li a:hover::after {
    width: 95%;
    transition: 0.3s ease all;
}


footer ul li a::after {
    content: "";
    position: absolute;
}

footer ul li a::after {
    top: 75%;
    height: 2px;
    width: 0%;
    left: 0;
    background: #fff;
    transition: 0.5s ease all 0.3s;
}

footer .privacy-links {
    margin-bottom: 15px;
}

@media screen and (min-width: 56.250em) {
    footer .privacy-links {
        margin-bottom: 0;
    }
}

footer .privacy-links a {
    margin: 0 20px;
    font-size: 0.833rem;
    color: #fff;
}

footer .privacy-links a:first-child {
    margin: 0 20px 0 0;
}

footer .social a {
    color: #fff;
    transition: .3s all ease-in;
}

footer .social a span i.fab {
    color: #4B4B4B;
}

footer .social a.facebook:hover {
    color: #3b5998;
}

footer .social a.twitter:hover {
    color: #1DA1F2;
}

footer .social a.instagram:hover {
    color: #f700aa;
}

footer .social a.youtube-icon:hover {
    color: #c4302b;
}

footer .social a.pinterest:hover {
    color: #c8232c;
}

footer .social a:hover span i.fab {
    color: #fff;
}

footer.copyright {
    padding: 20px 0;
    background: #3399CC;
    font-size: 0.833rem;
    color: #fff;
}

footer.copyright a {
    color: #fff;
}

/* = blog column -------------------- */
section.blog-column {
    padding-top: 20px 0;
    background-color: #F5F5F5;
    position: centre;