:root {
    --main-title-color: #227C37;
    --main-title-color-2: #73A82D;
    --main-title-color-3: #73A82D;
    --subtitle-background: #227C37;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 20px 150px;
    font-size: 20px;
}

/* NORMALIZE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}


h1 span {
    color: var(--main-title-color);

}

.main-description {
    margin-bottom: 30px;
    text-align: center;
}


.feature-item {
    margin-bottom: 20px;
    font-size: 18px;
}

.feature-item__title {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.feature-item__title span {
    color: #FFF;
    display: inline-block;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-image: url("/assets/landings/promigas-peru/bullet-item.png");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    font-size: 1rem;
    font-weight: bold;
}

.feature-item h2 {
    width: 100%;
    background-color: var(--subtitle-background);
    color: white;
    border-radius: 0 20px 0 0;
    line-height: 25px;
    font-size: 16px;
    white-space: nowrap;
    padding-left: 20px;
    margin-left: -15px;
}

.feature-item p {
    margin: 0;
}

.feature-key {
    margin-bottom: 15px;

}

.feature-key:not(:last-child) {
    border-bottom: dashed 1px #000;
    padding: 15px 0;
}

.feature-description {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-description img {
    flex-grow: unset;
}

.feature-description h3 {
    color: var(--subtitle-background);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 10px;
}

.feature-description h3 b {
    display: block;
    font-size: 40px;
}

.feature-description h3 span {
    display: block;
    font-size: 20px;
}

/* CADA SECCON TIENE DIFERENTES COLORES Y TAMAÑOS
==SECCION 2==
*/
.feature-item:nth-child(3) h2 {
    background-color: var(--main-title-color-2)
}

.feature-item:nth-child(3) .feature-description h3,
.feature-item:nth-child(3) .feature-description p {
    color: var(--main-title-color-2)
}

.feature-item:nth-child(3) .feature-description h3 b {
    font-size: 30px
}


.feature-item:nth-child(3) .feature-description h3,
.feature-item:nth-child(3) .feature-description p {
    font-size: 20px;
    color: #000;
    font-weight: 400;
}

.feature-item:nth-child(3) .feature-description h3 span {
    font-size: 20px
}

.feature-item:nth-child(3) .feature-description h3 b {
    color: var(--main-title-color-2);
    font-size: 2rem
}

/* ==SECCION 3== */
.feature-item:nth-child(4) h2 {
    background-color: var(--main-title-color-2)
}

.feature-item:nth-child(4) .feature-description h3,
.feature-item:nth-child(4) .feature-description p {
    color: var(--main-title-color-2)
}

.feature-item:nth-child(4) h3 .flex {
    display: flex;
    gap: 6px;
    font-size: 30px;
    align-items: center;
}

.feature-item:nth-child(4) h3 .flex span {
    font-size: 13px
}

.feature-item:nth-child(4) .feature-description h3 b {
    font-size: 1.4rem
}

.feature-item:nth-child(4) h2 {
    background-color: var(--main-title-color-2)
}

.feature-item:nth-child(4) .feature-description h3,
.feature-item:nth-child(4) .feature-description p {
    color: var(--main-title-color-2)
}


.feature-item:nth-child(4) .feature-description h3 b {
    font-size: 2rem
}

.feature-item:nth-child(4) .feature-point strong,
.feature-item:nth-child(4) .feature-point h4,
.feature-item:nth-child(4) .feature-key strong {
    color: var(--main-title-color-2)
}

/*  */
.feature-description h3 span.flex {
    display: flex;
    font-size: 1em;
    gap: 10px;
}

.feature-points {
    display: flex;
}

.feature-point {
    padding: 10px;
    border-right: dotted 1px #000;
}

.feature-point:first-child {
    padding-left: 0;
}

.feature-point:last-child {
    padding-right: 0;
    border: none;
}

@media (min-width: 768px) {
    .main-container {
        font-size: 32px;
    }

    .main-description {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .feature-item h2 {
        font-size: 38px;
        line-height: 65px;
        border-radius: 0 600px 0 0;

    }

    .feature-item__title span {
        width: 100px;
        height: 100px;
        line-height: 100px;
        font-size: 70px;
    }

    /* Cada elemento tiene su forma de deistribucion en escritorio */
    .feature-item .feature-keys {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        grid-template-rows: repeat(2, 1fr);
    }
}