body {
    height: 100vh;
}

/* Contact Us */
.contacts {
    max-width: 1280px;
    margin-bottom: 120px;
}

.contacts__title {
    font-size: 28px;
    font-weight: 400;
    color: #F9F9F9;
    text-align: center;
    margin-bottom: 85px;
}

.contacts__content {
    display: flex;
    justify-content: space-between;
}

.contacts__inputs {
    width: 50%;
}

.contacts__input {
    width: 100%;
    margin-top: 32px;
    border: none;
    background: none;
    color: rgba(249, 249, 249, 1);
    font-size: 16px;
    font-weight: 300;
    padding-bottom: 16px;
    border-radius: 1px;
    border-bottom: 2px solid #F9F9F9;
}

.contacts__input:focus,
.contacts__input:active {
    outline: none;
}

.contact__textarea {
    height: 90px;
}

.contacts__list {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 70px;
}

.contacts__item {
    margin-bottom: 20px;
}

.contacts__link {
    font-size: 20px;
    font-weight: 300;
    color: #9F9F9F;
    text-decoration: none;
    position: relative;
    transition: all .3s;
}

.contacts__link:hover {
    color: #F9F9F9;
}

.contacts__link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #F9F9F9;
    transition: all .3s;
}

.contacts__link:hover:after {
    width: 100%;
}
/* \Contact Us */


/* Adaptive */
@media (max-width: 800px) {
    .contacts__list {
        padding-left: 0;
    }
}

@media (max-width: 600px) {
    .contacts__content {
        flex-direction: column;
    }
    .contacts__inputs,
    .contacts__list {
        width: 100%;
    }
    .contacts__list {
        text-align: center;
    }
    .contacts__inputs {
        margin-bottom: 20px;
    }
}

@media (max-width: 375px) {
    .contacts__title {
        font-size: 34px;
    }
}
/* \Adaptive */
