h1 {
    color: #114b95;
}

h2 {
    color: #183549;
}

/* Seccion del banner */

.banner {
    height: 450px;
    width: 100%;
    position: relative;
    background-image:
        linear-gradient(rgba(11, 31, 51, 0.55), rgba(11, 31, 51, 0.55)),
        url("../img/banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-card {
    position: absolute;
    top: 50%;
    left: 15rem;
    transform: translateY(-50%);
    width: min(90vw, 28rem);
    background-color: rgba(255, 255, 255, 0.126) !important;
    backdrop-filter: blur(6px) !important;
    color: #e4e1e1;
    border-radius: 2% !important;
}

.banner h1 {
    color: #7caac8;
}

/* Seccion de preentacion */

.card-text {
    color: #7caac8;
    line-height: 1.8;
}

.card-title {
    font-weight: 400;
}

.card-icon img {
    width: 50px;
    margin-bottom: 20px;
}

.bullets-section {
    background: #e7eff4;
    background: linear-gradient(to bottom,
            #e7eff4 0%,
            #e7eff4 30%,
            #f5f7fb 30%,
            #f5f7fb 100%);
}

/* Seccion de servicios */

.services-section {
    background-color: #f5f7fb;
}

.services-section img {

    width: 50px
}

.services-card {
    cursor: pointer;
    height: 230px;
}

.services a {
    text-decoration: none;
}

.services-card:hover {
    background-color: #f5f7fb;
}

.services-label {
    font-size: 15px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #114b95;
    margin-bottom: 10px;
    margin-top: 15px;
}


/* Seccion de contacto */

.contact-section {
    background: #f5f7fb;
    background: linear-gradient(to bottom,
            #f5f7fb 0%,
            #f5f7fb 30%,
            #e7eff4 30%,
            #e7eff4 100%);
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #2d5c88;
    background: #f3f7fc;
    font-size: 26px;
}

.contact-label {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #114b95;
    margin-bottom: 10px;
}

.contact-text {
    color: #114b95 !important;
    font-size: 18px;
    line-height: 1.6;
}

.contact-link {
    color: #18a5c7;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.8;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-divider {
    margin: 28px;
    color: #18a5c7;
}

.bi {
    color: #114b95 !important;
}

.map-card {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 6px;
    overflow: hidden;
    min-height: 420px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* Responsivo */

@media (max-width: 992px) {
    .banner-card {
        left: 50%;
        transform: translate(-50%, -50%);
        width: min(92vw, 24rem);
    }
}

@media (max-width: 576px) {
    .banner {
        height: 380px;
    }

    .banner-card {
        width: 92vw;
    }
}