/* Контакты */

.contacts .buttons {
    display: flex;
    justify-content: space-evenly;
    padding-bottom: 30px;
}

@media only screen and (min-width: 1200px) {
    .hide-on-desktop {
        display: none !important;
    }
    .show-on-mobile {
        display: flex;
    }

    
}
@media only screen and (max-width: 1199px) {
    .hide-on-mobile {
        display: none !important;
    }

    .column-on-mobile {
        flex-direction: column !important;
    }

    .full-width-on-mobile {
        width: 100%;
    }

    
}
