form {
    width: 100%;
}

form > div {
    margin: 0 0 20px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

input, 
textarea {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #fff;
    border: 1px solid #EC6408;
    border-radius: 5px;
    color: #312D5E;
    text-decoration: none;
    font-family: inherit;
    font-size: 14px;
}

.upload {
    display: flex;
    align-items: center;
    gap: 10px;
}

.button-file {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 1rem;
    background: #fff;
    border: none;
    color: #312D5E;
    padding: 0;
    text-decoration: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.button-file span {
    font-weight: normal;
}

.button-file::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url(img/icon-contact-attachment.svg) no-repeat center center/16px 16px;
}

.button-file + [type="file"] {
    display: none;
}

.selected-file {
    font-size: 14px;
}

.selected-file .text-danger {
    color: red;
    font-weight: 600;
}

.cols {
    display: flex;
    gap: 40px;
}

.cols > div {
    flex: 0 1 calc((100% - 40px)/2);
}

.mandatory {
    color: red;
    font-weight: 900;
}

.nono {
    display: none;
}

.submit .button {
    width: auto;
}

.legal {
    color: #666666;
    font-size: 12px;
}

.success {
    margin: 0 0 40px;
    padding: 20px;
    background: #00B77A;
    color: #fff;
}

.success p {
    margin: 0;
}

.danger {
    margin: 0 0 40px;
    padding: 20px;
    background: #EC6408;
    color: #fff;
}

.danger ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/** contact-form **/

#contact-form {
    position: relative;
    z-index: 2;
    align-items: flex-start;
}

#contact-form h2 {
    margin-top: 0;
    font-size: 40px;
    font-weight: 400;
}

/** contact-locations **/

#contact-locations {
    position: relative;
    z-index: 2;
}

#contact-locations h2 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 40px;
    font-weight: 400;
}

#contact-locations a {
    color: inherit;
}

/** contact-locations-items **/

#contact-locations-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 120px;
    padding-right: 120px;
}

#contact-locations-items > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

#contact-locations-items .text {
    flex: 1;
}

#contact-locations-items h3 {
    margin: 0 0 30px;
    color: #EC6408;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}

#contact-locations-items h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 10px;
    background: #EC6408;
}

#contact-locations-items p {
    line-height: 26px;
}

/** circles **/

.circle {
    position: absolute;
    z-index: 1;
    display: block;
    border-radius: 100%;
}

#circle1 {
    top: 680px;
    right: 0;
    width: 420px;
    height: 420px;
    background: #FFDEC7;
    opacity: 0.8;
}

#circle2 {
    top: 50px;
    left: 580px;
    width: 620px;
    height: 620px;
    background: #FFF1E2;
    opacity: 0.7;
}
