.contacts{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}

.contacts__info{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 24px;
    flex-shrink: 0.45;
}

.contacts__item{
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.contacts__title{
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: var(--main-dark);
    min-width: 186px;
}

.contacts__text{
    margin: 0;
    font-weight: 200;
    font-size: 20px;
    line-height: 24px;
    color: var(--secondary-text);
    text-decoration: none;
}

.main-title + .text{
    margin-bottom: 36px;
}

.contacts__form > .text{
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 24px;
}

#form-contact{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

#form-contact > .form-item:not(:last-of-type){
    width: calc((100% - 24px) / 3);
}

h2.contacts__title{
    margin-bottom: 24px;
}

@media (max-width: 1300px) {
    #form-contact > .form-item:not(:last-of-type){
        width: 100%;
    }
    .contacts__info{
        flex-shrink: .8;
    }
}

@media(max-width: 905px){
    .contacts{
        flex-direction: column;
    }
    .contacts__text{
        font-size: 16px;
        line-height: 19px;
    }
    .contacts__item{
        gap: 12px;
    }
   .contacts__title{
        font-size: 20px;
        line-height: 24px;
        min-width: 92px;
    }
   .contacts__item .contacts__title{
       width: 92px;
   }
}