* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Red Hat Display", sans-serif;
    overflow-x: hidden;
}

/* Iframe styling */
#editor-iframe {
    width: 100%;
    height: 100vh;
    border: none;
    display: block;
    position: relative;
    z-index: 10;
    min-height: 800px;
}

body::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background-image: url('../images/website/pink-wave.svg'), url('../images/website/green-wave.svg');
    background-size: cover;
}

.hamburger {
    margin: 0;
    position: relative;
    z-index: 99;
    cursor: pointer;
    height: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media only screen and (min-width:600px) {

    .hamburger,
    .navbar-mobile {
        display: none !important;
    }
}

.hamburger .line {
    width: 22px;
    height: 3px;
    background: #70787d;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
}

.hamburger.isactive .line:nth-child(2) {
    opacity: 0;
}

.hamburger.isactive .line:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
    height: 3px;
}

.hamburger.isactive .line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    height: 3px;
}

.inner-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    gap: 20px;
}

.navbar-mobile.active {
    display: block;
    animation: fade .5s;
}

.navbar-mobile ul.main-nav-list {
    overflow: hidden;
    list-style-type: none;
    margin: 0;
    padding: 79px 0 0 0;
}

.navbar-mobile ul.main-nav-list li {
    display: block;
    margin: 0;
    width: 100%;
    transition: all 0.2s ease-in-out;
}

.navbar-mobile ul.main-nav-list li:hover {
    background: #bcf4e8;
}

.navbar-mobile ul.main-nav-list li a {
    color: #1A1A1A;
    text-decoration: none;
    font-size: 14px;
    transition: all .5s;
    text-transform: capitalize;
    font-weight: 400;
    width: 100%;
    display: block;
    padding: 10px 20px;
    font-weight: 600;
}

.navbar-mobile ul.main-nav-list li.active a {
    color: #0060DF;
    font-weight: 600;
}

.navbar-mobile {
    background: #FFF;
    box-shadow: 4px 0px 10px 0px rgba(0, 0, 0, 0.11);
    width: 250px;
    height: 100vh;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;

    @media only screen and (min-width:1075px) {
        display: none !important;
    }
}

.navbar-mobile.active {
    display: block;
    animation: fade .5s;
}

@keyframes fade {
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}


header {
    padding: 16px 24px;
    background-color: #FFFFFF;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 76px;
    border-bottom: 1px solid #E9E9E9;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.dropdown-link img, .dropdown-link-mobile img {
    margin-left: 8px;
}

.sub-nav-list {
    padding: 10px 0;
    position: absolute;
    top: 54px;
    right: -38px;
    background: #fff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.11);
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    display: none;

    li {
        list-style: none;

        a {
            padding-top: 5px;
            padding-bottom: 5px;
            display: block;
        }
    }
}

.sub-nav-list-mobile {
    top: 54px;
    right: -38px;
    background: #fff;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    display: none;

    li {
        list-style: none;

        a {
            padding-top: 5px;
            padding-bottom: 5px;
            display: block;
        }
    }
}

/* .dropdown-link:hover + .sub-nav-list{ display: block; } */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.logo .logo-text {
    font-weight: 800;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: -0.24px;
}

.navigation-links {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #2A2037;
    transition: all 0.3s ease-in-out;
}

.navigation-links a {
    padding: 8px 16px;
    font-size: 16px;
    line-height: 22px;
    text-decoration: none;
    color: #2A2037;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navigation-links a:hover {
    border-radius: 8px;
    background: #F2FFFD;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FFFFFF;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    top: 30px;
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content .list {
    background: none;
    border: none;
    outline: 0;
    padding: 7px 15px;
    width: 100%;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    font-family: "Red Hat Display", sans-serif;
}

.dropdown-content .list:hover {
    background: #bcf4e8;
}

/* .dropdown:hover .dropdown-content {
    display: block;
} */

.show {
    display: block;
}

main {
    width: 100%;
}

.gradient-text {
    background: linear-gradient(90deg, #35D4A2 0%, #00AAFF 30.29%, #DB2EC7 59.62%, #5D38DE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.creativity-title-section {
    padding: 32px 20px 64px;
    background: url("../images/website/creativity-element-1.svg");
    background-repeat: no-repeat;
    background-position: top 14px right 9px;
    background-size: auto;
}

.creativity-title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.creativity-title-wrapper .creativity-icon {
    max-width: 599px;
    max-height: 56px;
    width: 100%;
    height: auto;
    margin-bottom: 32px;
}

.creativity-title-wrapper .title {
    font-size: 48px;
    line-height: 60px;
    background: linear-gradient(90deg, #35D4A2 0%, #0AF 30.29%, #DB2EC7 59.62%, #5D38DE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
}

.creativity-title-wrapper .title-body {
    font-size: 16px;
    line-height: 28px;
    color: #2A2037;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.creativity-section-one,
.creativity-section-two,
.creativity-section-three,
.creativity-section-four {
    display: flex;
    justify-content: center;
    padding: 128px 20px;
    gap: 105px;
}

.creativity-section-two,
.creativity-section-three,
.creativity-section-four {
    display: flex;
    justify-content: center;
    padding: 119px 20px;
    gap: 105px;
}

/* .creativity-section-one {
    display: flex;
    justify-content: center;
    padding: 105px 20px 85px;
    gap: 105px;
}

.creativity-section-two {
    display: flex;
    justify-content: center;
    padding: 119px 20px;
    gap: 105px;
}

.creativity-section-three {
    display: flex;
    justify-content: center;
    padding: 141px 20px 50px;
    gap: 105px;
}

.creativity-section-four {
    display: flex;
    justify-content: center;
    padding: 141px 20px 50px;
    gap: 105px;
} */

.creativity-section-four {
    padding: 105px 20px;
}

.creativity-section-one {
    background: url("../images/website/pink-wave.svg"), url("../images/website/creativity-1-side.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: center center, top -68% left -49px;
    background-size: cover, auto;
    margin-top: -105px;
}

.creativity-section-two {
    background: url("../images/website/creativity-2-side.svg"), url("../images/website/gallery-element.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: top -100px right 0px, bottom 146px right;
    background-size: auto, auto;
    margin-top: -180px;
}

.creativity-section-three {
    background: url("../images/website/green-wave.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-top: -146px;
}

.creativity-section-four {
    background: url("../images/website/creativity-4-side.svg"), url("../images/website/gallery-element.svg"), url("../images/website/gallery-element.svg");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: top -100px right 0px, top 50% right, bottom 67px left;
    background-size: auto, auto, auto;
    margin-top: -67px;
}

.creativity-image-wrapper-one {
    margin-left: -64px;
}

.creativity-image-wrapper-three {
    margin-left: -56px;
}

.creativity-wrapper-one {
    max-width: 881px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 105px;
}

.creativity-wrapper-two {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 95px;
}

.creativity-wrapper-three {
    max-width: 901px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 141px;
}

.creativity-wrapper-four {
    max-width: 921px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 77px;
}

.creativity-section-one img,
.creativity-section-two img {
    max-width: 549px;
    max-height: 452px;
    width: 100%;
    height: 100%;
}

.creativity-section-three img {
    max-width: 360px;
    max-height: 423px;
    width: 100%;
    height: 100%;
    margin-top: 70px;
}

.creativity-section-four img {
    max-width: 468px;
    max-height: 389px;
    width: 100%;
    height: 100%;
}

.creativity-content {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.creativity-content-2 {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 90px;
}

.creativity-content-3 {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 136px;
}

.creativity-content-4 {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 57px;
}

.creativity-content-2 {
    max-width: 330px;
}

.feature-tag-1,
.feature-tag-2,
.feature-tag-3,
.feature-tag-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    border: 1px solid transparent;
}

.feature-tag-1 {
    width: 144px;
    background: linear-gradient(90deg, #C92484 0%, #7B42E3 100%) padding-box,
        linear-gradient(90deg, #FFA9EE 0%, #5D38DE 100%) border-box;
}

.feature-tag-2 {
    width: 173px;
    background: linear-gradient(90deg, #43BF98 0%, #5D38DE 100%) padding-box,
        linear-gradient(90deg, #43BF98 0%, #5D38DE 100%) border-box;
}

.feature-tag-3 {
    width: 175px;
    background: linear-gradient(90deg, #43BF98 0%, #10A31A 100%) padding-box,
        linear-gradient(90deg, #43BF98 0%, #10A31A 100%) border-box;
}

.feature-tag-4 {
    width: 202px;
    background: linear-gradient(90deg, #43BF98 0%, #5D38DE 100%) padding-box,
        linear-gradient(90deg, #43BF98 0%, #5D38DE 100%) border-box;
}

.feature-tag-1-text,
.feature-tag-2-text,
.feature-tag-3-text,
.feature-tag-4-text {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.28px;
    padding: 8px 0px;
    border-radius: 50px;
    width: 100%;
    text-align: center;
}

.feature-tag-1-text {
    background: #BA2A78;
}

.feature-tag-1-text span {
    background: linear-gradient(90deg, #FFF7FC 0%, #E8E2FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.feature-tag-2-text {
    background: #FFFFFF;
}

.feature-tag-2-text span {
    background: linear-gradient(90deg, #14B096 0%, #4725BE 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.feature-tag-3-text {
    background: #D9FFB3;
}

.feature-tag-3-text span {
    background: linear-gradient(90deg, #14B096 0%, #4F279B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.feature-tag-4-text {
    background: #FFFFFF;
    padding: 8px 16px;
    /* width: 100%; */
}

.feature-tag-4-text span {
    background: linear-gradient(90deg, #14B096 0%, #4626B6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.feature-title-white,
.feature-title-dark {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 46px;
    text-transform: capitalize;
}

.feature-title-white {
    color: #FFFFFF;
}

.feature-title-dark {
    color: #2A2037;
}

.feature-body-white,
.feature-body-grey {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding-right: 7px;
}

.feature-body-white {
    color: #FFFFFF;
}

.feature-body-grey {
    color: #797B82;
}

.try-now-one {
    width: 143px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: 1px solid #BA2A78;
    background: rgba(255, 255, 255, 0.94);
    color: #BA2A78;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-family: "Red Hat Display", sans-serif;
    transition: all 0.3s ease;

    &:hover {
        opacity: 0.8;
        transition: all 0.3s ease;
    }
}

.try-now-one:hover {
    background: #BA2A78;
    color: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.94);
}

.try-now-two {
    width: 143px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: 1px solid rgba(67, 191, 152, 0.94);
    background: rgba(255, 255, 255, 0.94);
    color: rgba(67, 191, 152, 0.94);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-family: "Red Hat Display", sans-serif;
    transition: all 0.3s ease;

    &:hover {
        opacity: 0.8;
        transition: all 0.3s ease;
    }
}

.try-now-two:hover {
    background: rgba(67, 191, 152, 0.94);
    color: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.94);
}

.try-now-three {
    width: 143px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: 1px solid #509729;
    background: rgba(255, 255, 255, 0.94);
    color: #509729;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-family: "Red Hat Display", sans-serif;
    transition: all 0.3s ease;

    &:hover {
        opacity: 0.8;
        transition: all 0.3s ease;
    }
}

.try-now-three:hover {
    background: #509729;
    color: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.94);
}

.try-now-four {
    width: 143px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: 1px solid #2D90BE;
    background: rgba(255, 255, 255, 0.94);
    color: rgba(45, 144, 190, 0.94);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-family: "Red Hat Display", sans-serif;
    transition: all 0.3s ease;

    &:hover {
        opacity: 0.8;
        transition: all 0.3s ease;
    }
}

.try-now-four:hover {
    background: #2D90BE;
    color: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.94);
}

.editing-title-section {
    padding: 96px 20px;
    background: url("../images/website/editing-element-1.svg"), url("../images/website/dotbg.svg"), url("../images/website/editing-element-2.svg");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: top 49% right 5%, bottom 52px left, bottom right 26%;
    background-size: auto, auto, auto;
}

.editing-title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.editing-title-wrapper .editing-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 32px;
}

.editing-title-wrapper .title {
    font-size: 48px;
    line-height: 60px;
    background: linear-gradient(90deg, #35D4A2 0%, #00AAFF 30.29%, #DB2EC7 59.62%, #5D38DE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
}

.editing-title-wrapper .title-body {
    font-size: 16px;
    line-height: 28px;
    color: #2A2037;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.editing-features-section {
    background: url("../images/website/editing-bg-element.webp"), url("../images/website/editing-bg.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: bottom 26px left 38%, center center;
    background-size: 46px 41px, cover;
    padding: 0 20px;
    margin-top: 14px;
}

.editing-features-section .features-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 66px;
    max-width: 1304px;
    margin: 0 auto;
    padding-top: 69px;
}

.features-wrapper.feature-row-two {
    gap: 40px;
    padding-bottom: 176px;
    padding-top: 0;
}

.editing-features-section .feature-inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-inner .feature-image {
    width: 100%;
    max-width: 290px;
    height: auto;
    position: relative;
}

.feature-inner .feature-image.four {
    max-width: 288px;
}

.feature-image img.main-image {
    width: 100%;
    height: 100%;
}

.feature-inner .feature-image.two {
    display: inline-block;
}

.feature-image.one .side-one {
    position: absolute;
    left: -24px;
    top: 50%;
    margin-top: -128px;
}

.feature-image.one .side-two {
    position: absolute;
    right: -24px;
    bottom: 0;
}

.feature-image.three .side-one {
    position: absolute;
    left: -55px;
    bottom: -74px;
}

.feature-image.four .side-one {
    position: absolute;
    left: -60px;
    bottom: 20px;
}

.editing-features-section .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
    max-width: 290px;
}

.editing-features-section .feature-title {
    color: #2A2037;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    text-transform: capitalize;
}

.editing-features-section .feature-description {
    color: #2A2037;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

.try-now-button {
    width: 111px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(67, 191, 152, 0.94);
    border: 1px solid #36A280;
    border-radius: 16px;
    color: #FFFFFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-family: "Red Hat Display", sans-serif;
    transition: all 0.3s ease;

    &:hover {
        background-color: #36A280;
        transition: all 0.3s ease;
    }
}

.try-now-button:hover {
    background: #36A280;
}

.try-now-button a {
    text-decoration: none;
    color: #FFFFFF;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Red Hat Display", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-transform: capitalize;
}

.gallery-section {
    padding: 120px 20px 95px;
    background: url("../images/website/gallery-element.svg"), url("../images/website/gallery-element.svg"), url("../images/website/articlesbg.svg");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: left center, right bottom 10%, top 60px right 11%;
    background-size: auto, auto, auto;
}

.gallery-wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

.gallery {
    column-count: 4;
    -webkit-column-count: 4;
    -moz-column-count: 4;
    gap: 1rem;
    margin-top: 56px;
    margin-bottom: 36px;

    .prompt {
        display: none;

        p {
            color: #FFF;
            font-family: "Red Hat Display";
            font-size: 12px!important;
            font-style: normal;
            font-weight: 500;
            line-height: 16px; /* 133.333% */
        }
    }


}

.gallery {
    .image {
        margin-bottom: 11px;
        transition: all 0.3s ease;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        position: relative;

        &.fixed-height {
            height: 330px;
        }
    
        &:hover {
            .prompt {
                padding: 16px;
                display: flex;
                position: absolute;
                bottom: 0;
                transition: all 0.4s ease-in-out;
                backdrop-filter: blur(40px);
                cursor: default;

                @media screen and (max-width: 1024px) {
                    display: none;
                }
            }
        }
    }
}

.image a {
    display: block;
    width: 100%;
    height: 100%;
}

.image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.gallery {
    .image {
        display: none;
    }
}
.latest-articles {
    display: block;
    background: url("../images/website/articlesbg.svg"), url("../images/website/dotbg.svg"), url("../images/website/dotbg.svg");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: top 58px center, top 98px right, bottom right;
    background-size: 443px 113px, 196px 79px, 196px 79px;
    padding: 172px 20px;
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
}

.wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.title-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.main-title {
    font-size: 34px;
    line-height: 42px;
    font-weight: 700;
    color: #2A2037;
}

.latest-articles .main-title .gradient-text {
    background: linear-gradient(90deg, #35D4A2 0%, #00AAFF 30.29%, #DB2EC7 59.62%, #5D38DE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.articles-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: left;
    margin-top: 64px;
}

.article-inner {
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.article-inner .image-wrapper {
    border-radius: 16px;
    max-width: 400px;
    max-height: 220px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.image-wrapper .image-overlay {
    border-radius: 16px;
    background: linear-gradient(107deg, #2A2037 2.67%, rgba(58, 44, 76, 0.10) 22.31%, rgba(120, 91, 157, 0.00) 97.68%);
    width: 100%;
    display: block;
    height: 97%;
    position: absolute;
    top: 0%;
    background-size: auto;
}

.image-wrapper .time-wrapper {
    position: absolute;
    top: 16px;
    left: 16px;
    border-radius: 40px;
    background: #FFF;
    display: inline-flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    color: #2A2037;
    width: 73px;
    z-index: 2;
}

.article-inner img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.article-inner .article-title {
    font-size: 18px;
    line-height: 26px;
    color: #2A2037;
    font-weight: 700;
    margin: 24px 0 8px 0;
    width: 90%;
}

.article-inner .article-description-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.article-inner .article-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 43px;
    line-height: 20px;
    font-size: 14px;
    color: #797B82;
    flex: 1;
}

.article-inner .article-button {
    width: 48px;
    height: 48px;
    border-radius: 70px;
    border: 1px solid #36A280;
    background: #43BF98F0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    flex-shrink: 0;
}

.article-inner .article-button:hover {
    background: #36A280;
}

.article-inner .article-button img {
    width: 12px;
    height: 100%;
}

.tutorials-section {
    margin: 94px auto 43px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1280px;
}

.tutorials-section .main-title .gradient-text {
    background: linear-gradient(93.98deg, #FE34E4 7.55%, #4CE9AA 51.01%, #6C63EF 94.47%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.tutorials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(302px, 1fr));
    gap: 24px;
    max-width: 1288px;
    margin: 48px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tutorial-inner {
    background: linear-gradient(180deg, #FFFFFF 0%, #F3FFFD 100%);
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 302px;
    cursor: pointer;
}

.tutorial-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;

    iframe {
        position: relative !important;
    }
}

.tutorial-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-width: 266px;
    max-height: 140px;
}

.tutorial-content .tutorial-title {
    color: #2A2037;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 23px;
}

.load-more-button {
    width: 146px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #43BF98F0;
    border: 1px solid #36A280;
    border-radius: 16px;
    margin: 0 auto;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    text-align: center;
    transition: all 0.2s ease-in-out;
    font-family: "Red Hat Display", sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;

    &:hover {
        background-color: #36A280;
        transition: all 0.3s ease;
    }
}

.load-more-button:hover {
    background: #36A280;
}

.about-section {
    padding-top: 51px;
    position: relative;
}

.about-wrapper {
    background: linear-gradient(110.04deg, #605BF3 13.89%, #2929D3 83.59%);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.about-inner-wrapper {
    background: url("../images/website/about-left.svg"), url("../images/website/about-right.svg"), url("../images/website/about-blurbg1.svg"), url("../images/website/about-blurbg2.svg");
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: top left, bottom 38px right, top 17% left 10%, bottom 31% right 12%;
    background-size: auto, auto, 236px, 236px;
}

.about-inner {
    display: flex;
    justify-content: center;
    padding: 140px 20px 11px;
    gap: 16px;
    flex-wrap: wrap;
}

.about-inner img {
    max-width: 456px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-bg {
    width: 100%;
    height: 100%;
    position: relative;
    vertical-align: bottom;
    transform: translateY(1px);
}

.about-content {
    background: linear-gradient(296.65deg, #F2FFF3 -10.72%, #FFFFFF 86.34%);
    border-radius: 16px;
    padding: 32px;
    max-width: 588px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.sub-title {
    font-size: 16px;
    line-height: 22px;
    color: #36A280;
    letter-spacing: 0.32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-title {
    font-size: 34px;
    line-height: 42px;
    color: #2A2037;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-body {
    font-size: 14px;
    line-height: 22px;
    color: #2A2037;
    margin-top: 20px;
    font-weight: 500;
}

.element-one {
    position: absolute;
    top: 16px;
    left: 20%;
    width: 84px;
    height: 74px;
    z-index: 1;
}

.element-two {
    position: absolute;
    bottom: 15px;
    right: 15%;
    width: 85px;
    height: 101px;
    z-index: 1;
}

.footer-section {
    background: #39BEA9;
    background-size: cover;
    padding: 24px 20px;
    position: relative;
}

.footer-section ul {
    max-width: 1280px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section ul li {
    list-style: none;
    padding-right: 20px;
    height: 16px;
}

.footer-section ul li a {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footer-section ul li a:hover{
    text-decoration: underline;
}

/* Responsive Media Queries */
@media screen and (max-width: 1340px) {

    .feature-inner .feature-image,
    .editing-features-section .content-wrapper,
    .feature-inner .feature-image.four {
        max-width: 222px;
    }

    .editing-features-section .content-wrapper.feature-two-wrapper {
        margin-top: 0;
    }

    .editing-features-section .feature-inner {
        gap: 20px;
    }

    .feature-image.one .side-one {
        left: -16px;
        margin-top: -102px;
        width: 38px;
    }

    .feature-image.three .side-one {
        left: -45px;
        bottom: -57px;
        width: 175px;
    }

    .feature-image.four .side-one {
        left: -50px;
        width: 132px;
    }

    .editing-features-section .features-wrapper {
        gap: 20px;
    }
}

@media screen and (max-width: 1290px) {
    .tutorials-section {
        padding: 0 20px;
    }

    .tutorial-inner {
        max-width: 23%;
    }

    .tutorial-content img {
        max-width: 100%;
        max-height: 100%;
    }

    .element-two {
        right: 10%;
    }

    .articles-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(296px, 1fr));
    }

    .dNone {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .editing-title-wrapper .title {
        font-size: 42px;
        line-height: 50px;
    }

    .gallery {
        column-count: 3;
        -webkit-column-count: 3;
        -moz-column-count: 3;
    }
}

@media screen and (max-width: 1140px) {
    .about-inner img {
        max-width: 378px;
    }

    .about-content {
        padding: 20px;
    }
}

@media screen and (max-width: 1023px) {
    .title-wrapper {
        gap: 14px;
        flex-wrap: nowrap;
    }

    .title-wrapper img {
        width: 30px;
        height: auto;
    }

    .tutorial-inner {
        max-width: 48%;
    }

    header {
        padding: 15px 20px;
        gap: 40px;
    }

    /* .logo .logo-text {
        font-size: 14px;
    } */

    .navigation-links {
        gap: 20px;
    }

    .navigation-links a {
        font-size: 14px;
    }

    .creativity-title-wrapper .title,
    .editing-title-wrapper .title {
        font-size: 36px;
        line-height: 44px;
    }

    .creativity-section-one,
    .creativity-wrapper-one,
    .creativity-section-two,
    .creativity-wrapper-two,
    .creativity-section-three,
    .creativity-wrapper-three,
    .creativity-section-four,
    .creativity-wrapper-four {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0px;
        margin-top: 0;
        width: 100%;
        max-width: 100%;
        padding-top: 0;
        gap: 40px;
    }



    .creativity-section-one {
        padding: 20px 20px 35px;
    }

    .creativity-section-three {
        padding: 35px 20px;
    }

    .creativity-section-two,
    .creativity-section-four {
        padding: 50px 20px 35px 20px;
    }

    .creativity-section-one .creativity-content,
    .creativity-section-two .creativity-content-2,
    .creativity-section-three .creativity-content,
    .creativity-section-four .creativity-content-4,
    .creativity-image-wrapper-one,
    .creativity-image-wrapper-three {
        margin: 0;
        align-items: center;
    }

    .creativity-section-three img {
        margin-top: 0;
    }

    .creativity-section-one {
        background: #fb9daa;
    }

    .creativity-section-two {
        background-position: top 61% right -45px, bottom 50px right;
        background-size: 50%, auto;
    }

    .creativity-section-three {
        background: #84c046;
    }

    .creativity-section-four {
        background-position: top 53% right -46px, top 74% right, bottom 66px left;
        background-size: 50%, auto, auto;
    }

    .creativity-content,
    .creativity-content-2 {
        margin-top: 30px;
        align-items: center;
    }

    .feature-tag-1,
    .feature-tag-2,
    .feature-tag-3,
    .feature-tag-4 {
        margin: 0 auto;
    }

    .features-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .feature-inner {
        gap: 20px;
    }

    .content-wrapper {
        align-items: center;
    }

    .gallery {
        column-count: 2;
    }

    .tutorials-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-inner {
        padding: 80px 20px 11px;
    }

    .element-two {
        width: 15%;
    }

    .editing-features-section {
        background-position: bottom 56px left 40%, center center;
    }

    .editing-features-section .content-wrapper.feature-two-wrapper {
        margin-top: 0px;
    }

    .editing-features-section .features-wrapper {
        align-items: center;
    }

    .article-inner .image-wrapper, .article-inner {
        max-width: none;
        max-height: none;
    }

}

@media screen and (max-width: 992px) {

    .main-title {
        font-size: 28px;
        line-height: 36px;
    }

    .about-inner {
        padding: 80px 20px 11px;
    }
}

@media screen and (max-width: 600px) {
    .navigation-links {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .navigation-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 100;
    }

    .dropdown-content {
        position: initial;
        box-shadow: none;
        border-radius: 0;
    }

    .dropdown-content .list {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 768px) {
    .creativity-title-section {
        padding: 40px 20px;
    }

    .editing-title-section {
        padding: 40px 20px;
        background-size: auto, 30%, 9%;
    }

    .editing-title-wrapper .title {
        font-size: 32px;
        line-height: 40px;
    }

    .gallery {
        column-count: 2;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        margin-top: 36px;
    }

    .articles-wrapper {
        margin-top: 36px;
        grid-template-columns: repeat(2, 1fr);
    }

    .article-inner .article-title {
        font-size: 16px;
        line-height: 24px;
    }

    .gallery-section {
        padding: 50px 20px;
    }

    .latest-articles {
        padding: 50px 20px;
        background-size: 300px auto, 150px auto, 150px auto;
    }

    .tutorials-section {
        margin: 50px auto;
    }

    .about-content {
        padding: 24px 24px 60px 24px;
    }

    .about-title {
        font-size: 28px;
        line-height: 36px;
    }

    .main-title {
        font-size: 28px;
        line-height: 36px;
    }

    .tutorials-wrapper {
        margin-top: 36px;
    }

    .about-content {
        padding: 24px;
    }

    .element-two {
        height: 8%;
        bottom: -1%;
    }

    .element-one {
        top: 26px;
        width: 54px;
        height: 54px;
    }
}

@media screen and (max-width: 576px) {
    .creativity-section-two {
        background-position: top 66% right -11px, bottom 50px right;
    }

    .creativity-section-four {
        background-position: top 72% right -10px, top 74% right, bottom 66px left;
    }

    .editing-title-wrapper .title {
        font-size: 28px;
        line-height: 36px;
    }

    .main-title {
        font-size: 24px;
        line-height: 32px;
    }

    .tutorials-wrapper {
        grid-template-columns: 1fr;
    }

    .about-inner {
        padding: 60px 20px 11px;
    }

    .footer-section ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-section ul li {
        padding-right: 0;
    }

    /* .logo .logo-text {
        display: none;
    } */

    .creativity-title-wrapper .title,
    .editing-title-wrapper .title {
        font-size: 28px;
        line-height: 36px;
    }

    /* .element-one,
    .element-two {
        display: none;
    } */

    p {
        font-size: 15px !important;
        line-height: 18px !important;
    }

    .creativity-wrapper-one img,
    .creativity-wrapper-two img,
    .creativity-wrapper-three img,
    .creativity-wrapper-four img {
        width: 80%;
        height: auto;
    }

    .editing-title-wrapper .editing-icon {
        width: 45px;
        height: auto;
    }
}

@media screen and (max-width: 520px) {
    .editing-features-section {
        background: #e5dffb;
    }

    .editing-features-section .feature-inner {
        flex-direction: column;
    }

    .content-wrapper.feature-three-wrapper {
        margin-top: 30px;
    }

    .editing-features-section .features-wrapper {
        padding: 35px 0;
    }

    .feature-inner .feature-image.two {
        transform: none;
    }
}

@media screen and (max-width: 655px) {
    .tutorial-inner {
        max-width: 100%;
    }

    .articles-wrapper {
        grid-template-columns: 1fr;
        display: flex;
        flex-wrap: wrap;
    }

    .article-inner,
    .article-inner .image-wrapper {
        max-width: 100%;
        max-height: none;
    }

}

@media screen and (max-width: 400px) {

    .creativity-title-wrapper .title,
    .editing-title-wrapper .title {
        font-size: 24px;
        line-height: 32px;
    }

    .feature-title-white,
    .feature-title-dark {
        font-size: 24px;
        line-height: 32px;
    }

    .feature-body-white,
    .feature-body-grey {
        font-size: 14px;
        line-height: 20px;
    }
}

.show-mobile-menu {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 99;
}


/* FAQ CSS */

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.faq-wrapper {
    background: url("../images/website/faq-element-1.svg"), url("../images/website/faq-element-2.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: top -50px right 20%, center center;
    background-size: auto, auto;
    flex: 1;
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    color: #2A2037;
    padding: 50px 0 56px 0;
}

.faq-title .gradient-text {
    background: linear-gradient(90.08deg, rgba(67, 191, 152, 0.94) 58.54%, rgba(111, 53, 219, 0.94) 74.92%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.accordion {
    background: #fff;
    overflow: hidden;
    margin-bottom: 55px;
}

.accordion-item {
    border-radius: 8px;
    border: 1px solid transparent;
}

.accordion-header {
    display: flex;
    padding: 20px 24px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    gap: 15px;
    cursor: pointer;
}

.accordion-header .faq-questions-title {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    color: #2A2037;
}

.accordion-header .faq-open {
    display: none;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    padding: 0 20px;
    color: #797B82;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    padding: 0 24px;
}

.accordion-content ol {
    padding-left: 24px;
    margin: 10px 0;
}

.accordion-content ol li {
    margin-bottom: 8px;
}

.accordion-item.active .accordion-content {
    padding: 0 24px 20px;
    max-height: none !important;
}

.accordion-item.active .faq-close {
    display: none;
}

.accordion-item.active .faq-open {
    display: block;
}

.accordion-item.active {
    border-color: #E9E9E9;
}

.accordion-item.active .accordion-header {
    padding-bottom: 16px;
}

.accordion-item.active .accordion-header .faq-questions-title {
    font-weight: 700;
}

@media screen and (max-width: 1023px) {
    .faq-inner {
        padding: 0 20px;
    }
}

@media screen and (max-width: 768px) {
    .faq-title {
        font-size: 28px;
        line-height: 32px;
    }

    .faq-wrapper {
        background-position: top -50px right 100%, center center;
    }
}

@media screen and (max-width: 412px) {
    .faq-wrapper {
        background-position: top -50px right 70%, center center;
    }
}

.image-modal {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85); 
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
  
.image-modal .modal-content {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    object-fit: cover;
}

.image-modal .modal-content-wrapper{
    max-width: 750px;
    height: auto;
    border-radius: 23px;
    position: relative;
    text-align: center;
}
.image-modal .prompt-text {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 16px;
    text-align: center;
    backdrop-filter: blur(40px);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    color: #fff;
}
  
.image-modal .close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s;
}

.image-modal .close:hover {
    color: #ccc;
}
  
.overflow-hidden {
    overflow: hidden;
}

.image-modal .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 0.5rem;
    user-select: none;
    transition: color 0.2s;
  }
  
  .image-modal .arrow:hover {
    color: #ccc;
  }
  
  .image-modal .prev {
    left: 20px;
  }
  
  .image-modal .next {
    right: 20px;
  }
  
/* FAQ CSS */