/* PAGE */

.alarm-page{
    background:#f5f5f5;
    padding-bottom:60px;
}

/* HERO */

.alarm-hero{
    height:400px;
    background:url('../images/about-banner2.jpeg') center/cover no-repeat;
    position:relative;
    background-attachment: fixed;
}

.twenty-four-hour-banner{
    background:url('../images/24hours-banner.jpeg') bottom/cover no-repeat;
    background-attachment: fixed;
}


.event-security-banner{
    background:url('../images/about-banner2.jpeg') center/cover no-repeat;
    background-attachment: fixed;
}


.cctv-banner{
    background:url('../images/alarm-banner.avif') bottom/cover no-repeat;
    background-attachment: fixed;
}


.construction-banner{
    background:url('../images/services-banner.png') bottom/cover no-repeat;
    background-attachment: fixed;
}


.mobile-patrols-banner{
    background:url('../images/contact-banner.png') bottom/cover no-repeat;
    background-attachment: fixed;
}

.alarm-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,10,40,.45);
}

/* INTRO BOX */

.intro-wrapper{
    max-width:1200px;
    margin:-90px auto 0;
    position:relative;
    z-index:2;
    padding:0 20px;
}

.intro-box{
    background:#fff;
    padding:90px 110px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.intro-box p{
    font-size:18px;
    line-height:1.9;
    color:#4d5565;
}

.intro-box strong{
    font-weight:700;
}

/* SECTIONS */

.service-detail{
    /* max-width:1200px; */
    margin:70px auto;
    padding:0 20px;
}

.service-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.image-block img{
    width:100%;
    display:block;
}

.content-block p{
    font-size:16px;
    line-height:1.9;
    color:#535c6d;
    margin-bottom:25px;
}

.content-block ul{
    list-style:none;
}

.content-block li{
    position:relative;
    padding-left:35px;
    margin-bottom:16px;
    font-size:16px;
    color:#4c5666;
}

.content-block li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#4e5e82;
    font-weight:700;
}

hr{
    margin:auto;
    border:none;
    border-top:1px solid #bcc3d2;
}

/* REVERSE SECTION */

.reverse .service-grid{
    grid-template-columns:1fr 1fr;
}

/* RESPONSIVE */

@media (max-width:991px){

    .intro-box{
        padding:60px;
    }

    .service-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .reverse .image-block{
        order:1;
    }

    .reverse .content-block{
        order:2;
    }
}

@media (max-width:768px){

    .alarm-hero{
        height:280px;
    }

    .intro-wrapper{
        margin-top:-60px;
    }

    .intro-box{
        padding:35px 25px;
    }

    .intro-box p{
        font-size:17px;
    }

    .content-block p{
        font-size:16px;
    }

    .content-block li{
        font-size:15px;
    }

    .service-detail{
        margin:40px auto;
    }
}



.service-wrapper{
    background:#f4f4f4;
}

.service-card{
    background:#fff;
    max-width:960px;
    margin:-180px auto 70px;
    padding:70px;
    position:relative;
    z-index:2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.service-card h1{
    color:#42537f;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:30px;
}

.service-card p{
    color:#555;
    line-height:1.9;
}

.service-block{
    border-top:1px solid #cfcfcf;
    padding:70px 0;
}

.service-block h2{
    color:#42537f;
    font-size:1.8rem;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:25px;
}

.service-block p{
    color:#555;
    line-height:1.9;
}

.service-block ul{
    padding-left:20px;
}

.service-block li{
    margin-bottom:12px;
}

.service-block img{
    width:100%;
    object-fit:cover;
}

@media(max-width:768px){

    .service-card{
        margin-top:-120px;
        padding:35px 25px;
    }

    .service-card h1{
        font-size:2rem;
    }

    .service-block{
        padding:50px 0;
    }

    .service-block h2{
        font-size:1.5rem;
    }
}