.module-services-overview-bullets {
    position: relative;
}

body.darkmode .module-services-overview-bullets {
    background-color: #000 !important;
    color: #fff;
}

.module-services-overview-bullets .aw-service-bullet-container {
    padding-top: 0;
}

.module-services-overview-bullets .aw-service-bullet-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(100% - 10px);
    margin: 0 auto;
    max-width: 750px;
}

.module-services-overview-bullets .aw-service-bullet-row .aw-service-bullet-col {
    width: 50%;
    box-sizing: border-box;
    display: block;
}

.module-services-overview-bullets .aw-service-bullet-row .aw-service-bullet-col .service:not(.active) {
    padding-left: 20px;
    /* Adjust the padding as needed */
    position: relative;
    /* Needed for pseudo-element positioning */
}

.module-services-overview-bullets .aw-service-bullet-row .aw-service-bullet-col .service:not(.active)::before {
    content: "•";
    /* Unicode for a bullet point */
    position: absolute;
    left: 5px;
    /* Adjust to align with text */
    color: black;
    /* Change color as needed */
    font-size: 1.2em;
    /* Adjust size if necessary */
}


.module-services-overview-bullets .fixed-bullets-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100vw;
    z-index: 7;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
}

.module-services-overview-bullets .fixed-bullets-overlay.active {
    left: 0;
    opacity: 1;
}

.module-services-overview-bullets .service {
    position: relative;
    z-index: 2;
    color: black;
    padding-bottom: 0;
    transition: all 200ms ease-in-out;
}

.module-services-overview-bullets .service-bullets__close-btn {
    display: none;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 1;
}

.module-services-overview-bullets .service.active .service__content {
    padding: 1.5rem 1rem;
    position: relative;
    background-color: white;
    border: 1px solid #00a2ad;
    transition: all 200ms ease-in-out;
    height: calc(100% - 7rem);
}

@media (min-width: 576px) {
    .module-services-overview-bullets .service.active .service__content {
        padding: 2rem;
    }
}

@media (min-width: 768px) {
    .module-services-overview-bullets .service.active .service__content {
        padding: 1.5rem 1rem 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .module-services-overview-bullets .service.active .service__content {
        height: calc(100% - 9rem);
    }
}

.module-services-overview-bullets .service .service__excerpt {
    display: none;
}

.module-services-overview-bullets .service.active .service__excerpt {
    overflow: hidden;
    position: relative;
    display: block;
}

@media (min-width: 768px) {
    .module-services-overview-bullets .service__excerpt {
        height: 8rem;
    }

    .module-services-overview-bullets .service__excerpt:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3rem;
        background: linear-gradient(0deg, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 100%);
    }
}

.module-services-overview-bullets .service-bullets__read-more {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}

.module-services-overview-bullets .object-fit--contain {
    object-fit: contain;
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
}

.module-services-overview-bullets .service-bullets__read-more i {
    transition: all 300ms ease-out;
}

.module-services-overview-bullets .title-wrapper {
    margin-bottom: 0.5rem;
}

.module-services-overview-bullets .title-wrapper.title-wrapper--main {
    margin-bottom: 2.5rem;
}

.module-services-overview-bullets .service-bullet-title-wrapper {
    font-size: 1.2em;
    line-height: 1.2rem;
    cursor: pointer;
    color: #00a2ad;
    text-decoration: underline;
    transition: all 0.1s ease-in-out;
}

.title-wrapper__title.title-point:after {
    content: ".";
    font-weight: 700;
    color: #00a2ad;
}

.module-services-overview-bullets .service.active .service-bullet-title-wrapper {
    color: #000;
    text-decoration: none;
}

.module-services-overview-bullets .service .service__featured-image {
    display: none;
}

.module-services-overview-bullets .service.active .service__featured-image {
    background-color: white;
    position: relative;
    overflow: hidden;
    height: 9rem;
    padding: 0 0 1rem 0;
    display: block;
}

@media (min-width: 768px) {
    .module-services-overview-bullets .service.active .service__featured-image {
        height: 7rem;
        padding: 1rem 0;
    }
}

@media (min-width: 1024px) {
    .module-services-overview-bullets .service.active .service__featured-image {
        height: 9rem;
    }
}

.module-services-overview-bullets .service:hover,
.module-services-overview-bullets .service:active,
.module-services-overview-bullets .service:focus {
    text-decoration: none;
}

@media (min-width: 1024px) {
    .module-services-overview-bullets .service:hover .service-bullets__read-more i {
        transform: scale(1.2);
        transition: all 200ms ease-in-out;
    }
}

.module-services-overview-bullets .service.active {
    transform: scale(1.15);
    z-index: 8;
}

.module-services-overview-bullets .service.active .service-bullets__close-btn {
    display: block;
}

.module-services-overview-bullets .service.active .service__content {
    border-top: none;
}

.module-services-overview-bullets .service.active .service__featured-image {
    border: 1px solid #00a2ad;
    border-bottom: none;
}

.module-services-overview-bullets .service.active .service-bullets__read-more {
    display: none !important;
}

.module-services-overview-bullets .service.active .service__excerpt {
    height: auto;
    position: relative;
}

.module-services-overview-bullets .service.active .service__excerpt:after {
    content: '';
    opacity: 0;
}

@media(max-width: 767px) {
    .module-services-overview-bullets .aw-service-bullet-row {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: flex-start;
        justify-content: flex-start;
        align-items: stretch;
        width: calc(100% - 10px);
        margin: 0 auto;
    }

    .module-services-overview-bullets .aw-service-bullet-row .aw-service-bullet-col {
        width: 90%;
        box-sizing: border-box;
        display: block;
        margin: 0 auto;
        position: relative;
        margin-left: 5%;
    }
}