body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: all .0s ease;
}

header.sticky {
    background: #000000;
    border-bottom: 1px solid #000000;

}

nav {
    background-color: transparent;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}



.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #ffffff;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 19px 20px;
    transition: background-color 0.3s ease;
    border-radius: 10px;
    margin: 0px 10px;
    font-family: "Poppins", sans-serif;

}

a.active {
    background: linear-gradient(45deg, #93a3fb 0%, #f557e5 100%);
    color: transparent;
    -webkit-background-clip: text;
}

nav ul li a:hover {
    background: linear-gradient(45deg, #93a3fb 0%, #f557e5 100%);
    color: transparent;
    -webkit-background-clip: text;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
        cursor: pointer;
        font-size: 24px;
        transition: transform 0.3s ease-in-out;
        /* Smooth transition */
    }

    nav ul {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #000000fa;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
        /* Adding transition for smooth effect */
    }

    nav ul.active {
        max-height: 500px;
        /* Adjust this value based on the content height */
    }

    nav ul li {
        width: 100%;
        text-align: center;
        margin: 2px;
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
    }

    /* Animation for the menu icon */
    .menu-icon-symbol {
        display: inline-block;
        transition: transform 0.3s ease-in-out, font-size 0.3s ease-in-out;
    }

    .menu-icon.open .menu-icon-symbol {
        transform: rotate(90deg);
        font-size: 32px;
        /* Increase the size of the cross symbol */
        transition: transform 0.3s ease-in-out, font-size 0.3s ease-in-out;
    }
}

.logo a {
    color: #ffffff;
    text-decoration-line: none;
}

.logo-color {
    color: transparent;
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
}



/* Navigation bar code completed here */

.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
    margin: 0px 5px;
}

.partners img {
    transition: transform 0.3s ease;
}

.partners img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .partners img {
        max-width: 127px;
        /* smaller image size for mobile */
        padding: 30px 14px;
    }

    /* header */

    .header {
        text-align: left;
        padding: 140px 20px 10px 20px;
        background-image: linear-gradient(to right, #000000, #000000);
        background-size: cover;
        background-position: center;
    }

    .header-content h1 {
        font-size: 40px;
        font-weight: 900;
        margin: 15px 0;
        color: #ffffff;
    }

    .header-content h1 span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .header-content p {
        font-weight: 300;
        font-size: 20px;
        margin: 15px 0px;
        color: #ffffff;
        font-family: "Poppins", sans-serif;
    }

    /* Sign Up Now Button */
    .button-sign-up-now {
        text-align: center;
        margin: 60px 0px 40px 0px;
    }

    .signup-btn {
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        color: white;
        border: none;
        padding: 18px 40px;
        font-size: 23px;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-weight: 700;
        text-transform: capitalize;
    }

    .signup-btn:hover {
        background: linear-gradient(45deg, #f5576c 0%, #f093fb 100%);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    /* logo */
    .logo {
        font-family: "Times New Roman";
        font-size: 200%;
        font-weight: bold;
        margin-left: 0px;
    }

    /* nav Bar */
    a.active {
        background: linear-gradient(45deg, #f5576c 0%, #f093fb 100%);
        border-radius: 50px;
        color: #ffffff;
    }

    nav ul li a:hover {
        background: linear-gradient(45deg, #f5576c 0%, #f093fb 100%);
        border-radius: 50px;
        color: #ffffff;
    }

    nav ul li a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 700;
        font-size: 18.5px;
        padding: 16px 20px;
        transition: background-color 0.3s ease;
        font-family: "Poppins", sans-serif;
    }

    /* Unlimited Music Distribution */

    .container {
        font-family: "Poppins", sans-serif;
        background: linear-gradient(to bottom right, #000000, #000000);
        padding: 30px 20px 60px 20px;
        text-align: center;
    }

    .checkmark {
        font-weight: 600;
        font-size: 50px;
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
        margin-bottom: 30px;
    }

    .content h2 {
        font-size: 38px;
        color: #ffffff;
        margin: 0;
    }

    .content h2 span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .content p {
        font-weight: 600;
        font-size: 18px;
        color: #ffffff;
        margin: 0px;
    }

    /* Your Music Worldwide. Keep 100% of Your Royalties. */

    .con {
        background-image: linear-gradient(45deg, #000000 0%, #020042 100%);
        margin: 0px 0px 20px 0px;
    }

    .column {
        padding: 20px 20px 20px 20px;
    }

    .your-music-worldwide {
        font-family: "Poppins", sans-serif;
        color: #ffffff;
        font-size: 38px;
    }

    .your-music-worldwide span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .icon {
        margin-top: 0;
        margin-bottom: 35px;
        display: flex;
    }

    .icon-block {
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: auto;
        width: 60px;
        height: 60px;
    }

    .icon-block.icon-1 {
        background-image: url("../images/computer.webp");
        background-size: contain;
        width: 50px;
        height: 34px;
    }

    .icon-block.icon-2 {
        background-image: url("../images/check.webp");
        background-size: contain;
        width: 50px;
        height: 36px;
    }

    .icon-block.icon-3 {
        background-image: url("../images/data.webp");
        background-size: contain;
        width: 54px;
        height: 35px;
    }

    .icon-block.icon-4 {
        background-image: url("../images/song.webp");
        background-size: contain;
        width: 8%;
        height: 37px;
    }

    .div-block {
        margin-left: 20px;
    }


    .text-block-1 {
        color: #ffffff;
        font-family: Fontfabric nexa text, sans-serif;
        font-size: 19px;
        margin-bottom: 7px;
        font-weight: 700;
    }

    .text-block-2 {
        color: #ffffff;
        margin-top: 0;
        font-family: Fontfabric nexa text, sans-serif;
        font-weight: 300;
    }

    .box {
        padding: 0px 20px;
    }

    .box img {
        background-color: #ffffff;
        border: 5px solid rgb(255, 255, 255);
        border-radius: 12px;
        width: 100%;

    }

    /* Royalty Management */

    .hero-section {
        background-image: linear-gradient(45deg, #000000 0%, #020042 100%);
    }

    .dog {
        padding: 10px 20px 30px 20px;
        font-family: "Poppins", sans-serif;
        text-align: left;
    }


    .checkk h2 {
        font-size: 38px;
        color: #ffffff;
    }

    .checkk h2 span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .checkk p {
        font-weight: 300;
        font-size: 20px;
        color: #ffffff;
    }

    .checkk p span {
        font-weight: 400;
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .cat {
        padding: 0px 20px;
    }

    .cat img {
        background-color: #ffffff;
        width: 100%;
        border: 5px solid #ffffff;
        border-radius: 20px;
    }

    /* Distribution FAQ */

    .landii {
        padding: 1px 20px 30px 20px;
    }

    .w-col-8 {
        width: 100%;
    }

    .heading-70 {
        color: #ffffff;
        font-size: 38px;
        font-family: "Poppins", sans-serif;
    }

    .heading-70 span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .landind-faq-acodian-item {
        border-radius: 12px;
        background-color: #1b1b1b;
        margin-bottom: 25px;
        padding: 26px 20px 12px 23px;

    }

    .accordion-item-trigger {
        display: flex;
        cursor: pointer;
        align-items: center;
    }

    .accordion-heading-landing {
        color: #f1f1f5;
        font-family: sans-serif;
        font-size: 20px;
        cursor: pointer;
        flex: 1;
        margin-top: 0;
        margin-bottom: 0;
        line-height: 29px;
    }

    .icon-3 {
        cursor: pointer;
        font-family: "Poppins", sans-serif;
        font-size: 32px;
        color: #f1f1f5;
        line-height: 30px;
        display: inline-block;
        transition: transform 0.5s;
    }

    .icon-3.rotate {
        transform: rotate(-45deg);
    }


    .accordion-item-content {
        margin-top: 10px;
        margin-right: 30px;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.5s ease-out;
    }

    .accordion-item-content.show {
        max-height: 500px;
        transition: max-height 0.5s ease-in;
    }

    .landing-faw-p {
        color: #c7c7c7;
        margin-bottom: 11px;
        font-family: "Poppins", sans-serif;
        font-size: 15px;
    }

    .link-30 {
        text-decoration: none;
    }

    /* footer */
    footer {
        background-color: #000000;
        color: white;
        padding: 40px 0;
        text-align: center;
    }
    
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .social-icons a {
        display: inline-block;
    }
    
    .social-icons img {
        width: 30px;
        height: auto;
        transition: transform 0.2s;
    }
    
    .social-icons img:hover {
        transform: scale(1.1);
    }

    /* end */
}

@media (min-width: 768px) and (max-width: 1024px) {
    .partners img {
        max-width: 140px;
        /* medium image size for tablets */
        padding: 30px 20px;
    }

    /* header */

    .header {
        text-align: center;
        padding: 150px 20px 10px 20px;
        background-image: linear-gradient(to right, #000000, #000000);
        background-size: cover;
        background-position: center;
    }

    .header-content h1 {
        font-size: 52px;
        margin: 20px 0;
        color: #ffffff;
    }

    .header-content h1 span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .header-content p {
        font-weight: 300;
        font-size: 20px;
        margin: 20px 50px;
        color: #ffffff;
        font-family: "Poppins", sans-serif;
    }

    /* Sign Up Now Button */

    .button-sign-up-now {
        text-align: center;
        margin: 60px 0px 40px 0px;
    }

    .signup-btn {
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        color: white;
        border: none;
        padding: 18px 40px;
        font-size: 23px;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-weight: 600;
        text-transform: capitalize;
        font-family: "Poppins", sans-serif;
    }

    .signup-btn:hover {
        background: linear-gradient(45deg, #f5576c 0%, #f093fb 100%);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    /* logo */
    .logo {
        font-family: "Times New Roman";
        font-size: 220%;
        font-weight: bold;
        margin-left: 10px;
    }

    /* Unlimited Music Distribution */

    .container {
        font-family: "Poppins", sans-serif;

        background: linear-gradient(to bottom right, #000000, #000000);
        padding: 30px 20px 60px 20px;
        text-align: center;
    }

    .checkmark {
        font-weight: 600;
        font-size: 60px;
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
        margin-bottom: 30px;
    }

    .content h2 {
        font-size: 45px;
        color: #ffffff;
        margin: 0;
    }

    .content h2 span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .content p {
        font-size: 20px;
        color: #ffffff;
        margin: 0px;
    }

    /* Your Music Worldwide. Keep 100% of Your Royalties. */

    .con {
        background-image: linear-gradient(45deg, #000000 0%, #020042 100%);
        margin: 0px 0px 20px 0px;
    }

    .column {
        padding: 20px 20px 20px 20px;
    }

    .your-music-worldwide {
        font-family: "Poppins", sans-serif;
        color: #ffffff;
        font-size: 45px;
    }

    .your-music-worldwide span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .icon {
        margin-top: 0;
        margin-bottom: 35px;
        display: flex;
    }

    .icon-block {
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: auto;
        width: 60px;
        height: 60px;
    }

    .icon-block.icon-1 {
        background-image: url("../images/computer.webp");
        background-size: contain;
        width: 40px;
        height: 34px;
    }

    .icon-block.icon-2 {
        background-image: url("../images/check.webp");
        background-size: contain;
        width: 38px;
        height: 36px;
    }

    .icon-block.icon-3 {
        background-image: url("../images/data.webp");
        background-size: contain;
        width: 40px;
        height: 35px;
    }

    .icon-block.icon-4 {
        background-image: url("../images/song.webp");
        background-size: contain;
        width: 38px;
        height: 37px;
    }

    .div-block {
        margin-left: 40px;
    }


    .text-block-1 {
        color: #ffffff;
        font-family: Fontfabric nexa text, sans-serif;
        font-size: 19px;
        margin-bottom: 7px;
        font-weight: 700;
    }

    .text-block-2 {
        color: #ffffff;
        margin-top: 0;
        font-family: Fontfabric nexa text, sans-serif;
        font-weight: 300;
    }

    .box {
        padding: 0px 20px;
    }

    .box img {
        background-color: #ffffff;
        border: 5px solid rgb(255, 255, 255);
        border-radius: 15px;
        width: 100%;

    }

    /* Royalty Management */

    .hero-section {
        background-image: linear-gradient(45deg, #000000 0%, #020042 100%);
    }

    .dog {
        padding: 10px 20px 30px 20px;
        font-family: "Poppins", sans-serif;
        text-align: left;
    }


    .checkk h2 {
        font-size: 45px;
        color: #ffffff;
    }

    .checkk h2 span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .checkk p {
        font-weight: 300;
        font-size: 20px;
        color: #ffffff;
    }

    .checkk p span {
        font-weight: 400;
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .cat {
        padding: 0px 20px;
    }

    .cat img {
        background-color: #ffffff;
        width: 100%;
        border: 5px solid #ffffff;
        border-radius: 20px;
    }

    /* Distribution FAQ */

    .landii {
        padding: 1px 20px 40px 20px;
    }

    .w-col-8 {
        width: 100%;
    }

    .heading-70 {
        color: #ffffff;
        font-size: 48px;
        font-family: "Poppins", sans-serif;
    }

    .heading-70 span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .landind-faq-acodian-item {
        border-radius: 12px;
        background-color: #1b1b1b;
        margin-bottom: 25px;
        padding: 26px 20px 12px 23px;

    }

    .accordion-item-trigger {
        display: flex;
        cursor: pointer;
        align-items: center;
    }

    .accordion-heading-landing {
        color: #f1f1f5;
        font-family: sans-serif;
        font-size: 23px;
        cursor: pointer;
        flex: 1;
        margin-top: 0;
        margin-bottom: 0;
        line-height: 29px;
    }

    .icon-3 {
        cursor: pointer;
        font-family: "Poppins", sans-serif;
        font-size: 32px;
        color: #f1f1f5;
        line-height: 30px;
        display: inline-block;
        transition: transform 0.5s;
    }

    .icon-3.rotate {
        transform: rotate(-45deg);
    }


    .accordion-item-content {
        margin-top: 10px;
        margin-right: 30px;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.5s ease-out;
    }

    .accordion-item-content.show {
        max-height: 500px;
        transition: max-height 0.5s ease-in;
    }

    .landing-faw-p {
        color: #c7c7c7;
        margin-bottom: 11px;
        font-family: "Poppins", sans-serif;
        font-size: 18px;
    }

    .link-30 {
        text-decoration: none;
    }

    /* fotter */

    footer {
        background-color: #000000;
        color: white;
        padding: 40px 0;
        text-align: center;
    }
    
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .social-icons a {
        display: inline-block;
    }
    
    .social-icons img {
        width: 30px;
        height: auto;
        transition: transform 0.2s;
    }
    
    .social-icons img:hover {
        transform: scale(1.1);
    }
    

    /* end */

}


@media (min-width: 1025px) {
    .partners img {
        max-width: 150px;
        /* larger image size for desktops */
        padding: 30px 25px;
    }

    /* header */

    .header {
        text-align: center;
        padding: 180px 20px 10px;
        background-image: linear-gradient(to right, #000000, #000000);
        background-size: cover;
        background-position: center;
    }

    .header-content h1 {
        font-size: 55px;
        margin: 20px 0;
        color: #ffffff;
    }

    .header-content h1 span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .header-content p {
        font-weight: 300;
        font-size: 20px;
        margin: 20px 130px 50px 130px;
        color: white;
        font-family: "Poppins", sans-serif;
    }

    /* Sign Up Now Button */

    .button-sign-up-now {
        text-align: center;
        margin: 60px 0px 40px 0px;
    }

    .signup-btn {
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        color: white;
        border: none;
        padding: 18px 40px;
        font-size: 23px;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-weight: 700;
        text-transform: capitalize;
    }

    .signup-btn:hover {
        background: linear-gradient(45deg, #f5576c 0%, #f093fb 100%);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    /* logo */
    .logo {
        font-family: "Times New Roman";
        font-size: 230%;
        font-weight: bold;
        margin-left: 10px;
    }

    /* Unlimited Music Distribution */

    .container {
        font-family: "Poppins", sans-serif;
        background: linear-gradient(to bottom right, #000000, #000000);
        padding: 30px 20px 60px 20px;
        text-align: center;
    }

    .checkmark {
        font-weight: 900;
        font-size: 60px;
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .content h2 {
        font-size: 50px;
        color: #ffffff;
        margin: 0;
    }

    .content h2 span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .content p {
        font-size: 22px;
        color: #ffffff;
        margin: 0px;
    }

    /* Your Music Worldwide. Keep 100% of Your Royalties. */

    .con {
        background-image: linear-gradient(45deg, #000000 0%, #020042 100%);
        display: flex;
        width: 100%;
    }

    .column {
        padding: 20px 0px 20px 20px;
        width: 100%;
    }

    .box {
        display: flex;
        align-items: center;
        padding: 0px 20px;
        width: 100%;
    }

    .your-music-worldwide {
        font-family: "Poppins", sans-serif;
        color: #ffffff;
        font-size: 40px;
    }

    .your-music-worldwide span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .icon {
        margin-top: 0;
        margin-bottom: 35px;
        display: flex;
    }

    .icon-block {
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: auto;
        width: 60px;
        height: 60px;
    }

    .icon-block.icon-1 {
        background-image: url("../images/computer.webp");
        background-size: contain;
        width: 40px;
        height: 34px;
    }

    .icon-block.icon-2 {
        background-image: url("../images/check.webp");
        background-size: contain;
        width: 38px;
        height: 36px;
    }

    .icon-block.icon-3 {
        background-image: url("../images/data.webp");
        background-size: contain;
        width: 45px;
        height: 35px;
    }

    .icon-block.icon-4 {
        background-image: url("../images/song.webp");
        background-size: contain;
        width: 6%;
        height: 37px;
    }

    .div-block {
        margin-left: 40px;
    }


    .text-block-1 {
        color: #ffffff;
        font-family: Fontfabric nexa text, sans-serif;
        font-size: 19px;
        margin-bottom: 7px;
        font-weight: 700;
    }

    .text-block-2 {
        color: #ffffff;
        margin-top: 0;
        font-family: Fontfabric nexa text, sans-serif;
        font-weight: 300;
    }

    .box img {
        background-color: #ffffff;
        border: 5px solid rgb(255, 255, 255);
        border-radius: 15px;
        width: 100%;

    }

    /* Royalty Management */

    .hero-section {
        background-image: linear-gradient(45deg, #000000 0%, #020042 100%);
        display: flex;
        width: 100%;
    }

    .dog {
        padding: 10px 20px 30px 20px;
        font-family: "Poppins", sans-serif;
        text-align: left;
        width: 100%;
        display: flex;
        align-items: center;
    }


    .checkk h2 {
        font-size: 45px;
        color: #ffffff;
    }

    .checkk h2 span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .checkk p {
        font-weight: 300;
        font-size: 20px;
        color: #ffffff;
    }

    .checkk p span {
        font-weight: 400;
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .cat {
        padding: 70px 30px;
        width: 80%;
    }

    .cat img {
        background-color: #ffffff;
        width: 100%;
        border: 5px solid #ffffff;
        border-radius: 20px;
    }

    /* Distribution FAQ */

    .landii {
        padding: 1px 20px 40px 20px;
    }

    .w-col-8 {
        width: 100%;
    }

    .heading-70 {
        color: #ffffff;
        font-size: 50px;
        font-family: "Poppins", sans-serif;
    }

    .heading-70 span {
        color: transparent;
        background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
        -webkit-background-clip: text;
    }

    .landind-faq-acodian-item {
        border-radius: 12px;
        background-color: #1b1b1b;
        margin-bottom: 25px;
        padding: 30px 20px 15px 23px;

    }

    .accordion-item-trigger {
        display: flex;
        cursor: pointer;
        align-items: center;
    }

    .accordion-heading-landing {
        color: #f1f1f5;
        font-family: sans-serif;
        font-size: 24px;
        cursor: pointer;
        flex: 1;
        margin-top: 0;
        margin-bottom: 0;
        line-height: 29px;
    }

    .icon-3 {
        cursor: pointer;
        font-family: "Poppins", sans-serif;
        font-size: 32px;
        color: #f1f1f5;
        line-height: 30px;
        display: inline-block;
        transition: transform 0.5s;
    }

    .icon-3.rotate {
        transform: rotate(-45deg);
    }


    .accordion-item-content {
        margin-top: 10px;
        margin-right: 30px;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.5s ease-out;
    }

    .accordion-item-content.show {
        max-height: 500px;
        transition: max-height 0.5s ease-in;
    }

    .landing-faw-p {
        color: #c7c7c7;
        margin-bottom: 11px;
        font-family: "Poppins", sans-serif;
        font-size: 20px;
    }

    .link-30 {
        text-decoration: none;
    }

    /* fotter */

    footer {
        background-color: #000000;
        color: white;
        padding: 40px 0;
        text-align: center;
    }
    
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .social-icons a {
        display: inline-block;
    }
    
    .social-icons img {
        width: 30px;
        height: auto;
        transition: transform 0.2s;
    }
    
    .social-icons img:hover {
        transform: scale(1.1);
    }
    
    
    /* end */

}

/* Complete */

