/* HEADER */

header {
    position: relative;
    height: auto;
    width: 100%;
    line-height: 0.5;
    background-color: var(--white);
}

/* HERO */

.hero__logo {
    height: 9em;
    transform: rotate(0deg);
    transition: transform 1s, filter 1s;
    -webkit-transition: transform 1s, filter 1s;
    -moz-transition: transform 1s, filter 1s;
    -ms-transition: transform 1s, filter 1s;
    -o-transition: transform 1s, filter 1s;
    padding: .5em;
}

.hero__logo:hover {
    transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    filter: brightness(1.5);
    -webkit-filter: brightness(1.5);
}

.hero__logo-text {
    padding-left: 2em;
    height: 4em;
}

/* OUR SERVICES */

.our-services {
    background-color: var(--white);
}

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}

.card {
    width: 20em;
    padding: 1em;
    margin: 1.15em;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    border-radius: 1em;
    -webkit-transition: transform .2s, box-shadow .2s;
    -moz-transition: transform .2s, box-shadow .2s;
    -ms-transition: transform .2s, box-shadow .2s;
    -o-transition: transform .2s, box-shadow .2s;
}

.card a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: scale(1.05);
    background-color: #f5f5f5;
    box-shadow: 1px 1px 3px var(--black2);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.card__icon {
    width: 60%;
    padding: 0.75em;
    text-align: center;
    margin-bottom: 2.5em;
    /*  background: var(--blue1);
    border-radius: 50%; */
}

.card__icon img {
    filter: invert(.1);
}

.title-card {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--blue1);
    margin-bottom: 0.6em;
}

.card-description {
    min-height: 5rem;
    font-size: 1.25em;
    font-weight: 300;
    line-height: 1.25em;
    color: var(--black2);
    text-align: justify;
}

p.more-info {
    margin-top: 0.75em;
    font-size: 1.25em;
    font-weight: 700;
    color: var(--blue1);
}

/* BRANDS */

.brands p {
    font-size: 1.5em;
    font-weight: 300;
    line-height: 1.25em;
    color: var(--black2);
    text-align: center;
    margin-bottom: 1em;
}
.brands p strong{
    font-weight: 700;
    color: var(--blue1)
}

.brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: rgb(226, 226, 226);
}

.brands-container {}

.brand a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--black2);
    width: 10em;

    margin: 1em 0.5em;
    transition: transform .2s;
    text-decoration: none;
    cursor: pointer;
}

.brand a:hover {
    transform: scale(1.1);
}

.brand a {}

.brand img {
    width: 100%;
}

.brand-img img {}


/* ABOUT US */

.about-us {
    background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue-soft) 100%);
}


.title-section-about-us {
    color: var(--white);
    border-color: var(--blue2);
}

.about-us__article {
    text-align: right;
}

.about-us__photo {
    width: 45%;
    position: absolute;
    left: 0
}

.about-us__photo img {
    width: 50vw;
    max-width: 38em;
}

.about-us__text {
    width: 55%;
    display: inline-block;
    text-align: right;
}

.about-us__text p {
    font-size: 1.25em;
    font-weight: 300;
    color: var(--white);
    padding: 1em 3em;
}

/* CONTACT */

.contact__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.contact__item {
    width: 26em;
    border: 1px solid var(--black2);
    border-radius: .5em;
    padding: 1em 0;
    margin: 1em 1em 1em 4.75em;
    position: relative;

}

.contact__icon {
    display: inline-block;
    position: absolute;
    left: -2em;
    top: .5em;
    height: 4em;
    width: 4em;
    padding: 0.5em;
    background: var(--blue1);
    border: 1px solid var(--black2);
    border-radius: 50%;
}

.contact__icon img {
    filter: invert();
}

.contact__item p {
    display: inline-block;
    color: var(--black2);
    font-size: 1.5em;
    font-weight: 300;
    margin: .4em 1em .4em 2em;
}

.contact__item a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}





@media screen and (max-width: 1000px) {



    .about-us {
        background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue-soft) 100%);
    }


    .about-us__article {
        display: flex;
        flex-direction: column;

        text-align: center;
    }

    .about-us__photo {
        width: 100%;
        position: relative;
    }

    .about-us__photo img {
        width: auto;
        max-width: 90vw;
    }

    .about-us__text {
        width: 100%;
        text-align: justify;
    }

    .about-us__text p {
        padding: 1em;
    }

}



@media screen and (max-width: 450px) {


    .brand a {
        width: 40vw;
        height: auto;
    }

    .contact__item {
        width: 100%;
        padding: 1em .5em;
        margin: 1em .5em 1em 2.5em;
    }
}



/* @media screen and (max-width: 250px) {
    .brand a {
        width: 70vw;
    }
} */