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

body {
    font-family: 'Oswald', sans-serif;
    background: #ffffff;
    /* Pattern from https://www.heropatterns.com/ */
    /* BACKGROUND-IMAGE: URL() */
    /* COLOR: #1E272E */
    /* color: #FFFF */
    font-size: 16px;
}

a {
    color:black;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    margin: auto;
}

/* Navigation */
.nav-main {
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 20px 0;
}

.nav-brand{
    width: 90px;
}

/* BARRA NAVEGACION IZQUIERDO */
.nav-main ul {
    display: flex;
}

.nav-main ul li {
    padding: 10px;
}

.nav-main ul li a {
    padding: 2px; 
}

.nav-main ul li a:hover {
    border-bottom: 2px solid rgb(8, 8, 8);
}

.nav-main ul.nav-menu.show {
    flex: 1;
    margin-left: 20px;
}
/* RESPUESTA DE BOTON */
.btn-barras {
    position: absolute;
    cursor: pointer;
    top: 15px;
    right: 30px;
    z-index: 2;
    display: none;
}

/* FOTO PRINCIPAL */
hr {
    margin: 10px 0px;
}

/* IMAGEN PRINCIPAL */

.btn {
    cursor: pointer;
    display: inline-block;
    border: 0px;
    font-weight: bold;
    padding: 10px 20px;
    background:#262626;
    color: #FFFFFF;
    font-size: 15px;
    border: 1px solid #FFFFFF;
    margin: 10px 0px;
}

.btn:hover {
opacity: .59;
}

.showcase {
    width: 100%;
    height: 600px;
    background: url(/img/fleet.jpg) no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
    padding: 50px;
    margin-bottom: 20px;
    color: #000000;
}

.showcase h2 {
    margin-bottom: 180px;
    text-align: center;
    font-size: 80px; 
    font-family:Arial, Helvetica, sans-serif
    /*
    text-transform: uppercase;
    display: inline-block;
    font-weight: bold;*/
}

/* NEWS CARD */
.news-cards {
    display: grid; 
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 70px 0;
}

.news-cards img {
    width: 100%;
    height: 180px;
}

.news-cards h3 {
    font-size: 30px;
    margin: 10px 0;
}

.news-cards a {
    padding: 10px 0;
    color: #f2f2f2;
    text-transform: uppercase;
    display: inline-block;
    font-weight: bold;
}

/* BANER UNO */

.cards-banner-one {
    width: 100%;
    height: 350px;
    background: url(./img/dark_abstract_banner_design_0109.jpg) no-repeat center center/cover; 
    margin-bottom: 20px;
}

.cards-banner-one .content {
    text-align: center;
    width: 80%;
    padding: 10px 0 0 10px;
    color: white;
}

.cards-banner-one h2,
.cards-banner-one p {
    margin: 20px 0 10px 0;
}
.grilla {
    width: 100%;
    display: grid; 
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin: 10px 60px;
    color: #f2f2f2;

}












/* REDES SOCIALES*/
.social {
    margin: 50px;
}

.social p {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.links {
    display: flex;
    align-items: center;
    justify-content: center;
}
.links a {
    margin: 0 30px;
}
.links a i {
    font-size:  3rem;
}

/* FOOTER LINKS */
.footer-links {
    /*background: #2f3640;*/
    background: #fafbfc;
    color: #616161;
    font-size: 12px;
    padding: 35px 0;
    opacity: .7;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
  }
  
  .footer-container ul {
    margin: 0 auto;
  }
  
  .footer-links li {
    line-height: 2.8;
  }
  
.footer {
    background: #2f3640;
    color: #616161;
    font-size: 10px;
    padding: 20px 0;
    text-align: center;
    padding-bottom: 20px;
}

/* CELULARES */
@media (max-width:700px) {
    .btn-barras{
        display: block;
    }
    .nav-main ul.nav-menu {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        background: #fafbfc;
        height: 100%;
        padding: 30px;
        opacity: .7;
        transform: translateX(-400px);
        transition: transform .5s ease-in-out;
    }
    .nav-main ul.nav-menu.show {
        transform: translateX(-20px);
    }
    .nav-main ul.nav-menu li {
        padding: 20px;
        font-size: 14px;
    }
    .nav-main ul.nav-menu-right{
        margin-right: 40px;
    }
    .showcase h2 {
        font-size: 50px;
    }
    .news-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .cards-banner-one .content {
        width: 80%;
    }
    .footer-links .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width:500px) {
    .news-cards {
        grid-template-columns: 1fr;
    }
    .news-cards img {
        height: 270px;
    }
        .cards-banner-one {
        height: 530px;
    }
    .cards-banner-one .content {
        width: 100%;
    }
    .grilla {
        grid-template-columns: 1fr;
        margin: 10px 60px;
        color: #f2f2f2;  
    }
    .footer-links .footer-container {
        grid-template-columns: 1fr;
    }
}