#section-eco-friendly
{
    top: 100lvh;
    height: 100lvh;
    width: 100vw;
    justify-content: center;
    align-items: center;
    color: white;
}

#section-eco-friendly .container
{
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: calc(50lvh - 55px - 90px);
}

#section-eco-friendly .light-green, #section-eco-friendly .light-green p
{
    color: #62D668;
}

#section-eco-friendly .dark-green, #section-eco-friendly .dark-green p
{
    color: #117717;
}

#section-eco-friendly .section
{
    display: flex;
    opacity: 0;
    flex-direction: column;
    gap: 2px;
    width: 100%;
}

/* Title */
#section-eco-friendly .title
{
    opacity: 1;
    display: flex;
    position: relative;
    height: 180px;
    min-height: 180px;
}
#section-eco-friendly .title p:nth-of-type(1)
{
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}
#section-eco-friendly .title p:nth-of-type(2)
{
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    position: absolute;
}

/* Percentages */
#section-eco-friendly .percentages
{
    flex-direction: row;
    justify-content: space-between;
    width: 65%;
}

/* CO2-Free */
#section-eco-friendly .co2-free
{
    align-items: center;
    transform: scale(0.95, 0.95);
}
#section-eco-friendly .free
{
    margin-left: 30px;
}
#section-eco-friendly .subscript
{
    font-size: 55px;
}

/* Water */
#section-eco-friendly .water
{
    align-items: center;
    margin-top: 100px;
    transform: translateY(50px);
}

/* Resistance */
#section-eco-friendly .resistance
{
    align-items: center;
    margin-top: 100px;
    gap: 150px;
}
#section-eco-friendly .row
{
    display: flex;
    opacity: 0;
    flex-direction: row;
    justify-content: space-between;
    width: 60%;
}
#section-eco-friendly .row:nth-of-type(2)
{
    margin-left: -300px;
}
#section-eco-friendly .uv-rays
{
    display: flex;
    opacity: 0;
    flex-direction: column;
    align-items: center;
}
#section-eco-friendly .apex
{
    font-size: 14px;
    display: inline-block;
    transform: translateY(-13px);
}

@media screen and (max-width: 1150px)
{
    #section-eco-friendly .container
    {
        width: 85vw;
        left: 7.5vw;
    }
}

@media screen and (max-width: 750px)
{
    #section-eco-friendly .title
    {
        min-height: 70px;
        height: 70px;
    }

    /* Percentages */
    #section-eco-friendly .percentages
    {
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        gap: 20px;
    }
    #section-eco-friendly .percentages .right
    {
        margin-left: auto;
    }

    /* CO2-Free */
    #section-eco-friendly .co2-free p
    {
        margin: 0 auto;
    }

    /* Water */
    #section-eco-friendly .water
    {
        margin-top: 50px;
    }
    
    /* Resistance */
    #section-eco-friendly .resistance
    {
        gap: 75px;
    }
    #section-eco-friendly .row
    {
        width: fit-content;
    }
    #section-eco-friendly .mobile .row:nth-child(odd)
    {
        margin-left: auto;
        margin-right: 0px;
    }
    #section-eco-friendly .mobile .row:nth-child(even)
    {
        margin-right: auto;
        margin-left: 0px;
    }
}