.contact_us {
    background: #353B4F;
    color: #fff;
}

.contact_us .container {
    max-width: 900px;
}

.contact_us h2 {
    text-align: center;
    color: #182A51;
    font-weight: 500;
}

.contact_us .fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 3;
    gap: 25px 20px;
    margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
    .contact_us .fields {
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 30px;
    }
}

.contact_us label {
    display: none;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact_us input {
    background: transparent;
    height: 65px;
    border: 1px solid #17307A99;
    color: #142a6e;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
}

.contact_us textarea {
    background: transparent;
    border: 1px solid #17307A99;
    resize: none;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
}

.contact_us p:nth-child(5) {
    grid-row: 2/4;
    grid-column: 2/3;
    display: flex;
}

@media screen and (max-width: 768px) {
    .contact_us p:nth-child(5) {
        grid-column: 1/2;
        grid-row: 5/6;
    }
}

.contact_us .policy {
    margin-bottom: 50px;
    color: #182A51;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .contact_us .policy {
        margin-bottom: 40px;
    }
}

.contact_us .policy a {
    color: #2C5CED;
    text-decoration: underline;
}

.contact_us .blue_btn {
    border: none;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
    min-width: 300px;
}

@media screen and (max-width: 768px) {
    .contact_us .blue_btn {
        margin-right: 0;
    }

    .rtl .contact_us .blue_btn {
        margin-right: unset;
        margin-left: 0;
    }
}

.contact_us .message {
    display: none;
    padding-bottom: 30px;
    color: #fff;
}

.contact_us input::placeholder,
.contact_us textarea::placeholder {
    color: #17307A99;
}

.contact_message {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    top: 0;
    left: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.rtl .contact_message {
    left: unset;
    right: 0;
}

.contact_message.active {
    opacity: 1;
    visibility: visible;
}

.contact_message p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}

.contact_message .blue_btn {
    min-width: 100px;
    text-align: center;
    padding: 10px;
    color: #fff;
    font-weight: 500;
    background-color: #2b5ced;
    line-height: 1;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    border-radius: 5px;
}

.contact_message .error_content {
    border-radius: 5px;
    border: 1px solid #18327B;
    background: #FFF;
    padding: 25px;
    text-align: center;
    min-width: 300px;
}

.contact_us form {
    background: #fff;
    box-shadow: 0px 10px 20px 0px #B6C7FF7D;
    border-radius: 10px;
    padding: 50px;
}

.contact_us form .iti__country{
    display: flex !important;
    color: #17307A99;
}

.contact_us .iti{
    width: 100%;
}

.contact_us .iti__selected-dial-code{
    color: #142a6e;
    font-size: 14px;
}
