input[name=news_year] {
    display: none;
}

#all_year {
    display: none;
}

.seacrh-page__form {
    padding: 30px 0;
}

.search-item {
    padding: 30px 0;
    border-bottom: 1px solid #dfdfdf;
}

.search-item h4 {
    font-family: 'Geometria-Bold', Arial, sans-serif;
    font-size: 20px;
}

.search-item a:hover {
    text-decoration: none;
}

.extract-text {
    font-weight: bold;
}

.search-item__meta {
    text-align: right;
    padding-top: 15px;
}

.search-item__date {
    color: #8a8a8a;
    font-size: 16px;
}

.search-item__date label {
    padding-right: 5px;
}

.result-search__paging {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    justify-content: center;
    text-align: center;
    margin-top: 30px;
}

.result-search__paging>* {
    margin: 5px;
}

.result-search__page a {
    padding: 8px 15px;
    border: 2px solid #0f428f;
    transition: .3s;
    display: block;
    min-width: 45px;
}

.result-search__page a:hover {
    text-decoration: none;
    color: #fff;
    background-color: #0f428f;
}

.result-search__page-current {
    padding: 8px 15px;
    border: 2px solid #0f428f;
    background-color: #0f428f;
    color: #fff;
    min-width: 45px;
}


.search-detail__form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-detail__input {
    width: 80%;
    padding: 10px;
    border: 2px solid #c4c4c4;
    transition: 0.3s;
}

.search-detail__input:hover,
.search-detail__input:focus {
    outline: none;
    border: 2px solid #0f428f;
}

button.search-detail__button {
    width: 15%;
    padding: 10px;
    background: #0f428f;
    color: #fff;
    border: 2px solid #0f428f;
    cursor: pointer;
    transition: all 0.3s;
}

button.search-detail__button:focus {
    outline: none;
}

button.search-detail__button:hover {
    background: #ffffff;
    color: #0f428f;
}


@media screen and (max-width: 768px) {
    .search-detail__input {
        width: 75%;
    }
    
    button.search-detail__button {
        width: 20%;
    }
}

@media screen and (max-width: 576px) {
    .search-item h4 {
        font-size: 18px;
    }

    .search-detail__form {
        flex-wrap: wrap;
    }

    .search-detail__input {
        width: 100%;
        margin-bottom: 10px;
    }
    
    button.search-detail__button {
        width: 100%;
    }
}

.input-radio__hidden {
    display: none;
}



.overlay {
    z-index: 999;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none; }
  
  .pop-up {
    position: absolute;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding: 40px;
    background-color: #FFF;
    text-align: center;
    }
  
  @media (max-width: 520px) {
    .pop-up {
      width: 90%;
      height: auto; } }
  
  .close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 23px;
    height: 23px;
    cursor: pointer; }
  
  .close-popup:before {
    content: '';
    background-color: #000;
    position: absolute;
    height: 1px;
    width: 31px;
    top: 11px;
    left: -4px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  
  .close-popup:after {
    content: '';
    background-color: #000;
    position: absolute;
    height: 1px;
    width: 31px;
    top: 11px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    left: -4px; }
  
  .js-thank-you h2 {
    font-size: 24px;
    text-align: center;
    padding-top: 15px; }
  
  .js-thank-you__text {
    text-align: center;
    padding-top: 10px;
    font-size: 18px; }


    .success-img img {
        max-width: 94px;
        margin-bottom: 15px;
    }
    
    span.pop-up__title {
        font-weight: 600;
        font-size: 24px;
        color: #0f428f;
    }
    
    .js-thank-you__text p {
        font-size: 16px;
    }
    
    
.form-recaptcha {
    margin: 15px auto 30px auto;
}

.form__textarea {
    position: relative;
    height: 150px;
}

.xdsoft_datetimepicker {
    z-index: 99999 !important;
}


#cke_3_contents {
    height: 300px;
}

.gallery__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1%;
}

.gallery__item {
    width: 31%;
    height: 220px;
    margin: 0 1% 30px 1%;
}

.gallery__item a {
    width: 100%;
    height: 100%;
}

.gallery__item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 992px) {
    .gallery__item {
        width: 48%;
        height: 240px;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 576px) {
    .gallery__list {
        margin: 0;
    }
    
    .gallery__item {
        width: 100%;
        margin: 0 0 12px;
    }
}

@media only screen and (max-width: 992px) {
    .animated {
        /*CSS transitions*/
        -o-transition-property: none !important;
        -moz-transition-property: none !important;
        -ms-transition-property: none !important;
        -webkit-transition-property: none !important;
        transition-property: none !important;
        /*CSS transforms*/
        -o-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        -webkit-transform: none !important;
        transform: none !important;
        /*CSS animations*/
        -webkit-animation: none !important;
        -moz-animation: none !important;
        -o-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
    }
    [data-aos^="fade"][data-aos^="fade"],
    [data-aos^="zoom"][data-aos^="zoom"] {
        opacity: 1 !important;
    }
    [data-aos="zoom-in"] {
        transform: scale(1) !important;
    }
    
    [data-aos=fade-up] {
        transform: translate3d(0,0,0) !important;
    }
}

.contacts__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contacts__col-left {
    width: 360px;
}

.contacts__content {
    width: 100%;
}

.contacts__content-title {
    margin-bottom: 10px;
}

.contacts__head {
    margin-bottom: 10px;
}

.contacts__place {
    margin-top: 30px;
}

.contacts__col-right {
    width: calc(100% - 360px);
    padding-left: 40px;
}

.contacts__map {
    width: 100%;
}

@media screen and (max-width: 992px) {
    .contacts__col-left {
        width: 100%;
    }
    
    .contacts__col-right {
        width: 100%;
        padding-left: 0;
    }
}

.vacancy__other {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #e8e8e880;
    border: 1px solid #c4c4c4;
    margin-top: 32px;
    padding: 18px;
}

.vacancy__other-text {
    width: 70%;
    padding-right: 32px;
}

.vacancy__other-btn {
    width: 30%;
    text-align: right;
}

@media screen and (max-width: 992px) {
    .vacancy__other-text {
        width: 100%;
        padding-right: 0;
        padding-bottom: 24px;
        text-align: center;
    }
    
    .vacancy__other-btn {
        width: 100%;
        text-align: center;
    }
}