/* =====================================================
   DOCKSIDE
===================================================== */

.dockside {
    padding: 60px 0;
    background: #fff;
}

/* HERO */

.dockside-hero {
    position: relative;
    height: 360px;
    overflow: hidden;

    background:
        url('../images/dockside-service.webp')
        center center / cover no-repeat;
}

.dockside-lan-overlay {
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.65) 0%,
        rgba(0,0,0,.25) 100%
    );
}

.dockside-content {
    position: relative;
    z-index: 2;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-left: 80px;
}

.dockside-content h1 {
    color: #fff;

    font-family: "Oswald", sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.05;

    text-transform: uppercase;

    margin-bottom: 40px;
}

/* BUTTONS */

.dockside-buttons {
    display: flex;
    gap: 15px;
}

.btn-quote,
.btn-whatsapp-dockside,
.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 50px;
    padding: 0 28px;

    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;

    transition: .3s;
}

.btn-quote {
    background: #d41f17;
    color: #fff;
}

.btn-whatsapp-dockside {
    background: #00c853;
    color: #fff;
}

.btn-call {
    background: #e7e7e7;
    color: #111;
}

.btn-quote:hover,
.btn-whatsapp-dockside:hover,
.btn-call:hover {
    transform: translateY(-3px);
    color:#fff;
    border-color:#fff;
}

/* TITLE */

.dockside-title {
    margin: 40px 0 30px;
}

.dockside-title h3 {
    font-family: "Oswald", sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;

    margin: 0;
}

.dockside-title span {
    color: #d41f17;
}

/* ICON GRID */

.dockside-icons {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 25px;

    margin-bottom: 60px;
}

.service-box {
    background: #f3f3f3;

    padding: 25px 15px;

    text-align: center;

    transition: .3s;
}

.service-box:hover {
    transform: translateY(-5px);

    box-shadow:
    0 10px 20px rgba(0,0,0,.08);
}

.service-box .icon {
    font-size: 52px;
    color: #d41f17;

    margin-bottom: 12px;
}

.service-box p {
    margin: 0;

    color: #111;

    font-weight: 600;
    font-size: 14px;
}

/* LIST */

.dockside-list {
    margin: 0;
    padding-left: 25px;
}

.dockside-list li,h2 {
    margin-bottom: 18px;

    color: #333;
    font-size: 18px;
    line-height: 1.7;
}

.dockside-list strong,h2 {
    color: #d41f17;
}

/* SERVICE AREA */

.service-area h3 {
    font-family: "Oswald", sans-serif;
    font-size: 40px;
    font-weight: 700;

    margin-bottom: 20px;
}

.service-area span {
    color: #d41f17;
}

/* =====================================================
   SERVICE AREA - GOOGLE MAP
===================================================== */

.service-map {
    position: relative;

    /*width: 100%;*/

    height: 200px;

    overflow: hidden;

    background: #eeeeee;

    border: 1px solid #dddddd;
}


/* Google Maps iframe */

.service-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;

    /*
     * Mantiene el estilo visual del template.
     * Si prefieres los colores normales de Google Maps,
     * elimina este filter.
     */
    filter:
        grayscale(20%)
        contrast(0.95);
}


/* =====================================================
   LOCATION
===================================================== */

.service-cities {
    margin-top: 20px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .service-map {
        height: 220px;
    }

}


@media (max-width: 767px) {

    .service-map {
        height: 180px;
    }

}


@media (max-width: 575px) {

    .service-map {
        height: 150px;
    }

}

.service-cities {
    margin: 20px 0;
}

.service-cities p {
    margin-bottom: 8px;

    font-size: 18px;
    color: #111;
}

.service-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 180px;
    height: 55px;

    background: #c62828;
    color: #fff;

    font-weight: 700;
    text-decoration: none;

    transition: .3s;
    
    font-size: 9px;
}

.service-call-btn:hover {
    background: #d8d8d8;
}

.service-call-btn i {
    font-size:1.2rem;   
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .dockside-icons {
        grid-template-columns:
        repeat(3,1fr);
    }

    .dockside-content {
        padding: 40px;
    }

    .dockside-content h1 {
        font-size: 42px;
    }

}

@media (max-width: 768px) {

    .dockside-icons {
        grid-template-columns:
        repeat(2,1fr);
    }

    .dockside-buttons {
        flex-direction: column;
        max-width: 260px;
    }

    .dockside-content h2 {
        font-size: 34px;
    }

    .dockside-hero {
        height: 420px;
    }

}

@media (max-width: 576px) {

    .dockside-icons {
        grid-template-columns: 1fr;
    }

    .dockside-content {
        padding: 25px;
    }

    .dockside-title h3,
    .service-area h3 {
        font-size: 32px;
    }

}