@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400&display=swap');

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

body {
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    background-color: #3d4f55;
    color: #f1f1f1;
}

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

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

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

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

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

span {
    color: #eb9955;
}

.btn-1 {
    display: inline-block;
    padding: 10px 50px;
    background: #e47a24;
    color: #f1f1f1;
    margin: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

/* seccion info */

.information {
    display: flex;
    justify-content: space-between;
    padding: 0 100px;
    margin-top: -30px;
}

.information-1 {
    margin: 0 10px;
    background: #e47a24;
    padding: 15px;
    border-radius: 10px;
    font-weight: 300;
    font-size: 15px;
}

.information-1 h3{
    color: #f1f1f1;
    font-size: 20px;
    font-weight: 400;
}

.information-1 p {
    margin-bottom: 5px;
}

.information-1 a {
    color: #E8E8E8;
}

.information-1:hover {
    background: #eb9955;
}

/* seccion about */

.about {
    margin-top: 50px;
    display: flex;
    align-items: center;
}

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

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

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

.about-txt h1 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.4;
}

.about-txt p {
    font-size: 18px;
    font-weight: 300;
    margin: 20px;
}

.intro {
    color: #eb9955;
    font-size: 20px;
    font-weight: 400;
    padding-bottom: 10px;
}

/* FOOTER */

.footer {
    background-color: #343841;
    padding: 50px;
    margin-top: 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: 300;
    color: #f1f1f1;
    text-align: center;
}

@media(max-width:768px) {

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

    .header-txt {
        padding: 0;
    }

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

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

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

    .information {
        margin-top: 0;
        padding: 30px;
        flex-direction: column;
    }

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

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

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

    .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;
    }

}