.ced-header {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    background-color: transparent;
}

.banner-section {
    background-color: var(--ced-black-color);
    overflow: hidden;
    z-index: 2;
    background-image: url(/wp-content/uploads/2024/04/multi-gradient.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
}


.product-img {
    width: 160px;
}

.product-img img {
    width: 140px;
    border-radius: 8px;
}

.mfp-close {
    width: 30px !important;
    height: 30px;
    background-color: var(--ced-black-color) !important;
    line-height: 26px;
    text-align: center !important;
    padding: 0 !important;
    border-radius: 50%;
    font-size: 25px;
    color: var(--ced-white-color) !important;
    top: 24px !important;
    right: -10px !important;
    opacity: 1 !important;
    cursor: pointer !important;
    border: 2px solid var(--ced-white-color) !important;
    transition: all 0.5s;
}

.mfp-close:hover {
    background-color: var(--ced-grey-60) !important;
}

.mfp-arrow {
    border-radius: 50%;
    transition: all .5s;
    border: 2px solid var(--ced-white-color) !important;
    margin-top: 0 !important;
}

.mfp-arrow:before {
    display: none;
}

.mfp-arrow-right:after {
    background-image: url(/wp-content/uploads/2023/08/chevron-right-Black.svg);
}

.mfp-arrow-left:after {
    background-image: url(/wp-content/uploads/2023/08/chevron-left-Black.svg);
}

.mfp-arrow:after {
    margin: 0 !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-position: center center;
    border: 0 !important;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    filter: invert(1);
}

.mfp-arrow-right {
    right: 40px !important;
}

.ratings a {
    color: var(--ced-white-color);
    opacity: .7;
}

.hover-line {
    font-family: var(--ced-montserrat-sb);
    padding: 0 5px;
    position: relative;
    display: inline-block;
}

.hover-line::before {
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 90%;
    content: "";
    position: absolute;
    transition: all 0.5s;
    opacity: .12;
}

.hover-line.light::before {
    background-color: var(--ced-blue-60);
}

.hover-line.dark::before {
    background-color: var(--ced-white-color);
}

.hover-line:hover::before {
    height: 5%;
}

.product-video {
    border-radius: 20px;
}

.screenshot-img {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.screenshot-img img {
    border-radius: 10px;
}

.screenshot-img::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    transition: all .5s;
    transform: scale(1);
    opacity: 1;
    border-radius: 10px;
}

.screenshot-img:hover::before {
    opacity: 0;
}

.overlay-count {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--ced-montserrat-sb);
}

.waves-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 4560px;
    height: 100vh;
    overflow: hidden;
    top: -200px;
    left: -600px;
    transform: rotate3d(1, 1, 1, -21deg);
}

.wave {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('/wp-content/uploads/2024/05/wave2.svg') repeat-x 0 35%;
    animation: slide 15s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    background-size: 25% !important;
    z-index: 3;
    filter: brightness(0) saturate(100%) invert(18%) sepia(66%) saturate(3511%) hue-rotate(239deg) brightness(92%) contrast(90%);
}

.wave-2 {
    top: 0%;
    left: -40px;
    background: url('/wp-content/uploads/2024/05/wave2.svg') repeat-x 0 35%;
    opacity: 1;
    animation: slide 15s cubic-bezier(0.36, 0.85, 0.63, 0.53) -.125s infinite, swell 10s ease -1.25s infinite;
    z-index: -1;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

.wave-3 {
    top: 0;
    left: -30px;
}

@keyframes slide {
    0% {
        margin-left: 0;
    }

    100% {
        margin-left: -1440px;
    }
}


/*  responsive start  */
@media screen and (min-width: 1400px) {
    .product-title {
        font-size: 52px;
        line-height: 65px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
    .product-title {
        font-size: 40px;
        line-height: 55px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    .product-title {
        font-size: 36px;
        line-height: 50px;
    }
}

@media screen and (min-width:992px) {
    .banner-section {
        padding: 200px 0px 120px;
    }

    .strip-header .banner-section {
        padding-top: 220px;
    }

    .product-description {
        font-size: 18px;
        line-height: 30px;
    }

    .mfp-arrow {
        width: 50px !important;
        height: 50px !important;
        top: 50%;
        transform: translateY(-50%);
    }

    .mfp-arrow-left {
        left: 20px !important;
    }

    .mfp-arrow:after {
        background-size: 30px;
    }

    .banner-section iframe {
        border-radius: 16px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {

    .banner-section {
        padding: 150px 0px 80px;
    }

    .product-description {
        line-height: 28px;
    }

    .mfp-arrow {
        width: 45px !important;
        height: 45px !important;
    }

    .mfp-arrow-left,
    .mfp-arrow-right {
        bottom: 5%;
    }

    .mfp-arrow:after {
        background-size: 26px;
    }

}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .banner-section {
        padding: 140px 0px 80px;
    }

    .product-title {
        font-size: 32px;
        line-height: 45px;
    }

    .mfp-arrow-left,
    .mfp-arrow-right {
        bottom: 10%;
    }
}

@media screen and (max-width: 991px) {

    .mfp-arrow-left,
    .mfp-arrow-right {
        top: auto;
        transform: scale(1);
    }

    .mfp-arrow-left {
        left: 50% !important;
        margin-left: -40px;
    }

    .mfp-arrow-right {
        left: 50% !important;
        margin-left: 20px;
    }

    .banner-section iframe {
        border-radius: 12px;
    }
}

@media screen and (max-width: 767px) {

    .product-description,
    .hover-line {
        font-size: 15px;
        line-height: 26px;
    }

    .mfp-arrow {
        width: 40px !important;
        height: 40px !important;
    }

    .mfp-arrow:after {
        background-size: 20px;
    }

    .video-responsive>iframe {
        max-width: 100%;
        height: auto;
    }

}

@media screen and (max-width: 575px) {
    .banner-section {
        padding: 130px 0px 60px;
    }

    .product-title {
        font-size: 28px;
        line-height: 40px;
    }

    .mfp-arrow-left,
    .mfp-arrow-right {
        bottom: 15%;
    }
}

/* end banner section */

.product-des-spec-section {}

.specification-wrapper {
    border-radius: 18px;
    background-color: var(--ced-bg-gray);
}

.specification-wrapper span.title {
    font-family: var(--ced-montserrat-sb);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-inner {
    background-color: var(--ced-white-color);
    border-radius: 10px;
}

.card-inner table tr td {
    font-family: var(--ced-montserrat-sb);
    border-color: rgba(199, 199, 199, .43);
    color: var(--ced-grey-80);
}

.card-inner table tr td:last-child {
    color: var(--ced-subheading-color);
    text-align: end;
}

.card-inner table tr:last-child td {
    border-color: transparent;
}

.description-wrapper h3 {
    font-family: var(--ced-montserrat-sb);
    color: var(--ced-grey-60);
}

.features-wrapper {
    position: relative;
    z-index: 1;
}

.features-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    background: radial-gradient(circle, rgba(102, 237, 120, 0.6481442918964461) 22%, rgba(65, 59, 188, 1) 100%)
}

.description-para {
    color: var(--ced-grey-60);
}

.featured-item {
    background-color: rgba(245, 245, 252, .38);
    border-radius: 15px;
}

.featured-item h4 {
    font-family: var(--ced-montserrat-sb);
    color: var(--ced-grey-60);
    font-size: 15px;
    line-height: 23px;
}

.featured-item p {
    font-size: 14px;
    line-height: 24px;
    color: var(--ced-grey-60);
}

.certificate-wrapper img {
    border-radius: 10px
}

.get-quote-para {
    font-family: var(--ced-montserrat-m);
    color: var(--ced-grey-60);
}

/* RESPONSIVE START  */
@media screen and (min-width:1400px) {

    .certificate-wrapper img {
        width: 136px;
    }

    .get-qoute-wrapper p {
        max-width: 75%;
    }
}

@media screen and (min-width:1200px) and (max-width:1399px) {

    .certificate-wrapper img {
        width: 130px;
    }

    .get-qoute-wrapper p {
        max-width: 70%;
    }
}

@media screen and (min-width:1200px) {
    .card-inner table tr td {
        padding: 15px;
        font-size: 15px;
    }

    .card-inner {
        padding: 10px 15px;
    }

    .specification-wrapper {
        padding: 35px 30px;
        max-width: 370px;
    }

    .featured-item {
        width: 31%;
    }

    .get-quote-para {
        font-size: 22px;
        line-height: 34px;
    }
}

@media screen and (max-width:1199px) {

    .card-inner table tr td {
        padding: 15px 7px;
        font-size: 14px;
    }
}

@media screen and (min-width:992px) and (max-width:1199px) {

    .card-inner {
        padding: 10px;
    }

    .specification-wrapper {
        padding: 25px 20px;
    }

    .featured-item {
        width: 48%;
    }

    .certificate-wrapper img {
        width: 113px;
    }

    .get-quote-para {
        font-size: 20px;
        line-height: 32px;
    }

    .get-qoute-wrapper p {
        max-width: 60%;
    }

    .sticky-sidebar {
        position: sticky;
        top: 50px;
        height: 100vh
    }
}

@media screen and (min-width:992px) {
    .description-wrapper h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .description-para {
        line-height: 30px;
    }

    .featured-item {
        padding: 20px 22px 10px;
    }

    .featured-item .icon {
        width: 50px;
        height: 50px;
    }

    .specification-wrapper span.title {
        font-size: 15px;
    }
}


@media screen and (min-width:768px) and (max-width:991px) {
    .specification-wrapper {
        padding: 30px;
    }

    .certificate-wrapper img {
        width: 135px;
    }

    .featured-item {
        width: 31%;
    }

    .description-wrapper h3 {
        font-size: 18px;
        line-height: 28px;
    }

    .get-quote-para {
        font-size: 18px;
        line-height: 30px;
    }

    .get-qoute-wrapper p {
        max-width: 65%;
    }
}

@media screen and (min-width:768px) {}

@media screen and (max-width:991px) {
    .specification-wrapper span.title {
        font-size: 14px;
    }

    .card-inner {
        padding: 12px;
    }

    .description-para {
        font-size: 15px;
        line-height: 26px;
    }

    .featured-item {
        padding: 20px 20px 10px;
    }

    .featured-item .icon {
        width: 45px;
        height: 45px;
    }
}

@media screen and (min-width:576px) and (max-width:991px) {

    .specification-item,
    .certificate-item {
        flex: 1;
    }

}

@media screen and (min-width:576px) and (max-width:767px) {

    .featured-item {
        width: 48%;
    }

    .certificate-wrapper img {
        width: 100px;
    }
}

@media screen and (min-width:576px) {
    .certificate-wrapper {
        background-color: rgba(65, 59, 188, .07);
        padding: 10px;
        border-radius: 10px;
    }
}

@media screen and (max-width:767px) {
    .description-wrapper h3 {
        font-size: 17px;
        line-height: 27px;
    }

    .specification-wrapper {
        padding: 25px 20px;
    }

    .get-quote-para {
        font-size: 16px;
        line-height: 30px;
    }
}

@media screen and (max-width:575px) {
    .certificate-wrapper img {
        width: 120px;
    }
}

/* end Product Description and specifications section */

.review-section::before {
    content: '';
    position: absolute;
    left: 0%;
    top: 0;
    width: 100%;
    height: 1px;
    background: radial-gradient(circle, rgba(222, 222, 222, 1) 52%, rgba(148, 187, 233, 0) 100%);
}

.rating-wrapper h3 {
    font-family: var(--ced-montserrat-r);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-rating {
    font-family: var(--ced-montserrat-sb);
}

.total-rating img,
.single-star img,
.review-message img,
.ratings img {
    filter: brightness(0) saturate(100%) invert(81%) sepia(19%) saturate(5354%) hue-rotate(346deg) brightness(105%) contrast(94%);
}

.all-rating-list .single-star,
.rating-count {
    font-family: var(--ced-montserrat-sb);
    width: 40px;
    justify-content: space-around;
}

.rating-count {
    opacity: .6;
    font-family: var(--ced-montserrat-m);
    text-decoration: underline !important;
}

.rating-count:hover {
    opacity: 1;
}

.all-rating-list .progress-bar {
    background-color: var(--ced-white-color);
}

.progress {
    background-color: var(--ced-grey-60);
}

.review-message img {
    max-width: 80px;
}

.reviewed-person-detail {
    color: var(--ced-grey-60);
}

.review-wrapper {
    border-bottom: 1px solid var(--ced-grey-30);
}

.review-wrapper .store-name {
    font-family: var(--ced-montserrat-sb);
}

.review-wrapper .timing,
.review-message .date {
    font-size: 14px;
    color: var(--ced-grey-60);
}

.review-message p {
    color: var(--ced-grey-60);
}

.rating-wrapper {
    border-radius: 20px;
    background-color: var(--ced-grey-80);
}

.load-more {
    color: var(--ced-blue-60);
    width: max-content;
}

.load-more::after {
    position: absolute;
    content: '';
    top: 8px;
    width: 8px;
    height: 8px;
    transform: translateY(-25%) rotate(44deg);
    margin-left: 15px;
    border-right: 3px solid var(--ced-blue-60);
    border-bottom: 3px solid var(--ced-blue-60);
}

.total-rating img {
    width: 140px
}

/* RESPONSIVE START  */
@media screen and (min-width:1200px) {

    .rating-wrapper {
        padding: 40px 30px;
    }
}

@media screen and (min-width:992px) and (max-width:1199px) {

    .rating-wrapper {
        padding: 25px 20px;
    }

    .all-rating-list .single-star,
    .rating-count {
        font-size: 15px;
    }
}

@media screen and (min-width:768px) and (max-width:991px) {

    .rating-wrapper {
        padding: 30px;
    }
}

@media screen and (min-width:576px) and (max-width:767px) {}

@media screen and (min-width:768px) {

    .reviewed-person-detail .country {
        font-size: 15px;
    }

    .rating-wrapper h3 {
        font-size: 18px;
    }

    .total-rating {
        font-size: 26px;
        line-height: 36px;
    }

    .review-wrapper .store-name,
    .review-message p {
        line-height: 28px;
    }
}

@media screen and (max-width:767px) {

    .review-wrapper .store-name,
    .review-message p {
        font-size: 15px;
        line-height: 26px;
    }

    .reviewed-person-detail .country {
        font-size: 14px;
    }

    .total-rating img,
    .single-star img,
    .review-message img,
    .ratings img {
        max-width: 80px;
    }

    .rating-wrapper h3 {
        font-size: 17px;
    }

    .total-rating {
        font-size: 22px;
        line-height: 32px;
    }

    .all-rating-list .single-star,
    .rating-count {
        font-size: 14px;
    }

    .rating-wrapper {
        padding: 25px 20px;
    }
}

@media screen and (min-width:576px) {

    .reviewed-person-detail {
        width: 30%;
    }

    .review-message {
        width: 70%;
    }

}

@media screen and (max-width:575px) {

    .reviewed-person-detail,
    .review-message {
        width: 100%;
    }

}

/* end review section */

.related-app-section {
    background-image: url(/wp-content/uploads/2024/02/banner122.png);
    background-size: cover;
    background-position: center;
}

.related-app-product-card {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
}

.related-app-product-card:hover {
    background-color: var(--ced-white-color);
    box-shadow: 0 3px 6px 0 rgba(23, 28, 33, .08);
}

.related-app-product-card .prouduct-name {
    font-family: var(--ced-montserrat-sb);
    color: var(--ced-grey-60);
}

.related-app-product-card .product-link {
    display: inline-block;
    background-color: rgba(0, 0, 0, .03);
    border-radius: 50%;
    text-align: center;
    position: absolute;
    transition: all .5s;
}

.related-app-product-card:hover .product-link {
    background-color: var(--ced-blue-60);

}

.related-app-product-card .img {
    border-radius: 10px;
}

.related-app-product-card:hover .product-link img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(46deg) brightness(101%) contrast(104%);
}

/* RESPONSIVE START  */
@media screen and (min-width:1400px) {
    .related-app-product-card .prouduct-name {
        font-size: 18px;
        line-height: 28px;
    }

    .related-app-product-card .img {
        width: 80px;
    }

    .related-app-product-card {
        min-height: 126px;
    }

    .related-app-product-card .prouduct-name {
        width: calc(100% - 155px);
    }
}

@media screen and (min-width:1200px) and (max-width:1399px) {
    .related-app-product-card .prouduct-name {
        font-size: 16px;
        line-height: 26px;
    }

    .related-app-product-card .prouduct-name {
        width: calc(100% - 130px);
    }

    .related-app-product-card {
        min-height: 120px;
    }
}

@media screen and (min-width:992px) and (max-width:1399px) {
    .related-app-product-card .img {
        width: 75px;
    }
}

@media screen and (min-width:992px) and (max-width:1199px) {
    .related-app-product-card .prouduct-name {
        width: calc(100% - 160px);
    }
}

@media screen and (max-width:1199px) {
    .related-app-product-card .prouduct-name {
        font-size: 15px;
        line-height: 24px;
    }

}

@media screen and (min-width:992px) {
    .related-app-product-card .product-link {
        right: 20px;
        bottom: 20px;
    }
}

@media screen and (min-width:576px) and (max-width:991px) {
    .related-app-product-card .img {
        width: 70px;
    }

    .related-app-product-card .product-link {
        right: 15px;
        bottom: 15px;
    }
}

@media screen and (max-width:991px) {
    .related-app-product-card .prouduct-name {
        width: calc(100% - 120px);
    }
}

@media screen and (max-width:767px) {
    .related-app-product-card {
        max-width: 400px;
    }
}

@media screen and (min-width:576px) {
    .related-app-product-card {
        padding: 20px;
    }

    .related-app-product-card .product-link {
        width: 36px;
        height: 36px;
        line-height: 36px;
    }

    .related-app-product-card .product-link img {
        max-width: 24px;
    }

}

@media screen and (max-width:575px) {
    .related-app-product-card {
        padding: 15px;
    }

    .related-app-product-card .img {
        width: 65px;
    }

    .related-app-product-card .product-link {
        width: 30px;
        height: 30px;
        line-height: 30px;
        right: 10px;
        bottom: 10px;
    }

    .related-app-product-card .product-link img {
        max-width: 20px;
    }

}

.gallery a:nth-child(n+5) {
    display: none;
}

.screenshot-img {
    max-height: 80px;
    flex: 1;
}

.screenshot-img img {
    width: 100%;
}

@media screen and (max-width:767px) {
    .screenshot-img {
        max-height: 60px;
    }
}

/* end related app product card section */