.elementor-608 .elementor-element.elementor-element-94157fb{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-0e5512e */<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,body{
    width:100%;
    overflow-x:hidden;
    font-family:'Montserrat',sans-serif;
}

.shield-wrapper{
    display:flex;
    width:100%;
    height:100vh;
}

/* BOX */
.service-box{
    position:relative;
    flex:1;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    transition:0.5s ease;
}

/* BACKGROUND IMAGE */
.service-box img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    top:0;
    left:0;
    transition:1s ease;
}

/* DARK OVERLAY */
.service-box::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:1;
    transition:0.4s ease;
}

.service-box:hover::before{
    background:rgba(0,0,0,0.25);
}

.service-box:hover img{
    transform:scale(1.08);
}

/* CONTENT */
.content{
    position:relative;
    z-index:5;
    max-width:700px;
    padding:60px;
}

.content h1{
    font-size:90px;
    line-height:0.95;
    color:#fff;
    font-weight:800;
    margin-bottom:25px;
    text-transform:uppercase;
}

.content p{
    color:#fff;
    font-size:24px;
    line-height:1.6;
    margin-bottom:40px;
}

/* BUTTON */
.btn{
    display:inline-block;
    padding:18px 40px;
    border:2px solid rgba(255,255,255,0.5);
    border-radius:60px;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    backdrop-filter:blur(10px);
    background:rgba(255,255,255,0.08);
    transition:0.4s ease;
}

.btn:hover{
    background:#fff;
    color:#111;
    transform:translateY(-5px);
}

/* DIVIDER */
.divider{
    width:2px;
    background:#ffffff50;
    position:relative;
    z-index:10;
}

/* TABLET */
@media(max-width:1024px){

    .content h1{
        font-size:60px;
    }

    .content p{
        font-size:18px;
    }

}

/* MOBILE */
@media(max-width:767px){

    .shield-wrapper{
        flex-direction:column;
        height:auto;
    }

    .service-box{
        height:100vh;
    }

    .divider{
        width:100%;
        height:2px;
    }

    .content h1{
        font-size:48px;
    }

    .content p{
        font-size:16px;
    }

    .btn{
        padding:15px 30px;
        font-size:16px;
    }

}
</style>/* End custom CSS */