/*Меню раздела*/
.section-menu{
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    overflow-x: auto;
}
.section-menu::-webkit-scrollbar {
    height: 5px;
}
.section-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.section-menu::-webkit-scrollbar-thumb {
    background: #adaaaa;
    border-radius: 4px;
}

.section-menu__item {
    margin-right: 40px;
    white-space: nowrap;
}

.section-menu__item:last-child {
    margin-right: 0;
}

.section-menu__item:hover {
    color: var(--orange-color);
}

.section-menu__item--current {
    color: var(--orange-color);
    border-color: var(--orange-color);
}

@media screen and (max-width: 1024px) {
    .section-menu__item {
        margin-right: 20px;
    }
}

@media screen and (max-width: 768px) {
    .section-menu {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/*Heroblock*/
.heroblock {
    padding-top: 97px;
    padding-bottom: 97px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #E3EEF3;
}

.heroblock__descr {
    margin-top: 24px;
}

/*Счетчики*/
.company-info_section {
    position: relative;
    overflow: hidden;
    padding-block: 100px 100px;
}

.company-info_section:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(218, 221, 231, 0.8);
    opacity: 0.4;
    z-index: 1;
}

.company-info_section .company-info_wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.company-info__background-image {
    position: absolute;
    width: 636px;
    height: 600px;
    left: -336px;
    bottom: 0;
    background-image: url("images/bacteria.png");
}

.company-info__block {
    display: flex;
    justify-content: space-between;
}

.company-info__block__left {
    width: 30%;
}

.company-info__block__title {
    line-height: 1em;
}

.company-info__block__right {
    width: 60%;
}

.company-info__block__right {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.company-info__block__item {
    width: 50%;
}

.company-info__block__item:nth-child(n+3) {
    margin-top: 56px;
}

.company-info_section .company-info__block__item__title {
    color: var(--blue-color);
    margin-bottom: 8px;
    font-size: 72px;
    font-weight: 500;
    white-space: nowrap;
}

.company-info__block__item__text {
    font-size: 1.533333em;
}

@media screen and (max-width: 1024px) {
    .company-info__block__title {
        font-size: 40px;
    }

    .company-info_section .company-info__block__item__title {
        font-size: 55px;
    }

    .company-info__block__item__text {
        font-size: 17px;
    }
}

@media screen and (max-width: 768px) {
    .company-info_section {
        padding-bottom: 60px;
    }
    .company-info__block {
        display: block;
    }

    .company-info__block__left, .company-info__block__right {
        width: 100%;
    }
}

@media screen and (max-width: 524px) {
    .company-info__block__title {
        font-size: 23px;
    }

    .company-info_section .company-info__block__item__title {
        font-size: 40px;
    }

    .company-info__block__item__text {
        font-size: 14px;
    }
}

.company-img {
    margin-top: 16px;
}

/*Баннер с текстом*/
.about-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #E3EEF3;
}

.about-section__content {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 22px;
    width: 35%;
}

.about-section__title {
    margin-bottom: 40px;
}

.about-section__text {
    margin-bottom: 40px;
}

.document {
    display: flex;
    align-items: center;
    gap: 16px;
    width: fit-content;
}

.document__link {
    text-align: left;
}

.document__title {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 8px;
}

.document__info {
    font-size: 10px;
    line-height: 10px;
    color: var(--dark-grey-color);
}

.document:hover {
    color: var(--orange-color);
}

.document--center {
    margin-left: auto;
    margin-right: auto;
}

.text-box {
    position: relative;
}

.text-box__bg {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: rgba(240, 241, 245, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.text-box__wrap {
    padding: 55px 25px 65px 25px;
}

.text-box__title {
    margin-bottom: 8px;
}

.text-box--translate--bottom {
    transform: translateY(35%);
}

.text-box__bg {
    overflow: hidden;
}

.bg-box {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.bg-box::before, .bg-box::after, .text-box__bg::before {
    content: '';
    position: absolute;
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(238px);
}

.bg-box::before {
    background: #01B8C4;
    height: 744px;
    width: 744px;
    top: -60%;
    left: 75%;
}

.bg-box::after {
    background: #009FC2;
    height: 472px;
    width: 472px;
    top: -15%;
    left: 100%;
}

.text-box__bg::before {
    background: #009FC2;
    height: 202px;
    width: 202px;
    left: -20%;
    top: 60%;
    z-index: 1;
}

@media screen and (max-width: 1300px) {
    .about-section__content {
        width: 50%;
    }
}

@media screen and (max-width: 1024px) {
    .about-section__content {
        width: 60%;
    }
}

@media screen and (max-width: 768px) {
    .about-section__content {
        width: 90%;
    }
}

@media screen and (max-width: 425px) {
    .about-section__content {
        width: 100%;
    }
}


/*информация о работе компании*/
.company-info__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.company-info__item {
    width: calc(25% - 12px);
    min-width: 200px;
}

.company-info__img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 156px;
    min-width: 100px;
    height: 156px;
    border-radius: 50%;
    background: #F1FDFF;
    box-shadow: 3px 1px 3px #F2F9FA, 6px 6px 7px #FFFFFF, 9px 8px 7px #F2F9FA, inset -2px -8px 13px #FFFFFF, inset 0px 4px 10px #C9F8FF;
    transition: all linear .15s;
}

.company-info__img:hover {
    background: rgba(244, 119, 53, 0.1);
    box-shadow: 3px 1px 3px #F2F9FA, 6px 6px 7px #FFFFFF, 9px 8px 7px #F2F9FA, inset -2px -8px 13px #FFFFFF, inset 0px 4px 10px rgba(244, 119, 53, 0.1);
    transition: all linear .15s;
}

.company-info__img:hover path {
    stroke: var(--orange-color);
    transition: all linear .15s;
}

.company-info__content {
    margin-top: 40px;
}

.company-info__name {
    margin-bottom: 16px;
}

.company-info__text {
    padding-right: 10px;
}

.company-info__btn {
    margin-top: 40px;
}


/*Преимущества*/
@media screen and (min-width: 1024px) {
    .company-info__title-90 {
        width: 90%;
    }
}

.company-info__item--horizontal {
    width: calc(50% - 12px);
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.company-info__item--horizontal .company-info__img {
    width: 50px;
    min-width: 50px;
    height: 50px;
    box-shadow: 0.846154px 0.282051px 0.846154px #F2F9FA, 1.69231px 1.69231px 1.97436px #FFFFFF, 2.53846px 2.25641px 1.97436px #F2F9FA, inset -0.564103px -2.25641px 3.66667px #FFFFFF, inset 0px 1.12821px 2.82051px #C9F8FF;
}

.company-info__item--horizontal .company-info__img svg {
    height: 13px;
}

.company-info__item--horizontal .company-info__img img {
    width: 24px;
}

.company-info__item--horizontal .company-info__content {
    margin-left: 16px;
    margin-top: 0;
}

.company-info__item--horizontal .company-info__content p {
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .company-info__item {
        width: calc(50% - 12px);
        margin-bottom: 24px;
    }

    .company-info__img {
        height: 120px;
        width: 120px;
    }
}

@media screen and (max-width: 500px) {
    .company-info__item {
        width: 100%;
        display: flex;
    }

    .company-info__img {
        height: 100px;
        width: 100px;
    }

    .company-info__img svg {
        height: 30px;
    }

    .company-info__content {
        margin-top: 0;
        margin-left: 24px;
    }

    .company-info__name {
        margin-bottom: 8px;
    }

    .company-info__btn {
        margin-top: 20px;
    }
}

/*Направления*/
.directions-list__item:not(:last-child) {
    margin-bottom: 120px;
}

.direction-card {
    display: flex;
    gap: 24px;
}

.direction-card__content, .direction-card__img {
    width: 100%;
}

.direction-card__img {
    max-width: 50%;
    object-fit: cover;
}

.direction-card__title {
    margin-bottom: 16px;
}

.direction-card__link {
    margin-top: 40px;
}

@media screen and (min-width: 1024px) {
    .direction-card__text {
        width: 80%;
    }
}

@media screen and (max-width: 768px) {
    .direction-card__img {
        max-width: 40%;
    }

    .directions-list__item:not(:last-child) {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 600px) {
    .direction-card {
        flex-direction: column-reverse;
    }

    .direction-card__img {
        max-width: unset;
        height: 250px;
    }
}

/*Карточки со страницами*/
.other-pages__item {
    background: rgba(240, 241, 245, 0.8);
    padding: 32px 40px 40px;
    height: 100%;
}

.other-pages__title {
    margin-bottom: 16px;
}

.other-pages__link {
    margin-top: 40px;
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
    .other-pages__title {
        font-size: 33px;
    }
}

@media screen and (max-width: 768px) {
    .other-pages__col:not(:last-child) {
        margin-bottom: 24px;
    }
}

/*реквизиты*/
.heroblock--md {
    padding-top: 80px;
    padding-bottom: 80px;
}

.heroblock__content--center {
    text-align: center;
}

.heroblock__title {
    margin-bottom: 16px;
}

/*Новости*/
.news-card {
    display: block;
}

.news-card:hover .news-card__title {
    color: var(--orange-color);
}

.news-card:hover .news-card__subtitle {
    color: var(--orange-color);
}

.news-card__img {
    margin-bottom: 24px;
    text-align: center;
    position: relative;
}

.news-card__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.news-card__labels {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
}

.news-card__labels-item {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    background-color: #fff;
    color: var(--orange-color);
    padding: 6px 8px;
}

.news-card__date {
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--mild-grey-color);
}

.news-card__title {
    margin-bottom: 8px;
    width: 85%;
    font-size: 19px;
    transition: color 0.5s ease;
}

.news-card__subtitle {
    width: 85%;
    font-size: 15px;
    transition: color 0.5s ease;
}



@media screen and (max-width: 640px) {
    .news-slider .slider-head {
        margin-bottom: 0;
    }

    .news-slider .slider-head__nav {
        display: none;
    }

    .news-slider__wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .news-slider__item:not(:first-child, :nth-child(2), :nth-child(3)) {
        display: none;
    }
}

@media screen and (max-width: 425px) {
    .news-slider .slider-head {
        margin-bottom: 0;
    }

    .news-card__img {
        margin-bottom: 16px;
    }

    .news-card__title {
        font-size: 18px;
    }
}

/*блок с вопросом*/
.question-section__content {
    text-align: center;
}

.question-section__title {
    margin-bottom: 16px;
}

.question-section__link {
    margin: 40px auto 0 auto;
}

.question-section__text {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .question-section__text {
        width: 70%;
    }
}

@media screen and (max-width: 425px) {
    .question-section__text {
        width: 100%;
    }
}

/*Подписка на рассылку*/
.subscribe-section {
    background-color: rgba(240, 241, 245, 0.8);
    position: relative;
}

.subscribe-section__img {
    position: absolute;
    left: 0;
    height: 100%;
    width: 47%;
    object-fit: cover;
}

.subscribe-section__content {
    padding-top: 56px;
    padding-bottom: 56px;
}

.subscribe-section__title, .subscribe-section__wrap {
    width: 42%;
    margin-left: auto;
}

.subscribe-section__title {
    margin-bottom: 16px;
}

.subscribe-form__input-box--white {
    background: #fff;
    border: 2px solid #fff;
}

.subscribe-section__form {
    margin-top: 25px;
}

.checkbox-confirm-wrapper {
    justify-content: left;
}

@media screen and (max-width: 1120px) {
    .subscribe-section {
        background-size: 40%;
    }

    .subscribe-section__title, .subscribe-section__wrap {
        width: 50%;
    }
}

@media screen and (max-width: 991px) {

    .subscribe-section__title {
        width: 100%;
        margin-bottom: 30px;
    }

    .subscribe-section__img {
        height: 56%;
        bottom: 56px;
    }

    .subscribe-section__wrap {
        padding: 30px 0;
    }
}

@media screen and (max-width: 768px) {
    .subscribe-section__img {
        display: none;
    }

    .subscribe-section__title, .subscribe-section__wrap {
        width: 100%;
    }

    .subscribe-section__title {
        margin-bottom: 16px;
    }

    .subscribe-section__wrap {
        padding: 0;
    }
}

@media screen and (max-width: 425px) {
    .subscribe-section__form input[type=submit] {
        width: 100%;
    }
}

/*Форма. Основные стили для инпутов*/
.main-form__input {
    background-color: #F6F6F6;
    padding: 15px 24px;
    border-radius: 30px;
    border: none;
    border: 1px solid #F6F6F6;
}

.main-form__input:focus {
    outline: none !important;
    border-color: var(--orange-color);
}

.main-form__input--white {
    background-color: #fff;
    border-color: #fff;
}

.main-form__floating {
    position: relative;
    width: fit-content;
    border-radius: 30px;
    overflow: hidden;
}

.main-form__floating > .main-form__input::placeholder {
    color: transparent;
}

.main-form__floating label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
    color: #A8A9AD;
    line-height: 120%;

}

.main-form__floating > .main-form__input:focus, .main-form__floating > .main-form__input:not(:placeholder-shown) {
    padding: 20px 24px 10px 24px;
}

.main-form__floating > .main-form__input:focus ~ label, .main-form__floating > .main-form__input:not(:placeholder-shown) ~ label {
    transform: scale(.7) translateY(1px) translateX(0.7rem);
    height: auto;
    padding-top: 10px;
}

.main-form__floating textarea::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
    height: 80%;
    padding-right: 20px;
}

.main-form__floating textarea::-webkit-scrollbar-thumb {
    background-color: #A8A9AD;
    border-radius: 10px;
    padding-right: 20px;
}

.main-form__floating textarea ~ label {
    border-radius: 30px;
}

textarea.main-form__input--white ~ label {
    background-color: #fff;
}

.main-form__floating > textarea:focus ~ label, .main-form__floating > textarea:not(:placeholder-shown) ~ label {
    border-radius: 30px 30px 0 0;
    padding-top: 12px;
    padding-bottom: 2px;
    width: 135%;
    background-color: #F6F6F6;
}

.main-form__box {
    display: flex;
    border: 2px solid #fff;
    border-radius: 30px;
    background-color: #fff;
}

.main-form__box .main-form__floating, .main-form__box .main-form__input {
    width: 100%;
}

.main-form__mark {
    font-style: italic;
    opacity: 0.7;
}

.main-form > *:not(:first-child) {
    margin-top: 8px;
}

.main-form__margin {
    margin-top: 40px !important;
}

@media screen and (max-width: 425px) {
    .main-form__margin {
        margin-top: 25px !important;
    }

    .main-form__box {
        flex-direction: column;
        gap: 16px;
        background-color: transparent;
        border: none;
    }
}

.file-upload__wrap {
    position: relative;
    margin-top: 8px;
}

.file-upload__wrap input[type=file] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}

.file-upload__wrap label {
    max-width: 100%;
    border-radius: 12px;
    cursor: pointer;
    background-color: #f6f6f6;
    padding: 16px 20px;
    transition: .3s;
    overflow: hidden;
    display: block;
}

.file-upload__title {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 36px;
    color: var(--dark-blue-color);
}

.file-upload__text {
    color: #A8A9AD;
}

.file-upload__files {
    padding: 23px 20px;
}

.file-upload__files li {
    display: flex;
    justify-content: space-between;
}

.file-upload__files li:not(:last-child) {
    margin-bottom: 38px;
}

.file-upload__files li .delete-btn {
    cursor: pointer;
    position: relative;
    height: 14px;
    width: 14px;
    transition: .3s;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMUw4IDhNMTUgMTVMOCA4TTggOEwxNSAxTTggOEwxIDE1IiBzdHJva2U9IiMwNDEyMjkiLz4KPC9zdmc+Cg==);
    background-repeat: no-repeat;
    background-size: contain;
}

.file-upload__files li .delete-btn:hover {
    opacity: .7;
}

.alert {
    font-size: 10px;
    text-align: center;
    padding: 10px;
    background-color: #fff3cd;
    border-radius: 10px;
    border: 1px solid #ffecb5;
}

.error-message {
    color: #EE2E3B;
    font-size: 12px;
    margin-top: 8px;
    display: none
}

.form-error .error-message {
    display: block;
}

.form-error input:not([type=submit]), .form-error textarea {
    border-color: #EE2E3B !important;
}