

/* Section */
.prop-sec{
width:100%;
height:310px;
display:flex;
position:relative;
font-family:Arial, sans-serif;
}

/* LEFT SIDE */
.prop-left{
width:50%;
background:#0f548f !important;
display:flex;
align-items:center;
padding-left:120px;
position:relative;
color:#fff;
z-index:2;
}

/* Tirchi patti */
.prop-left::after{
content:"";
position:absolute;
right:-60px;
top:0;
height:100%;
width:120px;
background:#0f548f;
transform:skewX(-20deg);
z-index:2;
}

/* Text */
.prop-text{
max-width:420px;
}

.prop-line{
height:4px;
width:70px;
background:#f6c123;
border-radius:5px;
margin-bottom:12px;
}

.prop-text h1{
color: white;
font-size:38px;
margin:0 0 10px;
}

.prop-text p{
font-size:24px;
margin-bottom:18px;
line-height:1.4;
}

.prop-btn{
background:#fff !important;
color:#0e2758 !important;
border:none !important;
padding:6px 12px;
border-radius:6px !important; 
font-weight:600 !important;
cursor:pointer !important;
transition:.3s !important;
}

.prop-btn:hover{
transform:scale(1.05);
}

/* RIGHT SIDE */
.prop-right{
width:50%;
display:flex;
align-items:center;
justify-content:center;
position:relative;
z-index:1;
overflow:hidden;
}

/* IMAGE */
.prop-right img{
    max-height: 163%;
    position: relative;
    top: 30px;
max-width:100%;
object-fit:contain;
filter:drop-shadow(0 20px 20px rgba(0,0,0,.25));

}

/* Responsive */
@media(max-width:1024px){
    .prop-right img{
        top: 13px;
    }
}
@media(max-width:768px){

.prop-sec{
flex-direction:column;
height:auto;
}

.prop-left{
width:100%;
padding:40px 20px;
}

.prop-left::after{
display:none;
}

.prop-right{
width:100%;
padding:20px;
height:250px;
}
.prop-sec{
        background: #0e2758;
        padding-bottom:20px ;
    }


}

@media only screen and (max-width:600px){
    .prop-right img{
        border-radius: 10px;
        position: relative;
        top: -19px;
    }
    .prop-sec{
        background: #0e2758;
    }
}

