﻿html:not(.translated-ltr) > body .demo .setdemo {
    direction: rtl;
}

html[class=translated-ltr] > body .demo .setdemo {
    direction: ltr;
}

html:not(.translated-ltr) > body .why ul > li .box > div {
    padding-right: 20px;
}

html:not(.translated-ltr) > body .introduction ul > li:nth-child(1) {
    padding-left: 3rem;
}

html:not(.translated-ltr) > body .manage li:nth-child(2) > div {
    padding-right: 1rem;
}

html[class=translated-ltr] > body .introduction ul > li:nth-child(1) {
    padding-right: 3rem;
}

html:not(.translated-ltr) > body .introduction *:not(p) {
    text-align: right;
}

html[class=translated-ltr] > body .why ul > li .box > div {
    padding-left: 20px;
}

html[class=translated-ltr] > body .manage li:nth-child(2) > div {
    padding-left: 1rem;
}

html[class=translated-ltr] > body .introduction *:not(p) {
    text-align: left;
}

.introduction ul,
.menu-wrapper ul,
.manage ul,
.need ul,
.why ul,
.why ul > li .box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

    .introduction ul > li:nth-child(1),
    .manage li,
    .need ul > li {
        flex: 1;
    }

    .introduction h1,
    .menu-wrapper a,
    .need .accord h3,
    .why ul > li .box > div h3 {
        font-weight: 500;
    }

.introduction h1,
.need h2,
.why h2,
.customer h2 {
    color: #a56a2e;
}

.introduction h1 {
    font-size: 1.2rem;
}

.introduction img {
    max-height: 240px;
}

p {
    line-height: 2.5;
}

.nav-menu {
    position: sticky;
    top: -1px;
    z-index: 5;
}

.menu-wrapper {
    background: #8ecece;
    padding: 8px 0;
}

    .menu-wrapper > div {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .menu-wrapper a {
        height: 100%;
        align-items: center;
        color: #fff;
        font-size: 0.9rem;
        padding: 0 20px;
        transition: color 0.2s ease-in-out;
    }

        .menu-wrapper a:hover {
            color: #0d6efd;
        }

.manage li:nth-child(1) {
    max-width: 580px;
}

.menu-wrapper ul:last-child li {
    padding: 0 5px;
}

/*.manage li:nth-child(1) img {
        border-radius: 0.25rem;
    }*/

.need,
.why {
    background-color: #f5f7f9;
}

    .need .accord h3 {
        font-size: 1rem;
    }

    .need h2,
    .customer h2,
    .why h2,
    .view h3 {
        font-size: 1.2rem;
        font-weight: bold;
    }

    .need ul {
        align-items: flex-start;
    }

    .need ol > li {
        display: flex;
        align-items: center;
        min-height: 65px;
    }

html:not(.translated-ltr) > body .need ol > li {
    padding-left: 5rem;
}

html[class=translated-ltr] > body .need ol > li {
    padding-right: 5rem;
}

.need ol > li p {
    background-color: #fbfbfb;
    padding: 15px;
    color: #007d05;
}

.need .accord pre {
    margin: 0;
    background-color: transparent;
}

.need .accord h3 {
    display: flex;
    align-items: center;
    min-height: 65px;
    cursor: pointer;
}

    .need .accord h3:before {
        display: flex;
        justify-content: center;
        align-items: center;
        content: "+";
        width: 20px;
        font-weight: bold;
        font-size: 1.2rem;
        transition: content 0.2s ease-in-out;
    }

    .need .accord h3.active {
        color: var(--clrblue);
    }

        .need .accord h3.active:before {
            content: "-";
        }

.why ul > li {
    display: flex;
    width: calc(100% / 3);
}

    .why ul > li:nth-child(3n - 2) {
        justify-content: flex-start;
    }

    .why ul > li:nth-child(3n-1) {
        justify-content: center;
    }

    .why ul > li:nth-child(3n) {
        justify-content: flex-end;
    }

    .why ul > li .box {
        align-items: flex-start;
        width: 95%;
        height: 240px;
        padding: 30px;
        transition: box-shadow 0.3s ease-in-out;
    }

        .why ul > li .box:hover {
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.06);
        }

        .why ul > li .box > span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 100%;
            color: #fff;
            fill: #fff;
            background-color: var(--clrorange);
        }

            .why ul > li .box > span i {
                font-size: 25px;
            }

        .why ul > li .box > div {
            width: calc(100% - 60px);
        }

            .why ul > li .box > div h3 {
                font-size: 1rem;
            }

            .why ul > li .box > div p {
                margin-top: 1rem;
            }

.view {
    background-color: #f5f5f5;
}

.contact .view-popup > div {
    margin-right: 7rem;
    margin-left: 7rem;
}

.contact .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border: 1px solid #ccc;
    border-radius: 100%;
}

    .contact .icon i {
        font-size: 1.6rem;
    }

@media screen and (max-width: 1200px) {
    .menu-wrapper a {
        padding: 0 10px;
    }

    .why ul > li {
        width: 50%;
        justify-content: center !important;
    }

        .why ul > li .box {
            width: 100%;
        }
}

.customer video {
    width: calc(100% - 40px);
    height: 400px;
    margin: 0 20px;
    background-color: #000;
    border-radius: 0.25rem;
}

@media screen and (max-width: 880px) {
    .introduction ul > li, .menu-wrapper ul:last-child, .manage ul > li, .why ul > li, .why ul > li .box > div {
        width: 100%;
    }

        .introduction ul > li:nth-child(2) {
            text-align: center;
        }

        .introduction ul > li:nth-child(2),
        html[class=translated-ltr] > body .manage li:nth-child(2) {
            padding-top: 3rem;
        }

            html:not(.translated-ltr) > body .introduction ul > li:nth-child(1),
            html[class=translated-ltr] > body .manage li:nth-child(2) > div,
            html:not(.translated-ltr) > body .need ol > li,
            html[class=translated-ltr] > body .why ul > li .box > div {
                padding-left: 0px;
            }

    html[class=translated-ltr] > body .introduction ul > li:nth-child(1),
    html:not(.translated-ltr) > body .manage li:nth-child(2) > div,
    html[class=translated-ltr] > body .need ol > li,
    html:not(.translated-ltr) > body .why ul > li .box > div {
        padding-right: 0px;
    }

    .menu-wrapper ul:first-child {
        display: none;
    }

    .menu-wrapper ul:last-child li {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        flex: 1;
    }

    .manage li,
    .need ul > li {
        flex: auto;
    }

        .manage li:nth-child(1) {
            max-width: 100%;
        }

    .need ol > li {
        padding-left: 0;
    }

    .why ul > li .box {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

        .why ul > li .box > div {
            margin-top: 20px;
        }
}
