.highlights-card {
    flex: 1;
    min-width: 1px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 45px 35px;
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.25));
    background: #ffffff;
}

.highlights-card-icon {
    width: 60px;
    height: 60px;
}

.highlights-card-title {
    color: #001E61;
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 6px 0;
}

.highlights-card-content {
    font-size: 22px;
    color: #000000;
    text-align: center;
}

.procedure-service-card-wrapper {
    flex: 1;
    min-height: 1px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.procedure-service-step {
    color: #E10E77;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    padding: 10px 0;
}

.procedure-service-card-content {
    /*padding: 20px 0;*/
    font-size: 22px;
    /*text-align: center;*/
}
.procedure-service-card-icon {
    width: 100px;
    height: 100px;
    padding: 13px;
    border: 1px solid #001E61;
    margin-bottom: 10px;
}

.procedure-service-card-title {
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    font-size: 22px;
    font-weight: 600;
    color: #001E61;
    padding: 10px 0;
}

.procedure-service-arrow {
    background: #E10E77;
    height: 27px;
    width: 100%;
    clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 20px 100%, 0 50%);
    transform: rotate(180deg);
}

.procedure-card-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
}

.procedure-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.procedure-wrapper .procedure-steps {
    flex: 1;
}

.procedure-wrapper .col-web-module {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.procedure-image {
    margin: 0 30px;
    height: 230px;
}

.procedure-image-mobile {
    /*margin: 0 30px;*/
    /*height: 230px;*/
    width: 100%;
    margin-bottom: 20px;
}
.procedure-image-mobile img {
    width: 100%;
}

.procedure-image img{
    width: 100%;
    height: 100%;
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none;
    }
    .highlights-card-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        gap: 100px;
        margin: var(--space-content-margin) 0 30px 0;
    }

    .procedure-service-top-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        gap: 50px;
        margin: var(--space-content-margin) 0 30px 0;
    }

    .procedure-service-bottom-wrapper {
        display: flex;
        justify-content: space-evenly;
        align-items: stretch;
        margin: 30px 0;
    }

    .img-web-module-wrapper {
        min-width: 110px;
        width: 110px;
        height: 110px;
        border-radius: 50%;
        background: #F6F6F6;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .img-web-module-wrapper img {
        width: 70px;
    }
}

@media (max-width: 768px) {
    .highlights-card-wrapper {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        margin: 25px 0;
    }

    .procedure-card-container {
        max-width: 100%;
        margin: 20px 0;
    }

    .procedure-service-card-wrapper {
        max-width: 100%;
    }

    .highlights-card {
        margin-bottom: 20px;
        max-width: 100%;
    }

    .img-web-module-wrapper {
        min-width: 50px;
        width: 50px;
        height: 50px;
    }

    .img-web-module-wrapper img {
        width: 40px;
    }
}


