
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Bebas+Neue&family=Lobster&family=Oswald:wght@200;300;400;500;700&family=Poppins:ital,wght@0,500;1,400&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Bebas+Neue&family=Lobster&family=Oswald:wght@200;300;400;500;700&family=Poppins:ital,wght@0,500;1,400&family=Roboto&family=Roboto+Condensed&family=Rubik:wght@500&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Bebas+Neue&family=Lobster&family=Open+Sans:ital,wght@1,800&family=Oswald:wght@200;300;400;500;700&family=Permanent+Marker&family=Poppins:ital,wght@0,500;1,400&family=Roboto&family=Roboto+Condensed&family=Rubik:wght@500&display=swap');


:root{
    --color-style: rgb(0, 63, 65);
    --color-letra:rgb(75, 197, 150);
    --facebook: #3b5999;
    --instagram: #e4405f;
    --whatsapp: rgb(0, 179, 0);
    --ubicacion: rgb(136, 136, 136);
}



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html{
    scroll-behavior: smooth;
}

.max-width{
    max-width: 1300px;
    padding: 0px 80px;
    margin: 0 auto;
}




/*Menu BTN*/

.menu-btn{
    color: var(--color-letra);
    font-size: 25px;
    cursor: pointer;
    display: none;
}



/*Btn Whp*/
.wpp-btn{
    position: fixed; 
    height: 45px;
    width: 43px;
    background: var(--color-letra);
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 10000;
    font-size: 30px;
    border-radius: 50px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
 }

 .wpp-btn a{
    color: #fff;
 }

 .wpp-btn a:hover{
    color: var(--color-style);
 }

 .wpp-btn.showbtn{
    opacity: 1; 
    pointer-events: auto; 
    bottom: 100px;
     }


/*Btn Scroll-up*/
.scroll-up-btn{
    position: fixed; 
    height: 45px;
    width: 43px;
    background: var(--color-letra);
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 10000;
    font-size: 30px;
    border-radius: 50px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
 }
 
 .scroll-up-btn.showbtn{
opacity: 1; 
pointer-events: auto; 
bottom: 30px;
 }

.navbar{
    position: fixed;
    width: 100%;
    padding: 5px 0;
    font-family: 'Poppins', sans-serif;
    background: #333;
    z-index: 10000;
    transition: all 0.3s  ease;
   
}

.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img{
    width: 150px;
    height: 150px;
    border-radius: 100%;
    box-shadow: 2px 0px 15px #fff;
    
}

.navbar .menu li {
    display: inline-block;
    list-style: none;
}

.navbar .menu li a{
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bolder;
    margin: 0 40px;
    margin-left: 25px;
    transition: all 0.3s ease;
    

}

.menu li a:after{
    content: "";
    position: absolute;
    background: #fff;
    height: 3px;
    width: 0;
    left: 0;
    bottom: -4px;
    transition: all 0.3s;
}

.menu li a:hover:after{
    width: 100%;
    
}

.navbar .menu li a:hover{
    color: var(--color-letra);
}

/*Sticky Class*/
.navbar.sticky{
padding: 15px 0;
background: var(--color-style);
}

.navbar.sticky .menu li a:hover{
    color: var(--color-letra);
}




/*All similar content styling code*/
section{
    padding: 100px 0px;
    padding-bottom: 200px;
}


section .title{
    padding: 10px;
}









/*Home Section*/

.home{
font-family:'Rubik',  sans-serif; 

}

.home .home-container{
    width: 100%;
    height: 750px;
    background: linear-gradient(to right, hsla(211, 14%, 39%, 0.74), hsla(176, 56%, 55%, 0.76)) , url(img/transp-home.jpg); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: cover;
    background-attachment: fixed;

    
}


.home .title{
    position:relative;
    text-align: justify;
    font-size: 130px;
    margin: 60px 0;
    padding: 150px 30px;
    font-family: 'Open Sans', sans-serif;
    
}

.home .home-container .text-1{
    font-family: 'Open Sans', sans-serif;
    font-size: 65px;
    
}


.home .home-container .text-1 span{
  color: #fff;
  animation: none;
    
}

.home span{
    
    color: var(--color-style);
    display: inline-block;
    animation-timing-function: ease-in;
    animation: saltar 1s;
    transform: translateY(0);
}
span:nth-child(1){
animation-delay: 0s;
}
span:nth-child(2){
animation-delay: 0.2s;
}
span:nth-child(3){
    animation-delay: 0.4s;  
}
span:nth-child(4){
    animation-delay: 0.6s;  
}

@keyframes saltar {
    0%{
      transform: translateY(0);
    }
    10%{
        transform: translateY(-10px);
      }
    50%{
        transform: translateY(100px);
    }
    80%{
        transform: translateY(110px);
    }
}


.home  .home-container a{

display: inline-block;
background: #333;
color: #fff;
text-decoration: none;
font-size: 20px;
font-weight: bolder;
cursor: pointer;
padding: 15px 30px;
margin-top:20px;
border-radius: 6px;
border: 2px solid var(--color-letra);
transition: all 0.3s ease;     

}

.home .home-container a:hover{

color: var(--color-letra);
background: var(--color-style);
box-shadow: 2px 0px 30px #222;

}


    
/* Servicios Section */
.servicios{
    padding: 50px 0;
    margin: 0 50px;
}
.servicios .servicios-container{
    padding: 50px;
    border: 20px solid var(--color-letra);
}

.servicios .servicios-container .row{
    text-align: center;
    padding: 50px;
    border: 15px double var(--color-style);
}
.servicios .servicios-container .servicios-info-item{
    display: inline-block ;
    text-align: center;
    text-decoration: none;
    margin: 0 50px;
    
    
}



.servicios .servicios-info-item .icon i{
  font-size: 50px;
  color: var(--color-letra);
  padding: 20px 0;
  margin-bottom: 20px;
  width:100px;
  height: 100px;
  background-color: var(--color-style);
  border-radius: 50%;
  box-shadow: 2px 0px 30px #222;
  transition: all 0.4s ease;
  cursor: pointer;

}
.servicios .servicios-info-item .icon i:hover{
 background-color: var(--color-letra);
 color: var(--color-style);
 box-shadow: 2px 0px 30px #222;

    
 }

.servicios .servicios-info-item h4{
   font-size: 25px;
   font-weight: 700;
   color: var(--color-style);
   text-transform: capitalize;
   margin: 15px 0 5px;
}

.servicios .servicios-info-item p{
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0;

 }

 .servicios .servicios-info-item span{
    font-size: 20px;
    color: var(--color-style);
    transition: all 0.3s ease;
    cursor: pointer;
 }

 .servicios .servicios-info-item span:hover{
    color: var(--color-letra);
 }
 




/*Nosotros Section*/

.nosotros{
    font-family:'Rubik',  sans-serif;
    background: linear-gradient(to bottom, #43434300, #000000a8); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
   
}
.nosotros .max-width{
    max-width: 1800px;

}

/*
.nosotros .max-width{
    background-color: #222;
    padding: 50px 100px;
    border-radius: 5%;
}*/




.nosotros .title{
font-size: 80px;
color: var(--color-letra);
margin-bottom: 80px;
cursor: pointer;
text-align: center;

background-image: linear-gradient(#111, #344);
box-shadow: 2px 0px 30px #222;
border-radius: 20px;
background-repeat: no-repeat;
background-size: 100% 0%;
background-position-x: left;
transition: background-size 500ms;

}

.nosotros .title:hover{
background-size: 100% 100%;

}



.nosotros-content{
    background:linear-gradient(rgba(5, 7, 12, 0.65),
    rgba(5, 7, 12, 0.65)), url(img/transp-home.jpg);
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    height: 500px;
    border: 10px  solid #333;
    padding: 150px 300px;
 
   
}




.text-content{
    margin: 50px;
    border: 10px double #fff;
    font-size: 40px;
    text-align: center;
    color: #fff;
    padding: 20px 0;

}



.text-nosotros-content{
    background: #333;
    padding: 50px;
    margin: 50px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.3s ease;
    
}

.text-nosotros-content:hover{
    transform: scale(1.03);

}
.text-nosotros-content .right p i:hover{
    transform: scale(1.3);
    color: var(--color-letra);
}
.text-nosotros-content .left{
    width: 45%;
}

.text-nosotros-content .left img{
    width: 500px;
    height: 315px;
    border: 2px solid #fff;
}


.text-nosotros-content h2{
    text-align: center;
    color: var(--color-letra);
}


.text-nosotros-content .right{
    width: 55%;
}

.text-nosotros-content .right p{
    text-align: justify;
    text-overflow: ellipsis;
    font-size: 17px;
    color: #fff;
    padding: 30px;
    margin: 20px;
}










/*SLIDER-NOSOTROS*/
.home-nosotros{
    font-family:'Rubik',  sans-serif;
    padding: 150px 0;
    background: #fff;
    
}

.home-nosotros .carousel .card{


text-align: center;
cursor: pointer;
transition: all 0.3s ease;
}


.home-nosotros .carousel .card img{
width: 100%;
height: 700px;
object-fit: cover;
transition: all 0.3s ease;
object-fit: cover;
cursor: pointer;
}



.owl-dots{
    text-align: center;
    background-color: #333;
    padding: 30px;
    
}

.owl-dot{
    height: 20px;
    width: 20px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border:2px solid #fff !important;
    transition: all 0.3s ease;
}
.owl-dot.active{
    width: 40px;
    border-radius: 14px;
}
.owl-dot.active
,.owl-dot:hover{
    background: var(--color-letra)!important;
}










































/*Fletes section*/

.fletes{
    font-family:'Rubik',  sans-serif;
    background: #fff;
    
   
}

.fletes .fletes-content{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
padding-top: 50px;
}


.fletes .title{
font-size: 60px;
color: var(--color-letra);
margin: 80px 0;
cursor: pointer;
text-align: center;

background-image: linear-gradient(#111, #344);
box-shadow: 2px 0px 30px #222;
border-radius: 20px;
background-repeat: no-repeat;
background-size: 100% 0%;
background-position-x: left;
transition: background-size 500ms;

}

.fletes .title:hover{
background-size: 100% 100%;

}


.fletes .fletes-content .left img{
  height: 350px;  
  width: 350px;
  object-fit: cover;
  border-radius: 10px;
  border: 4px solid var(--color-style);
 
  
}



.fletes .fletes-content .right{
    width: 55%;
 }

.fletes .fletes-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
  
}

.fletes .fletes-content .right .text span{

    color: var(--color-letra);
    transition: all 0.3s ease;
    cursor: pointer;
    
    
}

.fletes .fletes-content .right .text span:hover{

    color: var(--color-style);
    
}


.fletes .fletes-content .right p{
    text-align: justify;
    color: #111;
}

.fletes .fletes-content .right p i{
    color: var(--color-letra);
}
.fletes .fletes-content .right a{
    display: inline-block;
    background: #333;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bolder;
    padding: 15px 30px;
    margin-top:20px;
    border-radius: 6px;
    border: 2px solid var(--color-letra);
    transition: all 0.3s ease;  
}

.fletes .fletes-content .right a:hover{
color: var(--color-letra);
background: var(--color-style);
box-shadow: 2px 0px 30px #222;
}

 .right a i{
    font-size: 15px;
    
}








/*Mudanzas Section*/

.mudanzas{
    font-family:'Rubik',  sans-serif;
    background: linear-gradient(to bottom, #43434300, #000000a8); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
   
}
/*
.mudanzas .max-width{
    background-color: #222;
    padding: 50px 100px;
    border-radius: 5%;
}*/

.mudanzas .mudanzas-content{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
padding-top: 50px;
}


.mudanzas .title{
font-size: 60px;
color: var(--color-letra);
margin: 80px 0;
cursor: pointer;
text-align: center;

background-image: linear-gradient(#111, #344);
box-shadow: 2px 0px 30px #222;
border-radius: 20px;
background-repeat: no-repeat;
background-size: 100% 0%;
background-position-x: left;
transition: background-size 500ms;

}

.mudanzas .title:hover{
background-size: 100% 100%;

}



.mudanzas .mudanzas-content .left{

width: 45%;
}

.mudanzas .mudanzas-content .left img{
  height: 350px;  
  width: 350px;
  object-fit: cover;
  border-radius: 10px;
  border: 4px solid var(--color-style);
 
}



.mudanzas .mudanzas-content .right{
    width: 55%;
 }

.mudanzas .mudanzas-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
  
}

.mudanzas .mudanzas-content .right .text span{

    color: var(--color-style);
    transition: all 0.3s ease;
    cursor: pointer;
    
    
}

.mudanzas .mudanzas-content .right .text span:hover{

    color: var(--color-letra);
    
}


.mudanzas .mudanzas-content .right p{
    text-align: justify;
    color: #fff;
}

.mudanzas .mudanzas-content .right p i{
    
    color:var(--color-letra);
}
.mudanzas .mudanzas-content .right a{
    display: inline-block;
    background: #333;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bolder;
    padding: 15px 30px;
    margin-top:20px;
    border-radius: 6px;
    border: 2px solid var(--color-letra);
    transition: all 0.3s ease;  
}

.mudanzas .mudanzas-content .right a:hover{
color: var(--color-letra);
background: var(--color-style);
box-shadow: 2px 0px 30px #222;
}


.mudanzas .mudanzas-content .right i{
font-size: 15px;

}






/*Embalajes section*/

.embalajes{
    font-family:'Rubik',  sans-serif;
    background: #fff;
  
   
}

.embalajes .embalajes-content{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
padding-top: 50px;
}


.embalajes .title{
font-size: 60px;
color: var(--color-letra);
margin: 80px 0;
cursor: pointer;
text-align: center;

background-image: linear-gradient(#111, #344);
box-shadow: 2px 0px 30px #222;
border-radius: 20px;
background-repeat: no-repeat;
background-size: 100% 0%;
background-position-x: left;
transition: background-size 500ms;

}

.embalajes .title:hover{
background-size: 100% 100%;

}


.embalajes .embalajes-content .left img{
  height: 350px;  
  width: 350px;
  object-fit: cover;
  border-radius: 10px;
  border: 4px solid var(--color-style);
 
}



.embalajes .embalajes-content .right{
    width: 55%;
 }

.embalajes .embalajes-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
  
}

.embalajes .embalajes-content .right .text span{

    color: var(--color-letra);
    transition: all 0.3s ease;
    cursor: pointer;
    
    
}

.embalajes .embalajes-content .right .text span:hover{

    color: var(--color-style);
    
}


.embalajes .embalajes-content .right p{
    text-align: justify;
    color: #111;
}

.embalajes .embalajes-content .right p i{
   
    color: var(--color-letra);
}
.embalajes .embalajes-content .right a{
    display: inline-block;
    background: #333;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bolder;
    padding: 15px 30px;
    margin-top:20px;
    border-radius: 6px;
    border: 2px solid var(--color-letra);
    transition: all 0.3s ease;  
}

.embalajes .embalajes-content .right a:hover{
color: var(--color-letra);
background: var(--color-style);
box-shadow: 2px 0px 30px #222;
}

 .right a i{
    font-size: 15px;
}







/*Guardamuebles Section*/

.guardamuebles{
    font-family:'Rubik',  sans-serif;
    background: linear-gradient(to bottom, #43434300, #000000a8); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
   
}
/*
.guardamuebles .max-width{
    background-color: #222;
    padding: 50px 100px;
    border-radius: 5%;
}*/

.guardamuebles .guardamuebles-content{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
padding-top: 50px;
}


.guardamuebles .title{
font-size: 60px;
color: var(--color-letra);
margin: 80px 0;
cursor: pointer;
text-align: center;

background-image: linear-gradient(#111, #344);
box-shadow: 2px 0px 30px #222;
border-radius: 20px;
background-repeat: no-repeat;
background-size: 100% 0%;
background-position-x: left;
transition: background-size 500ms;

}

.guardamuebles .title:hover{
background-size: 100% 100%;

}



.guardamuebles .guardamuebles-content .left{

width: 45%;
}

.guardamuebles .guardamuebles-content .left img{
  height: 350px;  
  width: 350px;
  object-fit: cover;
  border-radius: 10px;
  border: 4px solid var(--color-style);
  
}


.guardamuebles .guardamuebles-content .right{
    width: 55%;
 }

.guardamuebles .guardamuebles-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
  
}

.guardamuebles .guardamuebles-content .right .text span{

    color: var(--color-style);
    transition: all 0.3s ease;
    cursor: pointer;
    
    
}

.guardamuebles .guardamuebles-content .right .text span:hover{

    color: var(--color-letra);
    
}


.guardamuebles .guardamuebles-content .right p{
    text-align: justify;
    color: #fff;
}

.guardamuebles .guardamuebles-content .right p i{
   
    color: var(--color-letra);
}
.guardamuebles .guardamuebles-content .right a{
    display: inline-block;
    background: #333;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bolder;
    padding: 15px 30px;
    margin-top:20px;
    border-radius: 6px;
    border: 2px solid var(--color-letra);
    transition: all 0.3s ease;  
}

.guardamuebles .guardamuebles-content .right a:hover{
color: var(--color-letra);
background: var(--color-style);
box-shadow: 2px 0px 30px #222;
}


.guardamuebles .guardamuebles-content .right i{
font-size: 15px;

}






/*Contact Section*/

.contact{
font-family:'Rubik',  sans-serif;
background: #fff;

}


.contact .title{
font-size: 60px;
color: var(--color-letra);
margin: 80px 0;
cursor: pointer;
text-align: center;
        
background-image: linear-gradient(#111, #344);
box-shadow: 2px 0px 30px #222;
border-radius: 20px;
background-repeat: no-repeat;
background-size: 100% 0%;
background-position-x: left;
transition: background-size 500ms;
        
}
        
.contact .title:hover{
background-size: 100% 100%;
        
}
    
    
    
    
.contact-content{  

font-family:'Rubik',  sans-serif;
display: grid;
gap: 55px;
width: 100%;
margin: 50px 0 auto;
text-align: center;
border-radius: 10px;
padding: 30px 25px;

}
    
    
.contact-content .input-cointainer{
margin: 60px 0px;

}

.input-cointainer i{
font-size: 25px;
margin: 0 5px;
}

.input_mensaje{
resize: none;
}

.formulario_input{
font-family: 'Oswald', sans-serif;
font-size: 18px;
font-weight: bold;
background: #fff;
width: 80%;
height: 60px;
line-height: 25px;
color: #000;
outline: none;
border: 5px solid var(--color-style);  
}

.formulario_btn{

display: inline-block;
background: #333;
color: #fff;
text-decoration: none;
font-size: 20px;
cursor: pointer;
font-weight: bolder;
padding: 15px 30px;
margin-top:20px;
border-radius: 6px;
border: 2px solid var(--color-letra);
transition: all 0.3s ease;  
}

.formulario_btn:hover{
color: var(--color-letra);
background: var(--color-style);
box-shadow: 2px 0px 30px #222;

}


.formulario_grupo_boton i{
font-size: 15px;
}





::placeholder {
font-size: 15px;
font-weight: bold;
}

















/*Footer Section*/



.footer_section{
    display:  inline-block;
    padding-top: 20px;
    

}

.redes-contenedor ul li{
    display:inline-block; 
 

}
.redes-contenedor ul li a{
    display: block; 
    padding: 0 25px;
    background: #fff;
    color: var(--color-style);
    line-height: 50px;
    font-size: 25px;
    border-radius: 20%;
    transition: all 0.3s ease;
    
}


.redes-contenedor ul li .facebook:hover{
    background: var(--facebook); 
    
}
    
.redes-contenedor ul li .instagram:hover{
    background: var(--instagram);
    
   
}
    
.redes-contenedor ul li .whatsapp:hover{
    background: var(--whatsapp); 
    
       
}
    
.redes-contenedor ul li .ubicacion:hover{
    background: var(--ubicacion);
    
  
}



footer{
    padding: 20px 23px;
    text-align: center;
    background: var(--color-style);
    color: #fff;
    font-weight: bolder;
}

footer span{
    font-size: 18px;
    margin: 15px 0;
}

footer span a{
    color:var(--color-letra);
    text-decoration: none;
}

footer span a:hover{
    text-decoration: underline;
}










/*Responsive Desing*/


@media (max-width:1340px){
.wpp-btn{
    right: 0;
    
}
.scroll-up-btn{
    right: 0;
}


}





@media (max-width:1460px){


    .nosotros .max-width {
        max-width: 1500px ;
    
    }
    
    .text-nosotros-content{
    
        padding: 50px 30px;
        
    }
    
    

    .text-nosotros-content .left img{
        width: 450px;
        margin: 30px 0;

    }
    
    
    .text-nosotros-content h2{
        text-align: center;
        color: var(--color-letra);
    }
    
    
    
    .text-nosotros-content .right p{
        font-size: 15px;
    }
}


@media (max-width:1307px){
.max-width{
    
        padding: 0 50px;
      
    }
    .home .home-container .title{
        font-size: 100px;
   }
    
}






@media (max-width:1245px){

    .max-width{
    
        padding: 0 50px;
      
    }
    .menu-btn{
        display: block;
        z-index: 1000;
    }
  
    
    .menu-btn i.active::before{
       content: "\f00d";
      
    }
     

    .navbar .menu{
       position: fixed; 
       height: 100vh;
       width: 30%;
       right: -100%; /*Desaparece el menu , para poder asi trabajar con el btn*/
       top: 0;
       background: #333;
       text-align: center;
       padding-top: 200px;
      transition: all 0.5s ease-in-out;
    }
    .navbar .menu.active{
    right: 0;
    }

    .navbar .menu li{
    display: block;

    }

    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 20px;
        color: #fff;
    }
    
    




    .nosotros .title{
     font-size: 60px;
    margin: 80px 80px;
        
    }

    .nosotros .max-width {
      padding: 0;
    
    }
    
    .text-nosotros-content{
    
        padding: 40px 30px;
        
    }
    
    

    .text-nosotros-content .left img{
        width: 400px;

    }
    
    
    .text-nosotros-content .right p{
        font-size: 15px;
    }
   
    .text-content h3{
        font-size: 30px;
    }
}


@media (max-width:1045px){
.max-width{
padding: 0;
    
}


.max-width{
max-width: 800px;
        
}
   



.home .home-container .text-1{
    
font-size: 50px;
    
}

.home .home-container .title{
    font-size: 80px;
}




.home .home-container{
    width: 100%;
    height:450px;
    background: linear-gradient(to right, hsla(211, 14%, 39%, 0.74), hsla(176, 56%, 55%, 0.76)) , url(img/transp-home.jpg); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    object-fit: cover;
    
    
}



section{
    padding-bottom: 100px;
}


.nosotros-content{
    padding: 100px 100px;
}

.text-nosotros-content .left img{
    width: 350px;

}


.text-content h3{
    font-size: 30px;
    padding: 10px  0;
}



/* Servicios Section */
.servicios{
    margin: 0 50px;
}
.servicios .servicios-container{
    padding: 100px;
    border: none;
}

.servicios .servicios-container .row{
    padding: 50px 50px;
    border: 15px double var(--color-style);
    
}
.servicios .servicios-container .servicios-info-item{
 margin: 30px ;

}



.servicios .servicios-info-item .icon i{
  font-size: 35px;
  padding: 30px 0;

}


.servicios .servicios-info-item h4{
   font-size: 25px;
   margin: 10px 0;
}

.servicios .servicios-info-item p{
    font-size: 17px;
    text-align: center !important;
    margin: 15px 0;

 }

 .servicios .servicios-info-item span{
    font-size: 17px;
    
 }


 
}





@media (max-width:930px){
.text-nosotros-content .left img{
      width: 300px;
      height: 300px;
}

}



@media (max-width:865px){
.max-width{
padding: 0 50px;
                    
        
}
           
.max-width{
max-width: 800px;
            

}




.home .home-container .text-1{
    
font-size: 30px;
    
}

.home .home-container .title{
    font-size: 50px;
}

.nosotros .title{
    font-size: 50px;
    margin: 40px 50px;
}

.fletes .title{
    font-size: 50px;
    margin: 40px 0;
}



.mudanzas .title{
    font-size: 50px;
    margin: 40px 0;
}




.embalajes .title{
    font-size: 50px;
    margin: 40px 0;
}




.guardamuebles .title{
    font-size: 50px;
    margin: 40px 0;
}


.contact .title{
    font-size: 50px;
    margin: 40px 0;
}




.nosotros .nosotros-content .left img{
height: 350px;  
width: 350px;

      
}     
    
.fletes .fletes-content .left img{
height: 350px;  
width: 400px;
margin: 20px 0;
  
}

.mudanzas .mudanzas-content .left img{
height: 350px;  
width: 350px;

      
}

.embalajes .embalajes-content .left img{
height: 350px;  
width: 400px;
margin: 20px 0;
          
}

.guardamuebles .guardamuebles-content .left img{

height: 350px;  
width: 350px;

              
}
   
section .column{
width: 100%

}

section .left{
display: flex;
justify-content: center;
margin: 0 auto 60px;

}



section .right{
flex: 100%;
font-size: 15px;


}


p{
    text-align: start !important;
}




.home  .home-container a{
   
font-size: 15px;
padding: 10px 20px;
margin-top:20px;
   
}











.nosotros-content{
    padding: 100px 100px;
}


.text-nosotros-content{

    padding: 20px 0px;
    
    
}

.text-content h3{
    font-size: 30px;
}

.text-nosotros-content .left img{
    width: 300px;
    margin: 30px 0;

}


.text-nosotros-content h2{
    text-align: center;
    color: var(--color-letra);
    margin: 20px;
}



.text-nosotros-content .right p{
    font-size: 13px;
    padding: 20px;
    
}


.nosotros-content{
   
    background-attachment:fixed;
    background-size: 180%;
    background-position: 30%;
  
   
   
}



}





@media(max-width:710px){
.navbar .menu{

 height: 100vh;
 width: 45%;

 
}


.wpp-btn{
font-size: 23px;
height: 35px;
width: 33px;
line-height: 35px;
}


.scroll-up-btn{
font-size: 23px;
height: 35px;
width: 33px;
line-height: 35px;
}


.nosotros-content{
    padding: 100px 50px;
}

.text-content h3{
    font-size: 25px;
    padding: 0;
}



.nosotros .title{
    margin: 40px;
    
}





.servicios{
    margin: 0 auto;
}
.servicios .servicios-container{
    padding: 100px  20px;
    border: none;
}

.servicios .servicios-container .row{
    padding: 50px 0px;
    border: 15px double var(--color-style);
    
}


.servicios .servicios-info-item h4{
   font-size: 20px;
   
}

.servicios .servicios-info-item p{
    font-size: 16px;
    margin: 10px 0;

}

 .servicios .servicios-info-item span{
    font-size: 16px;
    
 }
}



@media (max-width:555px){


.logo img{
    width: 100px;
    height: 100px;
    border-radius: 100%;
    box-shadow: 1px 0px 10px #fff;  
}

/*Sticky Class*/
.navbar.sticky{
    padding: 40px 0;

}
    


.navbar{
    padding: 30px 0;
}

.navbar .menu{

height: 200vh;
width: 50%;

        
}   

.home .home-container .text-1{
    
font-size: 20px;
        
}
    
.home .home-container .title{
font-size: 40px;
}
    

.nosotros .title{
    
   margin: 30px 20px;
  font-size: 40px;

}

    
.fletes .title{
font-size: 40px;
}
      
    
 .mudanzas .title{
 font-size: 40px;
}
    
    
.embalajes .title{
 font-size: 40px;
}
    
      
    
.guardamuebles .title{
 font-size: 40px;
}


.contact .title{
    font-size: 40px;
}


.home .home-container{
    
    background: linear-gradient(to right, hsla(211, 14%, 39%, 0.74), hsla(176, 56%, 55%, 0.76)) , url(img/transp-home.jpg); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-position: 30%;
    background-size: cover;
    

    
}

}


@media (max-width:470px){

.home .home-container .title{
        font-size: 30px;
}


.max-width{
padding: 0 35px;
                            
                
}




.nosotros .title{
  font-size: 35px;

}

    
.fletes .title{
font-size: 35px;
}
      
    
 .mudanzas .title{
 font-size: 35px;
}
    
    
.embalajes .title{
 font-size: 35px;
}
    
      
    
.guardamuebles .title{
 font-size: 35px;
}


.contact .title{
    font-size: 35px;
}




.nosotros .nosotros-content .left img{
    height: 300px;  
    width: 300px;
    
          
    }     
        
.fletes .fletes-content .left img{
height: 250px;  
width: 250px;

}

.mudanzas .mudanzas-content .left img{
height: 250px;  
width: 250px;
    
          
}
    
.embalajes .embalajes-content .left img{
height: 250px;  
width: 250px;
  
              
}
    
.guardamuebles .guardamuebles-content .left img{
    
height: 250px ;  
width: 250px ;
    
                  
}

.nosotros .nosotros-content .right a{
    font-size: 18px;
    padding: 10px 20px;
    
}


.fletes .fletes-content .right a{
    font-size: 18px;
    padding: 10px 20px;
    
}



.mudanzas .mudanzas-content .right a{
    font-size: 18px;
    padding: 10px 20px;
    
}



.embalajes .embalajes-content .right a{
    font-size: 18px;
    padding: 10px 20px;
    
}




.guardamuebles .guardamuebles-content .right a{
    font-size: 18px;
    padding: 10px 20px;
    
}



.contact .contact-content .input-cointainer i{
    margin-right: 10px;
}


.redes-contenedor ul li a{

padding: 0 15px;
line-height: 35px;
font-size: 20px;


    
}









.nosotros-content{
    padding: 100px 0px;
}


.text-content h3{
    font-size: 20px;
}


.text-nosotros-content .left img{
    width: 250px;
    height: 250px;
    margin: 0; 

}

.text-nosotros-content h2{
    color: var(--color-letra);
    margin: 20px;
    font-size: 17px;
}

}



@media (max-width:400px){


    
    
    .nosotros .title{
      font-size: 30px;
    
    }
    
        
    .fletes .title{
    font-size: 30px;
    }
          
        
     .mudanzas .title{
     font-size: 30px;
    }
        
        
    .embalajes .title{
     font-size: 30px;
    }
        
          
        
    .guardamuebles .title{
     font-size: 30px;
    }
    
    .home  .home-container a{
   
    font-size: 10px;
    padding: 10px 15px;
    margin-top:20px;
           
    }

    .contact .contact-content .input-cointainer p{
      padding-right: 10px;
    }
    


    .text-nosotros-content .left img{
        width: 200px;
        height: 200px;
      
    
    }
    }