/*********************
START: PUBLIC
*********************/
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    direction: var(--direction);
    overflow-x: hidden !important;
    overscroll-behavior-x: none;
}

/* title & text */
.supTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    line-height: auto;
    letter-spacing: 0px;
    border-radius: 21px;
    padding: 0.25rem 0.75rem;
    text-transform: uppercase;
    width: max-content;
}

.supTitle--dark {
    color: var(--baseDark-color);
    border: 1px solid var(--baseDark-color);
}

.supTitle--light {
    color: var(--baseLight-color);
    border: 1px solid var(--baseLight-color);
}

/* font-size: 64px; */
.title--middle {
    font-size: 64px;
    font-weight: 500;
    font-style: normal;
    line-height: 68px;
    letter-spacing: -2.02px;
}

/* font-size: 52px; */
.title--small {
    font-size: 52px;
    font-weight: 500;
    line-height: 60px;
    font-style: normal;
    letter-spacing: -2.02px;
}

/* font-size: 48px; */
.title--XSmall {
    font-size: 48px;
    font-weight: 500;
    line-height: auto;
    font-style: normal;
    letter-spacing: -2.02px;
}

/* font-size: 24px; */
.text--middle {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.2px;
    font-style: normal;
}

/*********************
END: PUBLIC
*********************/


/*********************
START: HERO
*********************/
.hero {
    background: linear-gradient(to right, rgba(100, 32, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 1) 51%, rgba(255, 255, 255, 0.1) 75%, rgba(0, 196, 204, 0.15) 100%);
}

.hero--content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin-inline: auto;
    height: 100vh;
}

.hero--supTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    line-height: auto;
    letter-spacing: 0px;
    border-radius: 21px;
    padding: 0.25rem 0.75rem;
    text-transform: uppercase;
    color: var(--baseDark-color);
    border: 1px solid var(--baseDark-color);
    background-color: var(--baseLight-color);
}

.hero--logo {
    margin-block: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero--logo .rechat {
    width: 105.47px;
    height: 23.44px;
}

.hero--logo .canva {
    width: 87.32px;
    height: 28px;
}

.verticalLine {
    height: 100%;
    width: 0.47px;
    margin-inline: 0.75rem;
    background-color: rgba(0, 0, 0, 0.2);
}

.hero--content>p {
    margin-block: 1.5rem 2rem;
}

.hero--btn {
    column-gap: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero--btn .btn--outline__black img {
    margin-inline-end: 0.25rem;
}

.hero--btn .btn--outline__black span {
    font-size: var(--text-base);
    margin-inline-start: 1rem;
    line-height: auto;
    letter-spacing: 0px;
    color: rgba(0, 0, 0, 0.5);
}

/*********************
END: HERO
*********************/

/*********************
START: VIDEO
*********************/
.video {
    padding-block: 8rem;
}

.video--content {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    border-radius: var(--border-radius-16);
}

.video--content video,
.video--content iframe {
    width: 100%;
    border-radius: var(--border-radius-16);
}

/*********************
END: VIDEO
*********************/

/*********************
START: STEPS
*********************/
.steps {
    padding-block: 8rem;
}

.steps--content {
    max-width: 1200px;
    margin-inline: auto;
}

.steps--content ul {
    row-gap: 2rem;
    margin-block-start: 4rem;
    display: flex;
    justify-content: space-between;
}

.steps--content ul li {
    width: 31.5%;
    position: relative;
    height: 500px;
    padding: 1.5rem 1.5rem 0 1.5rem;
    display: flex;
    overflow: hidden;
    row-gap: 5rem;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--border-radius-16);
    background: linear-gradient(to bottom, rgba(245, 245, 247, 1) 0%, rgba(222, 222, 222, 1) 0%);
}

.steps--content ul li span {
    font-weight: 400;
    font-size: var(--text-xl);
    line-height: auto;
    letter-spacing: 0px;
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.7);
}

.steps--content ul li p {
    font-weight: 500;
    font-size: 26px;
    line-height: 34px;
    letter-spacing: -0.2px;
    color: var(--baseDark-color);
    margin-block-start: 0.75rem;
}

.steps--content ul li img,
.steps--content ul li video {
    min-height: 430px;
    position: absolute;
    left: 50%;
    width: calc(100% - 48px);
    transform: translateX(-50%);
    top: 40%;
}

/*********************
END: STEPS
*********************/


/*********************
START: COMMENTS
*********************/
.comment {
    padding-block: 9.375rem;
}

.comment--content {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
}

.comment--avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.comment--opinion {
    font-size: 48px;
    line-height: 58px;
    font-weight: 500;
    letter-spacing: -1.7px;
    color: var(--baseDark-color);
    margin-block: 2rem;
    max-width: 890px;
}

.comment--post {
    font-size: var(--text-lg);
    line-height: 32px;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: var(--baseDark-color);
}

.comment--logo {
    max-width: 90px;
    width: 100%;
    margin-block-start: 1.5rem;
}

/*********************
END: COMMENTS
*********************/


/*********************
START: AVAILABLE
*********************/
.available {
    padding-block: 8rem;
    background-color: #F8F8F8;
}

.available--content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin-inline: auto;
}

.available--text {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.available--form {
    width: 100%;
    max-width: 516px;
}

/*********************
END: AVAILABLE
*********************/


/*********************
START: PRESENTATION
*********************/
.presentation {
    background-color: var(--baseDark-color);
}

.presentation ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 8rem;
    max-width: 1200px;
    margin-inline: auto;
}

.presentation ul li:nth-child(odd) {
    flex-direction: row;
}

.presentation ul li:nth-child(even) {
    flex-direction: row-reverse;
}

.presentation ul li:nth-child(1) img,
.presentation ul li:nth-child(1) video {
    max-width: 488.8px;
    width: 100%;
}

.presentation ul li:nth-child(2) img {
    max-width: 669px;
    width: 100%;
}

/*********************
END: PRESENTATION
*********************/

/*********************
START: COMING SOON
*********************/
.comingSoon {
    padding-block: 8rem;
    background-color: var(--baseDark-color);
}

.comingSoon--content {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comingSoon--text {
    max-width: 338px;
    margin-inline-end: 4rem;
}

.comingSoon--text h4 {
    margin-block: 1rem;
}

.comingSoon--text p {
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 0.6);
}

.comingSoon--img img {
    width: 100%;
    max-width: 750px;
}

/*********************
END: COMING SOON
*********************/


/*********************
START: AWARDS
*********************/
.awards {
    position: relative;
    padding-block: 8rem;
    background-color: var(--baseDark-color);
}

.awards--content {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 4rem;
}

.awards--content img {
    max-width: 978px;
    width: 100%;
    margin-inline: auto;
}

.awards::before {
    top: -30%;
    left: 50%;
    content: "";
    width: 100%;
    height: 125%;
    position: absolute;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-image: url("../img/canva-integration/bg-awards.svg");
}

/*********************
END: AWARDS
*********************/


/*********************
START: MARKETING
*********************/
.marketing {
    background-color: #F5F5F5;
    padding-block: 277px 353px;
}

.marketing--content {
    max-width: 1200px;
    margin-inline: auto;
}

.marketing--content>p {
    margin-block: 1.5rem 2rem;
}

.marketing--btn {
    column-gap: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marketing--btn .btn--outline__black img {
    margin-inline-end: 0.25rem;
}

.marketing--btn .btn--outline__black span {
    font-size: var(--text-base);
    margin-inline-start: 1rem;
    line-height: auto;
    letter-spacing: 0px;
    color: rgba(0, 0, 0, 0.5);
}

/*********************
END: MARKETING
*********************/


/*********************
START: FOOTER
*********************/
footer {
    padding-block-end: 3rem;
    background-color: #F5F5F5;
}

.footer--content {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 1.5rem;
    column-gap: 1.5rem;
}

.footer--content p {
    color: rgba(0, 0, 0, 0.5);
}

.footer--content p,
.footer--social ul li a {
    font-weight: 400;
    font-size: var(--text-lg);
    line-height: auto;
    letter-spacing: -0.2px;
}

.footer--social ul {
    display: flex;
    align-items: center;
    column-gap: 4rem;
    row-gap: 1.5rem;
}

.footer--social ul li a {
    color: var(--baseDark-color);
}

/*********************
END: FOOTER
*********************/



/*********************
START: MEDIA
*********************/
@media screen and (max-width: 1200px) {

    /* public */
    .title--middle {
        font-size: 60px;
    }

    /* comment */
    .comment--opinion {
        font-size: 43px;
    }

    /* comingSoon */
    .comingSoon--text {
        margin-inline-end: 3rem;
    }

    /* awards */
    .awards::before {
        content: unset;
    }
}

@media screen and (max-width: 992px) {

    /* public */
    .title--middle {
        font-size: 55px;
    }

    /* comment */
    .comment--opinion {
        font-size: 40px;
    }

    /* steps */
    .steps--content ul {
        flex-wrap: wrap;
    }

    .steps--content ul li {
        width: 48%;
    }

    .steps--content ul li:nth-child(3) {
        margin-inline: auto;
    }


    /* available */
    .available--content {
        flex-direction: column;
        row-gap: 3.625rem;
        justify-content: center;
    }

    /* presentation */
    .presentation ul li {
        row-gap: 4rem;
        flex-direction: column !important;
    }

    .presentation ul li .title--middle {
        text-align: center;
    }

    /* comingSoon */
    .comingSoon--text {
        margin-inline-end: 2rem;
    }
}

@media screen and (max-width: 768px) {

    /* public */
    .title--middle {
        font-size: 50px;
    }

    /* comment */
    .comment--opinion {
        font-size: 36px;
    }

    /* comingSoon */
    .comingSoon--content {
        row-gap: 4rem;
        flex-direction: column;
    }

    .comingSoon--text {
        max-width: unset;
        text-align: center;
        margin-inline-end: 0;
    }

    .comingSoon--text .supTitle--light {
        margin-inline: auto;
    }

    /* footer */
    .footer--social ul {
        column-gap: 3rem;
    }
}

@media screen and (max-width: 576px) {

    /* public */
    .title--middle,
    .title--small,
    .title--XSmall {
        font-size: 42px;
        line-height: 48px;
        letter-spacing: -1px;
    }

    .text--middle {
        line-height: 28px;
        letter-spacing: 0px;
    }

    /* hero */
    .hero--logo {
        margin-block: 1.5rem;
    }

    .hero--btn,
    .marketing--btn {
        row-gap: 1.5rem;
        flex-direction: column;
    }

    .hero--btn .btn,
    .marketing--btn .btn {
        min-width: 213px;
    }

    /* video */
    .video {
        padding-block: 2rem;
    }

    .video--content {
        height: 200px;
    }

    /* comment */
    .comment {
        padding-block: 4rem;
    }

    .comment--opinion {
        font-size: 32px;
        line-height: 42px;
        letter-spacing: -1px;
    }

    .comment--post {
        font-size: var(--text-base);
        line-height: auto;
        letter-spacing: 0;
    }


    /* steps */
    .steps {
        padding-block: 4rem;
    }

    .steps--content ul li {
        width: 100%;
        row-gap: 2.5rem;
    }

    .steps--content ul li img,
    .steps--content ul li video {
        min-height:unset;
        position: unset;
        left: unset;
        transform: unset;
        top: unset;
        width: 100%;
    }

    /* available */
    .available {
        padding-block: 4rem;
    }

    /* presentation */
    .presentation ul li {
        padding-block: 4rem;
    }

    /* comingSoon */
    .comingSoon {
        padding-block: 4rem;
    }


    .awards {
        padding-block: 4rem;
    }

    .awards::before {
        content: unset;
    }


    /* marketing */
    .marketing {
        padding-block: 144.5px;
    }

    /* footer */
    footer {
        padding-block-end: 2rem;
    }

    .footer--content {
        align-items: flex-start;
        flex-direction: column-reverse;
    }

    .footer--social ul {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media screen and (max-width: 385px) {

    /* public */
    .title--middle {
        font-size: 40px;
    }
}

/*********************
END: MEDIA
*********************/