@import url("https://fonts.googleapis.com/css?family=Lato:300,400,900");

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Lato" !important;
    background-image: url(images/fondo.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.nav-item a{
  font-size: 0.7em !important;
}

.fadeTop {
    opacity: 0;    
    transform: translate(0, 10vh);
    transition: all 3s;
  }
  
  .fadeRight {
    opacity: 0;
    transform: translate(-15vh, 0vh);
    transition: all 3s;
  }
  
  .fadeLeft {
    opacity: 0;
    transform: translate(15vh, 0vh);
    transition: all 3s;
  }

  .visible {
    opacity: 1;
    transform: translate(0, 0);
  }

.sand{
    background-color: hsla(262, 100%, 19%, 1) !important;
    width: 35px;
    height: 5px;
    margin: 6px 0;
    border-radius: 10px;
}

h2{
    color: #333;
}

p{
    font-size: 1.1rem;
    color: #444;
}

.fondoGris{
    background-color: #F7F7F7;
}

.fondoBlanco{
    background-color: rgba(255, 255, 255, 1) !important;
}

.fondoBlanco1{
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.fondoBlanco3{
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.fondoBlanco5{
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.fondoBlanco7{
    background-color: rgba(255, 255,255 225, 0.7) !important;
}

.fondoBlanco9{
    background-color: rgba(255, 255, 255, 0.9) !important;
}

.borde{
    box-shadow: -4px 4px 20px rgb(150, 150, 150);
    padding: 1%;
}

#img1{
    background-color: hsla(262, 100%, 19%, 1) !important;
    padding: 10px;
    border-radius: 350px;
    width: 75%;
}

#img2{
    background-color: hsla(262, 100%, 19%, 1) !important;
    display: none;
    padding: 10px;
    border-radius: 350px;
    width: 75%;
}

.ap:hover div #img2{
    display: block;
}
.ap:hover div #img1{
    display: none;
}

.car:hover{
    transform: scale(1.1);
    opacity: 0.8;
    transition: all 2s;
}

img {
    image-rendering: initial;
}

.acomodoTxt{
    text-align: justify;
}


#learnmore {
    background-color: #175D87 !important;
    border-color: #175D87 !important;
    font-weight: 400;
    color: #FFF
}

.mobile{
    display: none !important;
}

@media only screen and (max-width: 575px) {
    #img1, #img2{
        width: 50%;
        margin: 0 25%;
    }

    .acomodoTxt{
        text-align: left;
    }

    .mobile{
        display: block !important;
    }

    .desk{
        display: none !important;
    }
}

