.categories {
    margin-top: 100px;
    padding: 60px 0;
}

.categories h2 {
    text-align: center;
}

.categories .flex {
    display: flex;
}

.categories .flex .left {
    width: 20%;
    border-top: 1px solid #e8eced;
    border-right: 1px solid #e8eced;
}

.categories .flex .right {
    width: 80%;
    border-top: 1px solid #e8eced;
    /* border-right: 1px solid #e8eced; */
}

.categories_link {
    padding: 0;
}

.categories_link a {
    width: 100%;
    display: inline-block;
    padding: 20px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: bold;
}

.categories_link li {
    border-bottom: 1px solid #e8eced;
}

.categories_link li:last-of-type {
    border-bottom: none;
}

.categories .item {
    padding: 30px;
    border-right: 1px solid #e8eced;
    border-bottom: 1px solid #e8eced;
    display: flex;
}

.categories .item h4 {
    font-size: 27px;
    line-height: 1;
    font-weight: bold;
    color: #353642;
}

.categories .item .tags {
    margin-bottom: 10px;
}

.categories .item .tags .tag {
    display: inline-block;
    padding: 7px 15px;
    border: 1px solid #ed3337;
    color: #ed3337;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
}

.categories .item .price {
    display: inline-block;
    font-size: 18px;
    padding: 7px 15px;
    border: 1px solid #ed3337;
    border-radius: 25px;
    font-weight: bold;
    background-color: #ed3337;
    color: #fff;
}

.categories .item .price .sum {
    font-size: 20px;
}

.categories .item p {
    font-size: 16px;
}

.categories .item_right {
    width: 30%;
    flex-shrink: 0;
    border-left: 1px solid #e8eced;
}

.categories .item_right li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e8eced;
    padding: 10px 0;
}

.categories .item_right li:last-of-type {
    border-bottom: none;
}

.categories .item_right li p {
    font-size: 14px;
    margin-bottom: 0;
}

.categories .item_right li .icon,
.categories .item_right li span {
    color: #ed3337;
}

.categories .item .order_btn {
    width: 100%;
    background: #ed3337;
    border: none;
    border-radius: 3px;
    display: inline-block;
    padding: 10px 15px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.categories .item .order_btn .icon {
    display: inline-block;
    margin-right: 5px;
    color: #fff;
}

.mobile_active {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #35374b;
    position: relative;
    z-index: 50;
    display: none;
    border-radius: 15px;
    overflow: hidden;

    p {
        margin-bottom: 0;
        font-size: 20px;
        font-weight: bold;
        color: #fff;
    }

    .button {
        button {
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            width: 40px;
            height: 40px;
            background: #fff;
            color: #35374b;
            font-size: 23px;
            border-radius: 5px;
        }
    }
}

header .navbar {
    z-index: 1112 !important;
}

@media only screen and (max-width: 1024px) {
    .mobile_active {
        display: flex;
    }

    .categories .flex {
        flex-wrap: wrap;
        overflow: hidden;
    }

    .categories .flex .left {
        width: 100%;
        border: 1px solid #e8eced;
    }

    .categories_link_wrapper {
        position: relative;
    }

    .categories_link {
        position: absolute !important;
        z-index: 30;
        top: 100%;
        left: 0;
        transition: all 300ms ease;
        transform: translateY(-100%);
        opacity: 0;
        border-radius: 15px;
        overflow: hidden;

        li {
            border: 1px solid #35374b;
        }

        a {
            background-color: #51536b;
            color: #fff;
            text-align: center;
            font-size: 17px;
        }
    }

    .categories_link.visible {
        transform: translateY(10px);
        opacity: 1;
    }

    .categories .flex .right {
        width: 100%;
        border-left: 1px solid #e8eced;
    }

    .categories .item {
        display: block;
    }

    .categories .item_right {
        width: 100%;
        border-left: 0;
    }

    .categories .item_right ul {
        padding-left: 0;
    }
}

/* Modal */

.modal_order {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(3px);
    z-index: 11111;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 300ms ease;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.9);
}

.modal_order.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.modal_order .content {
    max-width: calc(100% - 30px);
    width: 460px;
    background-color: #fff;
    color: #35374b;
    border-radius: 1rem;
    padding: 30px;
    position: relative;
}

.modal_order .content {
    box-shadow: 0 0 150px rgba(0, 0 , 0, .5);
}

.modal_order .content .close_btn {
    width: 30px;
    height: 30px;
    background-color: #35374b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    vertical-align: bottom;
    border-radius: 5px;
    position: absolute;
    right: -45px;
    top: 0;
    cursor: pointer;
}

.modal_order .content h3 {
    text-align: center;
    font-size: 29px;
    font-weight: bold;
}

.modal_order .content form input {
    border-radius: 10px;
    margin-bottom: 10px;
    display: inline-block;
    padding: 8px 14px;
}

.modal_order .content form input::placeholder {
    font-family: "DM Sans", sans-serif;
}

.modal_order .content form h4 {
    font-size: 18px;
    margin-bottom: 0px;
}

.modal_order .content form input[type=radio] {
    display: inline;
    width: unset;
}

.modal_order .content form .paymethod ul {
    padding-left: 0;
    display: flex;
    justify-content: space-between;
}

.modal_order .content form .paymethod ul li {
    background-color: #35374b;
    width: calc(50% - 7.5px);
    height: 60px;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 10px;
    position: relative;
}

.modal_order .content form .paymethod ul li label {
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    display: flex;

    i {
        display: inline-block;
        margin-right: 5px;
    }

    input {
        display: block;
        margin-right: 3px;
        margin-bottom: 0;
        position: absolute;
        top: 50%;
        left: 25px;
        transform: translate(-50%, -50%);
    }
}

.modal_order .content form .paymethod ul li .span {
    color: #ed3337;
}

.modal_order .content form .paymethod .icon {
    display: inline-block;
    margin-left: 5px;
}

.modal_order .content form .type ul {
    padding-left: 0;
    display: flex;
    justify-content: space-between;
}

.modal_order .content form .type ul li {
    background-color: #35374b;
    width: calc(50% - 7.5px);
    height: 60px;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 10px;
    position: relative;
}

.modal_order .content form .type ul li label {
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    line-height: 1.2;

    input {
        display: block;
        margin-right: 3px;
        margin-bottom: 0;
        position: absolute;
        top: 50%;
        left: 25px;
        transform: translate(-50%, -50%);
    }
}

.modal_order .content form .type ul li .span {
    color: #ed3337;
}

.modal_order .content form .type .icon {
    display: inline-block;
    margin-left: 5px;
}

.modal_order .content form .data-agree {
    margin-bottom: 15px;
}

.modal_order .content form .data-agree input {
    width: unset;
    display: inline-block;
    margin-right: 5px;
}

.modal_order .content form .btn {
    text-align: center;
    width: 100%;
}

.contacts {
    .flex {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;

        .item_left {
            width: 25%;
            margin-bottom: 15px;

            @media only screen and (max-width: 768px) {
                width: 100%;
            }
        }

        .item {
            width: 35%;
            margin-bottom: 30px;

            @media only screen and (max-width: 768px) {
                width: 100%;
            }
        }
    }

    .btn_map {
        display: inline-block;
        padding: 10px 20px;
        background-color: #ed3337;
        color: #fff;
        border-radius: 5px;
    }

    @media only screen and (max-width: 768px) {
        a, p {
            font-size: 14px;
            line-height: 1.2;
        }
    }
}

.modal_order .content form .btn button {
    width: 200px;
    color: #fff;
    background-color: #e12301;
    border: none;
    border-radius: 3px;
    display: inline-block;
    padding: 15px 25px;
    font-size: 14px;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .modal_order .content .close_btn {
        top: -45px;
        right: 0px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .modal_order .content form .paymethod ul li {
        width: calc(50% - 7.5px);
    }
}



/* Modal Call */
.modal_call {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(3px);
    z-index: 11111;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.9);
}

.modal_call.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.modal_call .content {
    max-width: calc(100% - 30px);
    width: 460px;
    background-color: #fff;
    color: #35374b;
    border-radius: 1rem;
    padding: 30px;
    position: relative;
    box-shadow: 0 0 150px rgba(0, 0, 0, 0.5);
}

.modal_call .content .close_btn {
    width: 30px;
    height: 30px;
    background-color: #35374b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 5px;
    position: absolute;
    right: -45px;
    top: 0;
    cursor: pointer;
}

.modal_call .content h3 {
    text-align: center;
    font-size: 29px;
    font-weight: bold;
}

.modal_call .content form input {
    border-radius: 10px;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    padding: 8px 14px;
    box-sizing: border-box;
}

.modal_call .content form input::placeholder {
    font-family: "DM Sans", sans-serif;
}

.modal_call .content form h4 {
    font-size: 18px;
    margin-bottom: 0;
}

.modal_call .content form input[type="radio"] {
    display: inline;
    width: auto;
}

.modal_call .content form .paymethod ul,
.modal_call .content form .type ul {
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    list-style: none;
}

.modal_call .content form .paymethod ul li,
.modal_call .content form .type ul li {
    background-color: #35374b;
    width: calc(50% - 7.5px);
    height: 60px;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 10px;
    position: relative;
}

.modal_call .content form .paymethod ul li label,
.modal_call .content form .type ul li label {
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.modal_call .content form .paymethod ul li label i,
.modal_call .content form .type ul li label i {
    margin-right: 5px;
}

.modal_call .content form .paymethod ul li label input,
.modal_call .content form .type ul li label input {
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translate(-50%, -50%);
    margin: 0;
}

.modal_call .content form .paymethod ul li .span,
.modal_call .content form .type ul li .span {
    color: #ed3337;
}

.modal_call .content form .paymethod .icon,
.modal_call .content form .type .icon {
    display: inline-block;
    margin-left: 5px;
}

.modal_call .content form .data-agree {
    margin-bottom: 15px;
}

.modal_call .content form .data-agree input {
    width: auto;
    display: inline-block;
    margin-right: 5px;
}

.modal_call .content form .btn {
    text-align: center;
    width: 100%;
}

.modal_call .content form .btn button {
    width: 200px;
    color: #fff;
    background-color: #e12301;
    border: none;
    border-radius: 3px;
    padding: 15px 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .modal_call .content .close_btn {
        top: -45px;
        right: 0;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .modal_call .content form .paymethod ul li,
    .modal_call .content form .type ul li {
        width: calc(50% - 7.5px);
    }
}

/* Contacts (оставлено без изменений, если применимо) */
.contacts {
    .flex {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .item_left {
        width: 25%;
        margin-bottom: 15px;
    }

    .item {
        width: 35%;
        margin-bottom: 30px;
    }

    .btn_map {
        display: inline-block;
        padding: 10px 20px;
        background-color: #ed3337;
        color: #fff;
        border-radius: 5px;
    }

    @media only screen and (max-width: 768px) {
        .item_left,
        .item {
            width: 100%;
        }

        a, p {
            font-size: 14px;
            line-height: 1.2;
        }
    }
}


/* Check Ups */

.checkups {
    padding-bottom: 0 !important;
}

.checkups .accordion {
    margin-bottom: 50px;
    box-sizing: border-box;
    width: 100%;
    border: 2px solid #707070;
    border-radius: 11px;

    input {
        display: none;
    }

    label {
        display: flex;
        align-items: center;
        padding: 12px 0;
        user-select: none;
        cursor: pointer;
        transition: all 300ms ease;
        border-bottom: 1px solid #707070;

        .arrow {
            padding: 12px 0;
            width: 60px;
            box-sizing: border-box;
            border-right: 2px solid #353642;
            text-align: center;
            flex-shrink: 0;

            svg {
                transition: all 300ms ease;

                path {
                    transition: all 300ms ease;
                }
            }
        }

        .text {
            padding: 12px;
            font-size: 21px;
            font-weight: bold;
            color: #353642;
            flex-grow: 2;
            position: relative;

            .lesson {
                position: absolute;
                bottom: 0;
                right: 15px;
                font-weight: bold;
                color: #353642;
            }
        }
    }

    .content {
        padding: 0;
        overflow: hidden;
        box-sizing: border-box;
        transition: all 300ms ease;
        padding: 15px;

        ul li {
            font-size: 18px;
            list-style: unset;
        }

        ol {
            display: flex;
            flex-wrap: wrap;
            align-items:self-start;

            & > li {
                width: 50%;
            }
        }
    }

    input:checked ~ label {
        border-color: transparent;

        .arrow svg {
            transform: scaleY(-1);

            path {
                fill: #353642;
            }
        }
    }

    input:checked ~ .content {
        padding: 0 15px;
        height: 0 !important;
    }

    .order_btn {
        width: 100%;
        background: #ed3337;
        border: none;
        border-radius: 3px;
        display: block;
        padding: 10px 15px;
        color: #fff;
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 15px;
    }
}

.sm-small {
    width: 400px !important;
    max-width: 100% !important;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    .checkups .accordion label .text  {
        font-size: 18px;
        padding: 8px 12px;
    }
    .checkups .accordion label .text .lesson {
        display: block;
        position: static;
        font-size: 16px;
    }

    .checkups .accordion label {
        padding: 0;
    }

    .checkups {
        padding-top: 50px !important;
        padding-bottom: 0 !important;
    }

    .checkups .accordion {
        margin-bottom: 20px;
    }

    .checkups .accordion {
        .content {
            li {
                width: 100% !important;
            }
        }
    }

    .sm-small {
        width: 100% !important;
    }
}

.navbar-full-screen-menu-inner {
    background: rgba(53, 54, 66, .85) !important;
    backdrop-filter: blur(4px) !important;

    .nav-item {
        text-align: center;

        a {
            font-size: 24px;
            font-weight: bold !important;
        }
    }
}

.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 111 !important;
    background-color: #fff !important;
}

.tabs {
    margin-top: 150px;
    margin-bottom: 30px;

    @media only screen and (max-width: 768px) {
        margin-top: 100px;
    }

    @media only screen and (max-width: 1200px) {
        .container {
            max-width: 100% !important;
        }
    }

    h2 {
        font-size: 35px;
        line-height: 1.4;
    }

    .tab_buttons_controller {
        display: none;
        align-items: center;
        justify-content: space-between;
        background-color: #35374b;
        border-radius: 15px;
        padding: 15px;
        
        @media only screen and (max-width: 768px) {
            display: flex;
        }

        h4 {
            margin-bottom: 0;
            color: #fff;
            font-size: 23px;
            font-weight: bold;
            line-height: 1;
        }

        .tab_buttons_opener {
            border-radius: 5px;
            background-color: #fff;
            color: #35374b;
            width: 45px;
            height: 45px;
            border: none;
            font-size: 21px;
            cursor: pointer;
        }
    }

    .pos {
        position: relative;
        margin-bottom: 15px;
    }

    .tab_buttons {
        margin: 0 auto;
        background-color: #35374b;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        overflow: hidden;
        padding: 0 25px;
        margin-bottom: 30px;

        .whitespace {
            white-space: nowrap;
        }

        @media only screen and (max-width: 768px) {
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            transition: all 300ms ease;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);

            &.active_sm {
                opacity: 1;
                visibility: visible;
                transform: translateY(0px);
            }
        }

        button {
            background-color: transparent;
            color: #fff;
            border: none;
            padding: 20px 15px;
            flex-grow: 1;
            position: relative;

            &:after {
                content: "";
                width: calc(100% - 30px);
                position: absolute;
                height: 3px;
                border-radius: 3px;
                background-color: #fff;
                left: 50%;
                transform: translateX(-50%);
                bottom: 0px;
                opacity: 0;
                transition: all 300ms ease;
            }

            &:hover::after {
                bottom: 5px;
                opacity: .8;
            }

            &.active::after {
                opacity: 1;
                bottom: 8px;
            }
        }
    }

    .tab_content {
        background-color: #f1f1f1;
        color: #35374b;
        padding: 30px;
        border-radius: 30px;

        .img {
            width: 300px;
            float: right;
            margin-left: 15px;
            margin-bottom: 5px;

            @media only screen and (max-width: 768px) {
                width: 160px;
                float: right;
            }

            img {
                border-radius: 10px;
            }
        }
        
        .tab {
            display: none;

            &.active {
                display: block;
            }
        }

        h4 {
            font-size: 1.375rem;
            line-height: 1.4;
            margin-bottom: 20px;
            font-weight: bold;
        }

        ul {
            li {
                margin-bottom: 20px;
                list-style: unset !important;
            }
        }
    }

    .swiper-wrapper {
        padding-bottom: 70px;
    }

    .swiper-pagination-bullet-active {
        background-color: #35374b;
        color: #ed3337;
    }

    .row {
        justify-content: space-around;
    }

    .team_item {
        text-align: center;
        width: 35%;
        margin-bottom: 30px;

        @media only screen and (max-width: 768px) {
            width: 50%;
            padding: 0;
        }

        .img {
            width: 150px;
            height: 150px;
            background-size: cover;
            background-position: center center;
            margin: 0 auto;
            border-radius: 50%;
            margin-bottom: 15px;
            float: none;
        }

        .name {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 10px;
            padding: 0 35px;
            line-height: 1.4;

            @media only screen and (max-width: 768px) {
                padding: 0;
                font-size: 18px;
            }

        }

        .position {
            font-size: 15px;
            font-weight: 400;
        }

        .item_flex {
            display: flex;
            align-items: center;
            justify-content: space-around;
        }

        .experience {
            color: #ed3337;
            font-weight: bold;
        }

        .degree {
            font-weight: bold;
        }

        .graduated {
            font-size: 14px;
            font-weight: bold;
        }

        p {
            margin-bottom: 5px;
        }

        h4 {
            margin-bottom: 10px;
        }
    }

    .about_logos {
        display: flex;
        align-items: flex-end;
        margin-bottom: 50px;

        @media only screen and (max-width: 768px) {
            margin-bottom: 20px;
        }

        div {
            width: 50%;
            padding: 0 15px;
            text-align: center;

            p {
                text-align: center;
                margin-bottom: 0;
                margin-top: 15px;

                @media only screen and (max-width: 768px) {
                    line-height: 1;
                    font-size: 14px;
                }
            }

            img {
                width: 350px;
            }
        }
    }
}

.table {
    .thead,
    .item {
        display: flex;
        align-items: center;
        border-radius: 15px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .item.even  {
        background-color: #35374b29;
    }

    .full {
        padding: 15px;
        text-align: center;
        font-size: 25px;
        font-weight: bold;
    }

    .thead {
        background-color: #35374b;
        color: #fff;
        border-radius: 15px;
        text-align: center;

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

    .type {
        width: 50%;
        padding: 10px 15px;
        flex-shrink: 0;

        @media only screen and (max-width: 768px) {
            width: 80%;
        }
    }

    .count {
        width: 10%;
        padding: 10px 15px;
        flex-shrink: 0;
        text-align: center;

        @media only screen and (max-width: 768px) {
            width: 20%;
        }
    }

    .name {
        width: 35%;
        flex-shrink: 0;
        padding: 10px 15px;
        text-align: center;

        @media only screen and (max-width: 768px) {
            width: 50%;
            text-align: left;
        }
    }

    .sn {
        width: 25%;
        padding: 10px 15px;
        flex-shrink: 0;
        text-align: center;

        @media only screen and (max-width: 768px) {
            width: 50%;
            text-align: left;
        }
    }
}

.advantages {

    h2 {
        text-align: center;
        margin-bottom: 70px;
    }

    .item {
        text-align: center;

        .icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto;
            border: 3px solid #35374b;

            display: flex;
            align-items: center;
            justify-content: center;
            color: #35374b;
            font-size: 30px;
        }

        h4 {
            font-size: 20px;
            font-weight: bold;
            color: #35374b;
            margin-top: 20px;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        p {
            font-size: 14px;
            line-height: 1.6;
        }
    }
}

.show-sm {
    display: none;
}

@media only screen and (max-width: 768px) {
    .hide-sm {
        display: none !important;
    }

    .show-sm {
        display: block;
    }

    h2 {
        font-size: 2.438rem !important;
    }

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

.feature-box {
    background-color: #fff !important;
    box-shadow: 0 0 15px rgba(0, 0 , 0, .2);
    color: #35374b !important;
    border-radius: 20px !important;
    padding: 30px 30px !important;
    height: 100%;

    .feature-box-tag {
        color: #fff;
        background-color: #ed3337;
        display: block;
    }

    .feature-box-content {
        display: flex;
        flex-direction: column;
    }

    .feature-box-icon {
        display: none !important;
    }

    .feature-box-title {
        width: 100%;
        display: block;
        margin-bottom: 15px;
        padding-right: 130px;
    }

    .feature-box-flex {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }

    .feature-box-count {
        font-size: 15px;
        text-align: right;
        color: #35374b;
        font-weight: bold;
        line-height: 1.5;
    }
}

.thankyou {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 15px;
    text-align: center;

    .thankyou-logo {
        width: 200px;
        margin-bottom: 50px;
    }

    h2 {
        font-weight: bold;
    }
}

.btn-primary {
    background-color: #35374b;
    border-radius: 5px;
    display: inline-block;
    padding: 15px 15px;
    font-size: 16px;
    color: #fff;
    border: none;
}

.btn-red {
    display: inline-flex;
    width: 55px;
    height: 55px;
    border: none;
    background-color: #ed3337;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 0;
    color: #fff;
    font-size: 20px;
    margin-left: 5px;

    i {
        margin-left: 0;
    }
}

.pulse-white {
    -webkit-animation: pulse-white 2s linear infinite;
    animation: pulse-white 2s linear infinite;
    padding: 15px !important;
    display: inline-block;
    background-color: #35374b !important;
    color: #fff !important;
    border-radius: 5px;
}

@keyframes pulse-white {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(53, 55, 75, .8);
        box-shadow: 0 0 0 0 rgba(53, 55, 75, .8)
    }

    40% {
        -webkit-box-shadow: 0 0 0px 5px rgba(53, 55, 75, .5);
        box-shadow: 0 0 0px 5px rgba(53, 55, 75, .5)
    }

    80% {
        -webkit-box-shadow: 0 0 3px 10px rgba(53, 55, 75, 0);
        box-shadow: 0 0 3px 10px rgba(53, 55, 75, 0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(53, 55, 75, 0);
        box-shadow: 0 0 0 0 rgba(53, 55, 75, 0)
    }
}

.cart_pulse {
    -webkit-animation: cart-pulse 2s linear infinite;
    animation: cart-pulse 2s linear infinite;
}

@keyframes cart-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(237, 51, 55, 0.8);
        box-shadow: 0 0 0 0 rgba(237, 51, 55, 0.8);
    }
    
    40% {
        -webkit-box-shadow: 0 0 0px 3px rgba(237, 51, 55, 0.5);
        box-shadow: 0 0 0px 3px rgba(237, 51, 55, 0.5);
    }
    
    80% {
        -webkit-box-shadow: 0 0 0px 5px rgba(237, 51, 55, 0);
        box-shadow: 0 0 0px 5px rgba(237, 51, 55, 0);
    }
    
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(237, 51, 55, 0);
        box-shadow: 0 0 0 0 rgba(237, 51, 55, 0);
    }
}

.navbar .lang {
    margin-left: 10px;
    margin-right: 30px;
    position: relative;
    margin-left: auto;
    display: flex;
    align-items: center;
    margin-right: 15px !important;
}
  
@media screen and (max-width: 768px) {
    .navbar .lang {
      margin-right: 0;
    }
}
  
.navbar .lang input {
    display: none;
}
  
.navbar .lang input:checked ~ label i {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
}
  
.navbar .lang input:checked ~ .langs {
    visibility: visible;
    -webkit-transform: translateX(-50%) translateY(-5px);
            transform: translateX(-50%) translateY(-5px);
    opacity: 1;
}
  
.navbar .lang label {
    color: #35374b;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}
  
.navbar .lang label i {
    display: inline-block;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    margin-left: 3px;
    color: #35374b;
}
  
.navbar .lang .langs {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-10px);
            transform: translateX(-50%) translateY(-10px);
    background-color: #35374b;
    padding: 10px;
    border-radius: 5px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    z-index: 1111;
    height: 40px;
}

header .navbar [class*=col-] {
    align-items: center;
}

.navbar .lang .langs ul {
    padding: 0;
}

.navbar .lang .langs * {
    line-height: 1 !important;
}
  
.navbar .lang .langs li {
    margin-right: 0;
}
  
.navbar .lang .langs::before {
    content: "";
    position: absolute;
    border: 5px solid transparent;
    border-bottom: 5px solid #2c2152;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -10px;
}
  
.navbar .lang .langs a {
    font-size: 15px;
    letter-spacing: 2px;
    color: inherit;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

/* Cart */


.navbar .cart {
    margin-right: 15px;
    position: relative;
}
  
.navbar .cart:hover .cart_content {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}
  
@media screen and (max-width: 768px) {
    .navbar .cart:hover .cart_content {
      visibility: hidden;
      opacity: 0;
    }
    .navbar .cart {
        margin-right: 0;
    }
}
  
.navbar .cart .cart_icon {
    position: relative;
    width: 25px;
    cursor: pointer;
}
  
.navbar .cart .cart_icon .num {
    position: absolute;
    top: 0;
    right: 5px;
    width: 15px;
    height: 15px;
    background-color: #e12301;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    visibility: hidden;
    opacity: 0;
}
  
.navbar .cart .cart_icon .num.show {
    visibility: visible;
    opacity: 1;
}
  
.navbar .cart .cart_icon svg {
    vertical-align: middle;
}
  
.navbar .cart .cart_content {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 3px 25px rgba(0, 0, 0, 0.12);
            box-shadow: 0 3px 25px rgba(0, 0, 0, 0.12);
    padding: 25px;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    max-height: 70vh;
    overflow-y: auto;
}
  
.navbar .cart .cart_content .close_btn {
    position: absolute;
    top: 17px;
    right: 25px;
    color: #000;
    font-size: 30px;
    cursor: pointer;
}
  
@media screen and (max-width: 768px) {
    .navbar .cart .cart_content {
      position: fixed;
      width: 100%;
      height: 100vh;
      left: 0;
      top: 0;
      -webkit-transform: translateY(0);
              transform: translateY(0);
      padding-top: 50px;
      z-index: 333;

      max-height: 100vh;
      overflow-y: auto;    
    }
}
  
.navbar .cart .cart_content.active {
    visibility: visible;
    opacity: 1;
}
  
.navbar .cart .cart_content .hide {
    display: none !important;
}
  
.navbar .cart .cart_content .btn {
    text-align: center;
    margin: 0 auto;
    margin-top: 15px;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.navbar .cart .cart_content .empty {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
  
.navbar .cart .cart_content .empty p {
    text-align: center;
}
  
.navbar .cart .cart_content .item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
  
.navbar .cart .cart_content .item .title {
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 15px;
}
  
.navbar .cart .cart_content .item .summa {
    line-height: 1;
    font-weight: bold;
}
  
.navbar .cart .cart_content .total {
    margin-top: 15px;
    text-align: center;
}
  
.navbar .cart .cart_content .total h4 {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.4;
}

.navbar .cart .cart_content .total p {
    font-weight: bold;
    text-align: center;
}

.alert {
    position: fixed;
    bottom: 30px;
    right: 0;
    background-color: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    font-weight: bold;
    width: 350px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    z-index: 160;

    p {
        margin-bottom: 0;
    }
}
@media screen and (max-width: 768px) {
    .alert {
      text-align: center;
      -webkit-transform: translateX(50%) translateY(150px);
      transform: translateX(50%) translateY(150px);
      right: 50%;
    }
}
.alert.show {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
}
@media screen and (max-width: 768px) {
    .alert.show {
      -webkit-transform: translateX(50%) translateY(0px);
      transform: translateX(50%) translateY(0px);
    }
}

.study {
    color: #000;
    margin-bottom: 50px;
    margin-top: 150px;

    @media only screen and (max-width: 768px) {
        margin-bottom: 0px;
    }

    h4 {
        font-weight: bold;
    }

    h5 {
        font-weight: bold;
    }

    ul li {
        list-style: unset;
    }

    p:last-of-type {
        margin-bottom: 0;
    }
}

.study {
    overflow: hidden;

    h4 {
        @media only screen and (max-width: 768px) {
            font-size: 20px;
            line-height: 1.4;
        }
    }

    .img {
        width: 300px;
        float: right;
        margin-left: 15px;
        margin-bottom: 5px;

        @media only screen and (max-width: 768px) {
            width: 160px;
            float: right;
        }

        img {
            border-radius: 10px;
        }
    }

    .item .order_btn {
        width: 100%;
        background: #ed3337;
        border: none;
        border-radius: 3px;
        display: inline-block;
        padding: 10px 15px;
        color: #fff;
        font-size: 14px;
        font-weight: bold;
        margin-top: 15px;
    }

    .item {
        padding: 30px;
        box-shadow: 0 0 10px rgba(0, 0, 0, .1);
        background-color: #fff;
        border-radius: 18px;
        user-select: none;
        margin-bottom: 30px;

        &:last-of-type {
            margin-bottom: 0;
        }

        ol {
            display: flex;
            flex-wrap: wrap;

            li {
                width: 50%;
            }
        }
    }

    @media only screen and (max-width: 768px) {
        .item {
            padding: 30px;
            font-size: 14px;
        }

        .swiper-button-next, .swiper-button-prev {
            top: 40vh;
        }
    }
}

.mt100 {
    margin-top: 150px;
}

.certificates {
    margin-bottom: 30px;
    background-color: #35374b;
    padding: 50px 0;

    .swiper-pagination-bullet-active {
        background-color: #35374b;
    }

    .flex {
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;

        @media only screen and (max-width: 768px) {
            justify-content: space-between;
        }
    }

    .item {
        width: 25%;
        
        img {
            border-radius: 6px;
        }

        @media only screen and (max-width: 768px) {
            width: calc(50% - 15px);
            margin-bottom: 30px;
        }
    }
}

.pics {
    .content {
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .img {
        width: calc(25% - 15px) !important;

        @media only screen and (max-width: 768px) {
            width: calc(50% - 7.5px) !important;
            margin-bottom: 30px !important;
            margin-left: 0 !important;
        }

        img {
            border-radius: 5px;
            box-shadow: 0 0 15px rgba(0, 0, 0, .2);
        }
    }
}

.gallery {
    background-color: #35374b;
    padding-bottom: 40px;
    margin-bottom: 30px;

    .swiper-wrapper {
        padding-bottom: 50px;
    }

    .swiper-pagination-bullets {
        bottom: 0;
    }

    .swiper-pagination-bullet-active {
        background-color: #fff;
    }

    .item {
        img {
            border-radius: 10px;
        }
    }
}

.zoom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 11111;
    box-shadow: inset 0 0 0 200vh rgba(0, 0, 0, .4);

    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 1;
    transition: all 300ms ease;

    &.active {
        visibility: visible;
        opacity: 1;
    }

    .img {
        width: 1000px;
        position: relative;
        padding: 30px;

        img {
            border-radius: 5px;
        }

        .close_btn {
            position: absolute;
            right: 0;
            top: 0;
            transform: translateX(50px)  translateY(-20px);
            color: #35374b;
            background-color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            vertical-align: bottom;
            cursor: pointer;
            border: none;

            @media only screen and (max-width: 768px) {
                bottom: -50px;
                top: auto;
                width: 150px;
                right: auto;
                left: 50%;
                height: 50px;
                font-size: 30px;
                transform: translateX(-50%)  translateY(0px);
            }
        }
    }
}

.btn_zoom {
    cursor: pointer;
}