:root {
    --main-color: #043d5b;
    --Second-Color: #0d7abb;
    --Colors-Grey-60: rgba(153, 153, 153, 1);
    --Colors-Grey-40: #666666;
    --Card-Background: #F5F6F8;
    --Second-Color: #75DFFF;
    --DeepBlack :#050505;
    --FontBold: 'IBMPlexSansArabic-Bold';
    --FontMedium: 'IBMPlexSansArabic-Medium';
    --FontRegular: 'IBMPlexSansArabic-Regular';
    --EmMessiriBold: 'ElMessiriBold';
    --AmiriBold: 'AmiriBold';
}



@font-face {
    font-family: IBMPlexSansArabic-Bold;
    src: url('../fonts/ibm-plex/IBMPlexSansArabic-Bold.ttf');
}

@font-face {
    font-family: IBMPlexSansArabic-Medium;
    src: url('../fonts/ibm-plex/IBMPlexSansArabic-Medium.ttf');
}

@font-face {
    font-family: IBMPlexSansArabic-Regular;
    src: url('../fonts/ibm-plex/IBMPlexSansArabic-Regular.ttf');
}

@font-face {
    font-family: ElMessiriBold;
    src: url('../fonts/elmessiri/ttf/ElMessiri-Bold.ttf');
}

@font-face {
    font-family: AmiriBold;
    src: url('../fonts/Amiri-Bold.ttf');
}



body {
    width: 100%;
/*    min-height: 100vh;*/
/*    height: 100%;*/
    direction: rtl;
    font-family: var(--FontRegular);
    font-weight: 400;
}

.main-container {
/*    background-color: red;*/
/*    padding-left: 160px;*/
/*    padding-right: 160px;*/
/*    margin-bottom: 200px;*/

    background-color: white;
/*padding-bottom: 180px;*/
/*    height: 100%*/
/*    overflow-x: hidden;*/
    padding-top: 10px;

}


/* Start Footer Style */
     /* Start Contact US */
.contact {
    min-height: 600px;
    background-image: url('../images/contact-bg.jpg');
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    font-family: var(--FontRegular);
}

.contact .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(255,255,255,.6); */
    background-color: rgba(255 255 255 / 80%); /* As The Same Previus Line */
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact h2 {
    font-weight: bold;
    font-size: 30px;
    color: var(--main-color);
    margin: 0 0 60px;  
    text-align: center;
}

.contact h2::after {
    content: '';
/*    width: 300px;*/
    width: 125px;
    height: 2px;
    transform: translate(-50%,-50%);
    background-color: var(--main-color);
    position: absolute;
    left: 50%;
    margin-top: 40px;
}

.contact form {
    overflow: hidden;
    max-width: 800px;
    margin: auto;
}

.contact form .left {
    float: left;
    width: 49%;
}

.contact form .right {
    float: right;
    width: 49%;
}

@media(max-width: 767px) {
    .contact form .left,
    .contact form .right {
        float: none;
        width: 100%;
    }
}

.contact form input:not([type="submit"]),
.contact form textarea {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #CCC;
    border-radius: 10px;
    background-color: rgba(218,218,218,0319);
}

.contact form input:not([type="submit"]):focus,
.contact form textarea:focus {
    outline: 1px solid var(--main-color);
}

.contact form input {
    height: 40px;
}

.contact form textarea {
    height: 150px;
}

.contact form input[type="submit"] {
    padding: 10px;
    width: 100%;
    border-color: transparent;
    background-color: var(--main-color);
    color: #FFF;
    cursor: pointer;
    font-weight: bold;
}

.contact form textarea:focus::-webkit-input-placeholder,
.contact form input:not([type="submit"]):focus::-webkit-input-placeholder {
    opacity: 0;
    transition: .3s;
}

.contact form textarea:focus::-ms-input-placeholder,
.contact form input:not([type="submit"]):focus::-ms-input-placeholder {
    opacity: 0;
    transition: .3s;
}

.contact form textarea:focus::placeholder,
.contact form input:not([type="submit"]):focus::placeholder {
    opacity: 0;
    transition: .3s;
}

 /* End   Contact US */


 /* Start Footer */
.footer {
    background-color: #333;
    color: #EEE;
    padding: 20px;
    text-align: center;
}

.readonly {
    color: red;
    background-color: red !important;
}

input[readonly], textarea[readonly], select[readonly], div[readonly] {
    background-color: red !important;
}

br {
    display:none;
}
 /* End Footer */

/* End Footer Style */

