/*Меню раздела*/
.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: 22px !important;
    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);
}

.section-menu--md .section-menu__item:not(:last-child){
    margin-right: 27px;
}

@media screen and (max-width: 1024px){
    .section-menu__item{
        margin-right: 20px;
    }
    .section-menu--desktop{
        display: none;
    }
}
@media screen and (max-width: 768px){
    .section-menu{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/*Выпадающий список*/
.dropdown{
    width: fit-content;
    position: relative;
}
.dropdown__btn{
    background-color: #F6F6F6;
    padding: 15px 76px 15px 25px;
    color: var(--dark-blue-color);
    border: none;
    border-radius: 32px;
    position: relative;
    transition: .3s;
    text-align: left;
}
.dropdown__btn::before{
    content: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xLjY2NjYzIDEuMzMzMjVMNC45OTk5NiA0LjY2NjU5TDguMzMzMjkgMS4zMzMyNSIgc3Ryb2tlPSIjMDQxMjI5IiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=');
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}
.dropdown__btn:hover{
    background-color: #DADDE7;
}
.dropdown__wrap{
    background-color: #F6F6F6;
    border-radius: 12px;
    width: 100%;
    position: absolute;
    top: 100%;
    margin-top: 8px;
    z-index: 10;
    display: none;
    overflow: hidden;
    padding-right: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.dropdown__wrap-inner{
    position: relative;
    max-height: 130px;
    overflow-y: auto;
}
.dropdown__wrap-inner::-webkit-scrollbar{
    width: 5px;
    background-color: transparent;
}
.dropdown__wrap-inner::-webkit-scrollbar-thumb{
    background: rgba(4, 18, 41, .3);
}

.dropdown__wrap.show{
    display: block;
}
.dropdown__item input{
    display: none;
}
.dropdown__item label, .dropdown__link{
    font-size: 15px;
    line-height: 140%;
    padding: 8px 25px;
    transition: .3s;
    cursor: pointer;
    display: block;
}
.dropdown__item.disable label, .dropdown__item input:checked~label, .dropdown__link--current{
    color: #A8A9AD;
    pointer-events: none;
}
.dropdown__item:not(.disable):hover label, .dropdown__link:not(.dropdown__link--current):hover{
    background-color: #DADDE7;
}
.dropdown__item:hover input:checked~label{
    background-color: transparent;
}

@media screen and (max-width:1024px) {
    .main-filter__item .dropdown{
        width: 100%;
    }
    .main-filter__item .dropdown__btn{
        background: none;
        padding: 0 25px 0 0;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
    }
    .main-filter__item .dropdown__btn::before{
        right: 10px;
        transition: .3s;
    }
    .main-filter__item .dropdown__btn[aria-expanded="true"]::before{
        transform: scale(-1) translateY(50%);
    }
    .main-filter__item span[data-role="currentVal"]{
        display: none;
    }
    .main-filter__item .dropdown__wrap{
        position: relative;
        padding: 0;
        background: none;
        border-radius: 0;
        margin-top: 20px;
    }
    .main-filter__item .dropdown__wrap-inner{
        max-height: none;
    }
    .main-filter__item .dropdown__item{
        margin-bottom: 16px;
    }
    .main-filter__item .dropdown__item label{
        display: inline-block;
        cursor: pointer;
        position: relative;
        padding: 0 0 0 25px;
        margin-right: 0;
        font-size: 14px;
        line-height: 18px;
        user-select: none;
    }
    .main-filter__item .dropdown__item label::after, .main-filter__item .dropdown__item label::before{
        content: "";
        display: inline-block;
        position: absolute;
        border-radius: 50%;
    }
    .main-filter__item .dropdown__item label::after {
        width: 10px;
        height: 10px;
        left: 3px;
        bottom: 4px;
    }
    .main-filter__item .dropdown__item label::before {
        width: 16px;
        height: 16px;
        left: 0;
        bottom: 1px;
        border: 1px solid var(--dark-blue-color);
        transition: .3s;
    }
    .main-filter__item .dropdown__item input[type=radio]:checked + label::before, .main-filter__item .dropdown__item label:hover::before {
        border-color: var(--orange-color);
    }
    .main-filter__item .dropdown__item input[type=radio]:checked + label::after {
        background-color: var(--orange-color);
    }
    .main-filter__item .dropdown__item input:checked~label{
        color: var(--dark-blue-color);
    }
}

@media screen and (max-width:425px) {
    .dropdown__wrap-inner{
        max-height: none;
    }
}

@media screen and (min-width:1025px) {
    .dropdown--mobile{
        display: none;
    }
}

.dropdown--section{
    width: 50%;
    margin-bottom: 24px;
    margin-top: 8px;
}
.dropdown--section .dropdown__btn{
    width: 100%;
}
.dropdown--section .dropdown__wrap-inner{
    max-height: 200px;
}
@media screen and (max-width:768px){
    .dropdown--section{
        width: 100%;
    }
    .dropdown--section .dropdown__wrap-inner{
        max-height: 350px;
    }
}

.sub-list{
    padding-left: 25px;
}
.sub-list__link{
    font-size: 12px;
    line-height: normal;
}


/*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;
}

@media screen and (max-width:576px) {
    .heroblock__content .button{
        width: 100%;
    }
    .heroblock__content h1 br, .heroblock__content h2 br, .heroblock__content p br, .heroblock__content .text-large br{
        display: none;
    }
}


/*информация о работе компании*/
.company-info__title{
    margin-bottom: 40px;
}
.company-info__list{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.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 (max-width:768px) {
    .company-info__list {
        gap: 0px;
    }
    .company-info__item {
        width: calc(50% - 12px);
        margin-bottom: 24px;
        text-align: center;
    }
    .company-info__img{
        height: 120px;
        width: 120px;
        margin-inline: auto;
    }
}
@media screen and (max-width:500px) {
    .company-info__item {
        width: 100%;
        display: flex;
        text-align: left;
    }
    .company-info__item--align{
        align-items: center;
    }
    .company-info__img{
        height: 100px;
        width: 100px;
        margin: 0;
    }
    .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;
    }
}
@media screen and (min-width: 1280px) {
    .company-info__list--middle .company-info__item {
        width: calc(19% - 12px);
    }

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

    .company-info__list--middle .company-info__content {
        font-size: 14px;
        margin-top: 24px;
    }
}

/*Направления*/
.directions-list__item:not(:last-child){
    margin-bottom: 120px;
}
.direction-card{
    display: flex;
    gap: 24px;
    height: fit-content;
}
.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 (min-width:601px){
    .direction-card__img{
        max-height: 500px;
    }
}
@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;
    }
    .direction-card__img{
        max-width: unset;
        height: 250px;
    }
    .direction-card__link:not(.button){
        display: none;
    }
    .direction-card__title br{
        display: none;
    }
}
.direction-card__links{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
}

/*Карточки со страницами*/
.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;
    }
}

@media screen and (max-width:425px) {
    .other-pages__link:not(.button){
        display: none;
    }
}

/*блок с вопросом*/
.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%;
    }
}


/*Ссылки*/
.links-section {
    padding-bottom: 20px;
    margin-bottom: 20px;
    overflow-x: auto;
}

.links-section::-webkit-scrollbar {
    height: 5px;
}

.links-section::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.links-section::-webkit-scrollbar-thumb {
    background: #adaaaa;
    border-radius: 4px;
}

.links-section__row {
    display: flex;
    gap: 16px;
}

.links-section__row:not(:last-child) {
    margin-bottom: 16px;
}

.links-section__item {
    white-space: nowrap;
    min-width: fit-content;
}

.links-section__item:not(.links-section__item--all) {
    color: var(--dark-blue-color);
    border-color: var(--dark-blue-color);
}

.links-section__item--all {
    color: var(--orange-color);
    pointer-events: none;
}

.links-section__item:hover {
    color: #fff;
    border-color: var(--light-orange-color);
}

/*Карточка сотрудника*/
.managment-slider__wrapper,
.managment-slider__item {
    height: fit-content;
}

.managment-card {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-direction: column;
}

.managment-card--left {
    align-items: flex-start;
}

.managment-card__img {
    width: 360px;
    height: 308px;
    object-fit: cover;
    max-width: 100%;
}

.managment-card__body {
    text-align: center;
}

.managment-card--left .managment-card__body {
    text-align: left;
}

.managment-card__title {
    margin-bottom: 8px;
}

.managment-card__title::selection {
    background: none !important;
}

.managment-card__title::-moz-selection {
    background: none !important;
}

.managment-card__text {
    margin-top: 24px;
}

.managment-card--horizontal:not(:last-child) {
    margin-bottom: 24px;
}

.managment-card--slide .managment-card__img {
    width: 100%;
    height: 360px;
}

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

@media screen and (max-width: 768px) {
    .managment-card--horizontal .managment-card__img {
        width: 250px;
        height: 200px;
    }
}

@media screen and (max-width: 660px) {
    .managment-card__img {
        object-fit: contain;
    }
}

@media screen and (min-width: 560px) {
    .managment-card--horizontal {
        text-align: left;
        flex-direction: row;
    }

    .managment-card--horizontal .managment-card__body {
        text-align: left;
    }
}

@media screen and (max-width: 425px) {
    .managment-card--horizontal .managment-card__img {
        width: 100%;
        height: auto;
    }

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

/*Правила посещения*/
.numeric-list__item {
    margin-bottom: 40px;
}
.numeric-list__title span {
    font-weight: 500;
    font-size: 19px;
    color: var(--blue-color);
    margin-right: 16px;
}

@media screen and (min-width:1025px) {
    .numeric-list{
        width: 85%;
    }
}
@media screen and (max-width:1024px) {
    .numeric-list__item {
        margin-bottom: 24px;
    }
}

@media screen and (min-width:700px) {
    .rules-grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 24px;
        align-items: center;
    }

    .rules-grid__item:first-child { grid-area: 1 / 1 / 2 / 2; }
    .rules-grid__item:nth-child(2) { grid-area: 2 / 1 / 6 / 2; }
    .rules-grid__item:nth-child(3) { grid-area: 1 / 2 / 6 / 3; }
}

@media screen and (min-width:700px) and (max-width:1024px) {
    .rules-grid__item:first-child { grid-area: 1 / 1 / 2 / 3; }
    .rules-grid__item:nth-child(2) { grid-area: 2 / 1 / 5 / 2; }
    .rules-grid__item:nth-child(3) { grid-area: 2 / 2 / 5 / 3; }
}

.w-100{
    width: 100%;
}

/*Товары*/
.product-card{
    display: block;
    padding: 24px;
    background-color: #fff;
    border: 1px solid #DADDE7;
    transition: .3s;
    height: 100%;
}
.product-card:hover{
    border-color: var(--orange-color);
}
.product-card__img{
    position: relative;
    padding-bottom: 100%;
}
.product-card__img img{
    position: absolute;
    width: 100%;
    height: 100%;
}
.product-card__labels{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: flex;
    gap: 8px;
}
.product-card__label{
    font-weight: 400;
    font-size: 14px;
    background-color: #fff;
    color: var(--orange-color);
    padding: 6px 8px;
    border: 1px solid #DADDE7;
}
.product-card__content{
    margin-top: 24px;
}
.product-card__title{
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
}
.product-card__link{
    margin-top: 24px;
}

.swiper-slide{
    height: unset !important;
}

@media screen and (min-width:641px) {
    .sales-slider .swiper-pagination--general{
        display: none;
    }
}
@media screen and (max-width:640px) {
    .sales-slider .slider-head__nav{
        display: none;
    }
}


/*Новости*/
.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;
}

.news-button {
    margin: 24px auto 0 auto;
    background-color: transparent;
    color: var(--orange-color);
}

@media screen and (min-width:641px) {
    .news-button {
        display: none;
    }
}

@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--tolist .news-slider__item:not(:first-child, :nth-child(2)) {
        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;
    }
}

@media screen and (min-width:1025px) {
    .news-card--small .news-card__labels{
        top: 8px;
        right: 8px;
    }
}
.news-card--small .news-card__title, .news-card--small .news-card__subtitle{
    width: 100%;
}

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