html {
    --bluette: #536dfe;
    --ultraviolet: #311b92;
    --violet: #7924b6;
    --pink: #fb37ff;
    --gradient-bg: linear-gradient(-45deg, var(--ultraviolet), var(--violet));
    --yellow: #f0a500;
    --text-color: #222;
    --color: var(--ultraviolet);
    --light: var(--bluette);
    --lighter: #97a7ff;
    --topbar: 42px;
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
    overflow-x: hidden;
    /* This is for traffic from Google Search mobile */
}

.page-template-homepage a.generic_button:hover {
    background: var(--bluette);
}

.page-template-homepage a.generic_button.bordered {
    background: white;
}

.page-template-homepage .page-wrapper {
    padding-top: 0;
}

@media (max-width: 1024px) {
    .page-template-homepage .composer_cols_container:not(.media) {
        padding-top: 30px;
    }
}

.page-template-homepage #top_header {
    margin-top: 0;
}

.topbar+.site-header {
    margin-top: var(--topbar);
    transition: all .1s;
}

.topbar+.sticky_header {
    margin-top: 0;
}

.page-template-homepage .site-header:not(.sticky_header) {
    background: transparent;
}

.page-template-homepage .site-header:not(.sticky_header) ul.nav-menu>li>a,
.page-template-homepage .site-header:not(.sticky_header) #menu-menu-switcher>li>a {
    color: #fff !important;
}

.page-template-homepage .site-header:not(.sticky_header) .main-navigation li.menu-item-has-children>a::after {
    background: #fff;
}

.page-template-homepage .site-header:not(.sticky_header) .site-branding {
    background-color: #fff;
    -webkit-mask: url('/wp-content/uploads/2024/04/contents-ai-ultraviolet.svg') no-repeat center;
    mask: url('/wp-content/uploads/2024/04/contents-ai-ultraviolet.svg') no-repeat center;
    position: relative;
    top: -4px;
}

.page-template-homepage .site-header:not(.sticky_header) .site-branding img {
    opacity: 0;
}

.topbar {
    background: var(--bluette);
    color: #fff;
    text-align: center;
    font-size: .85em;
    padding: 10px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topbar p {
    margin: 0;
}

@media (min-width: 1280px) {
    .topbar {
        position: sticky;
        top: 0;
        height: var(--topbar);
        padding: 0;
    }

    .is-scrolled .topbar {
        height: 0;
    }
}

.topbar a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: var(--yellow);
}

.page-template-homepage .composer_txt_img-bkg>div {
    padding: 60px 0 40px;
}

.gradient-wrapper {
    background: var(--gradient-bg);
}

.home_header_wrapper {
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.home_header_content {
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    margin: auto;
    font-size: 1.3rem;
}

.top_content {
    text-align: center;
    color: #fff;
    position: relative;
}

.home_header_content h1 {
    font-size: clamp(32px, 6vw, 60px);
    line-height: 1;
    font-weight: 800;
    max-width: 840px;
    margin: .67em auto;
}

.home_header_content .subtitle {
    max-width: 800px;
    margin: 1.5em auto;
    font-size: clamp(18px, 5vw, 1.66em);
    line-height: 1.2;
}

.home_header_content .underline,
.scrolled .underline,
.lh-workflows-title span,
.underlineable span,
.underlineable strong {
    text-decoration: none;
    /* background-image: linear-gradient(90deg, var(--pink), var(--violet)); */
    background-image: linear-gradient(90deg, var(--lighter), var(--lighter));
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 0% 3px;
    animation: underline 2s forwards .3s;
}

@keyframes underline {

    100% {
        background-size: 100% 3px;
    }
}

.home_header_content div.buttons {
    justify-content: center;
}

a.generic_button.white {
    background: #fff;
    color: var(--color);
}

a.generic_button.white:hover {
    border-color: white;
}

.home_header_content .reassurance {
    padding: 10px 0 40px;
    font-size: .8rem;
    text-align: center;
    opacity: .75;
}

.home_header_content a.generic_button {
    background: #fff;
    color: var(--color);
    padding: 12px 32px;
    font-size: 20px;
}

.home_header_content a.generic_button::after {
    background: var(--color);
    height: 20px;
}

.home_header_content .generic_button:hover {
    background: #000;
    color: #fff;
}

.home_header_content span.pre_title {
    color: #fff;
}

@media all and (min-width:1025px) {
    .top_video_content {
        display: flex;
        gap: 70px;
        align-items: center;
    }
}

.top_video_content h2 {
    line-height: 1.1;
}

.video .video-player {
    display: block;
    position: relative
}

.video .video-player video {
    border-radius: 10px;
    box-shadow: 0 20px 20px 0 rgba(76, 86, 115, .2);
}

.video .video-player .mute-video {
    position: absolute;
    background: url(../images/volume-off.png) no-repeat center;
    background-size: auto;
    background-size: contain;
    border: 0;
    width: 24px;
    height: 24px;
    text-indent: 9999px;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 16px;
    padding: 0;
    cursor: pointer;
    z-index: 2;
    transition: all .3s ease-in .3s
}

@media(hover: hover) {
    .video .video-player .mute-video {
        opacity: 0
    }
}

.video .video-player .unmute-video {
    background: url(../images/volume-on.png) no-repeat center;
    background-size: contain
}

.video .video-player .play-video {
    position: absolute;
    background: rgba(0, 0, 0, 0);
    border: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 20px;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    font-size: 50px;
    font-family: sans-serif;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .5);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    line-height: 1;
    transition: all .3s ease-in .3s;
    background-size: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg height='512px' style='enable-background:new 0 0 512 512; fill:white' version='1.1' viewBox='0 0 512 512' width='512px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg%3E%3Cpath d='M224,435.8V76.1c0-6.7-5.4-12.1-12.2-12.1h-71.6c-6.8,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6 C218.6,448,224,442.6,224,435.8z'/%3E%3Cpath d='M371.8,64h-71.6c-6.7,0-12.2,5.4-12.2,12.1v359.7c0,6.7,5.4,12.2,12.2,12.2h71.6c6.7,0,12.2-5.4,12.2-12.2V76.1 C384,69.4,378.6,64,371.8,64z'/%3E%3C/g%3E%3C/svg%3E")
}

.video .video-player .paused {
    opacity: .7;
    background-image: url("data:image/svg+xml,%3Csvg height='512px' id='Layer_1' style='enable-background:new 0 0 512 512; fill:white' version='1.1' viewBox='0 0 512 512' width='512px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath d='M405.2,232.9L126.8,67.2c-3.4-2-6.9-3.2-10.9-3.2c-10.9,0-19.8,9-19.8,20H96v344h0.1c0,11,8.9,20,19.8,20 c4.1,0,7.5-1.4,11.2-3.4l278.1-165.5c6.6-5.5,10.8-13.8,10.8-23.1C416,246.7,411.8,238.5,405.2,232.9z'/%3E%3C/svg%3E")
}

@media(hover: hover) {

    .video .video-player:hover .play-video,
    .video .video-player:hover .mute-video {
        opacity: .7;
        transition: all .1s ease-in 0s
    }
}

.top_video_content>div {
    flex: 1;
    margin-bottom: 40px;
}

.top_video_content video {
    border-radius: 4px;
}

.discover_wrapper {
    max-width: 1200px;
    margin: 0 auto !important;
}

.discover_container {
    background: unset;
}

.slick-slide video {
    opacity: 0;
    transition: opacity .3s ease-in .4s;
}

.slick-active video {
    opacity: 1;
}

.page-ai-art .slick-slide video,
.page-template-homepage .slick-slide video {
    max-height: 500px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
    margin: 20px;
    width: auto;
    max-width: 100%;
}

.discover_content_text {
    padding: 60px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
    position: relative;
    right: -30px;
    z-index: 1;
}

.discover_container>div:first-child {
    align-items: center;
    display: flex;
    padding: 20px 0;
}

.discover_container>div:last-child {
    justify-content: start;
    z-index: 3;
}

.page-ai-art .header_int_wrapper {
    height: auto;
}

.page-ai-art .header_int_video video {
    mask-image: radial-gradient(ellipse 100% 170% at 50% 50%, black 30%, transparent 50%)
}

.dot-container {
    max-width: 1200px;
    margin: 0 auto !important;
}

.dot-container .slick-dots {
    position: relative;
    top: unset;
    bottom: unset;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
        margin: 0 24px;
}

.dot-container .slick-dots li,
.pill-button,
.page-faqs-guides .btns_anchor a.generic_button,
.faq-switcher a.generic_button {
    width: unset;
    height: unset;
    border: 2px solid;
    color: var(--color);
    border-radius: 4px;
    white-space: nowrap;
    text-transform: uppercase;
    font-family: Lato, sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    letter-spacing: .02em;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 4px;
    flex: 1;
    max-width: 400px;
}

.dot-container .slick-dots li {
    border: none;
    flex: 1;
    max-width: 400px;
}

.page-faqs-guides .btns_anchor a.generic_button,
.faq-switcher a.generic_button {
    font-weight: 400;
    font-size: 14px;
    text-transform: none;
}

.dot-container .slick-dots li.slick-active,
.pill-button:hover,
.page-faqs-guides .btns_anchor a.generic_button:hover {
    background: var(--color);
    border-color: var(--color);
    color: #fff;
}

.dot-container .slick-dots li a {
    font-weight: 700;
}

/* used in /ai-art/ */
.dot-container .slick-dots li a.dot span.product_is_new {
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    padding: 5px 12px 5px 12px;
    border-radius: 12px;
    position: absolute;
    top: -12px;
    right: 10px;
    color: white;
    background: var(--yellow);
    border: 2px solid var(--yellow);
}

/* used in /welcome-to-contents-ai/ */
.dot-container .slick-dots li a.dot span.product_is_new_type_2 {
    font-size: 11px;
    font-weight: 500;
    line-height: 100%;
    padding: 2px 4px;
    border-radius: 12px;
    position: absolute;
    top: -16px;
    left: -7px;
    color: white;
    background: var(--yellow);
    border: 2px solid var(--yellow);
    transform: rotate(-25deg);
}

.dot-container .slick-dots li.slick-active a {
    color: #fff;
}

.floating-icon i.fa-solid,
.icon-svg,
.page-template-homepage .content_types_container i.fa-solid {
    background: var(--light);
    color: #fff;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.icon-svg svg {
    fill: #fff;
    width: 70px;
    height: 70px;
    padding: 12px;
}

.floating-icon i.fa-solid {
    width: 66px;
    height: 66px;
    font-size: 33px;
    color: rgba(255, 255, 255, .7);
}

.floating-icon {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    scale: 0;
}

.floating-icon span {
    color: #eee;
    border-radius: 100px;
    white-space: nowrap;
    font-size: 12px;
    padding: 2px 7px;
    background: #222;
    margin-top: 5px;
    border: 1px solid #666;
}

.floating-icon.icon1 {
    top: 10%;
    left: -2%;
    animation: fadein 1s forwards 1.9s;
}

.floating-icon.icon1 .icon-svg,
.floating-icon.icon1 i.fa-solid {
    background: linear-gradient(-45deg, rgba(100, 0, 0, .3), transparent),
        var(--light);
}

.floating-icon.icon2 {
    top: 60%;
    left: 3%;
    animation: fadein 1s forwards 2.5s;
}

.floating-icon.icon2 .icon-svg,
.floating-icon.icon2 i.fa-solid {
    background: linear-gradient(-45deg, rgba(100, 0, 0, .3), transparent),
        #cd234b;
}

.floating-icon.icon3 {
    top: 1%;
    right: 0;
    animation: fadein 1s forwards 3.1s;
}

.floating-icon.icon3 .icon-svg,
.floating-icon.icon3 i.fa-solid {
    background: linear-gradient(-45deg, rgba(100, 0, 0, .3), transparent), #51a3a3;
}


.floating-icon.icon4 {
    top: 63%;
    right: 7%;
    animation: fadein 1s forwards 3.7s;
}

.floating-icon.icon4 .icon-svg,
.floating-icon.icon4 i.fa-solid {
    background: linear-gradient(-45deg, rgba(100, 0, 0, .3), transparent), var(--yellow);
}

@keyframes fadein {
    100% {
        opacity: 1;
        scale: 1;
    }
}

.page-template-homepage .content_types_wrapper {
    display: flex;
    gap: 16px;
    max-width: 900px;
    margin: auto;
}

.page-template-homepage .content_types_wrapper .content_types_container {
    width: calc((100%/2) - 20px);
    display: flex;
    margin-bottom: 0;
    background: #fff;
    border-radius: 4px;
    padding: 16px 24px;
    align-items: center;
    box-shadow: 0 20px 20px 0 rgba(76, 86, 115, .1);
    flex: 1 0 350px;
}

.page-template-homepage .content_types_wrapper .content_types_container>div:nth-child(2) {
    padding: 5px 20px;
}

.page-template-homepage h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.page-template-homepage .content_types_wrapper .content_types_container li::before {
    width: 8px;
    height: 8px;
    -webkit-mask: unset;
    mask: unset;
    background: var(--light);
    top: 11px;
    border-radius: 50%;
}

.page-template-homepage .content_types_wrapper .content_types_container li {
    border-bottom: unset;
    padding: 3px 18px;
}

.page-template-homepage .list_types_container {
    display: none;
}

.hp_solutions_wrapper {
    background: var(--gradient-bg);
    color: #fff;
}

.hp_solutions_wrapper h2 {
    color: #fff !important;
}

.hp_solutions_wrapper .solutions_wrapper>div:nth-child(2) {
    flex: .5;
}

.hp_solutions_wrapper .solutions_wrapper {
    align-items: start;
    padding: 60px 0;
}

.page-template-homepage .hp_brands .composer_wrapper {
    padding-bottom: 40px;
}

.ai_cta {
    background: #000;
    color: #fff;
    position: relative;
    text-align: center;
    height: max(400px, 50vh);
}

.ai_cta h2 {
    font-size: 42px;
    margin: 0 auto 15px;
    line-height: 48px;
    text-shadow: 0 0 66px black;
}

.ai_cta_slider {
    height: 100%;
}

.ai_cta_text {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 20;
}

.ai_cta .buttons {
    justify-content: center;
}

.cta_slide {
    position: relative;
}

.cta_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta_slide:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    box-shadow: inset 0px 0px 10vw black;
}

.ai_cta .composer_wrapper {
    height: 100%;
}

.ai_cta .composer_wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    box-shadow: inset 0px 0px 10vw black;
    background: rgba(0, 0, 0, .33);
    transition: all 500ms ease;
}

.ai_cta .composer_wrapper:hover:after {
    box-shadow: none;
    background: rgba(0, 0, 0, 0);
}

.cta_enterprise {
    background: var(--gradient-bg);
    height: auto;
    padding: 50px 0;
}

.enterprise_cta_text {
    position: relative;
    max-width: 900px;
    height: 100%;
    margin: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 20;
}

.basic_cta {
    position: relative;
    text-align: center;
    color: var(--text-color);
    padding: 70px 0 0;
}

.basic_cta h2 {
    font-size: 42px;
    margin: 0 auto 15px;
    line-height: 48px;
    font-weight: 700;
}

.basic_cta .buttons {
    justify-content: center;
}

.basic_cta .reassurance {
    /* width: 70%;
    min-width: 400px;
    margin: 0 auto; */
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-weight: bold;
    text-align: left;
}

.basic_cta .reassurance .fa-check {
    color: #00BC7E;
}

@media all and (max-width:900px) {
    .basic_cta .reassurance {
        flex-direction: column;
        text-align: center;
    }
}

@media all and (min-width:1025px) {
    .testimonials_wrapper {
        display: flex;
        gap: 30px;
    }
}

@media (min-width: 900px) {
    .home_header_wrapper {
        padding-top: 120px;
    }
}

.page-template-homepage .cs_quote {
    background: #fff;
    border-radius: 6px;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.page-template-homepage .hp_faq {
    padding-top: 0;
}

.page-template-homepage .accordion_faq {
    max-width: 800px !important;
}

.home_header_wrapper .top_content {
    text-align: left;
}

@media all and (min-width:900px) {
    .home_header_content {
        display: flex;
        gap: 40px;
    }
}

.home_header_content>div {
    flex: 1;
}

.page-template-homepage .home_header_content h1 {
    font-size: clamp(32px, 6vw, 56px);
}

.page-template-homepage .home_header_content .subtitle {
    font-size: clamp(18px, 5vw, 1.2em);
}

.home_header_content div.buttons {
    justify-content: start;
}

.home_header_content a.generic_button {
    font-size: 16px;
}

.top_image_single {
    position: relative;
    padding-left: 20px;
}

.top_image_single .bg-image {
    border-radius: 10px;
    display: block;
}

.top_chat {
    position: absolute;
    top: 10%;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    font-size: min(15px, 3vw);
    line-height: 1.2;
}

.top_chat>div {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.5);
    padding: min(12px, 1.5vw);
    border-radius: 8px;
    align-self: flex-start;
    width: max(50%, 190px);
    display: flex;
    gap: 6px;
}

.top_chat>div:nth-child(2n) {
    position: relative;
    left: 7%;
}

.top_chat .profile {
    flex: 0 0;
    flex-basis: min(30px, 5vw);
}

.top_chat .profile img {
    border-radius: 50%;
}

.top_chat .generated {
    mask-image: linear-gradient(to bottom, white, transparent);
    overflow: hidden;
    padding: 4px;
    border-top: 1px solid #808080;
    font-size: .86em;
    max-height: 50px;
    margin-top: 6px;
    opacity: .7;
    background: #565656;
}

.top_image {
    padding-bottom: 20px;
}

@media all and (max-width:580px) {
    .top_chat {
        top: 3px !important;
        gap: 3px;
    }

    .top_image_single {
        padding-bottom: 40px;
    }
}

.top_image,
.top_image * {
    min-width: 0;
}

.top_image_single .caption {
    font-size: 13px;
    padding: 10px;
    bottom: 0;
    right: 0;
    position: absolute;
    text-shadow: 2px 2px 14px #000;
}

.top_image_slider ul.slick-dots li button::before {
    color: #fff;
}

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: .666s all ease;
}

.reveal.animated {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1s;
}

.reveal.animated.wait:nth-child(2) {
    transition-delay: 2s;
}

.reveal.animated.wait:nth-child(3) {
    transition-delay: 3s;
}

.reveal.animated.wait:nth-child(4) {
    transition-delay: 4s;
}

.top_image_slider:not(.slick-initialized)>div:not(:first-of-type) {
    display: none;
}

.gradient-wrapper {
    background: var(--gradient-bg);
}

ul.flex {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0;
    display: flex;
    gap: 32px;
}

@media (max-width: 1024px) {
    ul.flex {
        flex-direction: column;
    }
}

.boxes {
    display: flex;
    gap: 32px;
}

.boxes.vertical {
    flex-direction: column;
}

.box {
    flex: 1;
    list-style: none;
    color: #000;
    font-size: 16px;
    line-height: 1.3;
    position: relative;
    padding: 32px;
    text-align: center;
    background: #faf8f6;
    border-radius: 10px;
    color: #000;
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, .1);
    transition: all .2s;
}

.box:hover {
    transform: scale(1.05);
}

.box h4 {
    color: var(--ultraviolet);
}

.box p {
    margin: 0;
}

ul.flex.small-numbers li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin-bottom: 20px;
}

.box h3 {
    font-size: clamp(22px, 6vw, 2.5em);
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.vertical .box {
    text-align: left;
    display: flex;
    gap: 24px;
    align-items: start;
    width: 90%;
}

@media all and (max-width:480px) {
    .vertical .box {
        flex-direction: column;
    }
}

.vertical .box:nth-child(even) {
    align-self: flex-end;
}

.vertical .box img {
    mix-blend-mode: darken;
    width: 60px;
    height: auto;
    margin: 0;
}
.small-boxes {
    gap: 20px;
    flex-wrap: wrap;
}

.small-boxes .box{
    flex: 1 0 350px;
    text-align: left;
    padding: 20px;
    display: flex;
    gap: 12px;
}

.small-boxes .box img{
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
    mix-blend-mode: darken;
}

.top-number {
    display: flex;
    justify-content: flex-end;
    font-size: clamp(22px, 9vw, 54px);
    font-weight: 900;
    align-items: center;
    border-top: 4px solid;
    margin-top: 10px;
    color: var(--ultraviolet);
}

.top-number .purecounter {
    font-size: 150%;
}

.sub-number {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    text-align: left;
}

.text-left {
    text-align: left;
}

.bluette-bg {
    background: var(--bluette);
}

.bluette-bg .composer_txt_img-bkg.only_text h2 {
    font-size: 50px;
    color: #fff;
}

.bluette-bg .composer_txt_img-bkg.only_text>div>div {
    color: #fff;
}

/* use this class in a Composer's element class placeholder if the element is the first and you dont want the space above */
.composer_cols_container.cancel-page-wrapper-padding-top {
    margin-top: -30px;
}