
h2 {
    color: #000
}

ul {
    padding-left: 3em;
}

.text-center {
    text-align: center;
}


.input_name:before {
    content: "\25A0";
    /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #FFAB00;
    /* Change the color */
    font-weight: bold;
    /* If you want it to be bold */
    display: inline-block;
    /* Needed to add space between the bullet and the text */
    width: 1em;
    /* Also needed for space (tweak if needed) */
    margin-left: -1em;
}

.contact_us_section .content-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.contact_us_section .content-wrapper>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.contact_us_section .content-wrapper .content_container>img {
    width: 60%;
    margin: auto;
    padding:50px;
}

.contact_us_section .content-wrapper .form_container {
    box-shadow: 0px 10px 100px 0px rgba(0, 0, 0, 0.10);
    border-radius: 20px;
    padding: 40px;
    height: fit-content;
    background:white;
}

.contact__contact__info {
    display: flex;
    flex-basis: 40%;
    justify-content: center
}

.contact__contact__box {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    padding-top: 20px;
}
.contact__contact__box .flex-row{
    flex-direction: row;
    width: fit-content;
}
.contact__input {
    display: flex;
    flex-direction: column;
}
.contact__input .input {
    border-radius: 8px;
    font-size: 16px;
    background: var(--color-light-silver);
    border: none;
    height: 40px;
    padding: 10px;
}
.contact__input textarea {
    resize: none;
    height: 250px !important;
}
.contact__input .input:focus {
    background: white;
    border:1px solid var(--color-light-silver);
}
@media (max-width: 990px) {
    .container{
        padding: 0 10px 50px 10px !important;
    }
}
@media (max-width: 767px) {
    .contact__contact__info {
        flex-basis: 100%;
        justify-content: left;
    }
    .contact_us_section .content-wrapper .form_container{
        padding: 30px 10px !important;
    }
    label{
        min-height: 42px;
        display: flex;
    justify-content: flex-start;
    & span{
        max-width: 165px;
    }
    }
    .contact__input {
        flex-basis: 90%;
        display: flex;
        flex-direction: column
    }
}
