@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header{
    background-color: #103754;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
}
header nav a{
    color: white;
    text-decoration: none;
    margin: 0 9px;
    transition: all 0.3s ease-in-out;
    padding-bottom: 2px;
    font-weight: 500;
}
nav a:hover{
    text-decoration: underline;
}
section.home-banner{
    background-image: url(../img/banner-home.jpeg);
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-banner .brand-txt p{
    color: #4dbd99;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-bottom: 3px;
}
.home-banner .brand-txt{
    border-bottom: 1px solid #4dbd99;
    display: inline-block;
}
.home-banner .container{
    flex-direction: column;
}
h1{
    font-size: 45px;
    color: white;
    letter-spacing: 2px;
}
.h1-div{
    margin: 25px 0;
}
.cta-home{
    margin-top: 25px;
}
.cta-home a{
    background-color: #4dbd99;
    padding: 12px 35px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    border: 1px solid #4dbd99;
    transition: all 0.3s ease-in-out;
}
.cta-home a:hover{
    background-color: white;
    color: #4dbd99;
}
.info-home{
    padding: 30px 0;
}
.servicios-box{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4,25%);
}
.servicio{
    padding: 20px;
}
.servicio .img-servicio img{
    max-width: 80px;
}
.servicio .servicio-nombre{
    margin: 25px 0 20px 0;
}
.servicio-nombre h2{
    font-size: 22px;
    color: #103754;
    padding-bottom: 10px;
}
.servicio-nombre hr{
    border: 1px solid #4dbd99;
    width: 50px;
}
.servicio .servicio-txt{
    color: #5f727f;
    font-size: 15px;
}
.img-maccware{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}
.clientes h2{
    font-size: 35px;
    color: #103754;
    letter-spacing: 1px;
    margin-bottom: 35px;
}
.clientes{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}
.clientes .container{
    flex-direction: column;
}
.clientes-box{
    display: grid;
    grid-template-columns: repeat(3, 33%);
    width: 100%;
    grid-column-gap: 12px;
}
.clientes-box .cliente{
    width: 100%;
}
.contacto{
    padding: 60px 0;
    background-color: #103754;
}
.contacto .container{
    flex-direction: column;
}
.contacto h2{
    font-size: 35px;
    margin-bottom: 30px;
    color: white;
}
.contacto-txt{
    color: white;
}
.gracias{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gracias .container{
    flex-direction: column;
}
.gracias h1{
    color: #103754;
    margin-bottom: 15px;
}
.gracias a{
    color: #103754;
    margin: 12px auto;
}
footer{
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #103754;
    border-top: 1px solid white;
}
footer .copyright{
    color: white;
}
footer .copyright a{
    color: #4dbd99;
    text-decoration: none;
}