@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
}

.header{
    background-image: url(./images/bannerNuevo.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    z-index: 10000;
}
.menu{
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
}

.logo{
    display: flex;
    align-items: center;
}

.logo i{
    color: white;
    font-size: 28px;
    margin-right: 3px;
}

.logo span{
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.navbar{display: flex;}

.navbar a{
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 5px 0;
    margin: 0px 30px;
    transition: all .50s ease;
}

.navbar a:hover{
color:green
}

.main{
    display: flex;
    align-items: center;
}

.main a{
    margin-right: 25px;
    margin-left: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all .50s ease;
}

.main a:hover{
color: green;
}

.menu-icono{
    width: 35px;
    color: white;
    cursor: pointer;
    z-index: 100001;
    display: none;
}

.header-txt{
    text-align: center;
}

.header-txt h1{
    font-size: 85px;
    color: white;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.header-txt p{
    color: white;
    font-size: 18px;
    padding: 0 250px;
    margin-bottom: 45px;
    font-weight: 800;
}

.btn-1{
    display: inline-block;
    padding: 12px 45px;
    border: 1px solid #fffdfc;
    color: #fffdfc;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}
.btn-1:hover{
    color: #1b293a;
    background-color: #fffdfc;
}

.general{
    padding: 50px 0;
    text-align: center;

}

.general-content{
    display: flex;
    justify-content: space-between;
    margin-top: 55px;
}

.gallery{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.general-3{
    display:flex;
    gap: 15px;
}
.general-3 img{
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.col{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contacto{
    margin-bottom: 100px;
}
.contacto h2{
    margin-top: -20px;
}

.popup-imag{
    position: fixed;
    top: 0; left: 0;
    background: rgba(0,0,0,.9);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}
.popup-imag img{
    position: absolute;
    top: 50%; left:50%;
    transform: translate(-50%,-50%);
    width: 75%;
    object-fit: contain;
}
.popup-imag span{
    font-size: 30px;
    position: absolute;
    cursor:pointer;
    color:white;
    top:0%;
    right:20%;
}
.calendario{
margin-top: 20px;
margin-bottom: 20px;
width: 80%;
}
h2{
    font-size: 70px;
    text-transform: uppercase;
    color: #1b293a;
}
h2:after{
    content:'';
    background:black;
     width:100%;
     height:2px;
     display:block;
 }
.txt h3{
    font-size: 22px;
    color: black;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.txt p{
    color: black;
    font-size: 20px;
    text-align: justify;
    line-height : 35px;
}

.general-4,.general-5{
    width: 50%;
    border: 1px solid black;
    margin-top: 10px;
}

.general-4 p,.general-5 p{
    color: black;
    font-size: 20px;
    text-align: center;
    line-height : 35px;
}
@media(max-width: 1280px){
    header{
        padding: 14px 2%;
        transition: .2s;
    }
    .logo{
        margin-left: 10%;
        transition: .2s;
    }
    .navbar a{
        padding: 5px 0;
        margin: 0px 20px;
    }
}


@media(max-width: 1090px){

    .popup-imag span{
        font-size: 30px;
        position: absolute;
        cursor:pointer;
        color:white;
        top:0%;
        right:1%;
    }
    .popup-imag img{
       width: 95%;
    }
    .menu-icono{
        display: block;
        margin-right: 20px;
    }

    .navbar{
    position: absolute;
    top:100%;
    right:0%;
    width: 50%;
    height: 26vh;
    background-color:gray;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 10px;
    transition: all .50s ease;
    display:none;
    }

    .navbar a{
        text-align: center;
        display: block;
        margin: 12px 0;
        padding: 0px 25px;
        transition: all .50s ease;
    }
    .navbar a:hover{
       color:green;
       transform: translateY(10px);
    }

    .navbar a.active{
        color: gray;
    }

    .navbar.open{
        right: 2%;
    }
    .header{
        min-height: 0vh;
    }

    .header-content{
        padding: 100px 30px;
    }

    .header-txt h1{
        font-size: 50px;
    }

    .header-txt p{
        padding: 0;
    }

    .general{
        padding: 30px 10px 0 10px;
    }

    .general-content{
     margin-top: 0px;   
    }

    .general-1{
        height: auto;
        padding: 10px 100px 100px 100px;
        margin-bottom: 10px;
    }
    .general-1 p{
       padding-top: 20px;
    }
    
    .general-2{
        height: auto;
        padding: 10px 100px 100px 100px;
        margin-bottom: 10px;
    }

    .general-3{
        margin-top: 5px;
        height: auto;
        padding: 10px 100px 100px 100px;
        margin-bottom: 10px;
        flex-direction: column;
    }
}

@media(max-width: 768px){
    h2{
        font-size: 20px;
        text-transform: uppercase;
        color: #1b293a;
    }
    h2:after{
        content:'';
        background:black;
         width:100%;
         height:2px;
         display:block;
     }
     .txt h3{
        font-size: 15px;
        color: black;
        text-transform: uppercase;
        margin-bottom: 10px;
    }
    
    .txt p{
        color: black;
        font-size: 15px;
        text-align: justify;
        line-height : 35px;
    }
    
    .popup-imag span{
        font-size: 30px;
        position: absolute;
        cursor:pointer;
        color:white;
        top:0%;
        right:1%;
    }
    .popup-imag img{
       width: 95%;
    }
    .menu-icono{
        display: block;
        margin-right: 20px;
    }

    .navbar{
    position: absolute;
    top:100%;
    right:0%;
    width: 50%;
    height: 26vh;
    background-color:gray;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 10px;
    transition: all .50s ease;
    display:none;
    }

    .navbar a{
        text-align: center;
        display: block;
        margin: 12px 0;
        padding: 0px 25px;
        transition: all .50s ease;
    }
    .navbar a:hover{
       color:green;
       transform: translateY(10px);
    }

    .navbar a.active{
        color: gray;
    }

    .navbar.open{
        right: 2%;
    }
    .header{
        min-height: 0vh;
        min-width: 100%;
    }

    .header-txt h1{
        font-size: 15px;
    }

    .header-txt p{
        padding: 0;
        font-size:10px;
    }

    .general{
        padding: 30px 10px 0 10px;
    }

    .general-content{
     margin-top: 0px;   
    }

    .general-1{
        height: auto;
        padding: 10px 10px 10px 10px;
        margin-bottom: 10px;
    }
    .general-2{
        height: auto;
        padding: 10px 10px 10px 10px;
        margin-bottom: 10px;
    }

    .general-3{
        margin-top: 5px;
        height: auto;
        padding: 10px 10px 10px 10px;
        margin-bottom: 10px;
        flex-direction: column;
    }
    .txt p{
        color: black;
        font-size: 15px;
        text-align: justify;
        line-height : 35px;
    }
}

@media (max-width: 667px) {
    h2{
        font-size: 20px;
        text-transform: uppercase;
        color: #1b293a;
    }
    h2:after{
        content:'';
        background:black;
         width:100%;
         height:2px;
         display:block;
     }
     .txt h3{
        font-size: 15px;
        color: black;
        text-transform: uppercase;
        margin-bottom: 10px;
    }
    
    .txt p{
        color: black;
        font-size: 10px;
        text-align: justify;
        line-height : 15px;
    }
    
    .popup-imag span{
        font-size: 30px;
        position: absolute;
        cursor:pointer;
        color:white;
        top:0%;
        right:1%;
    }
    .popup-imag img{
       width: 95%;
    }
    .menu-icono{
        display: block;
        margin-right: 20px;
    }

    .btn-1{
        display: inline-block;
        padding: 12px 20px;
        border: 1px solid #fffdfc;
        color: #fffdfc;
        font-size: 10px;
        text-transform: uppercase;
        font-weight: 600;
    }
    .btn-1:hover{
        color: #1b293a;
        background-color: #fffdfc;
    }
    .navbar{
    position: absolute;
    top:100%;
    right:0%;
    width: 50%;
    height: 26vh;
    background-color:gray;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 10px;
    transition: all .50s ease;
    display:none;
    }

    .navbar a{
        text-align: center;
        display: block;
        margin: 12px 0;
        padding: 0px 25px;
        transition: all .50s ease;
    }
    .navbar a:hover{
       color:green;
       transform: translateY(10px);
    }

    .navbar a.active{
        color: gray;
    }

    .navbar.open{
        right: 2%;
    }
    .header{
        min-height: 0vh;
        min-width: 100%;
    }

    .header-txt h1{
        font-size: 15px;
    }

    .header-txt p{
        padding: 0;
        font-size:10px;
    }

    .general{
        padding: 30px 10px 0 10px;
    }

    .general-content{
     margin-top: 0px;   
    }
    .general-1{
        height: auto;
        padding: 10px 10px 10px 10px;
        margin-bottom: 10px;
    }
    .general-2{
        height: auto;
        padding: 10px 10px 10px 10px;
        margin-bottom: 10px;
    }

    .general-3{
        margin-top: 5px;
        height: auto;
        padding: 10px 10px 10px 10px;
        margin-bottom: 10px;
        flex-direction: column;
    }
    .general-4 p{
        text-align: center;
    }
    .general-5 p{
        text-align: center;
    }
  }
  
@media (max-width: 320px){
    h2{
        font-size: 20px;
        text-transform: uppercase;
        color: #1b293a;
    }
    h2:after{
        content:'';
        background:black;
         width:100%;
         height:2px;
         display:block;
     }
     .txt h3{
        font-size: 15px;
        color: black;
        text-transform: uppercase;
        margin-bottom: 10px;
    }
    
    .txt p{
        color: black;
        font-size: 15px;
        text-align: justify;
        line-height : 15px;
    }
    
    .popup-imag span{
        font-size: 30px;
        position: absolute;
        cursor:pointer;
        color:white;
        top:0%;
        right:1%;
    }
    .popup-imag img{
       width: 95%;
    }
    .menu-icono{
        display: block;
        margin-right: 20px;
    }

    .btn-1{
        display: inline-block;
        padding: 12px 20px;
        border: 1px solid #fffdfc;
        color: #fffdfc;
        font-size: 10px;
        text-transform: uppercase;
        font-weight: 600;
    }
    .btn-1:hover{
        color: #1b293a;
        background-color: #fffdfc;
    }
    .navbar{
    position: absolute;
    top:100%;
    right:0%;
    width: 50%;
    height: 26vh;
    background-color:gray;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 10px;
    transition: all .50s ease;
    display:none;
    }

    .navbar a{
        text-align: center;
        display: block;
        margin: 12px 0;
        padding: 0px 25px;
        transition: all .50s ease;
    }
    .navbar a:hover{
       color:green;
       transform: translateY(10px);
    }

    .navbar a.active{
        color: gray;
    }

    .navbar.open{
        right: 2%;
    }
    .header{
        min-height: 0vh;
        min-width: 100%;
    }

    .header-txt h1{
        font-size: 15px;
    }

    .header-txt p{
        padding: 0;
        font-size:10px;
    }

    .general{
        padding: 30px 10px 0 10px;
    }

    .general-content{
     margin-top: 0px;   
    }
    .general-1{
        height: auto;
        padding: 10px 10px 10px 10px;
        margin-bottom: 10px;
    }
    .general-2{
        height: auto;
        padding: 10px 10px 10px 10px;
        margin-bottom: 10px;
    }

    .general-3{
        margin-top: 5px;
        height: auto;
        padding: 10px 10px 10px 10px;
        margin-bottom: 10px;
        flex-direction: column;
    }
    .general-4 p{
        text-align: center;
    }
    .general-5 p{
        text-align: center;
    }
  }