.rounded-20 {
    border-radius: 20px;
}

.text-space {
    letter-spacing: 2px;
}

.cover {
    object-fit: cover;
}

.w-fit {
    width: fit-content;
    max-width: fit-content;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.gradient-border.dark {
    background: #0A0511;
}

.swiper-wrapper {
    display: flex;
}

.swiper-wrapper .swiper-slide {
    height: auto;
}

.mb-30 {
    margin-bottom: 30px;
}

.check-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.check-list li {
    font-size: 18px;
    padding: 0px 0 20px 35px;
    position: relative;
    z-index: 1;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 24px;
    height: 24px;
    background: url('../images/creator-economy-images/list-icon.webp') no-repeat center;
    z-index: -1;
    background-size: contain;
}

.h5 {
    font-size: 20px !important;
    font-weight: 600;
}

.animation-img {
    animation: moveUpDown 2s ease-in-out infinite;
}

.linear-bg {
    background: linear-gradient(90deg,
            #903CFE 0%,
            #0A0A0C 93%);
}

/* common css end */
/* your platform */
.inline-row>div:not(:first-child) .your-platform {
    padding: 20px;
    transition: 0.5s all ease;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.inline-row>div:not(:first-child) .your-platform:hover {
    background: var(--primary-light);
}

/* features */
.features-main {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 25px 20px;
    transition: 0.5s all ease;
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.features-main::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--primary-color);
    height: 4px;
    transition: 0.5s all ease;
    z-index: -1;
}

.features-main:hover::before {
    height: 100%;
}

.features-main:hover * {
    color: #fff;
}

/* faq */

.new-faq {
    display: flex;
    flex-direction: column;
    gap: 25px 0;
}

.new-faq .accordion-item {
    border: none;
    border-bottom: 1px solid #BEDBE0;
    background: transparent;
    padding-bottom: 25px;
    width: 100%;
}

.new-faq .accordion-header .accordion-button {
    font-size: 22px !important;
    line-height: 140%;
    letter-spacing: 1px;
    height: fit-content;
    margin: 0 0 15px 0;
    color: #07191C;
    font-weight: 700;
    background: none !important;
    padding: 0px;
    box-shadow: none !important;
    font-family: 'Instrument Sans' !important;
}

.new-faq .accordion-body {
    padding: 0px;
    font-size: 20px;
    width: 100%;
}

.new-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='40' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s;
}

.new-faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='40 ' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.new-faq .accordion-button::after {
    transition: all 0.5s;
    background-size: 40px;
    width: 40px;
    height: 40px;
}

.choose-slider>div {
    flex: 1;
    width: 100%;
    max-width: 100%;
}

/* solutions slider */

.choose-slider-prev,
.choose-slider-next,
.streaming-slider-prev,
.streaming-slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #F4EBFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.5s all ease;
    user-select: none;
    border: 0 !important;
    outline: 0;
}

.choose-slider-prev:hover,
.choose-slider-next:hover,
.streaming-slider-prev:hover,
.streaming-slider-next:hover {
    background: var(--primary-color);
}

.choose-slider-prev:hover img,
.choose-slider-next:hover img,
.streaming-slider-prev:hover img,
.streaming-slider-next:hover img {
    filter: brightness(0) invert(1);
}

.streaming-models .streaming-models-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
    padding: 15px;
    transform: translateY(40px);
    transition: 0.5s all ease;
}

.streaming-models .streaming-models-details p {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all ease;
}

.streaming-models:hover .streaming-models-details,
.swiper-slide-next .streaming-models .streaming-models-details {
    transform: translateY(0px);
}

.streaming-models:hover .streaming-models-details p,
.swiper-slide-next .streaming-models .streaming-models-details p {
    visibility: visible;
    opacity: 1;
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (min-width: 1401px) {
    .inline-row>div:not(:first-child) {
        flex: 1;
    }

    .inline-row>div:first-child {
        flex: 2;
    }

    .inline-row>div:first-child .your-platform {
        background: var(--primary-color);
        color: #fff;
        border-radius: 20px 0px 0px 20px;
        padding: 20px;
    }

    .inline-row>div:not(:first-child) .your-platform {
        border: 0;
        border-right: 1px solid #ccc;
    }

    .your-platform .primary-text {
        color: #000 !important;
    }

    .streamingSwiper .swiper-wrapper {
        align-items: center;
    }
}

@media (min-width: 1201px) {
    .streamingSwiper .swiper-slide:not(.swiper-slide-next) {
        transform: scale(0.92);
    }
}

@media (max-width: 1200px) {

    .streaming-models .streaming-models-details {
        transform: translateY(0px);
    }

    .streaming-models .streaming-models-details p {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 991px) {
    a.button.mobile-center {
        margin: auto;
    }

    .new-faq .accordion-header .accordion-button {
        font-size: 18px !important;
    }

    .check-list {
        width: fit-content;
        margin: auto;
    }
}