body {
    color: #393838;
}

header {
    /* background-image: url(../imgs/backContact.svg);
    background: rgba(242, 217, 158, 0.30); */
    background: linear-gradient(0deg, rgba(242, 217, 158, 0.30) 0%, rgba(242, 217, 158, 0.30) 100%), url(../imgs/backContact.svg) lightgray 50% / cover no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
    text-align: center;
    position: relative;
    height: fit-content;
    padding: 80px 0 80px;
    color: var(--background-color);
}

header h1 {
    width: fit-content;
    margin: auto;
    padding: 30px;
}

header p {
    border-top: 2px solid var(--background-color);
    padding-top: 30px;
    width: 40%;
    min-width: 300px;
    margin: auto;
}

header .img-wrap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24%;
}

@media screen and (max-width: 768px) {
    header .img-wrap {
        display: none;
    }
}

body>span {
    display: block;
    margin: 20px auto;
    width: 70%;
    min-width: 300px;
}

.upper {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    width: 60%;
}

.lower {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    margin-top: 40px;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;

    margin-top: 50px;

    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.req {
    display: block;
}

.req::before {
    content: "*";
    color: #FF4D4F;
    margin-right: 6px;
}

.inp {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 280px;
    position: relative;
}

.data {
    display: flex;
    gap: 32px;
    /* align-items: center; */
    flex-wrap: wrap;
    justify-content: space-between;
}

.sub {
    width: 100%;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
}

@media screen and (max-width:630px) {
    .upper {
        font-size: 16px;
    }
}