/* --- FeatureBoxImage Portlet Styles --- */

 strong{
    font-weight: 400 !important;
}

.outfit {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-transform: unset;
    margin-bottom: 10px;
}

.feature-box-image {
    padding: 70px 0 20px 0;
    @media (max-width: 992px) {
        padding: 0 !important;
    }
    .align-items-center{
        justify-content: center;
    }
    .img-fluid{
        border-radius: 21px;
        box-shadow: 0 21px 33px 0 rgba(0, 0, 0, 0.13);
        max-width: unset;
        @media (max-width: 992px) {
            max-width: 100% !important;
        }
    }
}

/* The white box containing all the text content */
.feature-box-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.feature_img_left .feature-box-content{
    position: relative;
    left: 250px;
    @media (max-width: 992px) {
        left: 0 !important;
    }
}

/* Style for the main image in the right/left column */
.feature-box-image-col img {
    border-radius: 0.75rem;
}

/* Header section with heading and logo */
.feature-box-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

 h2 {
    color: #1B223C;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.821px;
}

.feature-box-headings .subheading {
    color: #797878;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    margin-bottom: 10px;
}

.feature-box-logo {
    flex-shrink: 0; /* Prevents the logo from shrinking */
}

.feature-box-logo img {
    max-height: 40px;
    width: auto;
}

.feature-box-content .description {
    color: #1B223C;
    font-size: 19.701px;
    font-style: normal;
    font-weight: 274;
    border-top: 1px solid #E7EBFF;
    padding-top: 10px;
    max-width: 700px;
    margin-bottom: 0;
}

/* Feature list section */
.feature-box-features h3 {
    color: #1B223C;
    font-size: 23px;
    font-style: normal;
    font-weight: 590;
    letter-spacing: -0.227px;
    text-transform: unset;
}

.feature-box-features ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-box-features ul li {
    color: #1B223C;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    svg{
        vertical-align: unset;
    }
}

/* The call-to-action button */
.feature-box-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #FFF;
    font-style: normal;
    font-weight: 590;
    line-height: 33px;
    background: linear-gradient(82deg, #874276 24.62%, #20306F 78.3%);
    box-shadow: 0 1px 30px 0 rgba(27, 34, 60, 0.16);
    font-size: 1rem;
    background-position: left center;
    background-size: 100% 100%;
    transition: background-position 0.8s ease-in-out;
    width: 60%;
}

.feature-box-btn:hover,
.feature-box-btn:focus {
    color: #FFF;
    background-size: 200% 100%;
    background-position: right center;
}

.flexmiete_feature_box{
    padding: 0 0 0 0;
    .img-fluid{
        max-width: 100%;
    }
}


/* Responsive adjustments for screens smaller than 'large' */
@media (max-width: 991.98px) {
    .feature-box-image-col {
        margin-bottom: 2rem;
    }

    .feature-box-content {
        padding: 1.5rem;
    }
}

