body.portfolio-template-default {
    overflow: unset;
}

/* cs prologue */
.section-cs-prologue {
    padding: 100px 0;
}

@media only screen and (max-width: 1024px) {
    .section-cs-prologue {
        padding: 48px 0;
    }
}

.section-cs-prologue h2,
.section-cs-prologue h3,
.section-cs-prologue h4,
.section-cs-prologue p {
    color: var(--color_gray_900);
}

.section-cs-prologue h4 {
    margin-top: 20px;
}

.section-cs-prologue .prologue-top,
.section-cs-prologue .prologue-bottom {
    display: flex;

    gap: 130px;
}

@media only screen and (max-width: 1024px) {
    .section-cs-prologue .prologue-top,
    .section-cs-prologue .prologue-bottom {
        flex-wrap: wrap;

        gap: 80px;
    }
}

@media only screen and (max-width: 460px) {
    .section-cs-prologue .prologue-top {
        gap: 96px;
    }

    .section-cs-prologue .prologue-bottom {
        gap: 72px;
    }
}

.section-cs-prologue .prologue-top > div,
.section-cs-prologue .prologue-bottom > div {
    flex: 0 1 50%;
}

@media only screen and (max-width: 1024px) {
    .section-cs-prologue .prologue-top > div,
    .section-cs-prologue .prologue-bottom > div {
        flex: 0 0 100%;
    }
}

.section-cs-prologue .prologue-mockup img {
    animation: floatImg 5s ease-in-out infinite;
}

@media only screen and (max-width: 1024px) {
    .prologue-mockup {
        order: 1;

        text-align: center;
    }

    .prologue-mockup img {
        width: auto;
        max-width: 100%;
        max-height: 70vh;
    }
}

.prologue-feat .prologue-bold-p {
    max-width: 506px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 1024px) {
    .prologue-feat .prologue-bold-p {
        margin-bottom: 32px;
    }
}

.prologue-feat .prologue-year {
    opacity: 0.1;
}

@media only screen and (max-width: 1024px) {
    .prologue-feat .prologue-year {
        margin-bottom: 48px;
    }
}

@media only screen and (max-width: 460px) {
    .prologue-feat .prologue-year {
        margin-bottom: unset;
    }
}

.prologue_text h2,
.prologue_text p:not(:last-child) {
    margin-bottom: 40px;
}

@media only screen and (max-width: 1024px) {
    .prologue_text {
        padding-top: 48px;
    }

    .prologue_text h2,
    .prologue_text p:not(:last-child) {
        margin-bottom: 24px;
    }
}

@media only screen and (max-width: 460px) {
    .prologue_text {
        padding-top: 0;
    }
}

.prologue-numbers {
    margin-top: 68px;
    padding-bottom: 100px;
}

@media only screen and (max-width: 1024px) {
    .prologue-numbers {
        margin-top: 74px;
        padding-bottom: 72px;
    }
}

.prologue-number-item:not(:last-child) {
    margin-bottom: 40px;
}

@media only screen and (max-width: 1024px) {
    .prologue-number-item:not(:last-child) {
        margin-bottom: 56px;
    }
}
/* /cs prologue */


/* cs challenges */
.section-cs-challenges {
    padding: 100px 0;

    color: var(--white);
    background: #1F1F1F;
}

@media only screen and (max-width: 1024px) {
    .section-cs-challenges {
        padding: 48px 0;
    }
}

.challenges-main-heading {
    margin-bottom: 40px;
}

@media only screen and (max-width: 1024px) {
    .challenges-main-heading {
        margin-bottom: 32px;
    }
}

.challenges-top-content,
.challenges-bottom-content {
    display: flex;

    column-gap: 130px;
}

.challenges-top-content {
    margin-bottom: 130px;
}

.challenges-top-content > div,
.challenges-bottom-content > div {
    flex: 0 1 50%;
}

.challenges-top-content h3,
.challenges-bottom-content h3 {
    margin-bottom: 40px;
}

@media only screen and (max-width: 1280px) {
    .challenges-top-content,
    .challenges-bottom-content {
        column-gap: 80px;
    }

    .challenges-top-content {
        margin-bottom: 80px;
    }
}

@media only screen and (max-width: 1024px) {
    .challenges-top-content,
    .challenges-bottom-content {
        flex-wrap: wrap;

        row-gap: 32px;
    }

    .challenges-top-content {
        margin-bottom: 32px;
    }

    .challenges-top-content > div,
    .challenges-bottom-content > div {
        flex: 0 0 100%;
    }

    .challenges-top-content h3,
    .challenges-bottom-content h3 {
        margin-bottom: 24px;
    }
}

.challenges-content .challenges-color-heading {
    margin-bottom: 20px;

    color: #B854FF;
}

.challenges-content > div {
    margin-bottom: 36px;
}

.challenges-content > div:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
    .challenges-content > div {
        margin-bottom: 32px;
    }
}

.challenges-content h4 {
    margin-bottom: 8px;

    font-size: 18px;
}

@media only screen and (max-width: 1024px) {
    .challenges-content h4 {
        margin-bottom: 24px;

        font-size: 16px;
    }
}

.challenges-content p {
    margin-bottom: 22px;

    font-size: 11px;
    line-height: 14px;
}

@media only screen and (max-width: 1024px) {
    .challenges-content p {
        margin-bottom: 32px;
    }
}

.challenges-content .challenges-color-grey {
    color: #B9B9BA;
}

.challenges-content img {
    max-width: 100%;
}

.challenges-content img.challenges-img-mobile {
    display: none;
}

@media only screen and (max-width: 460px) {
    .challenges-content img.challenges-img {
        display: none;
    }

    .challenges-content img.challenges-img-mobile {
        display: block;
    }
}

/* /cs challenges */


/* cs solution */
.section-cs-solution {
    padding: 100px 0;

    color: var(--color_gray_900);
}

@media only screen and (max-width: 1024px) {
    .section-cs-solution {
        padding: 48px 0;
    }
}

.solution-main-heading {
    margin-bottom: 80px;
}

@media only screen and (max-width: 1024px) {
    .solution-main-heading {
        margin-bottom: 60px;
    }
}

.solution-wrapper {
    display: flex;

    gap: 130px;
}

@media only screen and (max-width: 1280px) {
    .solution-wrapper {
        gap: 80px;
    }
}

@media only screen and (max-width: 1024px) {
    .solution-wrapper {
        flex-wrap: wrap;

        gap: 60px;
    }
}

.solution-wrapper > div {
    flex: 0 1 50%;
}

@media only screen and (max-width: 1024px) {
    .solution-wrapper > div {
        flex: 0 0 100%;
    }
}

.solution-content {
    display: flex;
    flex-direction: column;

    gap: 80px;
}

.solution-content h3 {
    margin-bottom: 20px;
}

@media only screen and (max-width: 1024px) {
    .solution-content {
        gap: 32px;
    }

    .solution-content h3 {
        margin-bottom: 24px;
    }
}

.solution-image {
    position: relative;
}

@media only screen and (max-width: 1024px) {
    .solution-image {
        order: -1;
    }
}

.solution-image img {
    position: sticky;
    top: 90px;

    width: 100%;
}

.solution-cta {
    margin-top: 100px;

    text-align: center;
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 1024px) {
    .solution-cta {
        margin-top: 96px;
    }
}
/* /cs solution */


/* cs services */
.section-cs-services {
    padding: 100px 0;

    color: var(--white);
    background: #1F1F1F;
}

@media only screen and (max-width: 1024px) {
    .section-cs-services {
        padding: 48px 0;
    }
}

.section-cs-services .wrapper-cs {
    display: flex;

    column-gap: 130px;
}

.section-cs-services .wrapper-cs > div {
    flex: 0 1 50%;
}

@media only screen and (max-width: 1280px) {
    .section-cs-services .wrapper-cs {
        column-gap: 80px;
    }
}

@media only screen and (max-width: 1024px) {
    .section-cs-services .wrapper-cs {
        flex-wrap: wrap;

        gap: 32px;
    }

    .section-cs-services .wrapper-cs > div {
        flex: 0 0 100%;
    }
}

.services-main-heading {
    margin-bottom: 80px;
}

@media only screen and (max-width: 1024px) {
    .services-main-heading {
        margin-bottom: 32px;
    }
}

.services-items {
    display: flex;

    column-gap: 16px;
}

.services-items > div {
    flex: 0 1 50%;
}

@media only screen and (max-width: 1024px) {
    .services-items {
        flex-wrap: wrap;

        gap: 32px;
    }

    .services-items > div {
        flex: 0 0 100%;
    }
}

.services-items p:first-child {
    margin-bottom: 40px;

    font-weight: var(--font_weight--semibold);
}

@media only screen and (max-width: 1024px) {
    .services-items p:first-child {
        margin-bottom: 32px;
    }
}

.services-items p {
    font-size: var(--cs_body_font_size);
    font-weight: var(--cs-font_weight--light);
    line-height: var(--cs_line-height_xxl);
}

@media only screen and (max-width: 460px) {
    .services-items p {
        font-size: var(--cs_body_mobile_font_size);
    }
}
/* /cs services */


/* cs results */
.section-cs-results {
    padding: 100px 0;

    color: var(--white);
    background: #1F1F1F;
}

@media only screen and (max-width: 1024px) {
    .section-cs-results {
        padding: 48px 0;
    }
}

.results-main-heading {
    margin-bottom: 100px;
}

@media only screen and (max-width: 1024px) {
    .results-main-heading {
        margin-bottom: 32px;
    }
}

.results-content {
    display: flex;
    flex-wrap: wrap;

    column-gap: 130px;
    row-gap: 100px;
}

@media only screen and (max-width: 1280px) {
    .results-content {
        column-gap: 80px;
        row-gap: 80px;
    }
}

.results-content > div {
    flex: 0 1 calc(50% - 65px);
}

@media only screen and (max-width: 1280px) {
    .results-content > div {
        flex: 0 1 calc(50% - 40px);
    }
}

@media only screen and (max-width: 1024px) {
    .results-content > div {
        flex: 0 0 100%;
    }
}

.results-color-heading {
    color: #B854FF;
}

.results-content h3 {
    margin-bottom: 8px;
}

.results-content h4 {
    margin-bottom: 16px;

    font-size: 18px;
}

@media only screen and (max-width: 1024px) {
    .results-content h4 {
        font-size: 16px;
    }
}

.results-content p,
.results-content li {
    font-size: var(--cs_body_font_size);
    font-weight: var(--cs-font_weight--light);
    line-height: var(--cs_line-height_xxl);
}

@media only screen and (max-width: 460px) {
    .results-content p,
    .results-content li {
        font-size: var(--cs_body_mobile_font_size);
    }
}

.results-content ul {
    margin-bottom: 30px;
    padding-left: 25px;

    list-style: disc;
}

.results-content .results-logos {
    margin-top: 15px;
}

.results-content img {
    max-width: 100%;
}

@media only screen and (max-width: 1024px) {
    .results-image {
        order: -1;
    }
}
/* /cs results */


/* cs more projects */
.section-cs-more-projects {
    overflow: hidden;

    padding: 100px 0;
}

@media only screen and (max-width: 768px) {
    .section-cs-more-projects {
        padding: 48px 0;
    }
}

.section-cs-more-projects h3 {
    margin-bottom: 40px;

    color: var(--color_gray_900);
}

@media only screen and (max-width: 768px) {
    .section-cs-more-projects h3 {
        margin-bottom: 32px;
    }
}

.more-projects-container {
    position: relative;

    width: 77%;
}

@media only screen and (max-width: 460px) {
    .more-projects-container {
        width: 100%;
    }
}

.section-cs-more-projects .owl-stage {
    display: flex;
}

.more-projects-item a,
.more-projects-item div {
    position: relative;

    display: block;
}

.more-projects-item a:before {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';
    transition: all var(--translation_duration);

    opacity: 0;
    background-color: inherit;
}

.more-projects-item a:hover:before {
    opacity: 0.4;
}

.more-projects-item a img,
.more-projects-item div img {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .more-projects-img {
        display: none;
    }
}

.more-projects-img-mobile {
    display: none;
}

@media only screen and (max-width: 768px) {
    .more-projects-img-mobile {
        display: block;
    }
}

.more-projects-item .more-project-item-title {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;

    max-width: calc(100% - 64px);
    padding: 20px 48px 5px 0;

    background-color: var(--c_neutral--25);
}

@media only screen and (max-width: 768px) {
    .more-projects-item .more-project-item-title {
        padding: 28px 16px 0px 0;

    }
}

.more-project-item-title .project-logo {
    max-width: 113px;
    margin-bottom: 10px;
}

.more-project-item-title p {
    position: relative;

    display: flex;
    align-items: center;

    text-transform: lowercase;

    color: var(--color_gray_900);
}

.more-project-item-title p span {
    display: block;

    width: 40px;
    height: 2px;

    content: '';
}

.more-project-item-title h4 {
    overflow: hidden;

    margin-top: 10px;

    white-space: nowrap;
    text-overflow: ellipsis;

    color: var(--color_gray_900);
}

@media only screen and (max-width: 768px) {
    .more-project-item-title h4 {
        white-space: unset;
    }
}

.section-cs-more-projects .owl-nav {
    position: absolute;
    top: calc(50% - (56px / 2));

    display: flex;

    width: 100%;
    height: 0;
}

.section-cs-more-projects .owl-nav .owl-next {
    margin-right: -1px;
    margin-left: auto;
}

.section-cs-more-projects .owl-nav button {
    padding: 0;

    cursor: pointer;

    border: none;
    background: transparent;
}

.section-cs-more-projects .owl-nav button.disabled {
    display: none;
}

.section-cs-more-projects .owl-nav button .arrow {
    display: block;

    width: 56px;
    height: 56px;

    transition: all var(--translation_duration);

    background-color: var(--white);
    background-repeat: no-repeat;
    background-position: center;

    position: relative;
    z-index: 1;
}

.section-cs-more-projects .owl-nav button .arrow:hover {
    background-color: var(--color_gray_200);
}

.section-cs-more-projects .owl-nav button .arrow.arrow-prev {
    background-image: url(../../img/shapes/cs-slider-arrow-right.svg);
    left: 1px;
}

.section-cs-more-projects .owl-nav button .arrow.arrow-next {
    background-image: url(../../img/shapes/cs-slider-arrow-left.svg);
    right: 1px;
}

.section-cs-more-projects .owl-dots {
    display: none;
}
/* /cs more projects */
