<style>

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#fff;
}

.about-section{
    width:100%;
    min-height:100vh;
    background:#f7f7f7;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:80px 7%;
}

/* BACKGROUND LIGHT IMAGE */

.about-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=2070&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    opacity:0.05;
}

/* LEFT SIDE */

.about-left{
    width:42%;
    position:relative;
    z-index:2;
    display:flex;
    align-items:flex-end;
}

/* BLUE SHAPE */

.blue-box{
    position:absolute;
    left:-140px;
    bottom:-25px;
    width:560px;
    height:230px;
    background:#008bb3;
    border-radius:0 40px 40px 0;
    z-index:1;
}

/* ENGINEER IMAGE */

.about-left img{
    width:100%;
    /*max-width:480px;*/
    position:relative;
    z-index:2;
}

/* RIGHT SIDE */

.about-right{
    width:48%;
    position:relative;
    z-index:3;
}

.about-right h2{
    font-size:64px;
    line-height:1.05;
    font-weight:500;
    color:#111;
    margin-bottom:30px;
}

.about-right h2 span{
    color:#008bb3;
}

.about-right h4{
    font-size:18px;
    color:#008bb3;
    letter-spacing:3px;
    font-weight:700;
    margin-bottom:28px;
}

.about-right p{
    max-width:620px;
    font-size:14px;
    line-height:2;
    color:#666;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:40px;
    font-weight:500;
}

/* BUTTON */

.about-btn{
    width:290px;
    height:65px;
    background:#008bb3;
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    letter-spacing:2px;
    font-weight:600;
    transition:.4s;
}

.about-btn:hover{
    background:#007393;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

    .about-right h2{
        font-size:52px;
    }

}

@media(max-width:991px){

    .about-section{
        flex-direction:column;
        padding:80px 30px;
    }

    .about-left{
        width:100%;
        justify-content:center;
        margin-bottom:60px;
    }

    .about-right{
        width:100%;
    }

    .about-right h2{
        font-size:46px;
    }

}

@media(max-width:768px){

    .about-section{
        padding:60px 20px;
    }

    .about-left img{
        max-width:340px;
    }

    .blue-box{
        width:320px;
        height:150px;
        left:-70px;
    }

    .about-right h2{
        font-size:36px;
    }

    .about-right h4{
        font-size:16px;
    }

    .about-right p{
        font-size:12px;
        line-height:1.8;
    }

    .about-btn{
        width:100%;
        max-width:290px;
        height:58px;
    }

}

@media(max-width:480px){

    .about-right h2{
        font-size:30px;
    }

}
.marquee-section{
    width:100%;
    background:#0f4c5c;
    overflow:hidden;
    white-space:nowrap;
    padding:12px 0;
}

.marquee-track{
    display:flex;
    width:max-content;
    animation:scroll 20s linear infinite;
}

.marquee-text{
    display:flex;
    align-items:center;
}

.marquee-text span{
    color:#fff;
    font-size:22px;
    font-weight:500;
    letter-spacing:8px;
    text-transform:uppercase;
    padding-right:100px;
}

@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
</style>