/* Body background handled by .bg-pattern class in styles.css */
.celly-section {
    background: linear-gradient(0deg, rgba(47, 65, 101, 0.66) 0%, rgba(47, 65, 101, 0.66) 100%),
        url(../images/bg-celly-page.jpg) lightgray 50% / cover no-repeat;
    width: 100vw;
    min-height: 100vh;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.celly-container {
    padding: 182px 80px 60px;
}

.celly-container>h2 {
    font-size: 64px;
    line-height: 68px;
}

.celly-content {
    display: flex;
    margin-top: 72px;
    align-items: center;
    justify-content: center;
}

.capabilities-container {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    width: 55%;
    max-width: 702px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(18, 25, 38, 0.3);
    backdrop-filter: blur(10px);
}

.capabilities-container header {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 20px;
}

.capabilities-list {
    list-style: disc outside !important;
    padding-left: 20px;
    display: block;
}

.capabilities-list li {
    list-style-type: disc !important;
    margin-bottom: 10px;
}

.capabilities-list li::marker {
    color: var(--orange-color);
}

.image-wrapper {
    width: 45%;
    display: flex;
    justify-content: center;
}

.celly-img {
    width: 100%;
    max-width: 429px;
    margin: 0 auto;
}

.celly-card {
    padding: 64px;
    border-radius: 40px;
    background: var(--card-grey-bg-color);
    height: 536px;
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    margin: 64px auto 0;
}

.celly-video-wrapper {
    margin: 64px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.celly-talk-text {
    margin: 20px auto 40px;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    max-width: 595px;
    width: 90%;
}

#celly-video-player {
    max-width: 95%;
    height: 100%;
    max-height: 80vh;
    object-fit: cover;
    border-radius: 40px;
    overflow: hidden;
}

.celly-video-container {
    padding-top: 80px;
}

.assessment-container {
    padding: 80px 0;
}

.assessment-img {
    display: flex;
    max-width: 500px;
    margin-bottom: auto;
}

.assessment-list {
    padding: 0;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    width: 50%;
    max-width: 560px;
}

.assessment-list>li {
    margin-bottom: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.assessment-list>li>span {
    font-size: 22px;
    line-height: 26px;
}

/*media query*/

@media (width < 1200px) {
    .celly-card {
        padding: 64px;
        flex-direction: column-reverse;
        height: auto;
        max-width: 628px;
        gap: 40px;
    }

    .assessment-list {
        width: 100%;
    }

    .celly-container {
        padding: 182px 20px 60px;
    }
}

@media (width < 848px) {
    .celly-content {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .celly-container>h2 {
        text-align: center;
    }

    .capabilities-container {
        width: 100%;
    }

    .image-wrapper {
        width: 100%;
    }
}

@media (width < 656px) {
    .celly-card {
        padding: 24px;
        max-width: 548px;
    }

    .assessment-img {
        display: flex;
        max-width: 100%;
        margin-bottom: auto;
    }
}

@media (width < 500px) {
    .celly-container {
        padding: 132px 20px 40px;
    }

    .celly-container>h2 {
        font-size: 42px;
        line-height: 46px;
    }

    .celly-talk-text {
        font-size: 16px;
        line-height: 24px;
    }

    .capabilities-container {
        font-size: 16px;
        line-height: 20px;
    }

    .capabilities-container header {
        font-size: 24px;
        line-height: 27px;
    }

    .assessment-list {
        font-size: 16px;
        line-height: 20px;
    }

    .assessment-list>li>span {
        font-size: 20px;
        line-height: 22px;
    }
}