@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');

/*font-family: 'Roboto Condensed', sans-serif;*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

.head__logo {
    margin-bottom: 1rem;
}                           

body {
    font-family:Arial, Helvetica, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background-image: url("/images/fondo_turquesa.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    position: relative;
    min-height: 100vh;
    align-items: center
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img{
    height: 50px;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color:#EDDDD4;
    display: block;
    font-weight: bold;
}

.header .navbar ul li a:hover {
    color: #283D3B;
}

a:is(:link, :active, :visited).active {
    background-color: #266371;
    /*padding: 13px 20px;*/
    border-radius: 10px;
}

.icons {
    display:flex
}

.icons i {
    font-size: 25px;
    color:#EDDDD4;
    margin-right: 15px;
    cursor: pointer
}

.icons i:hover {
    color: #283D3B;
}

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.header-txt {
    width: 30%;
}

.header-txt h1 {
    font-size: 70px;
    line-height: 80px;
    font-weight:700;
    text-transform: uppercase;
    color:rgb(1, 166, 173);
    margin-bottom: 25px;
    font-family: 'Roboto Condensed', sans-serif;
}
.header-txt p {
    font-size: 18px;
    color:#EDDDD4;
    font-weight: 500;
    margin-bottom: 25px;
}

.btn-1 {
    display: inline-block;
    padding: 13px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    color:#FFFFFF;
    background-color: #099FA6;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    font-family: 'Roboto Condensed', sans-serif;
}

.btn-1:hover {
    background-color:#266371;
}

.images {
    width: 800px;
    height: 380px;
    position: absolute;
    right: 3em;
}
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.swiper-slide h3 {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: #EDDDD4;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 40px;
    text-transform: uppercase;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.rows {
    width: 180px;
    position: absolute;
    right: 620px;
    bottom: 110px;
}

.swiper-button-prev {
    height: 50px;
    width: 50px;
    border:2px solid #EDDDD4;
    border-radius: 50%;
    font-size: 15px;
}

.swiper-button-next {
    height: 50px;
    width: 50px;
    border:2px solid #EDDDD4;
    border-radius: 50%;
    font-size: 15px;
}

.swiper-button-prev::after {
    font-size: 25px;
    color: #EDDDD4;
}

.swiper-button-next::after {
    font-size: 25px;
    color: #EDDDD4;
}

footer{
    background-color: rgb(46, 64, 83);
    padding: 3rem;
    color: #fff;
}

footer section{
    float: right;
}

footer p{
    margin: 0;
}

footer a{
    transition: color 0.3s ease;
    color: #fff;
    text-decoration: none;
}

footer a:hover{
    color: cornflowerblue;
}

@media(max-width:991px) {

    .menu {
        padding: 30px;
    }

    .menu label {
        display: initial;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #3F3F3F48;
        backdrop-filter: blur(4px);
        display: none;
    }

    .menu .navbar ul li {
        width: 100%;
    }

    #menu:checked ~ .navbar {
        display: initial;
    }

    .icons {
        display: none;
    }

    .header {
        padding: 80px 30px 50px 30px;
        align-items: self-start;
        flex-direction: column;
        align-items: center;
    }

    .header-txt {
        text-align: center;
        width: 100%;
        margin-bottom: 30px;
    }

    .header-txt h1 {
        margin-bottom: 10px;
    }

    .images {
        position: initial;
        width: 300px;
    }

    .rows {
        display: none;
    }
    footer {
        padding: 2rem; 
    }

    footer section {
        float: none; 
        text-align: center; 
        margin-bottom: 2rem;
    }


}