.mmd_contact_section{
    width: 100%;
    height: 100vh;
    background-image: url(../imgs/contact/mmd_contact.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mmd_contact_section .container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_box{
    width: 81%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-txt {
	background: #91c938;
    width: 145px;
    height: 30px;
    padding-top: 4px;
	font-size: 14px;
	font-weight: 500;
	color: #000000;
	margin: 0 auto;
	position: relative;
	border-radius: 3px;
	bottom: -25px;
    left: 46px;
}

.logo-txt::before {
	content: '';
	position: absolute;
	top: -5px;
	right: 0;
	left: 0;
	margin: 0 auto;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #91c938;
}

.location-txt {
	background: #FF9800;
    width: 145px;
    height: 30px;
    font-size: 14px;
	font-weight: 500;
    color: #000;
    margin: 0 auto;
    position: relative;
    border-radius: 3px;
    margin-top: 12px;
    margin-left: 0px;
    padding-top: 4px;
    text-align: center;
}

.location-txt::after {
	content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #FF9800;
}

.phone-txt {
	background: #FF9800;
    width: 145px;
    height: 30px;
    padding-top: 4px;
	font-size: 14px;
	font-weight: 500;
	color: #000000;
	margin: 0 auto;
	position: relative;
	border-radius: 3px;
	bottom: 90px;
    right: 400px;
}

.phone-txt::after {
	content: '';
	position: absolute;
	bottom: -5px;
	right: 0;
	left: 0;
	margin: 0 auto;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #FF9800;
}
.modal{
    background: #00000096;
}
.modal-content{
    background-color: #141e4f;
}

.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -100;
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
}

.mmd_mobile_contactBox{
    display: none;
}


@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .phone-txt{
        bottom: 76px;
        right: 300px;
    }
    .location-txt{
        margin-top: -21px;
        right: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .mmd_contact_section{
        display: none;
    }
   .mmd_mobile_contactBox {
        display: block;
        width: 100%;
        height: fit-content;
        padding: 70px 30px;
        background-color: #141e4f;
    }
    .mobile_contact_background{
        width: 100%;
        height: 50vh;
        background-image: url(../imgs/contact/mmd_contact.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
    }
}
