/* ----- GALLERY ----- */
.plants {
    display: flex;
    justify-content: center;
    width: 81.25%;
    margin: 0 auto;
    padding-top: 9.375rem;
    padding-bottom: 11.25rem;
    gap: 30px;
    height: 100%;
    align-items: stretch;
}

.plants__gallery__picture,
.plants__info {
    max-width: 35.625rem;
    width: 100%;
    height: 100%;
    flex-grow: 1;
}

.plants__gallery {
    background-color: #FFE9E9;
    position: relative;
    width: 100%;
    min-height: 35.3125rem;
    border-radius: 5px;
}

.plants__gallery__picture {
    display: flex;
    justify-content: center;
    align-items: center;
}

.plants__gallery__img {
    width: 60%;
    height: 60%;
    margin: 0 auto;
}

.fa-arrow-left,
.fa-arrow-right {
    position: absolute;
    color: #92D5F6;
    font-size: 20px;
    cursor: pointer;
}

.fa-arrow-right {
    top: 17.4rem;
    right: 2%;
}

.fa-arrow-left {
    top: 17.4rem;
    left: 2%;
}

.fa-circle {
    color: #92D5F6;
}

.plants__gallery__circles {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 7.5rem;
    padding-top: 0.625rem;

}

.plants__info {
    background-color: #F5F7F9;
    padding: 3.4375rem 4.375rem 4.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px 0 rgba(13, 18, 39, 0.30);
    min-height: 35.3125rem;
}

.plants__info__paragraph {
    padding-top: 1.75rem;
    padding-bottom: 1.6875rem;
    letter-spacing: 1px;
}

.plants__info__fscLogo {
    width: 4.375rem;
    padding-bottom: 0.27rem;
}

.plants__info__button {
    margin: 0 auto;
}


/* ----- 2nd SECTION WITH BARS ------ */
.fairtrade {
    display: grid;
    grid-template-columns: 600px 1fr;
    column-gap: 9.0278%;
    row-gap: 3.5625rem;
    margin: 0 auto;
    max-width: 890px;
    width: 100%;
}

.fairtrade__header {
    grid-area: 1 / 1 / 2 / -1;
    justify-self: center;
}

.fairtrade__statistics {
    grid-area: 2 / 1 / 3 / 2;
}

.fairtrade__statistic {
    width: 100%;
    padding-bottom: 2.5rem;
}

.fairtrade__statistic__header {
    padding-bottom: 0.6875rem;
}

.fairtrade__statistic__description {
    color: #979797;
    padding-bottom: 0.3125rem;
}

.fairtrade__statistic__bar {
    background-color: #F5F7F9;
    color: #FFFFFF;
    margin-bottom: 0.625rem;
}

.percentage27 {
    width: 27%;
}

.percentage20 {
    width: 20%;
}

.percentage17 {
    width: 17%;
}

.percentage14 {
    width: 14%;
}

.percentage5 {
    width: 5%;
}

.percentage4 {
    width: 4%;
}

.percentage3 {
    width: 3%;
}

.percentage2 {
    width: 2%;
}

.percentage27,
.percentage20,
.percentage17,
.percentage14,
.percentage5,
.percentage4,
.percentage3,
.percentage2 {
    background-color: #F9C4D2;
    padding-left: 4px;
    font-size: 14px;
    line-height: 21px;
}

.fairtrade__aside {
    grid-area: 2 / 2 / 3 / -1;
    justify-self: end;
    padding-top: 5.8125rem;
}

.fairtrade__aside__gif {
    width: 160px;
}




/* MEDIA QUERIES TABLET */
@media screen and (max-width: 768px) {

    /* ----- GALLERY ----- */
    .plants {
        padding-top: 2.375rem;
        padding-bottom: 5.375rem;
    }
    .plants__gallery {
        height: auto;
        min-height: 0;
    }
    .plants__info {
        max-width: 100%;
        padding: 1.4375rem 1.375rem 1.5rem;
    }
    .plants__info__button {
        margin: 15% auto;
    }
    

    /* ----- 2nd SECTION WITH BARS ------ */
    .fairtrade {
        grid-template-columns: 2fr 1fr;
        column-gap: 0%;
        row-gap: 2rem;
        max-width: 95%;
    }
}

/* MEDIA QUERIES MOBILE */
@media screen and (max-width: 360px) {

    /* ----- GALLERY ----- */
    .plants {
        display: flex;
        flex-direction: column;
        min-height: 50px;
    }

    .plants__info {
        max-width: 100%;
    }

    .plants__gallery {
        display: flex;
        align-items: center;
        flex-direction: column;
        height: auto;
        min-height: 20.3125rem;
    }

    .plants__gallery__picture {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .plants__gallery__img {
        height: 40% !important;
    }

    .plants__gallery__circles {
        width: 10rem;
        position: absolute;
        bottom: -10%;
    }

    .fa-arrow-right,
    .fa-arrow-left {
        top: 9.8rem;
    }

    .plants__info {
        padding: 3.4375rem 1.375rem 4.5rem;
        margin-top: 2rem;
    }

    .plants__info__fscLogo {
        padding-bottom: 3.27rem;
    }
    .plants__info__button {
        margin: 0 auto;
    }

    /* ----- 2nd SECTION WITH BARS ------ */
    .fairtrade {
        display: flex;
        flex-direction: column;
    }
    .fairtrade__aside {
        padding-top: 0;
        align-self: center;
    }
    .fairtrade__aside__gif {
        width: 260px;
    }
}