.contenido{
    display: flex;
    margin-top: 20px;
}

#hero{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 20vh;
    background: rgb(16,78,47);
    background: linear-gradient(90deg, rgb(190, 209, 190) 0%, rgb(159, 199, 173) 20%, rgb(89, 179, 134) 100%);
}

#hero h1{
    color: #fff;
    font-size: 4vw;
}

.contactanos{
    padding: 10px 30px;
    width: 100%;
	margin: 20px;
	border-radius: 6px;
	overflow: hidden;
	background:#eff0f3;
	box-shadow: 0px 1px 10px rgba(88, 87, 87, 0.2);
	transition: all 400ms ease-out;
	cursor: default;
}
.contactanos:hover{
    background: #d5d6d8;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.4);
	transform: translateY(-1%);
}
.contactanos li{
    list-style: circle;
}
.map h2{
    margin-left: 15px;
}
iframe{
    display: flex;
    justify-content: center;
    padding: 20px 40px;
    width: 540px;
}

@media(max-width: 900px){
    .contenido{
        display: inline;
    }
    .contactanos{
        width: 80%;
    }
    #hero h1{
        font-size: 6vw;
    }


    .map h2{
        margin-top: 30px;
        padding-left: 15px ;
    }
    
    iframe{
        width: 500px;
    }

}
@media(max-width: 574px){
    .contenido{
        display: inline;
    }
    .contactanos{
        width: 77%;
    }

    #hero h1{
        font-size: 6vw;
    }

    .map h2{
        margin-top: 30px;
        padding-left: 15px ;
    }

    iframe{
        width: 360px;
        padding: auto;
    }
}
