.js-enabled .readmore-content {
    max-height: 210px;
    overflow: hidden;
    position: relative;
}

.seo-box {
    position: relative;
    padding: 27px 30px;
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, .07);
}

.seo-box-content {
    font-size: 18px;
    position: relative;
    font-weight: 400;
    margin-bottom: 12px;
}

@media (max-width: 991px) {
    .seo-box-content {
        text-align: center;
        padding-top: 10px;
    }
}

.seo-box-content a {
    color: #6ac847 !important;
}
.seo-box-content p {
    font-size: 16px !important;
}
.seo-box-content h2 {
    font-size: 22px !important;
}
.seo-box-content h3 {
    font-size: 18px !important;
}

.js-enabled .readmore-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(245, 245, 245, 0.3);
    pointer-events: none;
    z-index: 1;
}

.readmore-content.expanded {
    mask-image: none !important;
}

.js-enabled .readmore-content {
    mask-image: linear-gradient(to bottom, #000000 60%, rgb(12 12 12 / 42%) 85%, transparent 100%);
}

.readmore-content.expanded::after {
    background: none !important;
    display: none;
}

.readmore-content.expanded {
    max-height: none;
    padding-bottom: 20px;
    overflow: visible;
}

.readmore-content.expanded .seo-box-content {
    -webkit-mask-image: none;
    mask-image: none;
}

.readmore-content.expanded .seo-box-image-container {
    height: auto;
    min-height: 100vh;
}

.readmore-content.expanded .seo-box-image {
    position: sticky !important;
    top: 20px;
    z-index: 10;
}

.seo-box-read-more {
    font-size: 14px;
    color: rgb(0, 0, 0);
    background: none !important;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    display: block;
    border: none;
    cursor: pointer;
    z-index: 2;
    border-radius: 50px;
    padding: 6px 12px;
    transition: all 0.3s ease;
}

.seo-box-read-more:hover {
    background: none !important;
    transform: translateY(-2px);
    transform: translateX(-50%);
    color: #000000;
}

.seo-box-read-more::after {
    content: '\f107';
    font-family: FontAwesome;
    font-size: 14px;
    margin-right: 5px;
    padding-right: 10px;
}

.seo-box-read-more.readless::after {
    content: '\f106';
    font-family: FontAwesome;
    font-size: 14px;
    margin-right: 5px;
    padding-right: 10px;
}

.readmore-content.expanded .seo-box-read-more {
    display: inline-block;
    position: relative;
    width: auto;
    min-width: 100px;
    text-align: center;
    font-size: 14px;
    color: rgb(255, 255, 255);
    box-shadow: rgba(255, 255, 255, 0.25) 0px 2px 5px, rgba(106, 200, 71, 0.35) 0px 5px 15px;
    background: rgb(106, 200, 71);
    text-decoration: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    border-radius: 50px;
    padding: 6px 12px;
    transition: all 0.3s ease;
    bottom: auto;
    left: auto;
    transform: none;
}

.readmore-content.expanded .seo-box-read-more:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.btn-read-more {
    display: flex;
    /* margin-top: 30px; */
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 0 30px 0;
}

.seo-box-image-container {
    margin-bottom: 20px;
    text-align: center;
}

.seo-box-image {
    position: relative;
    z-index: 2;
    border-radius: 25px;
    display: block;
}

.seo-box-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    position: sticky !important;
    top: 80px;
    z-index: 10;
    align-self: flex-start;
    z-index: 10;
}

.seo-box-image-container {
    overflow: visible;
}

.seo-box-img:before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: #6ac847;
    content: '';
    z-index: 0;
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg)
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 0px) {
    .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .col-md-8 {
        flex: 0 0 66.6667%;
        max-width: 66.6667%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
}