
:root{
    --grey:#F2F2F2;
    --grey-1:#F3F4F7;
    --black-80:#4D4D4D;
    --white:#fff;
    --text-primary:#293450;
    --orang-primary:#FF8927;
    --blue-primary:#2DBDCA;
}
body{
    font-family: "Lato", sans-serif;
}
.bg-grey-1{
    background-color: var(--grey-1);
}
.br-40{
    border-radius: 40px;
}
.section_padding{
    padding: 100px 20px;
    border-bottom: 10px solid var(--grey);
}
.condition--btn{
    background-color: var(--grey);
    border-radius: 10px;
    padding: 1.25rem ;
    border: 0;
    color: var(--black-80);
    font-size: 1.125rem;
    font-weight: 500;
    border: 1px solid transparent;
    white-space: nowrap;
}
.swiper-slide{
    width: fit-content !important;
}
.welcome-block{
    padding: 60px;
}
.welcome-heading{
    color:var(--text-primary) ;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.welcome-subheading{
    color: var(--black-80);
    font-size: 1.125rem;
    line-height: 1.3;
    margin-bottom: 40px;
}
.welcome-img-wrapper{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.welcome-img-block{
    position: relative;
    border-radius: 30px;
    overflow:hidden;
    transition: all ease-in-out .4s;
}
.welcome-img-block img{
    border-radius:30px ;
    transition: all ease-in-out .4s;

}
.welcome-img-block:hover img{
    transform: scale(1.1);
}
.view_all{
    color: var(--orang-primary);
}
.img-text-wrap{
    position: absolute;


    border-radius:30px ;
    text-align: center;
    padding: 40px 10px;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: end;
    justify-content: center;
    inset: 0;
    background: linear-gradient(180deg, rgba(41, 52, 80, 0) 30%, #293450 102.08%);
    transition: all ease-in-out .4s;
    width: 100%;
}
.welcome-img-block:hover .img-text-wrap{
    
    background: linear-gradient(180deg, rgba(41, 52, 80, 0) 10%, #293450 102.08%);
}
.hero--banner{
    background-image: url(images/Base.png);
    min-height: 720px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.banner-blue{
    color: var(--blue-primary);
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 10px;
}   
.banner-title{
    font-size: 60px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 30px;
}
.banner-list{
    color: var(--white);
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.banner-list-item{
    background: url('images/verify.svg') no-repeat left center;
    /* height: 18px; */
    /* padding-top: 7px; */
    padding-left:30px;
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 500;
    
}
.btn{
    border-radius: 50px;
    padding: 12px 20px;
}
.btn-orange{
    color: var(--white);
    background-color: var(--orang-primary);
    font-size: 1.125rem;
    border: 1px solid transparent;
}
.btn-orange:hover{
    background-color: var(--white);
    border-color: var(--orang-primary);
    color: var(--orang-primary);
}
.banner-action-wrap{
    display: flex;
    gap: 20px;
    align-items: center;
}
.btn-white-outline{
    border: 1px solid var(--white);
    color: var(--white);
}
.btn-white-outline:hover{
    background-color: var(--white);
    color: var(--text-primary);
    border-color: var(--text-primary);
}
.feature--slider{
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.01)),
linear-gradient(0deg, rgba(41, 52, 80, 0.4), rgba(41, 52, 80, 0.4));
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 16px;
}
.feature-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
}
.open-marqee{
    background: linear-gradient(90deg, #FE8C00 0%, #F83600 100%);
    padding:10px 5px ;
}
.open-marqee p{
    margin-bottom: 0;
    color: var(--white);
    font-size: 14px;
    position: relative;
    padding-left: 16px;
}
.open-marqee p::before{
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--white);
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    border-radius: 50%;
    transform: translateY(-50%);
}