*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    overflow:hidden;
}

.main-section{
    width:100%;
    height:100vh;
    display:flex;
}

/* BOTH SIDES */
.box{
    width:50%;
    height:100vh;
    position:relative;
    overflow:hidden;
    transition:0.5s;
}

.box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.box:hover img{
    transform:scale(1.1);
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgb(0 0 0 / 38%);
}

.content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:2;
    text-align:center;
    color:#fff;
    width:90%;
}

.logo{
    font-size:20px;
    font-weight:500;
    margin-bottom:10px;
    color:#ffcc00;
    letter-spacing:1px;
}

.content h1{
    font-size:58px;
    margin-bottom:15px;
    font-weight:700;
    text-transform:uppercase;
}

.content p{
    font-size:16px;
    line-height:28px;
    margin-bottom:25px;
    color:#f1f1f1;
}

.services{
    font-size:14px;
    line-height:30px;
    margin-bottom:30px;
    color:#ddd;
}

.btn{
    display:inline-block;
    padding:16px 40px;
    background:#ffcc00;
    color:#000;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}

.btn:hover{
    background:#fff;
    transform:translateY(-5px);
}

.contact{
    margin-top:30px;
    font-size:15px;
    line-height:28px;
    color:#fff;
}

.contact span{
    color:#ffcc00;
    font-weight:600;
}

/* MOBILE */
@media(max-width:991px){

    body{
        overflow:auto;
    }

    .main-section{
        flex-direction:column;
        height:auto;
    }

    .box{
        width:100%;
        height:100vh;
    }

    .box:hover{
        width:100%;
    }

    .content h1{
        font-size:38px;
    }

    .content p{
        font-size:14px;
        line-height:24px;
    }

    .services{
        font-size:13px;
        line-height:26px;
    }

}
.logo{
    margin-bottom:20px;
}

.logo img{
    width:220px;
    max-width:100%;
}