

body{
    font-family: 'Poppins', sans-serif;
    
}

.container{
    max-width: 1200px;
    margin: 0 auto;
}

.logo-img{
    width: 120px;
}
.header{
    background-image: url(imagenes/imag/bg.svg);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    min-height: 70vh;
    padding: 80px 0 0 0;
    
}

.menu{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.menu.container{
    text-decoration: none;
}
.logo{
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}

.menu .navbar ul li{
    position: relative;
    float: left;
    list-style: none;
    
}
.menu .navbar ul li a{
    font-size: 18px;
    padding: 20px;
    color: #dcdde2;
    display: block;
    font-weight: 600;
    text-decoration: none;
}
.menu .navbar ul li a:hover{
    transform: scale(1.09);
}
#menu{
    display: none;
    
}
.menu-icono{
    width: 25px;
}
.menu label{
    cursor: pointer;
    display: none;
}
.header-content{
    display: flex;
    margin-top: 20px;
}
.header-txt h1{
    font-size: 70px;
    line-height: 85px;
    color: #f8fcff;
    margin-bottom: 20px;
}
.header-txt span{
    font-size: 90px;
    color: #fff;
}
.header-txt p{
    font-size: 16px;
    color: #c4c4ce;
    margin-bottom: 30px;
}
.header-img{
    width: 70%;
    text-align: center;
}
.header-img img{
    width: 550px;
    padding-left: 30px;
}
.buttons{
    display: flex;
}
.btn-1{
    display: inline-block;
    padding: 13px 20px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 15px;
    margin-right: 30px;
    font-size: 16px;
    text-transform: capitalize;
    text-decoration: none;
}
.btn-1:hover{
    background-color: #fff;
    color: #111213;
}
.menu-pl{
    padding: 0 0 100px;
}
h2{
    font-size: 50px;
    color: #292933;
    margin-bottom: 40px;
}
span{
    color: #111213;
}
.general-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 35px
}
.general-txt img{
    border-radius: 25px 25px 0 0;
    width: 100%;
    height: 250px;
}
.general-txt h3{
    font-size: 18px;
    color: #292933;
    padding: 25px 25px 10px 25px;
}
.general-txt p{
    font-size: 16px;
    color: #3a3a48;
    padding: 0 25px 20px 25px;
}
.price{
    padding: 0 25px 10px 25px;
    display: flex;
    justify-content: space-between;
}
.price{
    color: #aaff0b;
    font-size: 18px;
    font-weight: 600;
}
.btn-2{
    display: inline-block;
    background-color: #292933;
    font-size: 14px;
    padding: 7px 15px;
    color: #fff;
    border-radius: 10px ;
    transform: scale(1.1);
    text-decoration: none;
}

.btn-2:hover{
    transform: scale(1.2)
}

.about{
    padding: 100px 0;
    margin-bottom: 100px;
    background-color: #292933;
}
.about-content{
    display: flex;
}
.about-txt{
    width: 50%;
}
.about-txt h2{
    color: #f8fcff;
}
.about-txt p{
    font-size: 16px;
    color: #c4c4ce;
    margin-bottom: 30px;
}
.hamburger{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hamburger span{
    font-size: 80px;
    font-weight: 800;
}
.about-img{
    width: 50%;
    text-align: right;
    border-radius: 25px 25px 25px 25px;
}
.info{
    padding-bottom: 100px;
    display: flex;
}
.info-img{
    width: 50%;
}
.info-img img{
    border-radius: 25px;
    width: 600px;
}
.info-txt{
    width: 50%;
    padding-left: 55px;
}
.info-txt p{
    font-size: 16px;
    color: #3a3a48;
    margin-bottom: 35px;
}
.footer{
    padding: 50px 0;
    background-color: #292933;
}
.footer-content{
    display: flex;
    justify-content: space-between;
}
.link h3{
    color: #fbfcff;
    font-size: 18px;
    margin-bottom: 15px;
}
.link a{
    color: #dcdde2;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}
.link a:hover{
    color: #69eb1e;
}
@media (max-width: 991px){
    .menu{
        padding: 30px;
    }
    .menu label{
        display: initial;
    }
    .menu .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #303030;
        display: none;
    }
    .menu .navbar ul li{
        width: 100%;
    }
    #menu:checked  ~ .navbar{
        display: initial;
    }
    
    .header-content{
        flex-direction: column;
        padding: 30px 30px 50px 30px;
        text-align: center;
    }
    .header-txt{
        width: 100%;
    }
    .header-txt p{
        width: 90%;
    }
    .header-txt h1 span{
        font-size: 60px;
   }
    .header-txt h1{
        font-size: 60px;
    }
    .header-img img{
        width: 300px;
        text-align: center;
    }
    .buttons{
        justify-content: center;
    }
    .btn-1{
        margin: 0 10px 10px;
    }
    .menu-pl{
        padding: 0 30px 30px 30px;
    }
    .general-content{
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
    .about{
        padding: 30px;
        margin-bottom: 30px;
        text-align: center;
    }
    .about-content{
        flex-direction: column;
    }
    .about-txt{
        width: 100%;
    }
    .about-txt p{
        margin-bottom: 0;
    }
    .about-img{
        width: 100%;
        text-align: center;
    }
    .btn-2{
        margin: 10px;
    }
    .info{
        padding: 30px;
        flex-direction: column;
    }
    .info-img{
        width: 100%;
    }
    .info-txt{
        width: 100%;
        padding-left: 0;
        text-align: center;
    }
    .footer{
        padding: 30px;
        text-align: center;
    }
    .footer-content{
        flex-direction: column;
    }

}

.container-boton{
    background-color: #2bc01e;
    border: 1px solid #fff;
    position: fixed;
    z-index: 999;
    border-radius: 50%;
    bottom: 15px;
    right: 15px;
    padding: 15px;
    transition: ease 0.3s;
    animation: efecto 1.2s infinite;
}

.container-boton:hover{
    transform: scale(1.1);
    transition: 0.3s;
}
.boton{
    width: 50px;
    transition: ease 1s;
}

@keyframes efecto{
    0%{
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.85);
    }
    100%{
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
}


@media (max-width: 900px){
    
    .img-boton,
    .boton {
        width: 30px;
    }
    img{
        width: 300px;
    }
    .container-boton{
        padding: 5px 9px ;
    }
}




.containera{
    position: relative;
    width: 100%;
    min-height: 100vh;
    margin: 0.7rem 1rem;
   
    background-color: #fafafa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form{
    width: 100%;
    max-width: 1000px;
    
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-form{
    background-color: rgb(58, 57, 57);
    position: relative;
}

.circle{
    
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #4d5352);
    position: absolute;
}

.circle.one{
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

.circle.two{
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}

.contact-form:before{
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #4d5352;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}

form{
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}

.title1{
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.title2{
    color: #4d5352;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.input-container{
    position: relative;
    margin: 1rem ;
}




textarea.inputsa{
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow-y: auto;
}

.input-container label{
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
}

.input-container.textarea label{
    top: 1rem;
    transform: translateY(0);
    }

 

    .input-container span {
        position: absolute;
        top: 0;
        left: 25px;
        transform: translateY(-50%);
        font-size: 0.8rem;
        padding: 0 0.4rem;
        color: transparent;
        pointer-events: none;
        z-index: 500;
        background-color: #4d5352;
        border-radius: 25%;
    }
.input-container span:before,
.input-container span:after{
    content: "";
    position: absolute;
    width: 50%;
    
    height: 5px;
    background-color: #4d5352;
    top: 50%;
    transform: translateY(-50%);
}

.input-container span:before{
    left: 50%;
}

.input-container span:after{
    right: 50%;
}

.input-container.focus label{
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after{
    width: 50%;
    opacity: 1;
}

.contact-info{
    padding: 2.3rem 2.2rem;
    position: relative;
    
}

.contact-info .title1{
    color: #4d5352;
}

.texto{
    color:#4d5352;
    margin: 1.5rem 0 2rem 0;
}

.information{
    display: flex;
    color: #555;
    margin: 0.7rem 1rem;
    align-items: center;
    font-size: 0.95rem;
}

.icon{
    width: 28px;
    margin-right: 0.7rem;
}

.social-media{
    padding: 2rem 0 0 0;
}

.information p{
    color: #4d5352;
}

.social-icon{
    display: flex;
    margin-top: 0.5rem;
}

.social-icon a{
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #4d5352, #9fa5a4);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
}

.social-icon a:hover{
    transform: scale(1.05);
}

.contact-info:before{
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;

    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
}


@media (max-width: 850px) {
    .form{
        grid-template-columns: 1fr;
    }
    .contact-info:before{
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95);
    }
    .contact-form:before{
        top: -13px;
        left: initial;
        right: 70px;
    }
    .texto{
        margin: 1rem 0 1.5rem 1rem;
        font-size: 0.9rem;
        
    }
    .social-media{
        padding: 1.5rem 0 0 0;
    }
}

@media (max-width: 480px){
    .containera{
        width: 70%;
        flex-direction: column;
    }
    .contact-info:before{
        display: none;
    }
    form,
    .contact-info{
        padding: 1.7rem 1.6rem;
    }
    .texto,
    .information,
    .social-media p{
        font-size: 0.8rem;
    }
    .title1{
        font-size: 1.15rem;
    }
    .social-icon a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    .icon{
        width: 23px;
    }
    .inputsa{
        padding: 0.45rem 1.2rem;
    }
    .btn-z{
        padding: 0.45rem 1.2rem;
    }
    .info-img img{
        width: 90%;
        margin-bottom: 20px;
        margin-left: 20px;
    }
    .header-img img{
        padding-top: 30px;
    }
   
}


.titulo {
    font-size: 55px;
    text-transform: uppercase;
    letter-spacing: 7px;
}

.galeria img{
    box-shadow: 0 8px 10px -4px rgba(0, 0, 0, .6);
    border-radius: 15px;
}

/*agregamos estilos al caption de abajo de la foto*/

.materialbox-caption{
    bottom:30px;
    right: 0;
    width: 40%;
    height: auto;
    
    margin: auto;
    background: #000;
    box-shadow: 5px 5px #fff;
    font-size: 20px;
    color: #fff;
    line-height: 28px;
    
}
.galeria .col{
    margin-bottom: 20px;
}

.galeria .col  img{
    width: 350px;
    height: 250px;
}

#boton{
    display: inline-block;
    padding: 13px 20px;
    border: 1px solid #0a0a0a;
    color: #0a0a0a;
    border-radius: 15px;
    margin-right: 30px;
    font-size: 16px;
    text-transform: capitalize;
}

@media screen and (max-width:600px){
    .materialbox-caption{
         width: 90%;
    }
}

@media screen and (max-width:992px){
    .materialbox-caption{
         width: 70%;
    }
}

