/* base */
body {
    font-family: 'Open Sans', sans-serif;
    background: #333 url(img/bg-pattern.png) top center repeat fixed;
    margin: 0px;
}

h1 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2rem;
    text-transform: uppercase;
    color: #084369;
    letter-spacing: 0.05rem;
}

h2 {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
    margin-top: 0rem;
    margin-bottom: 1rem;
}

p {
    font-size: 0.82rem;
    line-height: 1.3rem;
    /* 1.6em */
    font-weight: 400;
    color: #777;
    margin: 0rem;
}

strong {
    color: #084369;
    font-weight: 600;
}

::selection {
    color: #fff;
    background: #084369;
}

::-moz-selection {
    color: #fff;
    background: #084369;
}

/* header */
.desktop-logo {
    width: 190px;
    position: absolute;
    left: 40px;
    top: 40px;
}

.mobile-logo-wrapper {
    width: 100%;
    padding: 40px;
    display: none;
}

.mobile-logo-wrapper img {
    width: 150px;
}

/* highlighrs */
.hl-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.hl-icon {
    min-width: 80px;
    min-height: 80px;
    border: 1px solid #e1e1e1;
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hl-icon-img {
    width: auto;
    height: 28px;
}

.cta {
    border: 1px solid #e1e1e1;
}

.cta p {
    font-size: 0.90rem;
}

.button-a {
    padding: 15px 30px;
    background-color: #084369;
    color: #fff;
    text-decoration: none;
    font-size: 0.90rem;
    transition: all 0.3s ease;
}

.button-a:hover {
    background-color: #447c3b;
}

/* gen-content (about-us - contact-us) */
.about-us {
    border-top: 1px solid #e1e1e1;
    /* padding-top: 5rem !important; /*overwrite al bs*/
    /* padding-bottom: 5rem !important; /*overwrite al bs*/
    background: #fff url(img/about-us-bg.webp) right center no-repeat scroll;
}

.title-separator {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.title-linea {
    width: 100%;
    height: 1px;
    border-top: 1px solid #e1e1e1;
}

.gen-content h2 {
    margin-bottom: 0px;
    white-space: nowrap;
}

.gen-content a {
    font-size: 0.82rem;
    line-height: 1.3rem;
    font-weight: 400;
    color: #084369;
    transition: all 0.3s ease;
}

.gen-content a:hover {
    color: #447c3b;
}

/* photo-cta */
.photo-cta {
    min-height: 280px;
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    background: #fff url(img/img-parallax.webp) center center/cover no-repeat scroll;
}

.photo-cta h2 {
    font-size: 24px;
    margin-bottom: 0.8rem;
    text-align: center;
    color: #fff;
    font-weight: 400;
    z-index: 1;
}

.photo-cta p {
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.photo-cta-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(img/p-pattern.png);
}

/* contacto */
.contact-item-icon {
    width: auto;
    height: 15px;
    margin-top: 3px;
}

.c-item-content a {
    font-size: 0.82rem;
    line-height: 1.3rem;
    font-weight: 400;
    color: #084369;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* footer */
.footer {
    background-color: #333333;
}

.footer p,
.footer strong {
    color: #eee;
}

/* posicion iconos HL en pantallas medias */
@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .hl-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* logo desktop y logo mobile */
@media only screen and (max-width: 768px) {
    .mobile-logo-wrapper {
        display: block;
    }

    .desktop-logo {
        display: none;
    }
}