*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Poppins", sans-serif;
}
.hero-sec{
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../cms-3.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
    position: relative;
    width: 100%;
    min-height: 100vh;
}
.hero-sec::before{
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(27, 30, 36, 0.8);
    background: rgba(49, 71, 89, 0.7);*/
    background: linear-gradient(90deg,rgba(0,27,87,0.88) 0%,rgba(0,71,171,0.72) 45%,rgba(0,0,0,0.25) 100%);
}
.hero-sec .hero-content{
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 60%;
}
.hero-sec .hero-content img.logo{
    background: rgba(255, 255, 255, 0.6);
    padding: 5px;
    border-radius: 12px;
    backdrop-filter: blur(0px);
    max-width: 200px;
    margin-bottom: 20px;
}
.hero-sec .hero-content h1{
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.3;
}
.hero-sec .hero-content p{
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 28px;
}
.hero-sec .hero-content .contact-block{
    margin-top: 30px;
}
.hero-sec .hero-content .contact-block h3{
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
}
.hero-sec .hero-content .contact-block h2{
    color: #F4B342;
    font-weight: 500;
}
@media(max-width:560px){
    .hero-sec .hero-content{
        max-width: 95%;
    }
}