@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700&family=Montserrat:ital,wght@0,200;0,400;1,300&family=Roboto&family=Roboto+Mono&family=Rubik&display=swap');


@keyframes float {
    0%{
        transform: translateY(0); /*The starting point of the animation is 0.*/
    }
    50%{
        transform: translateY(-1rem); /*The middle point of the animation is -15xp. This will move the element up.*/
    }
    100%{
        transform: translateY(0); /*The last point of the animation is going back to the starting state of 0.*/
    }
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

body{
    height: 100vh;
    width: 100%;
    
}
.fondo{
    background: #008b6f;
    background: linear-gradient(90deg,#008b6f7e 0%, #4e46465e 80%), url("../assets/img/fitzroy.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}


.borroso{
    backdrop-filter: blur(5px);/*efecto de esmerilado sobre un div, queda el efecto sobre la imagen de fondo*/
    height:100%;
}
.colorNav{
    background: #008b6f;
    background: linear-gradient(90deg,#008b6f7e 0%, #4e46465e 80%)
}
.nav-link{
    font-size: 1.2rem;
}

.principal{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;

}
.galeria{
    width: 90%;
    margin:0 auto;
    height:70vh;
    background: black;
    display:flex;
    justify-content: center;
    align-items: center;
    border:0.5px solid gray
}

.imagenGal{
    width: 0px;
    height: 100%;
    flex-grow: 2;
    object-fit: cover;
    opacity: 0.5;
    transition: .5s ease;
}
.imagenGal:hover{
    width: 30%;
    opacity: 1;
    filter: contrast(120%);
}
@media screen and (max-width: 768px)
{
    .imagenGal{
        flex-wrap: wrap;
    }
    .imagenGal{
        height: 70%;
    }
    .imagenGal:hover{
       width: 90%;
       opacity: 1;
       filter: contrast(120%);
    }
}

.contenedorMain{
    position:relative;
    width: 100%;
    height: 70vh;
    display:flex;   
    justify-content: center;
    align-items: center;
    margin-top:3rem;
  
}

.contact-box{
    max-width: 850px;
    display:grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items:center;
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 0px 19px 5px rgba( 0, 0, 0, 0.19 );

}
.left{
    background: url("../assets/img/logo.jfif") no-repeat center;
    background-size: cover;
    height: 100%;
}
.right{
    padding: 25px 40px;
}
h2{
    position: relative;
    padding: 0 0 10px;
    margin-bottom: 10px;
}
h2::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background-color:#008b6f;

}
.field{
    width: 100%;
    border: 2px solid  #008b6f31;
    outline:none;
    background-color: #9b8a8f86;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    margin-bottom: 22px;
    transition: all 0.3s ease-in-out;
}
.field:hover{
    background-color: rgba(0,0,0,0.1);

}
textarea{
    min-height: 150px;
}
.btn{
    width: 100%;
    padding: 0.5rem 1rem;
    background-color:  #008b6f ;
    color: #fff;
    font-size: 1.1rem;
    border: none;
    outline:none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.btn:hover{
    background-color: #008b6f ;
}
.field:focus{
    border: 2px solid #008b6f ;
    background-color: #fff;
}
.testimonios{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    align-items:center;
    font-weight: bold;
}
.bordeTitulo{
    text-align: center;
    border:solid black, hidden rgba(0, 0, 0, 0.479),; /*hidden rgba(0, 0, 0, 0.479);*/
    background-color: rgba(250, 235, 215, 0.397);
    border-radius: 3px;
    box-shadow: -25px -19px 48px 0px rgba(0,0,0,0.43);
-webkit-caja-sombra: -25px -19px 48px 0px rgba(0,0,0,0.43);
-moz-box-shadow: -25px -19px 48px 0px rgba(0,0,0,0.43);
}













.piePagina{
    background-color: #008b6f79;
    position:fixed;
    bottom:0;
    left:0;
    height:4rem;
    width:100%;
}
.alinear{
   text-align: center;
   font-weight: bold;
}
.icon{
    display: inline-block;
    font-size: 2rem;
    color: #111111;
    animation: float infinite 4s ease-in-out ;
}
.ri-facebook-circle-line{
   animation-delay: 0.5s; /*Adds a animation delay of 1 seconds.*/
}

.ri-whatsapp-line{
  animation-delay: 1s; /*Adds a animation delay of 2 seconds.*/
}
