@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Smooch+Sans:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: "Rajdhani", sans-serif;
    font-weight: 400;
    background-color: #343841;
    color: #f1f1f1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER */
.header {
    background-color: #292c33;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    min-height: 70vh;
    padding: 60px 0;
}

/*logo animado*/
.logo-animado{
    font-family: "Smooch Sans", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-animado h1{
    position: relative;
    font-weight: 700;
    font-size: 5rem;
    color: #292c33;
    -webkit-text-stroke: 0.1vw #626772;
}
.logo-animado h1::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: #fff;
    -webkit-text-stroke: 0vw #626772;
    border-right: 1px solid #626772;
    overflow: hidden;
    animation: animate 6s linear infinite;
}
@keyframes animate{
    0%, 10%, 100%
    {
        width: 0;
    }
    70%, 90%
    {
        width: 100%;
    }
}

/* logo error 404*/
.logo h1{
    font-family: "Smooch Sans", sans-serif;
    text-align: center;
    font-size: 60px;
    margin: 30px;
}

.logo h1 span{
    color: #eb9955;
}

.header-txt h2 {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 10px;
}

.header-txt p {
    font-size: 20px;
    text-align: center;
    padding: 0px 10px;
}

span {
    color: #eb9955;
}

/*boton*/
.btn-1 {
    display: inline-block;
    padding: 10px 40px;
    background: #e47a24;
    color: #f1f1f1;
    margin: 15px 0;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-1:hover {
    background: #eb9955;
    color: #343841;
}


/*servicios*/
.intro {
    color: #adadad;
    font-weight: 500;
    font-size: 22px;
    border-bottom: 1px solid #626772;
    margin-bottom: 30px;
}

.about {
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.about-img {
    flex-basis: 50%;
    padding: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.about-img img {
    max-width: 500px;
}

.about-txt {
    flex-basis: 50%;
}

.about-txt h2 {
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}

.about-txt p {
    font-size: 18px;
    margin: 5px 0 20px 0;
}

.about .ri-shape-line, .ri-server-line, .ri-slideshow-4-line, .ri-arrow-down-circle-line{
    font-size: 1.3rem;
    font-weight: lighter;
}

/* FOOTER */

.footer {
    background-color: #292c33;
    padding: 50px;
}

.footer-content {
    display: grid;
    justify-content: center;
    align-items: center;
}

.footer-content h3 {
    font-size: 24px;
    font-weight: 400;
    color: #f1f1f1;
    text-align: center;
}

.footer-content h4 {
    font-size: 18px;
    font-weight: 400;
    color: #f1f1f1;
    text-align: center;
}

@media(max-width:920px) {

    .header {
        min-height: 0vh;
        padding: 80px 30 px 50px 30px;
    }

    .header-txt {
        padding: 0;
    }

    .header-txt h2 {
        font-size: 45px;
    }

    .botones {
        flex-direction: column;
        padding: 0 50px;
    }

    .btn-1 {
        margin: 0 0 20px 0;
    }

    .about-img img {
        max-width: 300px;
    }

    .about {
        padding: 0 30px 30px 30px;
        flex-direction: column;
    }

    .about-txt {
        text-align: center;
        margin-bottom: 30px;
    }

    .services {
        padding: 0 30px 30px 30px;
    }

    .services-content {
        margin-top: 30px;
        grid-template-columns: repeat(1 , 1fr);
    }

    .footer {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content h4 {
        margin-bottom: 10px;
    }

}