@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jaro:opsz@6..72&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #f6f6f7;
}

header {
    width: 100%;
    overflow: hidden;
}

.menu {
    background-color: #a01027;
    color: #fff;
    width: 100%;
    height: 100px;
    position: fixed;
    z-index: 1000;
}

.menu_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    margin: auto;
}

.logo {
    width: 100px;
    height: 100px;
    margin-left: -100px;
}

.items_links {
    height: 100%;
    transition: transform .5s;
    display: flex;
    z-index: 10;
    margin-right: -50px;
}

.item_link {
    list-style: none;
    position: relative;
    height: 100%;
}

.item {
    height: 100%;
    display: flex;
    padding: 10px 40px;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-family: 'Lato';
    transition: all .5s;
}

.item:hover {
    border-bottom: 4px solid #fff;
    margin-top: -10px;
}


/* ------------------------------------------------------------ */
/* ------------------------ HERO BANNER ----------------------- */
/* ------------------------------------------------------------ */

.header {
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.content_hero {
    position: absolute;
    /* max-width: 80rem; */
    width: 100%;
    height: 100vh;
    top: 100px;
    left: 0;
    background-image: url(../assets/images/hero-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.overlay-image {
    position: absolute;
    /* top: 100px; */
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(160, 16, 40, .3);
}

.header-content {
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.conteiner {
    width: 65%;
    margin-top: -50px;
    text-align: center;
}

.box_title .title {
    font-size: 45px;
    font-weight: bold;
}

.box_title .subtext {
    margin-top: 50px;
    font-size: 16px;
}

.btn_init {
    margin-top: 40px;
}

/* ------------------------------------------------------------ */
/* --------------------------- ABOUT -------------------------- */
/* ------------------------------------------------------------ */

.about {
    position: relative;
    width: 100%;
    height: 100vh;
}

/* .background_grey {
    position: relative;
    top: 900px;
    left: 100px;
    width: 500px;
    height: 500px;
    background-color: #c3c4c9;
} */

/* .background_logo img {
    position: relative;
    width: 600px;
    height: 500px;
    margin-top: 1000px;
    margin-left: 300px;
    z-index: 100;
} */

.background_grey {
    position: relative;
    margin-top: 900px;
    margin-left: 100px;
    width: 500px;
    height: 500px;
    background-color: #c3c4c9;
}

.background_logo img {
    position: relative;
    margin-top: -400px;
    margin-left: 300px;
    display: block;
    width: 600px;
    height: 550px;
    z-index: 10;
}

.background_about {
    margin-top: -600px;
    margin-left: 700px;
    width: 600px;
    height: 650px;
    background-color: #c3c4c9;
}

.box_about {
    position: relative;
    width: 100%;
    z-index: 200;
}

.title-about {
    width: 100%;
    padding-top: 80px;
    z-index: 300;
}

.border-top-red {
    width: 300px;
    border: 4px solid #c3c4c9;
    margin-bottom: 10px;
    margin-left: -10px;
}

.border-top-grey {
    width: 300px;
    border: 4px solid #a01027;
    margin-top: -10px;
    margin-left: 150px;
}

.title-about .title {
    margin-left: 70px;
}

.border-bottom-red {
    width: 300px;
    border: 4px solid #c3c4c9;
    margin-bottom: 10px;
    margin-left: -10px;
}

.border-bottom-grey {
    width: 300px;
    border: 4px solid #a01027;
    margin-top: -10px;
    margin-left: 150px;
}

.content-text {
    width: 400px;
    margin-top: 50px;
    margin-left: 120px;
}

.background_red {
    position: relative;
    margin-top: -350px;
    margin-left: 1000px;
    width: 400px;
    height: 400px;
    background-color: #a01027;
    z-index: -20;
}


/* ------------------------------------------------------------ */
/* ------------------------- PRODUCTS ------------------------- */
/* ------------------------------------------------------------ */

.products-container {
    position: relative;
    /* max-width: 80rem; */
    width: 100%;
    height: auto;
    top: 100px;
    left: 0;
    background-image: url(../assets/images/background-image.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.box-title-product h1 {
    font-family: 'Jaro';
    font-size: 55px;
    color: #f6f6f7;
    padding: 50px 40px;
    margin-left: 150px;
    letter-spacing: 8px;
}

.border-bottom-product {
    width: 500px;
    border: 4px solid #f6f6f7;
    margin: auto;
    margin-left: 120px;
    margin-top: -40px;
}

.box-info {
    width: 80%;
    margin-top: 100px;
}

.border-top-info {
    width: 1000px;
    border: 2px solid #f6f6f7;
    margin-bottom: 20px;
    margin-left: 180px;
}

.box-text {
    width: 1000px;
    height: 100px;
    margin: auto 200px;
    background-color: rgba(160, 16, 40, .5);
    border-radius: 16px;
}

.info-text {
    padding: 20px 40px;
    color: #f6f6f7;
}

.border-bottom-info {
    width: 1000px;
    border: 2px solid #f6f6f7;
    margin-top: 20px;
    margin-left: 180px;
}

.box-list-products {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.list-products {
    width: 100%;
    margin: 50px auto;
}

.list {
    font-family: 'Montserrat';
    font-weight: bold;
    list-style: none;
    padding: 10px;
    height: 50px;
    margin: 20px;
    background-color: rgba(195, 196, 201, .5);
    text-align: center;
    border-radius: 8px;
}


/* ------------------------------------------------------------ */
/* ------------------------ INFORMATION ----------------------- */
/* ------------------------------------------------------------ */

.container-information {
    width: 100%;
    height: 250px;
    background-color: rgba(160, 16, 40, 0.75);
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.box {
    margin: 50px auto 0 auto;
    text-align: center;
    color: #f6f6f7;
}

.fa-handshake,
.fa-city,
.fa-helmet-safety {
    font-size: 50px;
    color: #f6f6f7;
}


/* ------------------------------------------------------------ */
/* -------------------------- CONTACT ------------------------- */
/* ------------------------------------------------------------ */

.container-contact {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.conten-image img {
    width: 200px;
    height: 200px;
    margin: 50px 0;
}

.box-contact {
    padding: 0 20px;
}

.head-office {
    margin-bottom: 50px;
}

.head-office h3 {
    margin-left: 20px;
}

.border-office {
    width: 300px;
    border: 2px solid #a01027;
}

.box-contact-info {
    margin-bottom: 50px;
}

.info-contact {
    margin: 25px 100px;
}

.border-info {
    width: 600px;
    border: 2px solid #a01027;
    /* margin-left: 80px; */
}

.title-contact h3 {
    font-size: 35px;
    /* font-family: 'Montserrat'; */
    margin-left: 20px;
    padding: 10px;
}

.border-contact {
    width: 700px;
    border: 3px solid #a01027;
}

.box-text-contact p {
    width: 700px;
    padding: 40px 20px;
}

.contact-img img {
    margin-top: -20px;
    margin-left: 20px;
    height: 400px;
}

/* ------------------------------------------------------------ */
/* -------------------------- FOOTER -------------------------- */
/* ------------------------------------------------------------ */

.conteiner-footer {
    width: 100%;
    height: 320px;
    background-color: #c3c4c9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-paragraph {
    display: flex;
    justify-content: center;
    align-items: center;
}

.paragraph {
    width: 500px;
}

.footer-image img {
    width: 200px;
    margin: 40px 100px;
    /* margin-left: 100px; */
}

.copy {
    width: 100%;
    margin: 0 100px;
}

.content-footer {
    width: 100%;
}

.links-footer {
    width: 100%;
    margin: 0 100px;
    display: flex;
}

.link-footer {
    list-style: none;
    width: 200px;
    padding: 10px 0;
    color: #a01027;
}

.link-footer a {
    color: #a01027;
}

.fa-house,
.fa-users,
.fa-boxes-stacked,
.fa-phone {
    margin: 10px;
}