.topmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}
.topmenu a, .topmenu a:focus {
        color: var(--contrast-color);
        padding: 8px 10px;
        font-size: 15px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
.topmenu li:hover>a, .topmenu .active, .topmenu .active:focus {
    color: var(--nav-hover-color);
}
.facebook-follow {
    background: #0049bf;
    color: #ffffff;
    padding: 10px 8px;
    border-radius: 5px;
}

.facebook-follow:hover, .facebook-follow:focus {
    color: #ffffff;
    background: #0359e3;
}
.meeting-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    margin-bottom: 10px;
}

.meeting-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.contact-form .form-check input {
    padding: 6px!important;
}