.contacts {
    background: #000;
    color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
}

.contacts-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hero-wrapper {
    width: 100%
}

.hero-img {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    background: url(./src/img/contacts.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contacts-title {
    text-align: center;
    text-transform: none;
}

.contact-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    font-size: 18px;
    text-transform: none;
}

.link-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-icon img {
    width: 35px;
}

.link-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.link-text .link-icon {
    border: none;
    width: 35px;
    height: 35px;
    background: white;
}

.form-title {
    text-align: center;
    font-size: 22px;
}

.feedback-form {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feedback-form input,
.feedback-form textarea {
    width: 90%;
    padding: 14px 28px;
    background: none;
    border: 2px solid #fff;
    border-radius: 25px;
    font: 16px/1 'Open Sans';
    color: #fff;
    text-transform: none;
}

.feedback-form textarea {
    height: 220px;
    resize: none;
    overflow: auto;
}

.feedback-form textarea {
    scrollbar-width: thin;
    scrollbar-color: #111 #fff;
}

.feedback-form textarea::-webkit-scrollbar {
    width: 8px;
}

.feedback-form textarea::-webkit-scrollbar-track {
    background: #000;
    border: 2px solid #fff;
    border-radius: 6px;
}

.feedback-form textarea::-webkit-scrollbar-thumb {
    background: #111;
    border-radius: 4px;
}

.feedback-form textarea::-webkit-scrollbar-button {
    display: none
}

.file-field {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    text-transform: none;
    cursor: pointer;
    justify-content: end;
}

.file-field input {
    display: none;
}

.file-field .clip {
    width: 35px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.clip img {
    width: 20px;
}

.send-btn {
    background: none;
    border: 2px solid #fff;
    border-radius: 25px;
    padding: 14px 65px;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
}

.link-text img {
    width: 20px;
}

.file-note {
    width: 100%;
    font-size: 12px;
    font-weight: 300;
    text-align: right;
    color: #a1a1a1;
}

.copyright {
    margin: 20px auto 30px;
    font-size: 14px;
    font-weight: 300;
    text-transform: none;
    text-align: center;
    opacity: .9;
}

.pre-form-description{
    text-align: center;
    text-transform: none;
    font-size: 14px;
}