/**** reset ****/
@font-face {
    font-family: Apolo;
    src: url('../fonts/default/APOLLO.otf');
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

:root{ 
    --main-color:   #273617;
    --light-green:  #5f6c37;
    --cream:        #fefadf;
    --light-brick:  #dca15d;
    --brick:        #bc6c25;
    --danger:       #f44336;
    --success:      #cddc39;
    --primary:      #4fc3f7;
    --warning:      #fff176;
    --light-text:   #424242;
    --dark-text:    #212121;
    --light-orange: #fff3e0;
    --cream-50:     #c7c5be;
    --social:       #3b381a;
}

body{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background: #1D291C;
    }

h3{
    font-size: 2.5rem;
    font-family: Apolo;
    color: var(--main-color);
    font-weight: 400;
}

h4{
    font-size: 2rem;
    font-family: Apolo;
    color: var(--main-color);
    font-weight: 400;
}

.menu-mobile{
    display: none;
}
.container{
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 145px ;

}

nav{
    width: 80%;
    height: 145px;
    display: flex;
    background: var(--main-color);
    position: fixed;
    z-index: 99;
    
}

.logo{
    width: 25%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo img{
    width: 75%;
}

.menu{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.links{
    width: 90%;
    display: flex;
   
    align-items: center;
    position: relative;
}

.links a{
    flex: 1;
    text-align: center;
    color: var(--cream);
    font-family: Poppins, sans-serif;
    font-size: 1.1rem;
    position: relative;
}

.menu .active{
    width: 0px;
    height: 10px;
    background-color: var(--cream-50);
    position: absolute;
    top: 25px;
    bottom: 0;
    border-radius: 20px;
    transition: .3s ease-in-out all;

}

.links::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--cream-50);
    top: 31px;
    display: flex;
}



.soc-search{
    width: 25%;
    height: 100%;
}

.lang{
    height: 55%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lang-text{
    margin-top: 10PX;
}

.lang-text span{
    font-family: Poppins;
    font-size: 1.3rem;
    color: var(--cream-50);
}

.lang-check input{
    width: 90px;
    height: 20px;
    appearance: none;
    position: relative;
    display: flex;
    justify-content: center;
    background: var(--cream-50);
    border-radius: 20px;
}

.lang-check input::after{
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    background: var(--main-color);
    border-radius: 50%;
    left: 1px;
}

.search-icon{
    color: var(--light-orange);
    font-size: 1.5rem;
}

.social{
    width: 100%;
    height: 65px;
    display: grid;
    grid-template-columns: 25% auto;
    position: relative;
   
}

.social input{
    display: none;
}
.social div{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.soc-media div{
    width: 30px;
    height: 30px;
    margin: 20px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--cream);
    border-radius: 50%;
}


#search-icon{
    border: none;
    font-size: 1.5rem;
    text-align: left;
}

.icons{
    color: var(--cream);
}
.icons a{
    color: var(--cream);
    
}

.slider{
    width: 100%;
    height: 600px;
    background: url(../img/hero.jpeg);
    background-size: cover;
    display: grid;
    grid-template-columns: 30% 70%;
}
.gallery{
    width: 100%;
}

.gallery-container{
    display: flex;
    align-items: center;
    height: 400px;
    margin: 0 auto;
    max-width: 920px;
    position: relative;
    overflow: hidden;
}

.gallery-item{
    height: 220px;
    opacity: 0;
    position: absolute;
    transition: all 0.3s ease-in-out;
    width: 390px;
    border-radius: 20px;
    background-size: contain;
}

.gallery-item-1{
    left: 20%;
    opacity: 0.4;
    transform: translateX(-20%);
}

.gallery-item-2, .gallery-item-4{
    height: 250px;
    opacity: 0.8;
    width: 380px;
    z-index: 1;
}

.gallery-item-2{
    left: 30%;
    transform: translateX(-30%);
}

.gallery-item-3{
    box-shadow: -2px 5px 33px 6px rgba(0, 0, 0, 0.5);
    height: 350px;
    opacity: 1;
    left: 50%;
    width: 510px;
    transform: translateX(-50%);
    z-index: 2;
}

.gallery-item-4{
    left: 60%;
    transform: translateX(-50%);
}

.gallery-item-5{
    left: 65%;
    opacity: 0.4;
    transform: translateX(-50%);
}

.gallery-controls{
    display: flex;
    justify-content: center;
    margin: 0px 0;
    height: 90px;
}

.gallery-controls button{
    background-color: var(--social);
    border: 0;
    cursor: pointer;
    font-size: 1.5rem;
    margin: 0 50px;
    padding: 0 12px;
    text-transform: capitalize;
    height: 40px;
    color: var(--cream);
    border-radius: 20px;
    width: 120px;
}

.gallery-controls button:focus{
    outline: none;
}

.gallery-controls-previous{
    position: relative;
}

.gallery-controls-previous::before{
    border: solid;
    border-width: 0 5px 5px 0;
    content: '';
    display: inline-block;
    height: 5px;
    left: -30px;
    position: absolute;
    transform: rotate(135deg) translateY(-50%);
    transition: left 0.15s ease-in-out;
    width: 5px;
}

.gallery-controls-previous:hover::before{
    left: -40%;
}

.gallery-controls-next::before{
    border: solid var(--main-color);
    border-width: 0 5px 5px 0;
    content: '';
    display: inline-block;
    height: 5px;
    padding: 10px;
    position: absolute;
    right: -30px;
    top: 25;
    transform: rotate(-45deg) translateY(-50%);
    transition: right 0.15s ease-in-out;
    width: 5px;
}

.gallery-controls-next:hover::before{
    bottom: -5px;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    position: absolute;
    width: 100%;
}

.titular{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.titular h1{
    font-family: Apolo,sans-serif;
    font-size: 3rem;
    color: var(--main-color);
    font-weight: 300;
    line-height: 50px;
    margin-top: 105px;
    letter-spacing: 5px;

}

.titular div{
    width: 70%;
    height: 150px;
    text-align: center;
    margin: 10px auto;
}

.titular div p{
    color: var(--cream);
    font-family: Poppins, sans-serif;
    text-align: right;
}

.titular button{
    width: 250px;
    height: 40px;
    margin: 0 auto;
    background: var(--cream);
    border: none;
    font-family: Apolo;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 45px;
    border-radius: 40px;
    cursor: pointer;
    color: var(--main-color);
    margin-top: -40px;
    box-shadow: 5px 5px 0px 0px rgba(0,0,0,0.73);
}
.titular button:hover{
    background: var(--cream-50);
    color: var(--brick);
}

.galeria{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0 auto;
    position: relative;
    background-size: contain;
    overflow: hidden;
}


.galeria-item{
height: 300px;
position: absolute;
opacity: 0;
transition: all 0.3 ease-in-out;
width: 350px;
border-radius: 20px;
z-index: 0;
}

.galeria-item-1{
    left: 13%;
    opacity: .3;
    transform: translateX(-70%);
    transform: rotateY(20deg);
    border: 2px solid white;
}

.galeria-item-2, .galeria-item-6{
    height: 320px;
    opacity: 0.5;
    width: 350px;
    z-index: 1;
}
.galeria-item-2{
    left: 14%;
    transform: translateX(10%);
    transform: rotateY(40deg);
    border: 2px solid white;
}

.galeria-item-3, .galeria-item-5{
    box-shadow: -2px 5px 33px rgba(0, 0, 0, 0.45);
    height: 340px;
    opacity: 0.7;
    width: 350px;
    border: 2px solid white;
    z-index: 2;
}

.galeria-item-3{
    left: 25%;
    transform: translateX(-50%);
    transform: rotateY(5deg);
}

.galeria-item-4{
    box-shadow: -2px 5px 33px rgba(0, 0, 0, 0.7);
    width: 350px;
    height: 370px;
    opacity: 1;
    left: calc(50% - 175px);
    border: 2px solid white;
    z-index: 3;
}

.galeria-item-7{
    right: 13%;
    opacity: .3;
    transform: translateX(-70%);
    transform: rotateY(-20deg);
    border: 2px solid white;
}

.galeria-item-6{
    right: 14%;
    transform: translateX(10%);
    transform: rotateY(40deg);
    border: 2px solid white;
}

.galeria-item-5{
    right: 25%;
    transform: translateX(-50%);
    transform: rotateY(5deg);
}

.galeria-control{
    position: absolute;
    height: 40px;
    bottom: 25px;
    vertical-align: middle;
    font-size: 1.1rem;
    background: var(--cream);
    padding: 0;
    border-radius: 40px;
}

.galeria-control button{
    width: 200px;
    height: 40px;
    background: var(--cream);
    color: var(--dark-text);
}



.galeria-control button{
    background-color: transparent;
    border: 0;
    cursor: pointer;
    font-size: 35px;
    margin: 0;
    padding: 0 12px;
    text-transform: capitalize;
}

.galeria-control-buton:focus{
    outline: none;
}

.galeria-control-previous{
    position: relative;
}

.galeria-control-previous::before{
    content: '';
    border: solid var(--social);
    border-width: 0 5px 5px 0;
    display: inline-block;
    height: 30px;
    left: -30px;
    padding: 10px;
    position: absolute;
    top: 45;
    transform: rotate(135deg) translateY(-50%);
    transition: left 0.15s ease-in-out;
    width: 5px;
}

.galeria-control-previous:hover::before{
    left: -40px;
}

.galeria-control-next{
    position: relative;
}

.galeria-control-next::before{
    content: '';
    border: solid var(--social);
    border-width: 0 5px 5px 0;
    display: inline-block;
    height: 30px;
    right: -30px;
    padding: 10px;
    position: absolute;
    top: 45;
    transform: rotate(135deg) translateY(-50%);
    transition: left 0.15s ease-in-out;
    width: 5px;
}

.galeria-control-next:hover::before{
    right: -40px;
}

.galeria-nav{
    bottom: -15px;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    position: absolute;
    width: 100%;
}

.galeria-nav li{
    height: 10px;
    width: 10px;
    background-color: var(--dark-text);
    border-radius: 50%;
    margin: 0 15px;
}

.galeria-nav li.galeria.item-selected{
    background: var(--light-text);
}

.presentation{
    width: 100%;
    height: 500px;
    background: var(--cream);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.presentation-wrap{
    z-index: 20;
    display: flex;
}

.presentation::after{
    content: "";
    width: 100%;
    height: 150px;
    background: var(--cream);
    position: absolute;
    bottom: -50px;
    transform: skew(0deg, 2deg);
}

.presentation-title{
    width: 50%;
    margin-top: 40px;
    text-align: center;
    font-family: Poppins, sanserif;
    font-size: 1.5rem;
    font-weight: 300;
    border: 3px solid var(--dark-text);

}

.presentation-p{
    width: 400px;
    height: 350px;
    margin-top: 40px;
    background: var(--light-green);
    color: var(--cream);
    padding: 20px;
}

.presentation-p h2{
    font-family: Apolo;
    font-size: 2rem;
    font-weight: 100;
}

.presentation-p p{
    font-family: Poppins;
    font-size: 1.2rem;
}

.presentation-img{
    width: 400px;
    height: 400px;
    margin-top: 20px;
    background: url(../img/Road.jpg);
    background-size: cover;
}
.presentation-img img{
    width: 100%;
}

.quick-links{
    width: 100%;
    height: 400px;
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    align-items: center;
    background: var(--main-color);
}

.quick-links-wrap{
    height: 400px;
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quick-lnk-container{
    max-width: 150px;
    height: 150px;
    position: relative;
    display: flex;
    justify-content: center;
}

.quick-lnk-container img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid white;
    
}

.quick-lnk-container a{
  width: 200px;
  position: absolute;
  text-align: center;
  top: calc(100% + 10px);
  margin: auto;
  background: none;
  border: 2px solid white;
  padding: 5px;
  border-radius: 40px;
  font-family: Poppins;
  color: var(--cream);
  font-size: 1rem;
}

.rancho{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.rancho .titles{
    width: 100%;
    min-height: 500px;
    background-image: url('../img/rancho.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
}

.rancho .titles h2{
    text-align: center;
    margin-top: 90px;
    font-family: Apolo;
    font-size: 3rem;
    letter-spacing: 5px;
    font-weight: 300;
    color: var(--main-color);
}

.description{
    width: 100%;
    height: 800px;
    background: var(--main-color);
    margin-top: 0;
    position: relative;
}

.description img{
    width: 45%;
    margin-left: 150px;
}

.description-container{
    position: absolute;
    width: 60%;
    height: 350px;
    right: 40px;
    top: 40px;
    background: var(--light-green);
    font-family: Poppins;
    padding: 20px;
}

.description-container p{
    color: var(--cream);
    font-weight: 300;
    margin-top: 10px;
}

.rancho-gallery{
    width: 100%;
    height: 350px;
    position: absolute;
    bottom: 30px;
    display: flex;
}

.rancho-gallery-cards-container{
    width: 70%;
    height: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.rancho-gallery-cards{
    width: 270px;
    height: 340px;
 
    box-shadow: -9px 10px 22px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: -9px 10px 22px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: -9px 10px 22px 0px rgba(0,0,0,0.75);

}


.card1{
    transform: rotate(-5deg);

    margin-top: 10px;
    background-image: url('../img/gal1.jpeg');
    background-size: cover;
}


.card2{
    transform: rotate(7deg) scale(110%);
    margin-left: -50px;
    background-image: url('../img/gal2.jpg');
    background-size: cover;
 
    z-index: 5;
}

.card3{
    transform: rotate(-5deg);
    margin-left: -55px;
    background-image: url('../img/gal3.jpg');
    background-size: cover;
}
.rancho-gallery-link-container{
    width: 29.9%;
}

.animate{
    transition: transform 3.5s;
}

.gallery-link{
    width:70%;
    height: 70%;
    background: var(--light-green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    position: relative;
    color: var(--cream);
    overflow: hidden;
    transition: all 1.5s;
}

.gallery-link .gallery-link-container{
    position: absolute;
    top: 0;
    width: 100%;
    height: 35px;
    background: var(--cream);
    display: flex;
    justify-content: center;
    
}

.gallery-link .gallery-link-container::before{
   content: "";
   border-bottom: 70px solid var(--cream);
   border-left: 120px solid transparent;
   border-right: 120px solid transparent;
      content: "";
      height: 0;
      left: 0;
      position: absolute;
      top: 35px;
      width: 0;
      rotate: 180deg;
}

.gallery-link .gallery-link-container span{
    color: var(--main-color);
    font-family: Apolo;
    font-size: 1.3rem;
    transform: rotate(-5deg);
    margin-top: 15px;
    z-index: 1;
}


.gallery-link-container{
    background: var(--light-green);
}

.gallery-link i{
    font-size: 4rem;
    margin-top: 70px;
}

.gallery-link:hover{
    box-shadow: 8px -3px 57px 1px rgba(10,10,10,0.75) inset;
-webkit-box-shadow: 8px -3px 57px 1px rgba(10,10,10,0.75) inset;
-moz-box-shadow: 8px -3px 57px 1px rgba(10,10,10,0.75) inset;
border-radius: 20px;
border: 1px solid white;
transition: all 0.5s;
}

#services{
    width: 100%;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.titulo{
    width: 90%;
    font-family: Poppins;
    margin-top: 50px;
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    border-bottom: 1px solid var(--dark-text); 
    margin-bottom: 70px;   
}

.service-container{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(7, 1fr);
    border-bottom: 1px solid var(--social);
}

.service-info {
    grid-column: 1/4;
    grid-row: 1/3;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 50px;
    
}

.a{
    padding: 8px;
}
.a-button{
    width: 150px;
    height: 50px;
    background: var(--main-color);
    color: var(--cream);
    font-size: 1.2rem;
    margin-right: 70px;
    line-height: 50px;
    text-align: center;
    border-radius: 40px;   
}

.a-button:hover{
    width: 160px;
    text-align: left;
    padding-left: 20px;
    border: 2px solid var(--light-brick);
    transition: all 0.5s ease-out;
    position: relative;
}

.a-button:hover::after{
    content: ">";
    margin-left: 5px;
}

.img-1{
    grid-column: 4/8;
    grid-row: 1/8;
}
.img-1 img,
.img-2 img,
.img-3 img,
.img-4 img{
    width: 90%;
    height: 90%;
    object-fit: fill;
}

.img-2{
    grid-column:1/4;
    grid-row:3/8 ;
    display: flex;
    justify-content: center;
    align-items: center;
}


.tour-2{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    margin-top: 20px;
}

.img-3{
    grid-column: 1/4;
    grid-row: 1/4;
    display: flex;
    justify-content: center;
}

.service-info-t2{
    grid-column: 4/8 ;
    grid-row: 1/2;
    margin-top: 10px;
}

.img-4{
    grid-column: 4/8 ;
    grid-row: 2/4;
    display: flex;
    height: 95%;
}

.tour-3{
    display: flex;
    width: 100%;
    margin-top: 20px;
    flex-direction: column;
}

.tour-3 .service-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mini-gallery{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.img-5,
.img-6,
.img-7,
.img-8{
 display: flex;
}

.img-5 img,
.img-6 img,
.img-7 img,
.img-8 img{
    width: 90%;
    height: 100%;
    object-fit: fill;
    margin:  0 auto;

}

footer{
    width: 100%;
    height: 100%;
    background: var(--light-brick);
}

.contact-footer{
    width: 100%;
    height: 300px;
    display: flex;
    
    font-family: Poppins;
    
}

.contact-footer form{
    width: 75%;
    display: flex;
    flex-direction: column;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

marg-top{
    margin-top: 10px;
}

.contact-footer h2{
    margin-top: 5px;
    padding-bottom: 20px;
    font-family: Apolo;
    color: var(--light-green);
    font-size: 2rem;
}

.contact-footer input{
    width: 60%;
    outline: none;
    height: 30px;
    border: none;
    border-radius: 20px;
    margin-top: 20px;

}

.contact-footer input[type=text],
.contact-footer input[type=email]{
    color: var(--light-text);
    padding-left: 40px;
    font-family: Apolo;
    letter-spacing: 3px;
    font-size: 1rem;
}

.contact-footer label{

    color: var(--dark-text);
}

.contact-footer button{
    width: 100px;
    height: 35px;
    border: 1px solid var(--main-color);
    background-color: var(--light-green);
    border-radius: 20px;
    margin-top: 10px;
}
.contact-footer button:hover{
    width: 145px;
    background-color: var(--cream);
    transition: 0.5s;
    color: var(--main-color);
    position: relative;
}

.contact-footer button:hover::after{
    content: "Enviar";
    margin-left: 10px;
}

.contact-footer button:hover>i{
    color: var(--main-color);
    transform: rotate(45deg);
    font-size: 1.3rem;
    transition: all 0.5s;
}
.button i{
    color: var(--cream);
    font-size: 1rem;
}

.soc-media-footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.soc-media-footer .wrap{
    display: flex;
    justify-content: center;
}

.soc-media-footer .wrap  a{
    color: var(--social);
    padding: 0 20px;
}

.soc-media-footer .wrap  ion-icon:hover{
    width: 43px;
    height: 43px;
    padding: 4px;
    color: var(--light-green);
    border: 2px solid var(--main-color);
    border-radius: 50px;
}

.soc-media-footer .wrap .icons{
    font-size: 3rem;
}


.rights{
    width: 100%;
    height: 120px;
    background-color: var(--cream);
    display: flex;
    align-items: center;
    transition: 0.5s;
}

.rights img{
    width: 180px;
    margin-left: 300px;
    margin-top: 10px;
}

.rights span{
    font-family: Apolo;
    color: var(--main-color);
}

.rights-text{
    margin-left: 150px;
    font-size: 1.5rem;
}

/*MOBILES*/
@media (max-width: 420px){
	.container{
	width: 100%;
	}
	.menu, .social{
		display: none;
	}
	nav{
        width: 100%;
		display:flex;
		flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
	}

    .logo img{
        width: 100%;
    }
	.menu-mobile{
        width: 100%;
		display: flex;
        
	}

    .menu-mobile .links-mobile{
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        position: absolute;
        background: var(--light-green);
    }
	
    .menu-mobile .links-mobile a{
        width: 100%;
        height: 35px;
        text-align: center;
        border-bottom: 1px solid var(--cream-50);
        line-height: 35px;
        color: var(--cream);
        font-family: Apolo;
        letter-spacing: 3px;
        font-weight: 700;
    }

    .slider{
        margin-top: 105px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .gallery{
        width: 90%;
    }

    .gallery-container{
        width: 100%;
    }

    .gallery-item{
        width: 90%;
    }

    .presentation{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .presentation-title{
        width: 90%;
    }

    .presentation-wrap{
        display: flex;
        flex-direction: column;
    }

    .quick-links{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        padding-bottom: 30px;
    }

    .quick-links-wrap{
        width: 100%;
        height: 230px;
        margin-top: 20px;
        display: flex;   
    }

    .description{
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .description img{
        display: none;
    }

    .description-container{
        width: 100%;
        padding-left: 20px;
        position: initial;
    }

    .description-container p{
        font-size: 1rem;
        margin-top: 0;
    }

    .titles h2{
        width: 90%;
    }

    .rancho-gallery{
        display: flex;
        height: auto;
        flex-direction: column;
    }

    .rancho-gallery-cards-container{
        width: 100%;
    }
    .card1, .card2, .card3{
        height: 150px;
    }

    .rancho-gallery-link-container{
        margin: auto;
        border-radius: 20px;
    }

    .titulo{
        font-size: 2rem;
    }
    .tour-1{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .service-info{
        width: 100%;
    }

    .service-info div{
        width: 70%;
    }
    .img-1{
        width: 100%;
    }

    .img-1 img{
        width: 100%;
    }

    .tour-2{
        display: flex;
        flex-direction: column;
        height: auto;
        text-align: center;
    }
    .img-3{
        width: 270px;
    }

    .img-4{
        height: 240px;
        margin-left: 20px;
    }

    .tour-3{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .tour-3 .service-info{
        width: 100%;
    }
    .tour-3 .service-info h3{
        font-size: 2rem;
    }
    .tour-3 .service-info h4{
        font-size: 1.5rem;
    }

    .tour-3 .service-info .a-button{
        margin-top: 20px;
    }

    footer{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .rights{
        display: flex;
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 5px;
    }
    .rights img{
        margin: 0%;
    }

    .rights-text{
        margin: 0%;
        text-align: center;
    }

    .contact-footer{
        display: flex;
        height: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .contact-footer form{
        width: 100%;
        padding-bottom: 30px;
    }

    .contact-footer .wrap, .contact-footer p{
        padding-bottom: 20px;
    }
}