@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
}

.wallpaper{
    width: 100vw;
    max-height: 100vh;
    object-fit: cover;
    opacity: 1;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
}

nav{
    width: 90%;
    display: flex;
    margin: auto;
    background-color: #ffffff;
    height: 60px;
    border-radius: 25px;
    margin: 3px auto;
}

.img-logo{
    margin: auto;
    height: 50px;
}

.menu{
    display: flex;
    list-style: none;
    font-family: 'Poppins', sans-serif;
    margin: auto;
    height: 100%;
}

.menu li{
    margin: 0 5px;
    display: flex;
    height: 100%;
}

.menu li a{
    color: #333333;
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 2px solid transparent;
}

.menu li a:hover{
    border-bottom: 2px solid #333333;
}

/* Dropdown*/

.dropdown{
    position: relative;
    z-index: 1;
}

.dropdown:hover .dropdown-content{
    display: block;
}

.dropdown:hover > a{
    border-bottom: #333333 2px solid;
}

.dropdown-content{
    display: none;
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    min-width: 250px;
    margin-top: 1px;
    border-radius: 0px;
}

.dropdown-content li{
    height: 100%;
    width: 100%;
    display: flex;
    margin: 0;
}

.dropdown-content li:hover{
    background-color: #008372;
}

.dropdown-content li a{
    border-bottom: none;
    height: 100%;
    width: 100%;
    display: flex;
    padding: 10px;
}

.dropdown-content li a:hover{
    border-bottom: none;
}

.dropdown-content li:hover a{
    color: #ffffff;
}

/* Carrosel */

.carousel{
    display: flex;
    position: relative;
    width: 90%;
    margin: 10px auto;
    overflow: hidden;
    border-radius: 25px;
}

.carousel .carousel-slide{
    width: 100%;
    display: flex;
}

.carousel .carousel-slide img{
    width: 100%;
    height: auto;
    flex-shrink: 0;
    object-fit:cover;
}
.carousel .carousel-btn{
    background-color: #38383836;
    border: none;
    padding: 4px 0px;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.carousel .carousel-btn:hover{
    background-color: #38383886;
}
.carousel .carousel-btn img{
    padding: 0;
    margin: 0;
}

.prev{
    transform: scaleX(-1) ;
    position: absolute;
    left: 10px;
}

.next{
    position: absolute;
    right: 10px;
}

/* Matriulas */

.matricula{
    width: 90%;
    background-color: transparent;
    border-radius: 25px;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Poppins';
    color: #ffffff;
}

.matricula h1{
    display: flex;
    padding: 10px;
    margin: auto;
    background-color: #333333;
}

.matricula button{
    background-color: #008372;
    font-family: 'Poppins';
    border: none;
    font-size: 2rem;
    width: 500px;
    margin: auto;
    margin-bottom: 10px;
    color: #ffffff;
    border-radius: 15px;
    border: solid 1px #008372;
    cursor: pointer;
}


.bolsas{
    display: flex;
    width: 90%;
    margin: 10px auto;
    font-family: 'Poppins';
}

.bolsas li{
    list-style: none;
    margin: auto;
    height: 150px;
    width: 30%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    border-radius: 25px;
    font-weight: bold;
}

.bolsas li a{
    color: #333333;
    text-decoration: none;
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.bolsas li a:hover{
    color: #008372;
}

.bolsas li:hover{
    background-color: #ffffff;
}

