﻿.ContactUs {
    max-width: 1118px;
    width: 100%;
  
    min-height: 512px;
    margin: 0 auto;
    position:relative;
}
.Contact_Us {
    max-width: 1440px;
    min-height: 100vh;
    background: #EAEAEA;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    align-items: center;
    direction: rtl;
}

.Contact_Us-all {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 61px;
    width: 100%;
}

.Contact_us-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
    align-self: stretch;
    width: 100%;
    background-color: whitesmoke;
}

    .Contact_us-title h1 {
        color: #373737;
        font-size: 24px;
        line-height: 26px; /* 108.333% */
    }

    .Contact_us-title ol {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 15px;
    }
.Contact_us-Contact{
    width:96%;
    display:flex;
    flex-direction:column;
}
    .Contact_us-Contact hr {
        display: block;
        height: 1px;
        border: 0;
        border-top: 1px solid #ccc;
        margin: 1em 0;
        padding: 0;
    }
    .Contact_us-one, .Contact_us-two {
        width: 100%;
        min-height: 200px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
.Contact_us-title ol li::after {
    content: "/";
    display: inline-block;
    margin-right: 7px;
    color: #999;
}
.Contact_us-one-info, .Contact_us-two-info{
padding:22px;
}
.Contact_us-one-address,
.Contact_us-one-phone,
.Contact_us-one-mail,
.Contact_us-one-fax {
    display: flex;
    align-items: center;
}
.Contact_us-one-info svg, .Contact_us-two-info svg{
    margin: 10px;
}


@media (max-width: 40rem) {
    .Contact_us-one, .Contact_us-two {
        grid-template-columns: 1fr; 
    }

}