#sec-esv{
    background-color: #F4F4F3;
    height: auto;
}
#sec-esv h2{
    width: 70%;
}
.esv-grid{
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap:3rem;
}
.esv-item-left > p{
    text-align: justify;
}
.esv-button-container{
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 2rem;
    align-items: center;
    width: 100%;
}
.esv-button-container a:nth-of-type(2){
    text-decoration: underline;
    font-size: 1.25rem;
}
.esv-item-right{
    position: relative;
}
.esv-item-right > img{
    position: absolute;
    right:25%;
    bottom:0;
    max-width: 70%;
    min-width: 30%;
}

@media (max-width: 768px) {
    #sec-esv h2{
        width: 100%;
    }
    .esv-grid{
        grid-template-columns: 1fr;
    }
    .esv-item-right{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .esv-item-right img{
        position: relative;
        right: 0;
        bottom: 0;
        width: 50%;
    }
    .esv-button-container{
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1REM;
    }
}

.esv-main{
    padding: 10rem 0rem 0rem 0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.esv-main h1{
    font-size: 5rem;
}
.esv-main > p, .esv-card p{
    width: 70%;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 4rem;
}
.esv-main strong{
    font-weight: bold;
}
.esv-main > img{
    width: 15%;
    margin-top: 2rem;
}
.esv-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10rem;
    background-color: #F4F4F3;
    padding: 4rem 10rem;
    text-align: center;
    border-top: 20px solid #DEDEDE;
}
.esv-cards{
    padding: 10rem 5rem;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
    width: 100%;
}
.esv-card{
    border-top: 20px solid #86C673;
    background-color: #CFFFC1;
    text-align: center;
    padding: 2rem;
}
.esv-card h4{
    margin-top: 2rem;
}
.esv-card p{
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 1440px){
    .esv-content{
        padding: 4rem 0;
    }
}
@media (max-width:768px){
    .esv-content{
        padding: 4rem 2rem;
    }
    .esv-cards{
        grid-template-columns: 1fr;
        padding: 2rem 10rem;
    }
    .esv-card{
        margin-bottom: 2rem;
    }
    .esv-card h3{
        font-size: 2.5rem!important;
    }
    .esv-card h4{
        font-size: 1.5rem;
    }
    .esv-card p{
        font-size: 1rem;
    }
}
@media (max-width: 480px){
    .esv-main h1{
        font-size: 3rem;
    }
    .esv-main > p{
        width: 80%;
        font-size: 1rem;
    }
    .esv-main img{
        width: 30%;
    }
    .esv-cards{
        padding: 2rem 1rem;
    }
    .esv-card h3{
        font-size: 2rem!important;
    }
}
footer{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}