.ehero {
    width: 100%;
}

.ehero img {
    width: 100%;
}

.esect h1 {
    color: white;
    background-color: var(--main-color);
    font-family: 'FuturaBold',  sans-serif;
    padding: 30px;
    text-align: center;
}

.esect__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 50px 5%;
    gap: 50px;
}

.esect__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.esect__info h3{
    font-size: 2rem;
    font-family: 'FuturaBold',  sans-serif;
    margin-bottom: 30px;
    color: var(--main-color);
}

.esect__info p {
    font-size: 1.6rem;
    color: var(--main-color);
}

.esect__info p i{
    color: var(--main-color);
}

.esect__list {
    padding: 0 5%;
    color: var(--main-color);
}

.esect__list h2 {
    font-size: 2.5rem;
    font-family: 'FuturaBold',  sans-serif;
    text-align: center;
    margin-bottom: 40px;
}

.esect__list p {
    font-size: 1.8rem;
}

.esect1 {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 6% 0;
}

.esect1__btn {
    background-color: var(--main-color);
    text-decoration: none;
    color: white;
    font-size: 3rem;
    font-family: 'FuturaBold',  sans-serif;
    padding: 30px;
    border: 3px solid var(--main-color);
}

.esect1__btn:hover {
    color: var(--main-color);
    background-color: white;
    border: 4px solid var(--main-color);
}

@media only screen and (max-width:600px){
    .esect__gallery {
        grid-template-columns: 1fr;
    }

    .esect1__btn {
        font-size: 1.2rem;
    }

}