:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-e88aa23 */{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#081B3D;
    padding:60px 20px;
}

/* MAIN */

.mz-contact-wrap{
    max-width:900px;
    margin:auto;
}

/* FORM */

.mz-form{
    position:relative;
    overflow:hidden;

    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.10);
    border-radius:24px;

    padding:45px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.10);
}

/* GLOW */

.mz-form::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    top:-100px;
    right:-100px;
    border-radius:50%;
    background:radial-gradient(circle,
    rgba(255,59,48,.18),
    transparent 70%);
}

.mz-form::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    left:-80px;
    bottom:-80px;
    border-radius:50%;
    background:radial-gradient(circle,
    rgba(37,99,235,.18),
    transparent 70%);
}

/* HEADING */

.mz-form h2{
    font-size:52px;
    color:#B53A3A;
    margin-bottom:12px;
}

/* SUB HEADING */

.mz-form>p{
    color:#08162B;
    line-height:1.8;
    margin-bottom:30px;
    max-width:600px;
}

/* ROW */

.row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

/* LABEL */

label{
    display:block;
    color:#08162B;
    font-weight:600;
    margin-bottom:18px;
}

/* INPUT */

input,
select,
textarea{
    width:100%;
    margin-top:8px;

    background:#FFFFFF;
    color:#08162B;

    border:1px solid #E5E7EB;
    border-radius:14px;

    padding:16px 20px;

    font-size:15px;

    transition:.3s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);
}

input::placeholder,
textarea::placeholder{
    color:#6B7280;
}

textarea{
    height:170px;
    resize:vertical;
}

input:focus,
select:focus,
textarea:focus{
    outline:none;
    border-color:#2563EB;
    box-shadow:
    0 0 0 4px rgba(37,99,235,.18);
}

/* BUTTON */

button{
    margin-top:10px;

    background:#B53A3A;
    color:#FFFFFF;

    border:none;
    border-radius:14px;

    padding:16px 36px;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

button:hover{
    background:#08162B;
}

/* CONTACT INFO */

.mz-grid{
    margin-top:55px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.mz-item{
    background:none;
    border:none;
    box-shadow:none;
    text-align:center;
    padding:10px;
}

.mz-item h4{
    color:#08162B;
    font-size:18px;
    margin-bottom:10px;
}

.mz-item p{
    color:#A8B3C7;
    line-height:1.7;
}

/* RESPONSIVE */

@media(max-width:991px){

    body{
        padding:25px 15px;
    }

    .row{
        grid-template-columns:1fr;
    }

    .mz-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .mz-form{
        padding:35px;
    }

    .mz-form h2{
        font-size:40px;
    }

}

@media(max-width:600px){

    .mz-grid{
        grid-template-columns:1fr;
    }

    .mz-form{
        padding:28px;
    }

    .mz-form h2{
        font-size:34px;
    }

}/* End custom CSS */