.hero{
    position:relative;
    width:100%;
    min-height:765px;
    display:flex;
    align-items:center;
    overflow:hidden;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.15) 0%,
        rgba(0,0,0,.25) 45%,
        rgba(0,0,0,.55) 100%
    );
}

.hero-container{
    position:relative;
    z-index:2;

    width:90%;
    max-width:1440px;
    margin:auto;
}

.hero-content{
    color:#fff;
    max-width:700px;
}

.hero-tag{
    display:block;
    margin-bottom:15px;

    font-size:16px;
    line-height:26px;
    color:#b6c6ff;

    max-width:673px;
    width:100%;
}

.hero-content h1{
    font-size:58px;
    line-height:1.15;
    font-weight:700;

    margin-bottom:25px;

    max-width:673px;
}

.hero-p-content{
    font-family:Inter,sans-serif;
    font-weight:500;
    font-size:18px;
    line-height:26px;
    color:rgba(221,225,247,1);

    max-width:673px;
    width:100%;

    margin-bottom:15px;
}

.hero-content p{
    max-width:673px;
    color:rgba(168,174,208,1);
    margin-bottom:35px;

    font-family:Inter,sans-serif;
    font-weight:400;
    font-size:16px;
    line-height:26px;
}

.hero-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.main-btn{
    padding:14px 32px;
    border-radius:8px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}
/* 
.Result-btn{
    background:rgb(5, 5,62);
     color: #fff;
     display: flex;
     padding:15px 30px 15px 20px;
     width: fit-content;
     border: none;
     font-size: 16px;
     border-radius: 20px;
    margin: 10px 0;

    font-family: Inter;
font-weight: 600;
font-style: Semi Bold;
letter-spacing: 0%;
} */


@media (min-width:1900px){

    .hero{
        min-height:1400px;
    }


    .hero-content{
        max-width:900px;
    }

    .hero-content h1{
        font-size:82px;
        max-width:900px;
    }

    .hero-tag{
        font-size:22px;
        line-height:34px;
        max-width:900px;
    }

    .hero-p-content{
        font-size:24px;
        line-height:38px;
        max-width:900px;
    }

    .hero-content p{
        font-size:20px;
        line-height:34px;
        max-width:900px;
    }

    .main-btn{
        padding:18px 40px;
        font-size:18px;
    }

}

@media (max-width:1200px){

    .hero{
        min-height:700px;
    }

    .hero-content h1{
        font-size:52px;
    }

}
@media (max-width:1024px){

    .hero{
        min-height:700px;
        justify-content:center;
        text-align:center;
        background-position:center center;
    }

    .hero-overlay{
        background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.45) 0%,
            rgba(0,0,0,.55) 100%
        );
    }

    .hero-container{
        width:92%;
        display:flex;
        justify-content:center;
    }

    .hero-content{
        max-width:820px;
        margin:auto;
    }

    .hero-content h1{
        font-size:48px;
        line-height:1.2;
        max-width:100%;
        margin-inline:auto;
    }

    .hero-tag{
        max-width:100%;
        margin-inline:auto;
        margin-bottom:18px;
    }

    .hero-p-content{
        max-width:100%;
        margin-inline:auto;
        font-size:17px;
        line-height:28px;
    }

    .hero-content p{
        max-width:100%;
        margin-inline:auto;
    }

    .hero-btns{
        justify-content:center;
        gap:16px;
    }

}

@media (max-width:768px){

    .hero{
        min-height:650px;
        padding:90px 0;
    }

    .hero-container{
        width:92%;
    }

    .hero-content h1{
        font-size:40px;
        line-height:1.25;
    }

    .hero-tag{
        font-size:15px;
        line-height:24px;
    }

    .hero-p-content{
        font-size:16px;
        line-height:26px;
    }

    .hero-content p{
        font-size:15px;
        line-height:25px;
        margin-bottom:30px;
    }

    .hero-btns{
        justify-content:center;
        flex-wrap:wrap;
        gap:14px;
    }

    .main-btn{
        min-width:220px;
    }

}

@media (max-width:576px){

    .hero{
        min-height:auto;
        padding:80px 0;
    }

    .hero-container{
        width:90%;
    }

    .hero-content h1{
        font-size:34px;
        line-height:1.25;
        margin-bottom:20px;
    }

    .hero-tag{
        font-size:14px;
        line-height:22px;
        margin-bottom:12px;
    }

    .hero-p-content{
        font-size:15px;
        line-height:25px;
    }

    .hero-content p{
        font-size:14px;
        line-height:24px;
        margin-bottom:28px;
    }

    .hero-btns{
        flex-direction:column;
        align-items:center;
        width:100%;
        gap:12px;
    }

    .main-btn{
        width:100%;
        max-width:320px;
    }

}

@media (max-width:400px){

    .hero{
        padding:70px 0;
    }

    .hero-content h1{
        font-size:28px;
        line-height:1.3;
    }

    .hero-tag{
        font-size:13px;
        line-height:20px;
    }

    .hero-p-content{
        font-size:14px;
        line-height:23px;
    }

    .hero-content p{
        font-size:13px;
        line-height:22px;
    }

    .main-btn{
        width:100%;
        max-width:100%;
        padding:13px 20px;
    }

}