.news {
    width: 100%;
    padding: 70px 0 100px;
    /* background-color: #fafafa; */
    background-color: #f1f1f1;
}
.news__tittle {
    text-align: center;
    margin-bottom: 50px;
}

.news__card {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    border-radius: 5px;
}
.text__wrap > .second__subtittle {
    text-align: left;
    color: #ffffff;
}

.image__wrap , .baa__new__manag {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.news__text__wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 10px;
}
.baa__new__manag {
    padding: 22% 0 0 11%;
}
.baa__new__manag > img {
    width: 300px;
    height: 190px;
    display: block;
    object-fit: contain;
    /* margin-left: 10%;
    margin-top: 20%;
    margin: 20% 0 0 10%; */
    object-position: center bottom;

}
.image__wrap > img {
    object-fit: cover;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}
.image__wrap::after , .baa__new__manag::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 5px;
    z-index: 3;
}
.news__date {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.category > span , .news__date > span {
    font-size: 12px;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.7em;
    margin-left: 5px;
    white-space: nowrap;
}
.category {
    margin-right: 10px;
}
.fa-calendar-days {
    color: #ffffff;
    font-size: 12px;
}

.more__info {
    margin-left: auto;
    margin-right: 0;
}
.info__link {
    text-decoration: none;
    color: #1151d3;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    text-align: right;
    line-height: 1.7em;
}
.info__link::after {
    content: '\f178';
    color: #1151d3;
    font-family: FontAwesome;
    font-size: 10px;
    margin-left: 10px;

}
.slider {
    margin: 0 auto;
}
.slider__wrapper {
    padding: 10px 0;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider__items {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.slider__item {
    flex: 0 0 30% !important;
    max-width: 30%;
    padding: 0 15px;
}
.news__card > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
    z-index: 5;
    border-radius: 5px;
}
.text__wrap {
    flex: 1 1 auto;
    padding: 0 15px 0 10px;
}
.slider__control[data-slide=next] {
    background: transparent;
    right: -50px !important;
}
.slider__control[data-slide=prev] {
    background: transparent;
    left: -50px !important;
}
.slider__control[data-slide=prev]::before, .slider__control[data-slide=next]::before {
    opacity: 0 !important;
    visibility: hidden !important;
}
.slider__control[data-slide=prev]:hover, .slider__control[data-slide=next]:hover {
    background-color: transparent;
}
.slider__control[data-slide=next]::after {
    content: '\f105';
    color: #1151d3;
    font-family: FontAwesome;
    font-size: 35px;
}
.slider__control[data-slide=prev]::after {
    position: absolute;
    content: '\f104';
    color: #1151d3;
    font-family: FontAwesome;
    font-size: 35px;
}

.news__form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news__form > input {
    margin: 0 30px ;
    width: 250px;
    height: 30px;
    border: none;
    border-radius: 5px;
}
.news__form > input:focus {
    border-bottom: 1px solid #1151d3;
    box-shadow: 0 6px 4px -4px rgba(17, 81, 211, 0.63);
}
.news__form > input::placeholder {
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7em;
    padding-left: 10px;
}
.news__form > button {
    padding: 0 12px ;
    height: 30px;
    color: #ffffff;
    border: none;
    background-color: #1151d3;
    border-radius: 5px;
    text-align: center;
    font-size: 15px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    line-height: 1.7em;
    vertical-align: middle;
}
.form__container {
    padding: 50px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image__wrap .img-poz {
    object-fit: fill;
}

@media (max-width: 1200px) {
    .category > span , .date > span {
        font-size: 10px;
    }
    .fa-calendar-days , .fa-user {
        font-size: 10px;
    }
}

@media (max-width: 950px) {
    .slider__item {
        flex: 0 0 50% !important;
        max-width: 50%;
        padding: 0 11px;
    }
    .slider__control {
        display: none !important;
    }
}
@media (max-width: 768px) {
    .news__tittle {
        text-align: left;
    }
    .slider__item {
        flex: 0 0 75% !important;
        max-width: 75%;
        padding: 0 11px;
    }
    .form__container {
        flex-direction: column-reverse;
    }
    .news__form {
        flex-direction: column;
    }
    .news__form > input {
        margin: 25px 0;
        width: 180px;
    }

}