*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
}

.banner img{
    width: 100%;
}

.service-section{
    padding:80px 5%;
    overflow:hidden;
}

.service-container{
    max-width:1200px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;

    flex-wrap:wrap;
}

/* =========================
   IZQUIERDA
========================= */

.service-content{
    flex:1;
    min-width:320px;
}

/* TITULO */

.title-box{
    margin-bottom:35px;
}

.title-box h2{
    font-size: 60px;
    line-height: 1;
    font-weight: 700;
    color: #00598B;
}

.title-box span {
    color: #0084DD;
    font-size: 60px;
}

.line{
    width:160px;
    height:12px;
    background:#148fe7;

    margin-top:15px;
}

.service-content p{
    font-size: 19px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
    max-width: 565px;
}

.service-content h3{
    font-size: 25px;
    color: #005b90;
    margin-top: 15px;
    margin-bottom: 40px;
    font-weight: 600;
}

.contact-box h4{
    font-size: 28px;
    color: #148fe7;
    font-weight: 700;
}

.contact-line{
    width:160px;
    height:7px;
    background:#148fe7;
    margin: -4px 0px 20px;
}

.contact-item-service{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-item-service i{
    color:#000;
}
.contact-item-service img{
    width: 25px;
}

.bottom-line{
    width:140px;
    height:18px;
    background:#148fe7;

    margin-top:40px;
}

.service-image{
    flex:1;
    min-width:320px;

    position:relative;

    display:flex;
    justify-content:center;
}

.service-image img{
    width: 100%;
    max-width: 384px;
    display: block;
    position: relative;
    top: -72px;
}

.schedule-card{
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: #00598B;
    color: white;
    padding: 25px 40px;
    border-radius: 30px;
    width: 460px;
    text-align: center;
}

.schedule-card h5 {
    font-size: 27px;
    margin-bottom: 12px;
    padding-bottom: 1px;
    border-bottom: 7px solid white;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.schedule-card p{
    font-size: 23px;
    line-height: 1.5;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
    .banner img {
        height: 300px;
        object-fit: cover;
    }
}

@media(max-width:992px){

    .service-container{
        flex-direction:column;
        text-align:center;
    }

    .line,
    .contact-line,
    .bottom-line{
        margin-left:auto;
        margin-right:auto;
    }

    .contact-item-service{
        justify-content:center;
    }

    .title-box h2{
        font-size:52px;
    }

    .service-content p{
        font-size:18px;
    }

    .service-content h3{
        font-size:28px;
    }

    .contact-box h4{
        font-size:32px;
    }

    .contact-item-service{
        font-size:22px;
    }
    .service-image img{
        top: 0px;  
    }
}

@media(max-width:576px){

    .schedule-card{
        width:90%;
        padding:20px;
    }

    .schedule-card h5{
        font-size:22px;
    }

    .schedule-card p{
        font-size:16px;
    }

    .title-box h2{
        font-size:40px;
    }
    .title-box span{
        font-size: 50px;
    }
}

@media(max-width: 427px){
    .service-image img{
        max-width: 300px;
    }
    .service-container{
        flex-wrap: nowrap
        ;
    }
}