/*(c) Haxter Corporation | All rights reserved.*/

:root {
    --black: #000000;
    --white: #FFFFFF;
    --blue: #007bff;
    --opaqueBlue: #003c44;
    --darkGray: #7e7e7e;
    --ligthGray: #F2F3F4;
    --lightGray2: #cfcfcf;
    --wine: #69003a;
    --darkBlue: #003c93;

    --PrincipalFont: 'BankGothic Lt BT', sans-serif;
}
html {
    box-sizing: border-box;
    font-size: 62.5%;
    background-color: var(--ligthGray);
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    font-family: var(--PrincipalFont);
    font-size: 1.6rem;
    line-height: 1.4;
}

    /* Globales */
h1, h2, h3, h4 {
    font-family: var(--PrincipalFont);
}
h1{font-size: 3.6rem;}
p {font-size: 2.2rem;}
a {
    text-decoration: none;
    color: var(--black);
}
img {
    max-width: 100%;
    transition: 1s;
}

    /* utilities */
.container {
    max-width: 120rem;
    width: 90%;
    margin: 0 auto; 
}
.section {
    margin-top: 2rem;
}
.no-margin {
    margin: 0;
}
.no-padding {
    padding: 0;
}
    /* Header */
.header {
    margin: 2rem 0 auto;
}
.logo__header {
    display: flex;
    align-items: center;
}
.logo__header a {
    font-size: 3rem;
}
.logo__header a:hover {
    color: var(--blue);
}
.logo__header img {
    max-width: 30%;
}
@media (min-width: 768px){
    .logo__header img {
        max-width: 15%;
    }    
}

    /* Navegation */
@media (min-width: 990px){
    .navigation {
        display: flex;
        justify-content: space-evenly;
    }
}
.nav__link {
    display: block;
    text-align: center;
    font-size: 2.5rem;
    margin: 2rem 0;
    color: var(--blue);
}
.navigation a:hover {
    cursor: pointer;
    color: var(--darkBlue);
}

    /* Searcher*/
.looking-box {
    font-family: var(--PrincipalFont);
    text-align: center;
}
input.src {
    padding: .9rem 1rem .9rem 3.2rem;
    outline: none;
    font-size: 1.8rem;
    border-radius: 2.5rem;
    color: var(--darkGray);
    border: .3rem solid var(--black); 
    background: var(--white) url(https://www.haxtercorp.com/images/search-icon.png) no-repeat .9rem center;
    width: 30rem;
    transition: all .5s;
}
input.src:hover {
    width: 40rem;
    background-color: var(--white);
    border-color: var(--wine);
    box-shadow: 0 0 .5rem var(--opaqueBlue);
}
@media (min-width: 769px){
    input.src {
        width: 50rem;
    }

    input.src:hover {
        width: 80rem;
    }
}

    /* Global Grid Area */
@media (min-width: 768px){
    .aside {
        display: grid;
        grid-template-areas: "container-left container-right";
        grid-template-columns: 1fr 1fr;
        grid-auto-flow: column;
        column-gap: 3rem;
    }
}
.entry {
    border-bottom: 1px solid var(--black);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

    /* About US */
.about-us__logo img{
    width: 70%;
}
.about-us__logo img:hover {
    transform: scale(1.2);
}
@media (min-width: 768px){
    .about-us__logo img {
        width: 50%;
    }
}
.about-us {
    margin: 3rem 0;
}
.about-us p {
    text-align: center;
}
.about-us__logo {
    display: flex;
    justify-content: center;
}

    /* Stories */
.stories,
.stories__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.stories {
    text-align: center;
}
.stories__logo img{
    width: 80%;
}
.stories__logo img:hover {
    transform: scale(1.07);
}
@media (min-width: 768px){
    .stories {
        grid-area: container-left;
    }
    .stories__logo {
        grid-area: container-right;
    }
}

    /* Kaltron */
.kaltron,
.kaltron__logo {
    display: flex;
}
.kaltron {
    align-items: center;
    text-align: justify;
}
.kaltron__logo {
    justify-content: center;
}
.kaltron__logo img{
    width: 80%;
}
.kaltron__logo img:hover {
    transform: scale(1.07);
}
@media (min-width: 768px){
    .kaltron {
        grid-area: container-right;
    }
    .kaltron__logo {
        grid-area: container-left;
    }
}

    /* Enterprises */
.enterprises__logo img {
    width: 100%;
}
.enterprises__logo img:hover {
    transform: scale(1.06);
}
.enterprises h1 {
    text-align: center;
}
.enterprises {
    text-align: justify;
}
.enterprises__logo {
    display: flex;
    justify-content: center;
}
@media (min-width: 768px){
    .enterprises {
        grid-area: container-left;
    }
    .enterprises__logo {
        grid-area: container-right;
    }
}

    /* footer */
/* Footer Options */
.site-footer h1 {
    text-align: center;
}
.navigation__footer a {
    color: var(--black);
    margin-right: 2rem;
}
.navigation__footer a:hover {
    cursor: pointer;
    color: var(--blue);
}
.navigation__footer a:last-of-type {
    margin-right: 0;
}
.footer__bgc {
    background-color: var(--lightGray2);
    border: 1px solid var(--black);
}
.copyright {
    color: var(--black);
    font-weight: bold;
    text-align: center;
}
.border-footer {
    border: 1px solid var(--black);
}
@media (min-width: 460px){
    .footer__bgc {
        background-color: var(--lightGray2);
    }
}
@media (min-width: 990px){
    .footer__bgc {
        border-top: 0;
    }
    .caracteristics-icons {
        display: flex;
        list-style: none;
        justify-content: space-evenly;
        color: var(--black);
        font-size: 1.8rem;
    }

    /* bar */
    .footer-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .navigation__footer {
        display: flex;
    }    
    .entry-footer {
        border: none;
        margin: 0;
    }
}
/* List */
.entry-footer a {
    color: var(--blue);
}
.entry-footer a:hover {
    cursor: pointer;
    color: var(--darkBlue);
}
.caracteristics-icons ul:first-of-type{
    border-top: 1px solid var(--black);
    margin-top: 1rem;
}
.caracteristics-icons li:first-of-type{
    padding-top: 1.2rem;
}