@import url("global-styles.css");
@import url("header.css");
@import url("callout.css");
@import url("footer.css");
@import url("card.css");
@import url("article.css");

.contactUs-title {
    padding: 20px;
}

.article-contactUs {
    padding: 50px 0;
}

.contactUs-form__title {
    text-align: center;
    margin-bottom: 40px;
}

.contactUs-form__group {
    display: flex;
    justify-content: center;
    align-items: center;
}

.scholar-form__control {
    width: 33%;
    margin: 0 5px;
} 


.contactUs-control {
    width: calc(100% - 20px);
    margin: 10px;
}

.contactUs-control textarea {
    height: 180px;
}

.contactUs-message,
.contactUs-submit,
.contactUs-required {
    display: block;
}

.contactUs-message,
.contactUs-required {
    width: calc(100% - 20px);
}

.contactUs-required {
    display: block;
}

.contactUs-message {
    margin-bottom: 50px;
}

.contactUs-submit {
    width: 100%;
    display: block;
}

.contactUs-message a {
    text-decoration: underline;
    cursor: pointer;
    color: black;
}

.main-help {
    position: relative;
    background-color: var(--section-secondary);
}

.main-help__head {
    position: relative;
    right: 3%;
    width: 103%;
    background-color: var(--font-color-primary);
    padding: 25px 0;
}

.main-help__head::before {
    content: "";
    position: absolute;
    background-color: #123367;
    height: 100px;
    width: 50px;
    transform: rotate(120deg);
    z-index: -1;
    top: 40px;
    left: 32px;
}

.main-help__title {
    position: relative;
    color: white;
    left: 5%;
    font-weight: bold;
    font-size: 2.1rem;
}

.help-body__image {
    position: absolute;
    width: 50%;
    bottom: 0;
    right: -20px;
}

.main-help__body {
    display: flex;
}

.help-body__content {
    margin: 10px 20px;
}

.help-body__list {
    list-style: disc;
}

.help-body__list span {
    font-weight: bold;
    color: black;
    list-style: none;
    font-size: 1.2rem;
}

.help-body__list li {
    margin: 10px;
}

.help-body__list li a{
    text-decoration: underline;
}

.help-body__list,
.help-body__item {
    margin: 10px 20px;
}

.help-body__item {
    margin-top: 20px;
}

.help-body__first {
    display: inline-block;
}

.help-item__title {
    font-weight: bold;
    color: var(--font-color-secondary);
}

.help-item__paragraph {
    white-space: pre-wrap;
    margin: 0;
}

.contactUs-map {
    padding: 40px 0;
}

@media screen and (max-width: 800px) {
    .contactUs-form__group {
        display: flex;
        flex-wrap: wrap;
    }

    .scholar-form__control {
        width: 100%;
        margin: 10px 0 0 0;
    }

    .contactUs-submit {
        margin: 0 auto;
    }
}

@media screen and (max-width: 500px) {
    .help-body__image {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    .help-body__list,
    .help-body__item {
        margin: 10px 5px;
    }
}