/** GENERALES **/

@font-face {
    font-family: 'Roboto';
    src: local("./fonts/Roboto-Black.ttf") format('truetype'),
        local("./fonts/Roboto-Light.ttf") format('trueype');
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    width: 100vw;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #003B63;
    overflow-x: hidden;
    line-height: 2.5rem;
}

h1 {
    font-weight: 900;
    font-size: 2.5rem;
    text-align: center;
    margin: 7rem auto 3rem 0;
    line-height: 3rem;
    text-align: left;
}

main {
    margin: auto;
    width: 80%;
}

/** CONTACTO **/

#contacto {
    display: flex;
    flex-direction: column;
}

#contacto span {
    position: absolute;
    margin-left: 1rem;
    line-height: 1.5rem;
    font-weight: bold;
}

#contacto div {
    position: relative;
    /* display: inline; */
}

.segunda {
    transform: translateY(50%);
}

/** HERO  **/

#hero>p {
    transform: translateY(-25%);
    font-size: 1.2rem;
}

#hero {
    /* position: relative; */
    min-height: 50vh;
    background-color: #8BD5FF;
    display: flex;
    flex-direction: column;
    padding-top: 8rem;
    /* margin-top: 2rem; */
}

#wave {
    background-image: url("./images/hero.svg");
    background-repeat: repeat-x;
    min-height: 100px;
    width: 100vw;
    margin-top: -1px;
}

#hero>div {
    display: flex;
    justify-content: center;
    /* top: 70%;
    left: 50%; */
    /* transform: translate(-50%, 250%); */

}

#hero>p {
    /* transform: translate(-50%, 300%); */
    text-align: center;
}

#logo {
    /* transform: translate(-50%, -90%); */
    margin: 2.5em auto;
    max-width: 90vw;
}

/** SERVICIOS **/

#servicios li {
    font-size: 1.5rem;
}

/** GALERÍA **/

#galeria {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

#galeria-horizontal {
    /*display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
	*/
	margin-top: 1rem;
	display: flex;
	flex-direction:column;
	justify-content: space-around;
	gap: 1rem;
}

#galeria img, #galeria video {
    width: min(80vw, 300px);
    height: min(75vh, 530px);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
}


#galeria-horizontal img,#galeria-horizontal video {
    /*width: min(80vw, 700px); */
	/* aspect-ratio: 1 / 1; */
    /*height: min(75vh, 530px); */
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
}

/** BOTONES  **/

.btn {
    padding: 10px;
    /* font-weight: 900; */
    margin: .5rem;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
}

.primary {
    color: white;
    background-color: #26BBE4;
    border: none;
}

.secondary {
    border: 2px #003B63 solid;
    background: transparent;
}

/** NAVBAR **/

/* nav {
    position: relative;
    padding: 10px 30px;
    width: 100vw;
    height: 2rem;
    box-shadow: 0px 4px 15px rgba(109, 109, 109, 0.25);
} */

/* #hamburger {
    right: 6.5em;
    top: 0.9em;
    position: absolute;
    background: transparent;
    border: none;
} */

/* #hamburger:focus {
    right: 3em;
} */

/** FOOTER **/

footer {
    min-height: 30vh;
    background-color: #0F2636;
    color: #ABDDFF;
    padding: 1rem 3rem;
    margin-top: 4rem;
}

footer a {
    color: inherit;
}
