
body h1.title, body h2.title {
    font-size: 28px;
    line-height: 34px;
    color: #17181A;
    font-weight: 600;
}
body section {
    padding: 0;
    margin: 40px 0;
}
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.action-buttons .btn {
    margin: 0;
}
body .container {
    max-width: 1400px;
}

/**/
.image-with-text_inner {
    display: flex;
    gap: 50px;
    align-items: center;
    border: 6px solid #f2f7ee;
    padding: 40px;
    border-radius: 24px;
}
.image-with-text_inner .image-block {
    width: 50%;
    position: relative;
}
.image-with-text_inner .content-block {
    width: 50%;
}
.image-with-text_inner .image-block img {
    width: 100%;
    height: auto;
    border-radius: 18px;
}
.image-with-text_inner .image-block .play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.image-block .play-icon {
    width: 56px;
    height: 56px;
}
/**/
.heading-block .title {
    margin-bottom: 12px;
}
.heading-block {
    max-width: 900px;
}
.heading-block h4.subtitle {
    font-size: 20px;
    line-height: 26px;
    color: #17181A;
    margin-bottom: 10px;
}
/**/
.see-our-dashboard-inner {
    padding: 40px;
    background-color: #F2F7EE;
    border-radius: 24px;
}
.content-block ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 12px;
}
.content-block ul li {
    padding: 2px 0;
}
/**/
.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.video-popup-box {
    position: relative;
    background: #000;
    padding: 10px;
    border-radius: 10px;
    width: 1100px;
}
.close-popup {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #fff;
    color: #000;
    font-size: 25px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
}
.video-popup-box iframe {
    width: 1080px;
    height: 600px;
}
@media (max-width: 1023px) {
    .video-popup-box {
        width: 740px;
    }
    .video-popup-box iframe {
        width: 720px;
        height: 420px;
    }
    .heading-block .title {
        font-size: 24px;
        line-height: 30px;
    }
    .heading-block h4.subtitle {
        font-size: 18px;
        line-height: 24px;
    }
}
@media (max-width: 767px) {
    .image-with-text_inner {
        flex-wrap: wrap;
        border: 0;
        padding: 0;
        border-radius: 0;
    }
    .image-with-text_inner .image-block {
        width: 100%;
    }
    .image-with-text_inner {
        gap: 24px;
    }
    .image-with-text_inner .content-block {
        width: 100%;
    }
    .video-popup-box {
        width: 90%;
    }
    .video-popup-box iframe {
        width: 100%;
        height: inherit;
        aspect-ratio: 16 / 9;
    }
    .heading-block .title {
        margin-bottom: 10px;
        font-size: 24px;
        line-height: 30px;
    }
    .see-our-dashboard-inner {
        padding: 24px;
    }
}
@media (max-width: 400px) {
    .action-buttons .btn {
        padding: 0 15px;
        font-size: 16px;
        height: 40px;
        line-height: 40px;
    }
}