@font-face {
    font-family: 'Open Sans Bold';
    src: url(../fonts/open-sans/ttf/open-sans-latin-800-normal.ttf);
}
@font-face {
    font-family: 'Open Sans normal';
    src: url(../fonts/open-sans/ttf/open-sans-latin-400-normal.ttf);
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow: hidden;
}
main{
    position: relative;
}
.seccion-principal{
    height: 100vh;
    width: 100%;
    position: relative;
}
.img-banner{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: right;
}
.container-text{
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    padding: 4rem;
    border-top: 1px solid #6daf99;
    border-bottom: 1px solid #6daf99;
    text-align: center;
}
h1{
    font-size: 4rem;
    text-transform: uppercase;
    font-family: 'Open Sans Bold';
    font-weight: bold;
    line-height: 1;
    margin-bottom: 1.6rem;
    color: #83d7bb;
}
h2{
    font-size: 2rem;
    text-transform: uppercase;
    font-family: 'Open Sans Bold';
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.04rem;
    margin-bottom: 1rem;
    color: #6daf99;
}
ul{
    list-style: none;
    padding-left: 0;
    margin-top: 2rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 1rem;
}
li{
    font-size: 1.6rem;
    text-transform: uppercase;
    font-family: 'Open Sans Bold';
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.04rem;
    margin-bottom: 1rem;
    color: #6daf99;
}
a{
    display: flex;
    font-family: 'Open Sans normal';
    text-decoration: none;
}

svg{
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    object-fit: contain;
    fill: #6daf99;
}
footer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
}
footer p{
    font-size: 1rem;
    font-family: 'Open Sans normal';
    margin-bottom: 0;
}
@media screen and (max-width:1200px) {
    .container-text{
        width: 80%;
        padding: 3rem 0;
    }
    h1{
        font-size: 2.4rem;
    }
    h2{
        font-size: 1rem;
        text-transform: uppercase; 
        font-family: 'Open Sans normal';
        line-height: 1.5;
    }
}
@media screen and (max-width:990px) {
    .img-banner{
        object-position: unset;
    }
    .container-text{
        width: 94%;
        padding: 2rem 0;
        top: 35%;
    }
    h1{
        font-size: 1.8rem;
        line-height: 1.5;
    }
    h2{
        font-size: 1rem;
        line-height: 1.5;
    }
}