
#contacts-page a:hover {
    color: var(--text-color);
}
#contacts-page .wrapperPage {
    display: flex;
    flex-direction: column;
    padding: 40px 0 100px;
    gap: 70px;
}
#contacts-page .contacts {
    display: flex;
    justify-content: space-around;
}
#contacts-page .headingPage_upper{
    margin: 0;
}
#contacts-page .contacts__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#contacts-page .contacts__item__title {
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
}
#contacts-page .contacts-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.icons_tell {
    background-image: url( /kontakty/icons/icons_tel.svg );
}
.icons_time {
    background-image: url( /kontakty/icons/icons_time.svg );
}
.icons_mail {
    background-image: url( /kontakty/icons/icons_mail.svg );
}

#contacts-page .contacts-info__icons {
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}
#contacts-page .contacts-info__icons {
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}
#contacts-page .contacts-info__fill {
    font-size: 18px;
}
#contacts-page .supportCustomer {
    background: var(--Gray);
    padding: 50px 100px;
    border-radius: 10px;
}
#contacts-page .supportCustomer__title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}
#contacts-page .supportCustomer__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 46px;
}
#contacts-page .supportCustomer__contacts {
    display: flex;
    gap: 120px;
}
#contacts-page .supportCustomer__contacts .contacts-info {
    gap: 15px;
}
#contacts-page .supportCustomer__contacts .contacts-info__icons {
    width: 24px;
    height: 24px;
}
#contacts-page .supportCustomer__contacts .contacts-info__fill {
    font-size: 16px;

}
#contacts-page .form-switcher__title {
    font-size: 26px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.26px;
    margin-bottom: 40px;
}

#contacts-page .form-switcher__container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: left;
}
#contacts-page .form-switcher__container__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #fff;
    border: 2px solid rgba(42, 42, 42, 0.20);
    border-radius: 5px;
    width: 350px;
    height: 120px;
    line-height: normal;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    transition: all 70ms ease-out ;
}
#contacts-page .technicalSupport {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.14px;
}
#contacts-page .technicalSupport__trigger {
    cursor: pointer;
    color: var(--blue-color);
    font-weight: 500;

}
@media( min-width:768px ) {
    #contacts-page .form-switcher__container__btn:hover {
        background-color: var(--yellow-color);
        border-color: var(--yellow-color);
    }
}
@media( max-width: 1024px ){
    #contacts-page .wrapperPage {
        gap: 40px;
        padding: 30px 0 60px;
    }
    #contacts-page .headingPage_upper{
        font-size: 22px;
    }
    #contacts-page .contacts {
        justify-content: space-between;
    }
    #contacts-page .contacts__item {
        gap: 10px;
    }
    #contacts-page .contacts__item__title {
        font-size: 16px;
    }
    #contacts-page .contacts .contacts-info__icons {
        display: none;
    }
    #contacts-page .contacts-info__fill {
        font-size: 14px;

    }
    #contacts-page .contacts-info__fill a {
        color: var(--blue-color)
    }
    #contacts-page .supportCustomer {
        padding: 30px 20px;
    }
    #contacts-page .supportCustomer__title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    #contacts-page .supportCustomer__text {
        font-size: 14px;
        margin-bottom: 25px;
    }
    #contacts-page .supportCustomer__contacts {
        flex-direction: column;
        gap: 15px;
    }
    #contacts-page .supportCustomer__contacts .contacts-info__fill {
        font-size: 14px;
    }
    #contacts-page .form-switcher__title {
        font-size: 20px;
        letter-spacing: 0.2px;
        margin-bottom: 20px;
    }
    #contacts-page .form-switcher__container {
        gap: 10px;
    }
    #contacts-page .form-switcher__container__btn {
        width: 320px;
        height: 60px;
        font-size: 14px;

    }
}

@media( max-width: 768px ){
    #contacts-page .contacts {
        flex-direction: column;
        gap: 30px;
    }
    #contacts-page .form-switcher__container__btn {
        width: 100%;
    }
}