/*Points with icon section*/

.points-with-icon-section {
    display: flex;
    justify-content: center;
    padding: 5.6rem 0;
}

.points-with-icon-section .services {
    width: 90%;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.points-with-icon-section .services__headline {
    width: 80%;
    font-family: Josefin Sans, sans-serif;
    font-size: 4.8rem;
    font-weight: 500;
    line-height: 140%;
    text-align: center;
    margin-bottom: 2.2rem;
}

.points-with-icon-section .services__subline {
    width: 80%;
    font-family: Lato, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 154%;
    text-align: center;
    margin-bottom: 6.5rem;
}

.points-with-icon-section .services__content {
    display: flex;
    gap: 2.5rem;
}

.points-with-icon-section .services__content__col {
    flex-basis: 50%;
}

.points-with-icon-section .services__content__col .service {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.points-with-icon-section .services__content__col .service .toggle-icon {
    width: 3.6rem;
    height: 1.6rem;
    position: relative;
    top: 0.5rem;
}

.points-with-icon-section .services__content__col .service__text {
    font-family: Lato, sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 153%;
    text-align: left;
}

.points-with-icon-section .services__content__col .service__text .bold {
    font-family: Lato, sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 153%;
    text-align: left;
}

.points-with-icon-section .services__content__col .service-message {
    display: flex;
    flex-basis: 50%;
    padding: 12px 24px;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 11px;
    background: #CDEDD5;
    border-left: 2px solid #00C100;
}

@media only screen and (min-width: 600px) and (max-width: 700px) {
    .points-with-icon-section .services__headline {
        width: 100%;
    }

    .points-with-icon-section .services__subline {
        width: 100%;
    }

    .points-with-icon-section .services__content {
        flex-direction: column;
    }
}

@media only screen and (min-width: 500px) and (max-width: 600px) {
    .points-with-icon-section .services__headline {
        width: 100%;
    }

    .points-with-icon-section .services__subline {
        width: 100%;
    }

    .points-with-icon-section .services__content {
        flex-direction: column;
    }
}

@media only screen and (min-width: 320px) and (max-width: 500px) {
    .points-with-icon-section .services__headline {
        width: 100%;
    }

    .points-with-icon-section .services__subline {
        width: 100%;
    }

    .points-with-icon-section .services__content {
        flex-direction: column;
    }

    .points-with-icon-section .services__headline {
        font-size: 3.2rem;
    }
}

/*End of points with icon section*/
