@import url(https://fonts.google.com/css);

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    scroll-behavior: smooth;
}
.Nosotros_id {
    padding-top: 8%;
    padding-bottom: 7%;
    padding-left: 4%;
    padding-right: 10%;
}
.services {
    padding-top: 3%;
    padding-bottom: 7%;
    padding-left: 4%;
    padding-right: 0%;
}
.Carrusel{
    padding-top: 9%;
    padding-bottom: 7%;
    padding-left: 4%;
    padding-right: 9%; 
}
.contact {
    padding-top: 9%;
    padding-bottom: 7%;
    padding-left: 4%;
    padding-right: 1%;
}

.banner {   
    position: relative;
    min-height: 100vh;
    background: url(Imag/Camion01A.jpg);
    background-size: cover;
    background-position: right;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding-right: 10%;
    
}

.banner .TexBx {
    margin-left: 20px;
    position: absolute;
    top: 80%;
}
.banner h2 {
    font-size: 3em;
    color: #520469;
    font-weight: 700;
    line-height: 1.1em;
    margin-left: 05;
}

.banner h2 span {
    font-size: 1.5em;
    font-weight: 700;
}


header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
}

.logomicarga {
    width: 200px;
    transform: scale(100%,100%);
    overflow: hidden;
}

.logomicarga img {
     width: 100%;
     transition: 0.5s all ease-in-out;
 }

/* Cambio del logo durante el moviento del scroll */
header.sticky img {
    width: 150px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* cambios que se dan con los menus durante el moviento del scroll */
header.sticky {
    background:rgb(228, 187, 224);
    padding: 20px 100px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); /*Sobras*/
}

header ul {
    position: relative;
    display: flex;
}
header ul li {
    position: relative;
    list-style: none;
}
header ul li a {
    position: relative;
    display: inline-block;
    margin: 0 15px;
    color: #520469;
    text-decoration: none;
}
/* Cambia el color de la letras los servicios etiqueta a */
header.sticky ul li a {
    color: #111;
}
.heading {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #111;
}

.heading h2{
    font-weight: 600;
    font-size: 30px;
}
.content {
    display: flex;
    justify-content: space-between;
}
.contentBx {
    margin: 0 20px;
}

.contentBx h3{
 font-size: 24px;
 margin-bottom: 10px;
}
.contentBx p{
    text-align:justify;
}

.w50 {
    min-width: 50%;
}

img {
    max-width: 100%;
}

/* Todos los titulos de los section */
.heading.white {
    color: #111;
}

/******************* ESTILOS PARA TARJETAS NUESTROS SERVICIOS ****************/
.services {
    background: rgb(212, 191, 211);
    
}

/******************* ESTILOS PARA EL CARRUSEL NUESTROS CLIENTES ****************/
.Carrusel{
    width: 100%;
    margin: 0px 0px;
}

.slick-list{
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    height: 350px;
    padding: 10px 0px;
    margin: 0px auto;
    max-width: 90vw;
    overflow: hidden;
}
.slick-track{
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    transition: .5s ease-in-out;
}
.slick{
    position: relative;
    width: 250px;
    padding: 0 10px;
    float: left;
    box-sizing: border-box;
    display: flex;
    height: 100%;
}

/* TAMAÑO DE LOS CUADROS */
.slick a img{
    object-fit: cover;
    height: 200px;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.5);
    transition: .3s ease-in-out;
}

/* AL PASAR EL MOUSE SE OPACA LA IMAGEN */
.slick a img:hover{
    opacity: .85;
}

/* BOTONES DEK CARRUCEL*/

.slick-arrow{
    border-radius: 10px;
    background-color:transparent;
    position: absolute;
    z-index: 4;
    width: 48px;
    height: 48px;
    text-align: center;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.15);
    border: 0;
    cursor: pointer;
}
.slick-arrow:focus{
    outline: 0;
}
.slick-arrow svg{
    width: 30px;
    height: 100%;
    color: red;
}
.slick-prev{
    left: 0px;
}
.slick-next{
    right: 0px;
}


/******************* ESTILOS PARA EL CONTACTO ****************/

.contact {
    background: rgb(212, 191, 211);
}

.contact h2{
    color: #111;
}
.formBx {
    min-width: 60%;
}
.formBx form {
    display: flex;
    flex-direction: column;
}
.formBx form h3,
.contactInfo h3
{
    color: #111;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}
/*Cajas del formulario*/
.formBx form input,
.formBx form textarea
{
    margin-bottom: 20px;
    padding: 15px;
    font-size: 16px;
    background: transparent;
    border: none;
    outline: none;
    background: #fff;
    color: #111;
    resize: none;
}

.formBx form textarea {
    min-height: 150px;
}
.formBx form input::placeholder
.formBx form textarea::placeholder
{
    color: #999;
}

/*Boton de enviar*/
.formBx form input[type="submit"]
{
    max-width: 100px;
    background: #520469;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}
.contactInfo
{
    min-width: 40px;
}

.contactInfoBx
{
    position: relative;
}

.contactInfoBx .box
{
    position: relative;
    padding: 20px 0;
    display: flex;
}
.contactInfoBx .box .icon 
{
    min-width: 40px;
    padding-top: 4px;
    color: blue;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 24px;
}
/*Texto de informacion de contacto*/
.contactInfoBx .box .text 
{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #111;
    flex-direction: column;
    font-weight: 300;
}
/*Titulos de informacion de Contacto */
.contactInfoBx .box .text h3
{
    font-weight: 500;
    color: blue;
    margin-bottom: 0;
    
}
.derechos {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 2px;
    
}
/* PARA MOVIL 39:50*/


