*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
     font-family: sans-serif;
     padding: 90px, 20px, 0;
}

.wsp{
    position: fixed;
    width: 55px;
    height: 55px;
    line-height: 55px;
    bottom: 30px;
    right: 30px;
    background: #309108;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 40px;
}

.wsp:hover{
    text-decoration: none;
    color:#309108;
    background: white;

}

/* Menu */

header{
    background-color: #fff;
    width: 100%;
    height: 75px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    border-bottom: 1px solid gray;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.nav-link{
    color: black;
    text-decoration: none;
}

.logo{
    font-size: 30px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: bold;
    padding: 0 40px;
    line-height: 80px;
    color: #ff8000;

}

.ul-menu{
    display: flex;
    margin-right: 40px;
    list-style: none;
}

.li-menu-item{
    font-size: 18px;
    margin: 0 10px;
    font-family: 'Assistant', sans-serif;
}

.menu-link{
    padding: 8px 12px;
    border-radius: 3px;

}

.menu-link:hover{
    color: #ff8000;
    transition: 0.5s;
}
.nav-toggle{
    color: grey;
    background: none;
    border: none;
    font-size: 30px;
    padding: 0 20px;
    line-height: 60px;
    cursor: pointer;

    display: none;
}

@media (max-width: 450px){

    body{
        padding: 70px, 20px, 0;
   }
   
   header{
       height: 60px;
   }
   
   .logo{
       font-size: 25px;
       padding: 0 20px;
       line-height: 60px;
   }
   
   .ul-menu{
       flex-direction: column;
       margin-right: 20px;
       background-color: #ff8000;
       position: fixed;
       left: 100%;
       top: 60px;
       width: 100%;
       padding: 20px 0;
       align-items: center;
       height: calc(100% - 60px);
       overflow-y: auto;

       transition:left 0.3s;

   }
   
   .li-menu-item{
       line-height: 70px;
       
       
   }

   .li-menu-item a{
       color: white;
   }
   
   .menu-link:hover{
       background: none;
       color: #83c5f7;
   }
   .nav-toggle{
       display: block;
   }

   .ul-menu-visible{

    left:0;
    transition:left 0.3s;

   }
}

/* Cintillo */

.contact{
    margin-top: 0px;
    height: 30px;
    text-align: center;
    padding: 7px;
    font-family: 'Barlow Condensed', sans-serif;
    color: white;
    background-color: #ff8000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: fixed ;
    top: 75px;
    z-index: 999;
    width: 100%;
}

.contact .Phone-nav-link{
    text-decoration: none;
    color: white;
}

.contact .phone-icon{
    font-size: 18px;
    padding: 7px;
}

@media(max-width:768px){

    .contact{
        top: 60px;
        font-size: 17px;
    }
    
    .contact .phone-icon{
        font-size: 15px;
        padding: 7px;
    }
    
    
}



/* Slider */

.slider{
    margin-top: 105px ;
    height: 400px;
    background-image: url(Img/Portada_II.jpg);
    background-repeat:no-repeat;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
    background-position:center;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.slider .marco-form{

    width: 27%;
    height: 90%;
    margin-right: 50px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    background-color: #C9CBCD;
    border: 1px solid #8D9B87;
}

.slider .marco-form .formulario{
   height: 80%;
   width: 80%;
   margin: 20px auto;
   display: flex;
   flex-flow: row wrap;
   justify-content: space-between;
}

.slider .marco-form h3{
    margin-top: 30px;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 25px;
}

.slider .marco-form .formulario input{
    width: 100%;
    height: 25px;
    margin: 7px 0;
    padding: 7px;
}

.slider .marco-form .formulario .input-inline{
    width: 49%;
    height: 25px;
    margin: 7px 0;
    padding: 7px;

}

.slider .marco-form .formulario textarea{
    resize: none;
    width: 100%;
    height: 70px;
    margin-top: 10px;
    padding: 7px;
    font-family: sans-serif;
    border-radius: 3px;
}

.slider .marco-form .formulario input , textarea:focus{
    outline: none;

}

.slider .marco-form .formulario  .btn-send{
    margin: 20px auto;
    width: 55%;
    height: 30px;
    background-color: #ff8000;
    color: white;
    border: none;
    padding: 4px;
    border-radius: 3px;
}

/* Página de agradecimiento form */

.Mensaje{
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ff8000;
    }

.Mensaje h1{

    font-family: 'Barlow Condensed', sans-serif;
    font-size: 25px;
    margin-bottom: 20px;
    
}

.Mensaje .volver{

    background-color: #ff8000;
    margin-top: 30px;
    width: 120px;
    height: 30px;
    font-family: 'Barlow Condensed', sans-serif;
    color: white;
    border: none;
    border-radius: 3px;
}

/* Responsive*/

@media(max-width:768px){

    .slider{
        margin-top: 90px;
        justify-content: center;
        
    }
    
    .slider .marco-form{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80%;
        margin: 0
    }
    
    .slider .marco-form .formulario .input-inline{
        width: 100%;
        
    }

    .slider .marco-form .formulario textarea{
        display: none;
    }
}

/* Como funciona */

.como-funciona{
    margin: auto;
    width: 100%;
    height: 350px;
    background-color: #efefef;
}

.como-funciona h3{
    text-align: center;
    padding-top: 20px;
    margin-bottom: 40px;
    font-family: 'Barlow Condensed', sans-serif;
    color: black;
    font-size: 25px;
}

.como-funciona .marca-info{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: bold;
    color: #ff8000;
    font-size: 25px;
}
.como-funciona .marco-section{
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
    max-width: 1100px;
    align-items: center;
    height: 65%;

}

.como-funciona .marco-section .pasos{

    border: 0.3px solid gray;
    border-radius: 3px;
    width: 24%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    transition: all 0.4s ease;

}

.como-funciona .marco-section .pasos:hover{

    margin-top: -10px;
    box-shadow: 7px 5px 16px -2px rgba(13,5,5,0.78);
    -webkit-box-shadow: 7px 5px 16px -2px rgba(13,5,5,0.78);
    -moz-box-shadow: 7px 5px 16px -2px rgba(13,5,5,0.78);

}

.como-funciona .marco-section .pasos img{
    height: 35%;
    width: 35%;
    margin: 20px 20px 5px 20px;

}
.como-funciona .marco-section .pasos p{
    font-family: 'Assistant', sans-serif;
    font-size: 16px;
    text-align: center;
    padding: 15px;
    width: 80%;
    margin-bottom: 20px;
}

@media (max-width: 450px){

    .como-funciona h3{

        font-size: 20px;
        margin-bottom: 5px;

    }

    .como-funciona .marco-section{
        flex-direction: column;
    
    }

    
    
    .como-funciona .marco-section .pasos{
        border-radius: 0;
        border: none;
        width: 80%;
        height: 80%;
        display: flex;
        flex-direction:row;
        justify-content: center;
        align-items: center;
        background-color: transparent;
    
    }
    
    .como-funciona .marco-section .pasos:hover{

    margin-top:0;
    box-shadow:none;
    }
    
    .como-funciona .marco-section .pasos img{
        height: 53%;
        width: 15%;
        margin: 0;
    
    }
    .como-funciona .marco-section .pasos p{
        text-align: left;
        padding-left: 25px;
        width: 100%;
        margin-bottom:0;
        font-size: 13px;
    }
    
}

/* Servicios */

.servicios{
    width: 100%;
    height: 450px;
}

.servicios .marco-section{
    margin: auto;
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1100px;
    align-items: center;
    height: 100%;
}

.servicios .marco-section a{
    text-decoration: none;
}

.servicios .marco-section a .servicio{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.servicios .marco-section a .servicio img{
    width: 85%;
    margin: 0 auto;

}

.servicios .marco-section a .servicio h4{
    color: #F57F2C;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    text-align: center;
    margin-bottom: 10px;
    
}

@media (max-width: 450px){

    .servicios{
        width: 100%;
        height: 100%;
        padding: 20px;
    }
    
    .servicios .marco-section{
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 100%;
        align-items: center;
        height: 100%;
    }
    
    .servicios .marco-section .servicio{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
    
    
}

/* Pie de pagina */

.pie-pagina{
width: 100%;
background-color: #ff8000;
height: 100%;

}

.pie-pagina .grupo-1{
    width: 100%;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    padding: 45px 0;

}

.pie-pagina .grupo-1 .box{
    margin: 0 50px;
}

.pie-pagina .grupo-1 .box h2{
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    margin-bottom: 25px;
    font-size: 20px;
}
.pie-pagina .grupo-1 .box p{
    color: #efefef;
    margin-bottom: 10px;
    font-family: 'Assistant', sans-serif;
    margin-bottom: 10px;
}

.pie-pagina .grupo-1 .box a, h2{
    text-decoration: none;
    font-size: 20px;
}

.pie-pagina .grupo-1 .box .red-social a{
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #ff8000;
    margin-right: 10px;
    margin-bottom: 10px;
    background-color:white;
    text-align: center;
    transition: all 300ms ease;

}
.pie-pagina .grupo-1 .box .red-social a:hover{
    color:#83c5f7;
} 

.grupo-2{
    padding: 15px 10px;
    text-align: center;
    color: #efefef;
}

.grupo-2 small{
    font-size: 15px;
}

.grupo-2 a{
    text-decoration: none;
    color: white;
}


@media screen and (max-width: 800px){

    .pie-pagina .grupo-1{
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
        padding: 35px 0;
    
    }
    
}

/* Políticas de privacidad */

.marco-politicas{
    width: 100%;
    max-width: 1200px;
    margin-top: 80px;
    margin-bottom: 30px;
    height: 100%;
    padding: 20px;
}


