﻿/* section1 */
.back-titr {
    position: relative;
    height: 400px;
}

    .back-titr > div {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
    }

        .back-titr > div:not(:last-child) {
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
        }

            .back-titr > div:not(:last-child).active {
                visibility: visible;
                opacity: 1;
                z-index: 1;
            }

    .back-titr > #bgequipment {
        background: url('/images/home/sec1/equipment.webp') no-repeat #41033b;
    }

    .back-titr > #bgsoftware {
        background: url('/images/home/sec1/software.webp') no-repeat #41033b;
    }

    .back-titr > #bgdoctor {
        background: url('/images/home/sec1/doctor.webp') no-repeat #41033b;
    }

    .back-titr > .bgfront > div {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 50%;
        color: #fff;
        background-color: rgba(50, 31, 0, 0.7);
        z-index: 4;
    }

        .back-titr > .bgfront > div > div {
            position: relative;
            display: flex;
            justify-content: center;
            width: 960px;
            max-width: 100%;
            height: 100%;
        }

    .back-titr > .bgfront ul:nth-child(1) {
        position: absolute;
        display: flex;
        flex-direction: row;
        top: -40px;
        width: 100%;
    }

        .back-titr > .bgfront ul:nth-child(1) > li {
            display: flex;
            width: 25%;
            justify-content: center;
        }

            .back-titr > .bgfront ul:nth-child(1) > li > span {
                position: relative;
                display: flex;
                justify-content: center;
                width: 80px;
                height: 40px;
                background-color: rgba(0, 0, 0, 0.4);
                border-top-left-radius: 45px;
                border-top-right-radius: 45px;
            }

            .back-titr > .bgfront ul:nth-child(1) > li button {
                position: absolute;
                display: flex;
                justify-content: center;
                align-items: center;
                top: 10px;
                left: 10px;
                width: 60px;
                height: 60px;
                fill: #fff;
                color: #fff;
                background-color: transparent;
                border: solid 2px #fff;
                border-radius: 100%;
                cursor: pointer;
            }

            .back-titr > .bgfront ul:nth-child(1) > li svg + span {
                position: absolute;
                white-space: nowrap;
            }

            .back-titr > .bgfront ul:nth-child(1) > li:not(:last-child) button {
                transition: all 0.2s ease-in-out;
            }

            .back-titr > .bgfront ul:nth-child(1) > li button > span {
                transition: none;
                color: inherit;
            }

            .back-titr > .bgfront ul:nth-child(1) > li button svg,
            .back-titr > .bgfront ul:nth-child(1) > li button span {
                pointer-events: none;
            }

            .back-titr > .bgfront ul:nth-child(1) > li button.active,
            .back-titr > .bgfront ul:nth-child(1) > li:last-child button:active {
                border: solid 2px var(--clrorange);
                color: var(--clrorange);
                fill: var(--clrorange);
                background-color: #fff;
            }

            .back-titr > .bgfront ul:nth-child(1) > li:last-child button > span {
                display: flex;
                justify-content: center;
            }

            .back-titr > .bgfront ul:nth-child(1) > li:nth-child(1) button svg:nth-child(1),
            .back-titr > .bgfront ul:nth-child(1) > li:nth-child(4) button svg:nth-child(1) {
                width: 37px;
            }

            .back-titr > .bgfront ul:nth-child(1) > li:nth-child(2) button svg:nth-child(1) {
                height: 34px;
            }

            .back-titr > .bgfront ul:nth-child(1) > li:nth-child(3) button svg:nth-child(1) {
                height: 41px;
            }

            .back-titr > .bgfront ul:nth-child(1) > li svg + span {
                color: inherit;
                padding-top: 10px;
                top: 56px;
            }

    .back-titr > .bgfront ul:nth-child(2) {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        margin: 40px calc(12.5% - 50px) 0 calc(12.5% - 50px);
    }

        .back-titr > .bgfront ul:nth-child(2) > li {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 2rem;
        }

            .back-titr > .bgfront ul:nth-child(2) > li:nth-child(1) {
                display: none;
                width: 39.5px;
            }

                .back-titr > .bgfront ul:nth-child(2) > li:nth-child(1) button {
                    border: none;
                    background-color: transparent;
                }

            .back-titr > .bgfront ul:nth-child(2) > li > div {
                position: relative;
                width: 100%;
            }

                .back-titr > .bgfront ul:nth-child(2) > li > div input {
                    border-radius: 4rem;
                    height: 42px;
                }

            .back-titr > .bgfront ul:nth-child(2) > li:nth-child(4) {
                flex: 1;
            }

                .back-titr > .bgfront ul:nth-child(2) > li:nth-child(4) .btn-search-titr {
                    position: absolute;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    top: 2px;
                    width: 38px;
                    height: 38px;
                    color: var(--clrorange);
                    border-radius: 100%;
                    cursor: pointer;
                    transition: background-color 0.3s ease-in-out color 0.3s ease-in-out;
                }

html:not(.translated-ltr) > body .back-titr > .bgfront ul:nth-child(2) > li:nth-child(4) .btn-search-titr {
    left: 2px;
}

html[class=translated-ltr] > body .back-titr > .bgfront ul:nth-child(2) > li:nth-child(4) .btn-search-titr {
    right: 2px;
}

.back-titr > .bgfront ul:nth-child(2) > li:nth-child(4) .btn-search-titr:hover {
    background-color: var(--clrorange);
    color: #fff;
}

html:not(.translated-ltr) > body .back-titr > .bgfront ul:nth-child(2) > li:not(:last-child) {
    padding-left: 0.75rem;
}

html[class=translated-ltr] > body .back-titr > .bgfront ul:nth-child(2) > li:not(:last-child) {
    padding-right: 0.75rem;
}

html:not(.translated-ltr) > body .back-titr > .bgfront ul:nth-child(2) > li:nth-child(1) .fa-map-marker-alt {
    margin-left: 5px;
}

html[class=translated-ltr] > body .back-titr > .bgfront ul:nth-child(2) > li:nth-child(1) .fa-map-marker-alt {
    margin-right: 5px;
}

.back-titr > .bgfront ul:nth-child(2) > li:nth-child(1) .fa-map-marker-alt {
    color: #fff;
    font-size: 30px !important;
    cursor: pointer;
}

.back-titr > .bgfront ul:nth-child(2) > li:nth-child(2),
.back-titr > .bgfront ul:nth-child(2) > li:nth-child(3) {
    width: 200px;
}

.back-titr > .bgfront ul:nth-child(2) > li .btn-search-titr:active {
    transform: scale(0.98);
    background-color: #ff8200;
}

/* section2 */
.medical-services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin: 3rem 0;
}

    .medical-services h3 {
        font-size: 1rem;
        font-weight: bold;
        white-space: nowrap;
    }

    .medical-services > div > h3 {
        margin-bottom: 3rem;
    }

    .medical-services > div > div {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }

        .medical-services > div > div > div {
            display: flex;
            justify-content: center;
            flex: 1;
        }

            .medical-services > div > div > div a {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .medical-services > div > div > div h3,
            .medical-services > div > div > div p {
                margin-top: 1rem;
            }

            .medical-services > div > div > div p {
                color: #9e9e9e;
            }

/* section3 */
.tsum-tabs-site #tab1:checked ~ #content1,
.tsum-tabs-site #tab2:checked ~ #content2,
.tsum-tabs-site #tab3:checked ~ #content3,
.tsum-tabs-site #tab4:checked ~ #content4 {
    height: calc(100% - 50px);
    visibility: visible;
    opacity: 1;
    padding: 20px 0 0;
    transition: opacity 0.2s ease-in;
}

html:not(.translated-ltr) > body .tsum-tabs-site > main {
    text-align: right;
}

html[class=translated-ltr] > body .tsum-tabs-site > main {
    text-align: left;
}

.tsum-tabs-site > main {
    position: relative;
    min-width: 280px;
    height: fit-content;
    padding: 2rem 20px;
    margin: 0 auto;
    background: #fff;
}

html:not(.translated-ltr) > body .tsum-tabs-site > main > div {
    float: left;
}

html[class=translated-ltr] > body .tsum-tabs-site > main > div {
    float: right;
}

.tsum-tabs-site > main > hr {
    position: absolute;
    right: 20px;
    top: 5rem;
    left: 20px;
}

.tsum-tabs-site > main > section {
    overflow: hidden;
    visibility: hidden;
    height: 0;
    opacity: 0;
}

.tsum-tabs-site input[type=radio],
.tsum-tabs-site > main > label > svg {
    display: none;
}

.tsum-tabs-site > main > label {
    display: inline-block;
    position: inherit;
    background-color: #fff;
    margin: 0 0 -1px;
    padding: 13px 25px;
    height: 45px;
    font-weight: 600;
    text-align: center;
    color: #bbb;
    border: 1px solid transparent;
    border-bottom: 2px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    white-space: nowrap;
    cursor: pointer;
}

.tsum-tabs-site > main > input[type=radio]:checked + label {
    color: #444;
    border: 1px solid #ddd;
    border-top: 1px solid var(--clrorange);
    border-bottom: 2px solid #fff;
    z-index: 2;
}

.swiper-container .content {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 3px rgb(0 0 0 / 10%), 0 1px 2px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 0 3px rgb(0 0 0 / 10%), 0 1px 2px rgb(0 0 0 / 20%);
    -webkit-box-shadow: 0 0 3px rgb(0 0 0 / 10%), 0 1px 2px rgb(0 0 0 / 20%);
    border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -webkit-border-radius: 0.25rem;
    margin: 3px;
}

.top2-items .tsum-tabs-site {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

#content1 .swiper-slide:nth-child(1) .profile-container:before {
    content: '200';
}

#content1 .swiper-slide:nth-child(2) .profile-container:before {
    content: '180';
}

#content1 .swiper-slide:nth-child(3) .profile-container:before {
    content: '160';
}

#content1 .swiper-slide:nth-child(4) .profile-container:before {
    content: '140';
}

#content1 .swiper-slide:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)):not(:nth-child(4)) .profile-container:before {
    content: '120';
}

.box-filter {
    position: relative;
    min-width: 60px;
    max-width: 198px;
}

.profile-container,
.product-top .product-container .product-item {
    width: 22.787vw;
    min-width: 280px;
    max-width: 300px;
    max-height: 400px;
}

/* section5 */
.mps-services {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .mps-services > div {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

        .mps-services > div > div {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
        }

            .mps-services > div > div > div {
                width: 25%;
                padding-right: 10px;
                padding-left: 10px;
            }

                .mps-services > div > div > div > div {
                    overflow: hidden;
                    cursor: pointer;
                    text-align: center;
                }

    .mps-services h3 {
        font-size: 1rem;
        margin-top: 1rem;
    }

    .mps-services .icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 130px;
        height: 130px;
        box-shadow: inset -4px -4px 15px 1px rgb(0 0 0 / 8%);
        transform: rotate(45deg);
        margin: 20px auto 25px auto;
        border-radius: 55px;
        z-index: 1;
    }

        .mps-services .icon:after {
            content: '';
            display: block;
            width: 100%;
            height: 100%;
            border-radius: 55px;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            opacity: 0;
            background-image: linear-gradient(220deg, var(--clrorange), #FF5C39);
        }

        .mps-services .icon > * {
            transform: rotateZ(-45deg);
        }

    .mps-services p {
        text-align: justify;
        max-width: 280px;
        color: #9e9e9e;
        margin-top: 1rem;
    }

html:not(.translated-ltr) > body .mps-services p {
    text-align-last: right;
}

html[class=translated-ltr] > body .mps-services p {
    text-align-last: left;
}

.mps-services > div > div > div:active .icon {
    transition: opacity 0.1s;
    box-shadow: 0 0 8px var(--clrorange);
}

    .mps-services > div > div > div:active .icon:after {
        transition: opacity 0.1s;
        opacity: 1;
    }

.mps-services > div > div > div:active svg path {
    transition: opacity 0.1s;
    fill: #fff;
}

/* section6 */
.recommended-product > div > h3 {
    font-size: 1rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.recommended-product > div > div:nth-child(2) {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .recommended-product > div > div:nth-child(2) > div {
        width: 25%;
        padding-right: 10px;
        margin-bottom: 3rem;
        padding-left: 10px;
    }

.recommended-product > div > div:nth-child(3) {
    position: relative;
    min-height: 25px;
}

    .recommended-product > div > div:nth-child(3) > .load_more {
        position: absolute;
        width: 100%;
    }

        .recommended-product > div > div:nth-child(3) > .load_more > span:nth-child(1) {
            display: inline-flex;
            justify-content: center;
            cursor: pointer;
        }

html:not(.translated-ltr) > body .recommended-product > div > div:nth-child(3) > .load_more > span:nth-child(1) > span {
    margin-left: 0.5rem;
}

html[class=translated-ltr] > body .recommended-product > div > div:nth-child(3) > .load_more > span:nth-child(1) > span {
    margin-right: 0.5rem;
}

@media screen and (max-width: 1200px) {
    .recommended-product > div > div:nth-child(2) > div {
        width: calc(100% / 3);
    }
}

@media screen and (max-width: 993px) {
    .back-titr > .bgfront ul:nth-child(2) > li:nth-child(2), .back-titr > .bgfront ul:nth-child(2) > li:nth-child(3) {
        width: 25%;
    }
}

@media screen and (max-width: 769px) {
    /* section1 */
    .back-titr > .bgfront ul:nth-child(1) > li:nth-child(1) button svg:nth-child(1),
    .back-titr > .bgfront ul:nth-child(1) > li:nth-child(2) button svg:nth-child(1),
    .back-titr > .bgfront ul:nth-child(1) > li:nth-child(4) button svg:nth-child(1) {
        width: 33px;
    }

    .back-titr > .bgfront ul:nth-child(1) > li:nth-child(3) button svg:nth-child(1) {
        height: 28px;
    }

    .back-titr > .bgfront > div {
        height: 58%;
    }
    html:not(.translated-ltr) > body .back-titr > .bgfront ul:nth-child(2) > li:nth-child(3),
    html:not(.translated-ltr) > body .back-titr > .bgfront ul:nth-child(2) > li:nth-child(4) {
        padding-left: 0;
    }

    html[class=translated-ltr] > body .back-titr > .bgfront ul:nth-child(2) > li:nth-child(3),
    html[class=translated-ltr] > body .back-titr > .bgfront ul:nth-child(2) > li:nth-child(4) {
        padding-right: 0;
    }

    .back-titr > .bgfront ul:nth-child(2) {
        margin: 85px calc(14% - 50px) 0 calc(14% - 50px);
    }

        .back-titr > .bgfront ul:nth-child(2) > li:not(:nth-child(1)) {
            width: 50%;
        }

        .back-titr > .bgfront ul:nth-child(2) > li:nth-child(3) {
            padding-left: 0;
        }
    /* section2 */

    .medical-services > div > div > div {
        width: 100%;
        flex: none;
    }

        .medical-services > div > div > div:not(:nth-child(1)) {
            margin-top: 3rem;
        }

    /* section3 */
    .top2-items .tsum-tabs-site > main > label {
        padding: 8px 22px 12px;
    }

        .top2-items .tsum-tabs-site > main > label > span {
            display: none;
        }

        .top2-items .tsum-tabs-site > main > label > svg {
            display: block;
        }

    .mps-services > div > div > div,
    .recommended-product > div > div:nth-child(2) > div {
        width: 50%;
    }

    .box-filter {
        max-width: 165px;
    }
}

@media screen and (max-width: 577px) {
    .back-titr > #bgequipment,
    .back-titr > #bgsoftware,
    .back-titr > #bgdoctor {
        filter: blur(5px);
    }

    .back-titr > .bgfront ul:nth-child(1) {
        top: -37.5px;
    }

        .back-titr > .bgfront ul:nth-child(1) > li > span {
            width: 75px;
            height: 37.5px;
        }

        .back-titr > .bgfront ul:nth-child(1) > li button {
            top: 10px;
            left: 10px;
            width: 55px;
            height: 55px;
        }

    .back-titr > .bgfront ul:nth-child(2) > li {
        margin-bottom: 1.5rem;
    }

        .back-titr > .bgfront ul:nth-child(2) > li:nth-child(1) {
            display: flex;
        }



    .back-titr > .bgfront ul:nth-child(2) > li:nth-child(2) {
        width: calc(calc(50% + 0.375rem) - 39.5px);
    }

    .back-titr > .bgfront ul:nth-child(2) > li:nth-child(3) {
        width: calc(50% - 0.375rem);
    }

    .back-titr > .bgfront ul:nth-child(2) > li:nth-child(4) {
        width: 100%;
    }

    .back-titr > .bgfront ul:nth-child(2) > li .btn-search-titr:active {
        transform: scale(0.99);
    }
}

@media (max-width: 376px) {
    .top2-items .tsum-tabs-site > main > label {
        padding: 8px 15px 12px;
    }

    .box-filter {
        max-width: 150px;
    }
}
