@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;
}

body{
    font-family: Arial, Helvetica, sans-serif;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header{
    
    background-image: url(images/bg2.jpg);
    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;
    z-index: 3;

}
.logo{
    
    display: flex;  
    height: 100px;
    cursor: pointer;
}


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

.menu .navbar ul li a{
    font-size: 18px;
    padding: 20px;
    color: #ffffff;
    display: block;
    font-weight: bold;
    transition: all .2s ease;
}

.menu .navbar ul li a:hover {
    color: #266371;

}
.menu .navbar ul li ul{
    position: absolute;
    right: 0;
    width: 300px;
    display: none;
}
.menu .navbar ul li ul li a{
    font-size: 15 px;
    text-transform: capitalize;
}
.menu .navbar ul li ul li ul{
    position: absolute;
    top: 0;
    left: 0;

}
.menu .navbar ul li ul li {
    width: 100%;
}
.menu .navbar ul li:hover >ul{
    display: initial;
}
.icons {
    display: flex;

}
.icons i{
    font-size: 25px;
    color: #ffffff;
    margin-right: 15px;
    cursor: pointer;
}
.icons i:hover{
    color: #266371;
}
#menu{
    display: none;

}
.menu-icono{
    width: 25px;
}
.menu label{
    
    cursor: pointer;
    display: none;
}
.sub-menu{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0ba5f2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    list-style-type: none;
    padding: 2px;
    border-radius: 5px;
    z-index: 9999 !important;
}
.navbar li:hover .sub-menu{
    display: block;
}
.sub-menu li{
    margin: 10px;
}
.sub-menu a{
    font-size: 18px;
    
}
.header-txt{
    width: 40%;
}
.header-txt h1{
    font-size: 70px;
    line-height: 80px;
    font-weight: 700;
    text-transform: uppercase;
    color: #266371;
    margin-bottom: 25px;
    font-family: "Roboto Condensed", sans-serif;
    
}
.header-txt p{
    font-size: 18px;
    color: #ffffff;
    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: 0;
    z-index: 1;
}
.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: #ffffff;
    font-family: 'Robot 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: 150px;

}
.swiper-button-prev{
    height: 50px;
    width: 50px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    font-size: 15px;
}
.swiper-button-next{
    height: 50px;
    width: 50px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    font-size: 15px;
}
.swiper-button-prev::after{
    font-size: 25px;
    color: #ffffff;
}
.swiper-button-next::after{
    font-size: 25px;
    color: #ffffff;
}

@media(max-width:991px){
    .logo{
        height: 65px;
    }
    .menu{
        padding: 30px;
    }
    .menu label{
        display: initial;
    }
    .menu .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #3f3f3f48;
        backdrop-filter: blur(5px);
        display: none;

    }
    .menu .navbar ul li {
        width: 100%;
    };
    
    .sub-menu{
        
        top: 0;
        left: 0;
        width: 100%;
        backdrop-filter: blur(5px);
    }

    #menu:checked ~ .navbar{
        display: initial;
    }
    
    .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;
        height: 300px;   
    }
    .rows{
        display: none;
    }

}