
/*==========================
    MPM HERO SECTION
==========================*/

.mpmherosection{
    position:relative;
    width:100%;
    background:url("images/hero-packers.jpg") center center/cover no-repeat;
    overflow:hidden;
    padding:80px 0;
	margin-top:85px;
}

.mpmherooverlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,
    rgba(23,61,105,.95),
    rgba(23,61,105,.75),
    rgba(23,61,105,.35));
}

.mpmcontainer{
    width:100%;
    max-width:1320px;
    margin:auto;
    padding:0 15px;
    position:relative;
    z-index:2;
}

.mpmhero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    min-height:700px;
}

.mpmheroleft{
    width:58%;
    color:#fff;
}

.mpmheroright{
    width:42%;
}

/*==========================
    BADGE
==========================*/

.mpmherobadge{
    display:inline-block;
    background:#f4b400;
    color:#000;
    padding:10px 22px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    margin-bottom:25px;
}

/*==========================
    TITLE
==========================*/

.mpmherotitle{
    font-size:62px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
}

.mpmherotitle span{
    color:#f4b400;
}

.mpmherodescription{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    max-width:650px;
}

/*==========================
    FEATURES
==========================*/

.mpmfeaturewrapper{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:35px;
}

.mpmfeatureitem{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 22px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    border-radius:12px;
}

.mpmfeatureicon{
    width:45px;
    height:45px;
    background:#f4b400;
    color:#173d69;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:18px;
}

.mpmfeaturetext{
    font-weight:600;
    color:#fff;
}

/*==========================
    BUTTONS
==========================*/

.mpmherobuttons{
    display:flex;
    gap:18px;
    margin-bottom:35px;
}

.mpmprimarybtn{
    background:#f4b400;
    color:#000;
    padding:16px 36px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.mpmprimarybtn:hover{
    background:#fff;
    color:#173d69;
}

.mpmsecondarybtn{
    border:2px solid #fff;
    color:#fff;
    padding:16px 36px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.mpmsecondarybtn:hover{
    background:#fff;
    color:#173d69;
}

/*==========================
    TRUST CARD
==========================*/

.mpmtrustcard{
    display:inline-flex;
    align-items:center;
    gap:15px;
    background:#fff;
    color:#173d69;
    padding:18px 25px;
    border-radius:15px;
}

.mpmtrustcontent h4{
    margin:0;
    font-size:20px;
}

.mpmtrustcontent p{
    margin:3px 0 0;
    font-size:14px;
    color:#666;
}

/*==========================
    FORM
==========================*/

.mpmquotebox{
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(20px);
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 45px rgba(0,0,0,.30);
}

.mpmquoteheader{
    text-align:center;
    margin-bottom:25px;
}

.mpmquoteheader h2{
    color:#fff;
    font-size:32px;
    margin-bottom:10px;
}

.mpmquoteheader p{
    color:#eee;
    font-size:15px;
}

.mpmformgroup{
    margin-bottom:15px;
}

.mpmformgroup input,
.mpmformgroup select{
    width:100%;
    height:55px;
    padding:0 18px;
    border:none;
    border-radius:10px;
    outline:none;
    font-size:15px;
}

.mpmsubmitbtn{
    width:100%;
    height:55px;
    border:none;
    border-radius:10px;
    background:#f4b400;
    color:#000;
    font-weight:700;
    cursor:pointer;
    transition:.4s;
}

.mpmsubmitbtn:hover{
    background:#173d69;
    color:#fff;
}

.mpmsecuritytext{
    margin-top:18px;
    text-align:center;
    color:#fff;
    font-size:14px;
}

/*==========================
    TABLET
==========================*/

@media(max-width:991px){

.mpmhero{
    flex-direction:column;
    min-height:auto;
    gap:50px;
}

.mpmheroleft,
.mpmheroright{
    width:100%;
}

.mpmheroleft{
    text-align:center;
}

.mpmfeaturewrapper{
    justify-content:center;
}

.mpmherobuttons{
    justify-content:center;
}

.mpmherotitle{
    font-size:48px;
}

}

/*==========================
    MOBILE
==========================*/

@media(max-width:576px){

.mpmherosection{
    padding:60px 0;
}

.mpmherotitle{
    font-size:34px;
}

.mpmherodescription{
    font-size:16px;
}

.mpmfeaturewrapper{
    flex-direction:column;
}

.mpmfeatureitem{
    width:100%;
}

.mpmherobuttons{
    flex-direction:column;
}

.mpmprimarybtn,
.mpmsecondarybtn{
    width:100%;
    text-align:center;
}

.mpmquotebox{
    padding:25px;
}

.mpmquoteheader h2{
    font-size:26px;
}

}