/* Widget intro-section */

.intro-section,
.intro-section * {
    box-sizing: border-box;
}

.intro-section {
    padding: 3rem 1rem;
    overflow: hidden;
    background: #fffbf7;
}

.intro-section__inner {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.intro-section__picto {
    display: block;
    width: 7rem;
    height: 7rem;
    margin: 0 auto 1.5rem;
    object-fit: contain;
}

.intro-section__text {
    color: #090e1a;
    font-family: var(--font-heading, "Lato", sans-serif);
    font-size: 1rem;
    line-height: 1.625;
}

.intro-section__text p {
    margin: 0 !important;
}

.intro-section__flags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.intro-section__flag {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    overflow: hidden;
    border-radius: 999px;
    box-shadow: 0 4px 6px -1px rgba(9, 14, 26, .1), 0 2px 4px -2px rgba(9, 14, 26, .1);
}

.intro-section__flag img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*RESPONSIVE*/

/*phone*/
@media (max-width: 767px) {

}

/*tablet*/
@media (min-width: 768px) and (max-width: 1023px) {

    .intro-section {
        padding-top: 6.25rem;
        padding-bottom: 6.25rem;
    }

}

/*mobile and tablet*/
@media (max-width: 1023px) {

}

/*desktop*/
@media (min-width: 1025px) {

    .intro-section__flags {
        gap: 1.5rem;
    }

    .intro-section__flag {
        width: 3rem;
        height: 3rem;
    }

}

/*laptop 1*/
@media (min-width: 1024px) and (max-width: 1439px) {

    .intro-section__inner {
        max-width: 45rem;
    }

    .intro-section__picto {
        width: 5rem;
        height: 5rem;
    }

    .intro-section__text {
        font-size: 0.875rem;
    }

}

/*laptop 2*/
@media (min-width: 1440px) and (max-width: 1700px) {

}

/*RESPONSIVE*/

/* mobile paragraph minimum */
@media (max-width: 767px) {
    .intro-section p {
        font-size: max(0.9375rem, 1em);
    }
}
