.contacts__title {
    width: 100%;
    height: 2.5px;
    background-color: var(--basic-green);
}

.contacts__content {
    display: flex;
    gap: 78px;
    position: relative;
    padding: 76px 0 67px 0;
}

.contacts__content h2 {
    font-size: 36px;
    position: absolute;
    left: -41px;
    top: -21px;
    background-color: #ffffff;
    padding: 0 40px;

}

.contacts__content label {
    display: flex;
    position: relative;
    gap: 20px;
    width: 100%;
    align-items: center;
    white-space: nowrap;
    text-transform: uppercase;
    color: #444444;
}

.contacts__content label img {
    position: absolute;
    right: 20px;
}


.contacts__content input {
    border: 1px solid #E7E7E7;
    height: 52px;
    width: 100%;
    padding-left: 20px;
    padding-right: 60px;
    position: relative;

}

.contacts__content input::placeholder {
    text-transform: uppercase;
    color: #444444;
}

@media (max-width: 768px) {
    .contacts__content {
        flex-direction: column;
        gap: 20px;
    }
}