/* Maded By Efe Isik */

@font-face {
    font-family: 'Volte';
    font-style: normal;
    font-weight: 500;
    src: local('Volte Regular'), url('../fonts/Volte.woff') format('woff');
}

@font-face {
    font-family: 'Volte';
    font-style: normal;
    font-weight: 400;
    src: local('Volte Light'), url('../fonts/Volte-Light.woff') format('woff');
}

@font-face {
    font-family: 'Volte';
    font-style: normal;
    font-weight: 600;
    src: local('Volte Medium'), url('../fonts/Volte-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Volte';
    font-style: normal;
    font-weight: 600;
    src: local('Volte Semibold'), url('../fonts/Volte-Semibold.woff') format('woff');
}

@font-face {
    font-family: 'Volte';
    font-style: normal;
    font-weight: 700;
    src: local('Volte Bold'), url('../fonts/Volte-Bold.woff') format('woff');
}

* {
    margin: 0;
    padding: 0;
}

.s-container {
    max-width: 1500px;
    margin: 0 auto;
}

@media only screen and (max-width: 1366px) {
    .s-container {
        max-width: 1310px;
    }
}

@media only screen and (max-width: 1200px) {
    .s-container {
        max-width: 100%;
        padding: 0 35px;
    }
}

@media only screen and (max-width: 767px) {
    .s-container {
        padding: 0 20px;
    }
}

body {
    font-family: 'Volte', sans-serif;
    background: #FAFAFA;
    overflow-x: hidden;
}
/* body:before{ content: ""; position: absolute; left: 50%; transform: translateX(-50%); height: 500vh; width: 1px; background: red;} */
a {
    text-decoration: none !important;
}


.general-title {
    font-family: museo-slab, serif;
    font-weight: normal;
    font-size: 46px;
    letter-spacing: -0.02em;
    line-height: 60px;
    text-align: center;
    color: #000;
}

    .general-title .have-line {
        position: relative;
        display: inline-block;
    }

        .general-title .have-line:before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -6px;
            height: 6px;
            background: linear-gradient(to right, #004cff 0%, #9eb9f800 100%);
        }

@media only screen and (max-width: 767px) {
    .general-title .have-line:before {
        height: 4px;
        bottom: -4px;
    }
}

/* Header */

header {
    padding: 20px 0;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    background: #fff;
    z-index: 10;
    transition: .4s;
}

    header .content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        header .content .logo {
            display: flex;
            width: 140px;
            align-items: center;
        }

            header .content .logo img {
                width: 100%;
            }

        header .content .menu-links {
        }

            header .content .menu-links .link-item {
                font-weight: 500;
                font-size: 15px;
                color: #000;
                text-decoration: none;
                transition: .4s;
            }

                header .content .menu-links .link-item.in-active {
                    opacity: .3;
                }

                header .content .menu-links .link-item + .link-item {
                    margin-left: 60px;
                }

        header .content .nav {
            display: flex;
        }

            header .content .nav .log-in {
                font-weight: 500;
                font-size: 15px;
                color: #2264ff;
                background: #F8F7F7;
                padding: 18px 40px;
                display: block;
                transition: .4s;
                border: 0 !important;
                box-shadow: none !important;
                outline: 0 !important;
            }

            header .content .nav .be-teqpay {
                font-weight: 600;
                font-size: 15px;
                color: #fff;
                background: #2264FF;
                display: block;
                padding: 18px 30px;
                margin-left: 20px;
                transition: .4s;
            }

            header .content .nav .log-in:hover {
                background: #ededed;
            }

            header .content .nav .be-teqpay:hover {
                background: #1953db;
            }

            header .content .nav .lang {
            }

                header .content .nav .lang .dropdown {
                    width: 80px;
                    margin-left: 25px;
                    height: 100%;
                    outline: 0;
                    box-shadow: none;
                }

                    header .content .nav .lang .dropdown button {
                        height: 100%;
                        border: 1px solid #EAEEF8;
                        background: none;
                        border-radius: 0;
                        outline: 0 !important;
                        box-shadow: none !important;
                        transition: .4s;
                    }

                        header .content .nav .lang .dropdown button:hover {
                            border: 1px solid #c4c4c4;
                        }

                        header .content .nav .lang .dropdown button .filter-option {
                            height: 100%;
                            display: flex;
                            align-items: center;
                            padding-left: 12px;
                        }

                        header .content .nav .lang .dropdown button::after {
                            color: #A0A2A8;
                            width: 0;
                            height: 0;
                            border-style: solid;
                            border-width: 6px 6px 0 6px;
                            border-color: #A0A2A8 transparent transparent transparent;
                        }

                    header .content .nav .lang .dropdown .dropdown-menu {
                        top: -2px !important;
                        border-radius: 0;
                        border-top: 0;
                        padding: 0;
                    }

                        header .content .nav .lang .dropdown .dropdown-menu ul {
                        }

                            header .content .nav .lang .dropdown .dropdown-menu ul li {
                                transition: .4s;
                            }

                                header .content .nav .lang .dropdown .dropdown-menu ul li a.active {
                                    background: #2264FF;
                                }

                                header .content .nav .lang .dropdown .dropdown-menu ul li a {
                                    transition: .4s;
                                }

                                    header .content .nav .lang .dropdown .dropdown-menu ul li a:active {
                                        background: #2264FF;
                                    }

    header.no-bg {
        background: #fff0;
    }

        header.no-bg .content .menu-links .link-item {
            color: #fff;
        }

        header.no-bg .content .nav .log-in {
            border: 1px solid #61687B;
            background: #fff0;
            color: #fff;
        }

        header.no-bg .content .nav .lang .dropdown button {
            border: 1px solid #61687B;
            color: #fff;
        }

        header.no-bg.fixed-active {
            background: #0C1A1D;
        }

            header.no-bg.fixed-active .content .menu-links .link-item {
                color: #fff;
            }

            header.no-bg.fixed-active .content .nav .log-in {
                border: 1px solid #13262B;
                background: #0c1a1d;
            }

            header.no-bg.fixed-active .content .nav .lang .dropdown button {
                color: #fff;
            }

    header.fixed-active {
        background: #fff;
    }

        header.fixed-active .content .menu-links .link-item {
            color: rgb(0, 0, 0);
        }

        header.fixed-active .content .nav .log-in {
            border: 1px solid #F8F7F7;
            background: #F8F7F7;
            color: #2264ff;
        }

        header.fixed-active .content .nav .lang .dropdown button {
            border: 1px solid #EAEEF8;
            color: rgb(0, 0, 0);
        }

    header.dark {
        background: #0C1A1D;
    }

        header.dark .content .menu-links .link-item {
            color: #fff;
        }

        header.dark .content .nav .log-in {
            border: 1px solid #13262B;
            background: #0c1a1d;
        }

        header.dark .content .nav .lang .dropdown button {
            color: #fff;
        }

    header.mainpage-header {
        background: #fff0;
        top: 40px;
        position: absolute;
    }

@media only screen and (max-width: 1200px) {
    header .content .menu-button {
        display: flex;
        flex-direction: column;
    }

    header .content .menu-links {
        display: none;
    }

    header .content .nav {
        display: none;
    }

    header.mainpage-header {
        top: 0;
        position: fixed;
        background: #ffffff;
    }
}

header .content .menu-button {
    display: none;
}

    header .content .menu-button .line {
        width: 40px;
        height: 4px;
        background: #2b64ff;
        transform: skewX(30deg);
        transition: .4s;
    }

        header .content .menu-button .line + .line {
            margin-top: 5px;
        }

        header .content .menu-button .line:nth-child(1) {
            transform: translateX(-4px) skewX(30deg);
        }

        header .content .menu-button .line:nth-child(3) {
            transform: translateX(0px) skewX(-30deg);
        }

        header .content .menu-button .line:nth-child(2) {
            width: 30px;
            transform: translateX(10px) skewX(30deg);
        }

    header .content .menu-button.menu-opened .line:nth-child(1) {
        transform: translateX(4px) skewX(-30deg);
    }

    header .content .menu-button.menu-opened .line:nth-child(2) {
        transform: translateX(0px) skewX(-30deg);
    }

    header .content .menu-button.menu-opened .line:nth-child(3) {
        transform: translateX(0px) skewX(30deg);
    }

@media only screen and (max-width: 1200px) {
    header .content .menu-button {
        display: block;
    }
}

/* Header */


/* How It Works */

.how-it-works {
    padding-top: 265px;
}

    .how-it-works .earh-map {
        margin-bottom: 215px;
    }

        .how-it-works .earh-map .map-titles {
        }

            .how-it-works .earh-map .map-titles .sub-title {
                font-weight: normal;
                font-size: 22px;
                line-height: 30px;
                text-align: center;
                color: #000;
                width: 40%;
                margin: 0 auto 125px;
            }

            .how-it-works .earh-map .map-titles .general-title {
                width: 70%;
                margin: 0 auto;
                margin-bottom: 50px;
            }

            .how-it-works .earh-map .map-titles img {
                width: 80%;
                height: 500px;
                margin: 0 auto;
                display: block;
            }

    .how-it-works .alternative-systems {
    }

        .how-it-works .alternative-systems .general-title {
            width: 65%;
            margin: 0 auto 115px;
        }

        .how-it-works .alternative-systems .systems {
            display: flex;
            justify-content: space-between;
            padding: 0 55px;
            margin-bottom: -70px;
            z-index: 2;
            position: relative;
        }

            .how-it-works .alternative-systems .systems .system-item {
                width: 410px;
                display: flex;
                flex-direction: column;
                align-items: center;
                background: #ffff;
                padding: 75px 0 45px;
            }

                .how-it-works .alternative-systems .systems .system-item .img {
                    position: relative;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-bottom: 46px;
                }

                    .how-it-works .alternative-systems .systems .system-item .img .bg {
                        position: absolute;
                    }

                        .how-it-works .alternative-systems .systems .system-item .img .bg img {
                        }

                    .how-it-works .alternative-systems .systems .system-item .img .ico {
                        position: relative;
                    }

                        .how-it-works .alternative-systems .systems .system-item .img .ico > img {
                            position: relative;
                            z-index: 2;
                        }

                .how-it-works .alternative-systems .systems .system-item:nth-child(1) .img .ico > img {
                    transform: rotate(21deg);
                }

                .how-it-works .alternative-systems .systems .system-item:nth-child(1) .img .ico .ico-shadow {
                    transform: rotate(15deg);
                }

                .how-it-works .alternative-systems .systems .system-item .img .ico .ico-shadow {
                    position: absolute;
                    top: 10px;
                    left: 5px;
                    filter: blur(9px);
                }

                .how-it-works .alternative-systems .systems .system-item .system-title {
                    font-weight: normal;
                    font-size: 25px;
                    line-height: 37px;
                    color: #2264ff;
                    margin-bottom: 15px;
                }

                    .how-it-works .alternative-systems .systems .system-item .system-title strong {
                        font-weight: 500;
                    }

                .how-it-works .alternative-systems .systems .system-item p {
                    padding: 0 35px;
                    text-align: center;
                    font-size: 16px;
                    line-height: 25px;
                    text-align: center;
                    color: #424755;
                }

    .how-it-works .earh-map .map-titles .earth-ani {
        position: relative;
        padding-top: 50px;
        perspective: 500px;
    }

        .how-it-works .earh-map .map-titles .earth-ani svg {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 0;
            z-index: 2;
        }

            .how-it-works .earh-map .map-titles .earth-ani svg line {
                stroke: #2264FF;
            }

            .how-it-works .earh-map .map-titles .earth-ani svg .dot {
                fill: #2264ff;
            }

footer.how-it-works-footer .footer-top {
    padding: 160px 0 110px;
}

@media only screen and (min-width: 1200px) {
    .how-it-works .earh-map .map-titles img {
        transform: rotateX(30deg) translateY(-100px);
        opacity: 0;
    }

        .how-it-works .earh-map .map-titles img.active {
            transform: rotateX(0deg) translateY(0px);
            opacity: 1;
        }

    .how-it-works .earh-map .map-titles .sub-title {
        transform: translateY(30px);
        opacity: 0;
    }

    .how-it-works .earh-map .map-titles .general-title {
        opacity: 0;
    }

    .how-it-works .alternative-systems .general-title {
        opacity: 0;
    }

    .how-it-works .alternative-systems .systems .system-item .img {
        opacity: 0;
    }

    .how-it-works .alternative-systems .systems .system-item .system-title {
        transform: translateY(10px);
        opacity: 0;
    }

    .how-it-works .alternative-systems .systems .system-item p {
        transform: translateY(20px);
        opacity: 0;
    }

    .how-it-works .alternative-systems .systems .system-item {
        opacity: 0;
    }

    .how-it-works .earh-map .map-titles .earth-ani svg line {
        stroke-dasharray: 370;
        stroke-dashoffset: 370;
    }

    .how-it-works .earh-map .map-titles .earth-ani svg .dot {
        opacity: 0;
    }
}

@media only screen and (max-width: 1366px) {
    .how-it-works {
        padding-top: 180px;
    }

        .how-it-works .earh-map {
            margin-bottom: 90px;
        }

        .how-it-works .alternative-systems .systems {
            padding: 0 20px;
        }
}

@media only screen and (max-width: 1200px) {
    .how-it-works .earh-map .map-titles .general-title {
        font-size: 41px;
        line-height: normal;
        width: 80%;
        margin-bottom: 40px;
    }

    .how-it-works .earh-map .map-titles .sub-title {
        width: 60%;
    }

    .how-it-works .earh-map .map-titles .earth-ani svg {
        width: 80%;
    }

    .how-it-works .earh-map {
        margin-bottom: 40px;
    }

    .how-it-works .alternative-systems .general-title {
        font-size: 42px;
        line-height: normal;
        width: 80%;
    }

    .how-it-works .alternative-systems .systems {
        padding: 0;
    }

        .how-it-works .alternative-systems .systems .system-item .system-title {
            font-size: 22px;
        }

        .how-it-works .alternative-systems .systems .system-item .img {
            margin-bottom: 25px;
        }

        .how-it-works .alternative-systems .systems .system-item p {
            font-size: 14px;
        }

        .how-it-works .alternative-systems .systems .system-item {
            width: 310px;
            padding: 65px 0 25px;
            height: 420px;
        }

    footer.how-it-works-footer .footer-top {
        padding: 150px 0 90px;
    }
}

@media only screen and (max-width: 900px) {
    .how-it-works {
        padding-top: 140px;
    }

        .how-it-works .earh-map .map-titles .general-title {
            font-size: 30px;
        }

        .how-it-works .earh-map .map-titles .sub-title {
            font-size: 19px;
            line-height: normal;
            margin-bottom: 0;
        }

        .how-it-works .earh-map .map-titles img {
            height: 380px;
        }

        .how-it-works .alternative-systems .general-title {
            font-size: 31px;
            margin-bottom: 95px;
        }

        .how-it-works .alternative-systems .systems {
            margin-bottom: 50px;
            padding: 0 155px;
        }

            .how-it-works .alternative-systems .systems .system-item {
                height: 380px;
            }

    footer.how-it-works-footer .footer-top {
        padding: 40px 0;
    }
}

@media only screen and (max-width: 767px) {
    .how-it-works {
        padding-top: 130px;
    }

        .how-it-works .earh-map .map-titles .general-title {
            font-size: 19px;
            width: 100%;
            margin-bottom: 30px;
        }

        .how-it-works .earh-map .map-titles .sub-title {
            font-size: 15px;
            width: 90%;
            margin-bottom: 45px;
        }

        .how-it-works .earh-map .map-titles .earth-ani svg {
            width: 100%;
            height: 130px;
        }

        .how-it-works .earh-map .map-titles img {
            width: 100%;
            height: 110px;
        }

        .how-it-works .alternative-systems .general-title {
            width: 100%;
            font-size: 19px;
            margin-bottom: 45px;
        }

        .how-it-works .earh-map {
            margin-bottom: 90px;
        }

        .how-it-works .alternative-systems .systems {
            padding: 0 40px;
        }

            .how-it-works .alternative-systems .systems .system-item .img .bg img {
                width: 100%;
            }

            .how-it-works .alternative-systems .systems .system-item .img .bg {
                width: 95px;
            }

            .how-it-works .alternative-systems .systems .system-item .img .ico > img {
                width: 100%;
            }

            .how-it-works .alternative-systems .systems .system-item .img .ico {
                width: 40px;
            }

                .how-it-works .alternative-systems .systems .system-item .img .ico .ico-shadow img {
                    width: 100%;
                }

                .how-it-works .alternative-systems .systems .system-item .img .ico .ico-shadow {
                    width: 40px;
                }

            .how-it-works .alternative-systems .systems .system-item {
                padding: 45px 0 15px;
                height: 300px;
            }

                .how-it-works .alternative-systems .systems .system-item .system-title {
                    font-size: 20px;
                    line-height: normal;
                    margin-bottom: 11px;
                }

                .how-it-works .alternative-systems .systems .system-item p {
                    font-size: 14px;
                    line-height: normal;
                    padding: 0px 25px;
                }
}

/* How It Works */

/* Footer */

footer {
    display: flex;
    flex-direction: column;
}

    footer .footer-top {
        padding: 110px 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

        footer .footer-top .content {
            display: flex;
            justify-content: space-between;
            padding: 0 55px;
        }

            footer .footer-top .content .general-title {
                font-size: 35px;
                color: #fff;
            }

                footer .footer-top .content .general-title .have-line::before {
                    background: linear-gradient(to right, #ffffff 0%, #ffffff00 100%);
                    bottom: 0px;
                }

            footer .footer-top .content .be-teqpay {
                font-weight: 600;
                font-size: 18px;
                color: #fff;
                border: 1px solid #fff;
                display: block;
                padding: 15px 95px;
                position: relative;
                transition: 0.5s;
                z-index: 1;
                transition-timing-function: cubic-bezier(0.99, 0.26, 0.2, 0.82);
            }

                footer .footer-top .content .be-teqpay:before {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 0;
                    bottom: 0;
                    width: 0%;
                    background: linear-gradient(to right, #ffffff 40%, #ffffff00 100%);
                    transition: 0.5s;
                    z-index: -1;
                    transition-timing-function: cubic-bezier(0.99, 0.26, 0.2, 0.82);
                }

                footer .footer-top .content .be-teqpay:hover {
                    color: #2f51fb;
                }

                    footer .footer-top .content .be-teqpay:hover:before {
                        width: 100%;
                    }

    footer .footer-bottom {
    }

        footer .footer-bottom .content {
            display: flex;
            padding-top: 140px;
            justify-content: space-between;
        }

            footer .footer-bottom .content .left {
                width: 220px;
            }

            footer .footer-bottom .content .mid {
                display: flex;
            }

            footer .footer-bottom .content .right {
            }

            footer .footer-bottom .content .left .slogan {
                margin-bottom: 25px;
                position: relative;
            }

                footer .footer-bottom .content .left .slogan img {
                    position: absolute;
                    top: -55px;
                }

                footer .footer-bottom .content .left .slogan p {
                    font-weight: 600;
                    font-size: 25px;
                    line-height: 27px;
                    color: #000000;
                    margin-bottom: 0;
                }

                    footer .footer-bottom .content .left .slogan p span {
                        color: #2264FF;
                    }

            footer .footer-bottom .content .left > p {
                font-weight: 500;
                font-size: 13px;
                color: #b4b9c4;
                margin-bottom: 25px;
            }

            footer .footer-bottom .content .left > img {
                width: 100%;
            }

            footer .footer-bottom .content .mid .link-groups {
                display: flex;
                flex-direction: column;
                width: 150px;
            }

                footer .footer-bottom .content .mid .link-groups .link-item {
                    font-weight: normal;
                    font-size: 16px;
                    line-height: 27px;
                    color: #000000;
                    transition: .4s;
                }

                footer .footer-bottom .content .mid .link-groups .title {
                    font-weight: 600;
                    font-size: 18px;
                    line-height: 27px;
                    color: #000;
                    margin-bottom: 15px;
                }

            footer .footer-bottom .content .right .footer-contact {
                margin-bottom: 30px;
            }

                footer .footer-bottom .content .right .footer-contact p {
                    font-family: museo-slab, serif;
                    font-weight: normal;
                    font-size: 24px;
                    letter-spacing: -0.02em;
                    line-height: 32px;
                    text-align: right;
                    color: #61687b;
                    margin-bottom: 5px;
                }

                footer .footer-bottom .content .right .footer-contact a {
                    display: block;
                    font-weight: 600;
                    font-size: 25px;
                    line-height: 33px;
                    text-align: right;
                    color: #2264ff;
                }

            footer .footer-bottom .content .right .social-media {
                display: flex;
                justify-content: flex-end;
                margin-bottom: 30px;
            }

                footer .footer-bottom .content .right .social-media .link-item {
                }

                    footer .footer-bottom .content .right .social-media .link-item svg {
                        fill: #D4D6DD;
                        transition: .4s;
                    }

            footer .footer-bottom .content .right .policys {
                display: flex;
                flex-direction: column;
            }

                footer .footer-bottom .content .right .policys .policy {
                    font-weight: 500;
                    font-size: 14px;
                    line-height: 27px;
                    text-align: right;
                    color: #a0a2a8;
                    transition: .4s;
                }

            footer .footer-bottom .content .mid .link-groups.bold .link-item {
                font-weight: 600;
                color: #000;
            }

                footer .footer-bottom .content .mid .link-groups.bold .link-item + .link-item {
                    margin-top: 15px;
                }

            footer .footer-bottom .content .mid .link-groups .link-item + .link-item {
                margin-top: 15px;
            }

            footer .footer-bottom .content .mid .link-groups + .link-groups {
                margin-left: 140px;
            }

            footer .footer-bottom .content .right .social-media .link-item + .link-item {
                margin-left: 20px;
            }

        footer .footer-bottom .sub-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #EFEFEF;
            margin-top: 115px;
            padding: 30px 0 35px;
        }

            footer .footer-bottom .sub-footer .copyright {
                font-weight: normal;
                font-size: 13px;
                color: #bfbfbf;
                margin-bottom: 0;
            }

            footer .footer-bottom .sub-footer .signature img {
                width: 70px;
                height: 16px;
            }

        footer .footer-bottom .content .mid .link-groups .link-item:hover {
            color: #2264ff;
        }

        footer .footer-bottom .content .right .social-media .link-item:hover svg {
            fill: #2b64ff;
        }

        footer .footer-bottom .content .right .policys .policy:hover {
            color: #000;
        }

        footer .footer-bottom .content .mid .link-groups.bold .link-item:hover {
            color: #2b64ff;
        }

    footer.dark .footer-bottom {
        background: #0C1A1D;
    }

        footer.dark .footer-bottom .content .left .slogan p {
            color: #fff;
        }

        footer.dark .footer-bottom .content .left > p {
            color: #61687B;
        }

        footer.dark .footer-bottom .content .left > img {
            opacity: .5;
        }

        footer.dark .footer-bottom .content .mid .link-groups.bold .link-item {
            color: #fff;
        }

            footer.dark .footer-bottom .content .mid .link-groups.bold .link-item:hover {
                color: #2b64ff;
            }

        footer.dark .footer-bottom .content .mid .link-groups .title {
            color: #fff;
        }

        footer.dark .footer-bottom .content .mid .link-groups .link-item {
            color: #A0A2A8;
        }

            footer.dark .footer-bottom .content .mid .link-groups .link-item:hover {
                color: #fff;
            }

        footer.dark .footer-bottom .content .right .footer-contact p {
            color: #A0A2A8;
        }

        footer.dark .footer-bottom .content .right .social-media .link-item svg {
            fill: #2E3E41;
        }

        footer.dark .footer-bottom .content .right .policys .policy {
            color: #61687B;
        }

        footer.dark .footer-bottom .sub-footer {
            border-top: 1px solid #21393E;
        }

            footer.dark .footer-bottom .sub-footer .copyright {
                color: #61687B;
            }

        footer.dark .footer-bottom .content .right .social-media .link-item:hover svg {
            fill: #61687b;
        }

        footer.dark .footer-bottom .content .right .policys .policy:hover {
            color: #fff;
        }

    footer.dark .footer-top {
        background: #091518;
    }

        footer.dark .footer-top .content .general-title .have-line::before {
            background: linear-gradient(to right, #004cff 0%, #9eb9f800 100%);
        }

        footer.dark .footer-top .content .be-teqpay {
            border: 1px solid #2264FF;
        }

            footer.dark .footer-top .content .be-teqpay:before {
                background: linear-gradient(to right, #264bfc 40%, #264bfc00 100%);
            }

            footer.dark .footer-top .content .be-teqpay:hover {
                color: #fff;
            }

@media only screen and (max-width: 1200px) {
    footer .footer-bottom .content .mid {
    }

    footer .footer-bottom .content {
        padding-top: 110px;
    }

    footer .footer-bottom .sub-footer {
        margin-top: 40px;
    }

    footer .footer-top .content .general-title {
        text-align: left;
        font-size: 30px;
    }

    footer .footer-top .content {
        padding: 0;
    }

    footer .footer-bottom .content .mid .link-groups:nth-child(1) {
        display: none;
    }

    footer .footer-bottom .content .mid .link-groups:nth-child(3) {
        display: none;
    }

    footer .footer-bottom .content .mid .link-groups:nth-child(2) {
        margin-left: 0;
    }
}

@media only screen and (max-width: 900px) {
    footer .footer-top {
        padding: 50px 0;
    }

        footer .footer-top .content {
            flex-direction: column;
            align-items: center;
        }

            footer .footer-top .content .general-title {
                margin-bottom: 40px;
            }
}

@media only screen and (max-width: 767px) {
    footer .footer-top {
        padding: 60px 0;
    }

        footer .footer-top .content .general-title {
            text-align: center;
            font-size: 28px;
            line-height: 38px;
            margin-bottom: 35px;
        }

        footer .footer-top .content .be-teqpay {
            padding: 15px 60px;
        }

    footer .footer-bottom .content .mid {
        display: none;
    }

    footer .footer-bottom .content {
        flex-direction: column-reverse;
        align-items: center;
        padding-top: 35px;
    }

        footer .footer-bottom .content .left {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 30px 10px;
            border-top: 1px solid #EFEFEF;
            border-bottom: 1px solid #EFEFEF;
        }

    footer.dark .footer-bottom .content .left {
        border-color: #2e3e41;
    }

    footer .footer-bottom .content .left .slogan {
        display: flex;
        flex-direction: column;
        align-items: center;
        display: none;
    }

        footer .footer-bottom .content .left .slogan p {
            text-align: center;
            font-size: 29px;
            width: 80%;
        }

    footer .footer-bottom .content .left > p {
        text-align: center;
        display: none;
    }

    footer .footer-bottom .content .left > img {
        width: 150px;
    }

    footer .footer-bottom .content .right {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 30px 0;
    }

        footer .footer-bottom .content .right .footer-contact {
            margin-bottom: 20px;
        }

            footer .footer-bottom .content .right .footer-contact p {
                text-align: center;
            }

            footer .footer-bottom .content .right .footer-contact a {
                text-align: center;
            }

        footer .footer-bottom .content .right .policys {
            align-items: center;
        }

    footer .footer-bottom .sub-footer {
        flex-direction: column;
        padding: 20px 0;
        border: 0;
        margin-top: 0;
    }

        footer .footer-bottom .sub-footer .copyright {
            text-align: center;
            margin-bottom: 15px;
            padding: 0 45px;
            font-weight: 500;
        }

    footer .footer-bottom .content .left .policys {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        footer .footer-bottom .content .left .policys .policy {
            font-weight: 500;
            font-size: 13px;
            line-height: 27px;
            text-align: right;
            color: #a0a2a8;
            transition: .4s;
            line-height: 22px;
        }

    footer .footer-bottom .content .right .social-media {
        margin-bottom: 0;
    }
}

/* Footer */

/* Corporate Page */

.corporate-page {
    padding-top: 235px;
}

    .corporate-page .entry {
        display: flex;
        margin-bottom: 60px;
    }

        .corporate-page .entry .text-areea {
            width: 40%;
        }

            .corporate-page .entry .text-areea .top {
            }

                .corporate-page .entry .text-areea .top .general-title {
                    text-align: left;
                    margin-bottom: 25px;
                }

                .corporate-page .entry .text-areea .top p {
                    font-weight: normal;
                    font-size: 18px;
                    line-height: 27px;
                    color: #444957;
                    margin-bottom: 0;
                }

            .corporate-page .entry .text-areea .bottom {
            }

                .corporate-page .entry .text-areea .bottom h4 {
                    margin-bottom: 15px;
                    padding-top: 30px;
                    margin-top: 30px;
                    border-top: 1px solid #E9ECF4;
                    font-weight: 600;
                    font-size: 23px;
                    line-height: 33px;
                    color: #61687b;
                }

                .corporate-page .entry .text-areea .bottom p {
                    font-weight: normal;
                    font-size: 18px;
                    line-height: 27px;
                    color: #444957;
                }

        .corporate-page .entry .image {
            width: 40%;
            margin-left: 20%;
        }

            .corporate-page .entry .image img {
                width: 100%;
            }

@media only screen and (min-width: 1200px) {
    .corporate-page .entry .text-areea .top {
        opacity: 0;
    }

    .corporate-page .entry .text-areea .bottom {
        opacity: 0;
        transform: translateY(30px);
    }

    .corporate-page .entry .image {
        transform: translateX(-30px) translateY(40px) scale(1.1);
        opacity: 0;
    }
}

@media only screen and (max-width: 1366px) {
    .corporate-page {
        padding-top: 170px;
    }
}

@media only screen and (max-width: 1200px) {
    .corporate-page .entry .image {
        margin-left: 10%;
    }

    .corporate-page .entry .text-areea {
        width: 50%;
    }

        .corporate-page .entry .text-areea .top .general-title {
            font-size: 35px;
            line-height: 45px;
        }

        .corporate-page .entry .text-areea .top p {
            font-size: 18px;
        }
}

@media only screen and (max-width: 900px) {
    .corporate-page {
        padding-top: 110px;
    }

        .corporate-page .entry {
            flex-direction: column-reverse;
        }

            .corporate-page .entry .image {
                width: 55%;
                margin: 0 auto;
            }

            .corporate-page .entry .text-areea {
                width: 90%;
                margin: 50px auto 0;
            }
}

@media only screen and (max-width: 767px) {
    .corporate-page .entry .image {
        width: 65%;
    }

    .corporate-page .entry .text-areea .top .general-title {
        font-size: 24px;
        line-height: 38px;
        margin-bottom: 20px;
    }

        .corporate-page .entry .text-areea .top .general-title .have-line::before {
            bottom: 2px;
        }

    .corporate-page .entry .text-areea .top p {
        font-size: 15px;
        line-height: 21px;
    }

    .corporate-page .entry .text-areea .bottom p {
        font-size: 15px;
        line-height: 24px;
    }

    .corporate-page .entry {
        margin-bottom: 45px;
    }
}

/* Corporate Page */

/* Corporate Tab */

.corporate-tab {
    display: flex;
    margin: 150px 0;
}

    .corporate-tab .left {
        width: 50%;
    }

        .corporate-tab .left .tab-buttons {
            display: flex;
            border: 1px solid #E9EBF0;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            border-right: 0;
            border-left: 0;
        }

            .corporate-tab .left .tab-buttons .tab-button-item {
                font-weight: 600;
                font-size: 17px;
                color: #2264ff;
                padding: 13px 30px;
                transition: .4s;
                cursor: pointer;
                margin: 5px;
            }

        .corporate-tab .left .tab-contents {
            margin: 0 -15px;
            position: relative;
            height: 650px;
            transition: .4s;
        }

            .corporate-tab .left .tab-contents .content-item {
                display: flex;
                flex-wrap: wrap;
                position: absolute;
                visibility: hidden;
            }

                .corporate-tab .left .tab-contents .content-item.active {
                    visibility: visible;
                }

                .corporate-tab .left .tab-contents .content-item .content-img {
                    width: 29%;
                    margin: 0px 15px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 6px;
                    background: #fff;
                    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05);
                    padding: 35px 0;
                    margin-bottom: 20px;
                    opacity: 0;
                }

                    .corporate-tab .left .tab-contents .content-item .content-img img {
                        max-width: 90%;
                    }

        .corporate-tab .left .tab-buttons .tab-button-item:hover {
            background: #2264ff2b;
        }

        .corporate-tab .left .tab-buttons .tab-button-item.active {
            background: #2264ff;
            color: #fff;
        }

    .corporate-tab .right {
        width: 35%;
        margin-left: 15%;
        display: flex;
        align-items: center;
    }

        .corporate-tab .right .general-title {
            text-align: left;
        }

@media only screen and (min-width: 1200px) {
    .corporate-tab .left {
        opacity: 0;
        transform: translateY(30px);
    }

    .corporate-tab .right {
        transform: translateY(30px);
        opacity: 0;
    }
}

@media only screen and (max-width: 1366px) {
    .corporate-tab {
        margin: 100px 0;
    }

        .corporate-tab .left .tab-buttons .tab-button-item {
            font-size: 15px;
        }

        .corporate-tab .left .tab-contents .content-item .content-img {
            width: 28%;
        }

        .corporate-tab .left .tab-contents .content-item {
            justify-content: center;
        }

        .corporate-tab .right .general-title {
            font-size: 40px;
            line-height: 48px;
        }
}

@media only screen and (max-width: 1200px) {
    .corporate-tab .left .tab-buttons .tab-button-item {
        font-size: 14px;
        text-align: center;
    }

    .corporate-tab .left .tab-contents .content-item .content-img {
        width: 26%;
    }

        .corporate-tab .left .tab-contents .content-item .content-img img {
            max-width: 80%;
        }

    .corporate-tab .right .general-title {
        font-size: 32px;
        line-height: 44px;
    }

    .corporate-tab .left .tab-buttons {
        padding-right: 85px;
    }
}

@media only screen and (max-width: 900px) {
    .corporate-tab {
        flex-direction: column-reverse;
        margin: 90px 0 50px;
    }

        .corporate-tab .right {
            width: 100%;
            margin-left: 0;
            margin-bottom: 45px;
        }

            .corporate-tab .right .general-title {
                text-align: center;
                padding: 0 30px;
            }

        .corporate-tab .left {
            width: 100%;
        }

            .corporate-tab .left .tab-buttons {
                padding-right: 150px;
            }
}

@media only screen and (max-width: 767px) {
    .corporate-tab .right .general-title {
        font-size: 25px;
        line-height: 35px;
    }

    .corporate-tab .right {
        margin-bottom: 35px;
    }

    .corporate-tab .left .tab-contents .content-item .content-img {
        width: 38%;
    }
}

/* Corporate Tab */

/* Stat Banner */

.stat-banner {
    display: flex;
    background: #0A171A;
    justify-content: space-between;
    align-items: center;
    padding: 50px 85px;
    position: relative;
    margin: 45px 0 150px;
}

    .stat-banner .slogan {
        position: relative;
        z-index: 2;
    }

        .stat-banner .slogan .general-title {
            font-size: 35px;
            color: #fff;
            text-align: left;
        }

    .stat-banner .stats {
        display: flex;
        position: relative;
        z-index: 2;
        max-width: 50%;
    }

        .stat-banner .stats .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 150px;
        }

            .stat-banner .stats .stat-item .num {
                font-weight: 600;
                font-size: 33px;
                letter-spacing: -0.02em;
                line-height: 35px;
                color: #fff;
            }

            .stat-banner .stats .stat-item span {
                font-weight: normal;
                font-size: 18px;
                color: #fff;
            }

    .stat-banner .bg-img {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 860px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        opacity: 0.3;
        z-index: 0;
    }

    .stat-banner .slogan .general-title .have-line {
    }

        .stat-banner .slogan .general-title .have-line::before {
            background: linear-gradient(to right, #004cff 0%, #004cff00 100%);
        }

    .stat-banner .slogan .general-title:nth-child(2) {
        padding-left: 85px;
        margin-top: 15px;
    }

    .stat-banner .stats .stat-item + .stat-item {
        margin-left: 20px;
    }

@media only screen and (min-width: 1200px) {
    .stat-banner .slogan .general-title {
        transform: translateX(-30px);
        opacity: 0;
    }

    .stat-banner .stats {
        transform: translateX(30px);
    }

        .stat-banner .stats .stat-item {
            opacity: 0;
        }
}

@media only screen and (max-width: 1366px) {
    .stat-banner {
        padding: 50px 45px;
    }

        .stat-banner .stats .stat-item span {
            font-size: 17px;
        }

        .stat-banner .stats .stat-item .num {
            font-size: 30px;
        }
}

@media only screen and (max-width: 1200px) {
    .stat-banner {
        padding: 50px 45px;
        margin: 45px 0 110px;
    }

        .stat-banner .stats {
            flex-wrap: wrap;
        }

            .stat-banner .stats .stat-item {
                width: 47%;
            }

                .stat-banner .stats .stat-item:nth-child(odd) {
                    margin-left: 0;
                }

        .stat-banner .slogan .general-title {
            font-size: 30px;
        }

        .stat-banner .stats .stat-item:nth-child(n+3) {
            margin-top: 29px
        }
}

@media only screen and (max-width: 900px) {
    .stat-banner {
        flex-direction: column;
        padding: 35px 45px;
    }

        .stat-banner .stats {
            max-width: 80%;
        }

        .stat-banner .slogan .general-title {
            font-size: 27px;
            line-height: 47px;
        }

            .stat-banner .slogan .general-title .have-line::before {
                bottom: 1px;
            }

            .stat-banner .slogan .general-title:nth-child(2) {
                padding-left: 130px;
                margin-top: 5px;
            }

        .stat-banner .slogan {
            margin-bottom: 45px;
        }

        .stat-banner .bg-img {
            width: 100%;
        }
}

@media only screen and (max-width: 767px) {
    .stat-banner {
        padding: 35px 20px;
        margin: 45px 0 80px;
    }

        .stat-banner .slogan .general-title:nth-child(2) {
            padding-left: 25px;
        }

        .stat-banner .stats {
            max-width: 100%;
            justify-content: center;
        }

            .stat-banner .stats .stat-item {
                width: 46%;
            }

                .stat-banner .stats .stat-item span {
                    font-size: 16px;
                }

                .stat-banner .stats .stat-item .num {
                    font-size: 29px;
                }

        .stat-banner .slogan {
            margin-bottom: 60px;
        }
}

/* Stat Banner */

/* Page Header */

.page-header {
    display: flex;
    justify-content: space-between;
    padding: 75px 35px;
    margin-bottom: 105px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #EFF0F4;
}

    .page-header .general-title {
        font-size: 30px;
        width: 510px;
        text-align: left;
        line-height: normal;
    }

    .page-header .title-name {
        font-family: museo-slab, serif;
        font-weight: normal;
        font-size: 36px;
        line-height: normal;
        letter-spacing: -0.02em;
        color: #61687b;
        display: flex;
        align-items: center;
        text-align: right;
    }

@media only screen and (min-width: 1200px) {
    .page-header {
        transform: translateY(20px) scale(.9);
    }

        .page-header .general-title {
            opacity: 0;
        }

        .page-header .title-name {
            opacity: 0;
        }
}

@media only screen and (max-width: 900px) {
    .page-header .general-title {
        font-size: 25px;
        max-width: 45%;
    }

    .page-header .title-name {
        font-size: 28px;
        max-width: 45%;
    }

    .page-header {
        padding: 55px 35px;
        margin-bottom: 90px;
    }
}

/* Page Header */

/* Our Solutions */

.our-solutions-page {
    padding-top: 200px;
}

    .our-solutions-page .entry-solutions {
        display: flex;
        padding: 0 35px;
        margin: 100px 0 180px;
    }

        .our-solutions-page .entry-solutions .solution-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 25%;
            padding: 0 40px;
        }

            .our-solutions-page .entry-solutions .solution-item .ico {
                margin-bottom: 40px;
            }

                .our-solutions-page .entry-solutions .solution-item .ico img {
                }

            .our-solutions-page .entry-solutions .solution-item .title {
                font-weight: 600;
                font-size: 20px;
                line-height: normal;
                text-align: center;
                color: #000;
                margin-bottom: 15px;
            }

            .our-solutions-page .entry-solutions .solution-item p {
                font-weight: normal;
                font-size: 18px;
                line-height: 26px;
                text-align: center;
                color: #424755;
                margin-bottom: 0;
            }

    .our-solutions-page .solutions-content {
        display: flex;
        flex-direction: column;
        margin: 180px 0;
    }

        .our-solutions-page .solutions-content .content-item {
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .our-solutions-page .solutions-content .content-item .img {
                width: 440px;
                height: 600px;
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
            }

            .our-solutions-page .solutions-content .content-item .exp {
                width: 490px;
                margin-left: 45px;
            }

                .our-solutions-page .solutions-content .content-item .exp .general-title {
                    text-align: left;
                    font-size: 30px;
                    line-height: normal;
                    margin-bottom: 35px;
                }

                .our-solutions-page .solutions-content .content-item .exp p {
                    font-weight: normal;
                    font-size: 23px;
                    line-height: 33px;
                    color: #424755;
                    margin-bottom: 35px;
                }

                .our-solutions-page .solutions-content .content-item .exp .cnt-btn {
                    font-weight: 600;
                    font-size: 17px;
                    color: #2264ff;
                    border: 1px solid #2264FF;
                    padding: 15px 25px;
                    display: inline-block;
                    transition: .3s;
                }

    .our-solutions-page .screenshot-area {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 95px;
        margin: 140px 0;
    }

        .our-solutions-page .screenshot-area .ss-exp {
            width: 480px;
        }

            .our-solutions-page .screenshot-area .ss-exp .exp-item {
            }

                .our-solutions-page .screenshot-area .ss-exp .exp-item .title {
                    font-family: museo-slab, serif;
                    font-weight: normal;
                    font-size: 22px;
                    letter-spacing: -0.02em;
                    color: #a0a2a8;
                    transition: .4s;
                    cursor: pointer;
                }

                .our-solutions-page .screenshot-area .ss-exp .exp-item p {
                    font-weight: normal;
                    font-size: 15px;
                    line-height: 20px;
                    color: #424755;
                    margin-bottom: 0;
                    padding: 15px 0 10px;
                    display: none;
                }

    .our-solutions-page .solutions-content .content-item + .content-item {
        margin-top: 155px;
    }

    .our-solutions-page .solutions-content .content-item:nth-child(even) {
        flex-direction: row-reverse;
    }

        .our-solutions-page .solutions-content .content-item:nth-child(even) .exp {
            margin-left: 0;
            margin-right: 45px;
        }

    .our-solutions-page .solutions-content .content-item .exp .cnt-btn:hover {
        background: #2264ff;
        color: #fff;
    }

    .our-solutions-page .screenshot-area .ss {
        width: 660px;
        height: 410px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        position: relative;
        border: 5px solid #E1E2E6;
    }

    .our-solutions-page .screenshot-area .ss-exp .exp-item + .exp-item {
        margin-top: 10px;
    }

    .our-solutions-page .screenshot-area .ss-exp .exp-item.active .title {
        color: #000;
    }

    .our-solutions-page .screenshot-area .ss .img-item {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        visibility: hidden;
        transition: .4s;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

        .our-solutions-page .screenshot-area .ss .img-item.active {
            opacity: 1;
            visibility: visible;
        }

@media only screen and (min-width: 1200px) {
    .our-solutions-page .entry-solutions .solution-item {
        opacity: 0;
        transform: translateY(20px);
    }

    .our-solutions-page .solutions-content .content-item:nth-child(odd) .img {
        transform: translateX(-40px);
        opacity: 0;
    }

    .our-solutions-page .solutions-content .content-item:nth-child(even) .img {
        transform: translateX(40px);
        opacity: 0;
    }

    .our-solutions-page .solutions-content .content-item:nth-child(even) .exp {
        transform: translateX(-40px);
        opacity: 0;
    }

    .our-solutions-page .solutions-content .content-item:nth-child(odd) .exp {
        transform: translateX(40px);
        opacity: 0;
    }

    .our-solutions-page .screenshot-area .ss-exp .exp-item {
        transform: translateY(30px) translateX(15px);
        opacity: 0;
    }

    .our-solutions-page .screenshot-area .ss {
        transform: scale(.9);
        opacity: 0;
    }
}

@media only screen and (max-width: 1366px) {
    .our-solutions-page .screenshot-area {
        padding: 0 50px;
    }
}

@media only screen and (max-width: 1200px) {
    .our-solutions-page {
        padding-top: 150px;
    }

        .our-solutions-page .entry-solutions {
            padding: 0 0px;
        }

            .our-solutions-page .entry-solutions .solution-item {
                padding: 0 25px;
            }

        .our-solutions-page .screenshot-area {
            flex-direction: column-reverse;
        }

            .our-solutions-page .screenshot-area .ss-exp {
                width: 100%;
                margin-top: 55px;
                padding: 0 105px;
            }

            .our-solutions-page .screenshot-area .ss {
                width: 710px;
                height: 440px;
            }

            .our-solutions-page .screenshot-area .ss-exp .exp-item .title {
                font-size: 24px;
                text-align: center;
            }

            .our-solutions-page .screenshot-area .ss-exp .exp-item p {
                font-size: 23px;
                line-height: normal;
                text-align: center;
                display: block;
            }

            .our-solutions-page .screenshot-area .ss-exp .exp-item + .exp-item {
                margin-top: 0;
            }
}

@media only screen and (max-width: 900px) {
    .our-solutions-page .entry-solutions {
        flex-wrap: wrap;
        margin: 100px 0 130px;
    }

        .our-solutions-page .entry-solutions .solution-item {
            width: 50%;
        }

            .our-solutions-page .entry-solutions .solution-item:nth-child(n+3) {
                margin-top: 45px;
            }

    .our-solutions-page .solutions-content {
        margin: 130px 0;
    }

        .our-solutions-page .solutions-content .content-item .exp {
            width: 45%;
        }

        .our-solutions-page .solutions-content .content-item .img {
            width: 45%;
            height: 420px;
        }

        .our-solutions-page .solutions-content .content-item .exp .general-title {
            font-size: 23px;
        }

        .our-solutions-page .solutions-content .content-item .exp p {
            font-size: 18px;
            line-height: normal;
        }

        .our-solutions-page .solutions-content .content-item + .content-item {
            margin-top: 100px;
        }

    .our-solutions-page .screenshot-area .ss {
        width: 600px;
        height: 375px;
    }

    .our-solutions-page .screenshot-area .ss-exp .exp-item .title {
        font-size: 21px;
    }

    .our-solutions-page .screenshot-area .ss-exp .exp-item p {
        font-size: 20px;
    }

    .our-solutions-page .screenshot-area {
        margin: 130px 0 100px;
    }

        .our-solutions-page .screenshot-area .ss-exp {
            padding: 0 55px;
        }
}

@media only screen and (max-width: 767px) {
    .our-solutions-page .entry-solutions {
        padding-right: 95px;
    }

        .our-solutions-page .entry-solutions .solution-item .ico img {
            width: 70px;
        }

        .our-solutions-page .entry-solutions .solution-item .title {
            font-size: 18px;
        }

        .our-solutions-page .entry-solutions .solution-item p {
            font-size: 16px;
            line-height: normal;
        }

        .our-solutions-page .entry-solutions .solution-item:nth-child(n+3) {
            margin-top: 0;
        }

    .our-solutions-page .entry-solutions {
        margin: 40px 0 100px;
    }

    .our-solutions-page {
        padding-top: 100px;
    }

        .our-solutions-page .solutions-content {
            margin: 100px 0;
        }

            .our-solutions-page .solutions-content .content-item {
                flex-direction: column !important;
            }

                .our-solutions-page .solutions-content .content-item .img {
                    width: 100%;
                    height: 400px;
                }

                .our-solutions-page .solutions-content .content-item .exp {
                    width: 90%;
                    margin-left: 0 !important;
                    margin-top: 40px !important;
                    margin-right: 0 !important;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                }

                    .our-solutions-page .solutions-content .content-item .exp .general-title {
                        text-align: center;
                        font-size: 20px;
                    }

                    .our-solutions-page .solutions-content .content-item .exp p {
                        text-align: center;
                        font-size: 16px;
                    }

                    .our-solutions-page .solutions-content .content-item .exp .cnt-btn {
                    }

                .our-solutions-page .solutions-content .content-item + .content-item {
                    margin-top: 30px;
                }

        .our-solutions-page .screenshot-area {
            margin: 100px 0 65px;
            padding: 0;
        }

            .our-solutions-page .screenshot-area .ss {
                width: 330px;
                height: 205px;
            }

            .our-solutions-page .screenshot-area .ss-exp .exp-item .title {
                font-size: 14px;
            }

            .our-solutions-page .screenshot-area .ss-exp {
                width: 100%;
            }

                .our-solutions-page .screenshot-area .ss-exp .exp-item p {
                    font-size: 13px;
                    padding-top: 10px;
                }
}

/* Our Solutions */

/* General FAQ */

.general-faq {
    border: 5px solid #F4F4F5;
    margin: 144px 0 110px;
    padding: 7vw 11vw;
}

    .general-faq.fill {
        background: #F4F4F5;
    }

    .general-faq > .title {
        text-align: center;
        margin-bottom: 75px;
    }

    .general-faq .title h4 {
        font-family: museo-slab, serif;
        font-weight: normal;
        font-size: 35px;
        letter-spacing: -0.02em;
        color: #000;
        margin-bottom: 10px;
    }

    .general-faq .title p {
        font-weight: normal;
        font-size: 17px;
        line-height: 20px;
        color: #898c93;
    }

    .general-faq .question-cards {
    }

        .general-faq .question-cards .card-item {
        }

            .general-faq .question-cards .card-item .title {
                font-family: museo-slab, serif;
                font-weight: normal;
                font-size: 20px;
                letter-spacing: -0.02em;
                color: #000;
                position: relative;
                margin-bottom: 0;
                transition: .4s;
                cursor: pointer;
                padding-right: 30px;
            }

                .general-faq .question-cards .card-item .title span {
                    width: 20px;
                    height: 20px;
                    position: absolute;
                    right: 0px;
                    top: 15px;
                    transform: translateY(-50%);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

            .general-faq .question-cards .card-item p {
                margin-bottom: 0;
                padding: 5px 50px 5px 15px;
                border-left: 1px solid #E4E5EA;
                display: none;
                margin-top: 25px;
            }

            .general-faq .question-cards .card-item + .card-item {
                margin-top: 35px;
            }

            .general-faq .question-cards .card-item.active .title {
                color: #2264ff;
            }

            .general-faq .question-cards .card-item .title span:before {
                content: "";
                position: absolute;
                top: 0;
                bottom: 0;
                width: 2px;
                background: #2264FF;
                transition: .4s;
            }

            .general-faq .question-cards .card-item .title span:after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                height: 2px;
                background: #2264FF;
                transition: .4s;
            }

            .general-faq .question-cards .card-item.active .title span:before {
                transform: rotate(-90deg);
                background: #A0A2A8;
            }

            .general-faq .question-cards .card-item.active .title span:after {
                background: #A0A2A8;
                transform: rotate(-90deg) scale(0);
            }

@media only screen and (min-width: 1200px) {
    .general-faq {
        opacity: 0;
        transform: translateY(40px);
    }
}

@media only screen and (max-width: 900px) {
    .general-faq {
        padding: 7vw 7vw;
        margin: 110px 0 110px;
    }

        .general-faq .title h4 {
            font-size: 28px;
        }

        .general-faq > .title {
            margin-bottom: 50px;
        }

        .general-faq .question-cards .card-item .title {
            font-size: 19px;
        }

        .general-faq .question-cards .card-item p {
            font-size: 15px;
        }

        .general-faq .question-cards .card-item + .card-item {
            margin-top: 26px;
        }
}

@media only screen and (max-width: 767px) {
    .general-faq {
        margin: 50px 0 70px;
        padding: 10vw 7vw;
    }

        .general-faq > .title {
            margin-bottom: 50px;
        }

        .general-faq .title h4 {
            font-size: 21px;
        }

        .general-faq .question-cards .card-item .title {
            font-size: 16px;
        }

        .general-faq .question-cards .card-item p {
            padding-right: 0;
            font-size: 14px;
            padding-right: 10px;
        }

        .general-faq .title p {
            font-size: 14px;
            line-height: normal;
        }
}

/* General FAQ */

/* Join Teqpay */

.join-teqpay {
    padding-top: 200px;
}

    .join-teqpay .content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 75px;
    }

        .join-teqpay .content .left {
            width: 610px;
        }

            .join-teqpay .content .left .systems {
                display: flex;
                flex-direction: column;
                z-index: 2;
                position: relative;
            }

                .join-teqpay .content .left .systems .system-item {
                    display: flex;
                    align-items: center;
                }

                    .join-teqpay .content .left .systems .system-item .img {
                        position: relative;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        min-width: 80px;
                    }

                        .join-teqpay .content .left .systems .system-item .img .bg {
                            position: absolute;
                        }

                            .join-teqpay .content .left .systems .system-item .img .bg img {
                            }

                        .join-teqpay .content .left .systems .system-item .img .ico {
                            position: relative;
                            width: 100%;
                        }

                            .join-teqpay .content .left .systems .system-item .img .ico > img {
                                position: relative;
                                z-index: 2; /* width: 100%; */
                            }

                    .join-teqpay .content .left .systems .system-item:nth-child(1) .img .ico > img {
                        transform: rotate(21deg);
                    }

                    .join-teqpay .content .left .systems .system-item:nth-child(1) .img .ico .ico-shadow {
                        transform: rotate(15deg);
                    }

                    .join-teqpay .content .left .systems .system-item .img .ico .ico-shadow {
                        position: absolute;
                        top: 10px;
                        left: 5px;
                        filter: blur(9px);
                    }

                    .join-teqpay .content .left .systems .system-item .exp {
                        display: flex;
                        flex-direction: column;
                        margin-left: 55px;
                    }

                        .join-teqpay .content .left .systems .system-item .exp .system-title {
                            font-weight: normal;
                            font-size: 25px;
                            line-height: 37px;
                            color: #2264ff;
                            margin-bottom: 15px;
                        }

                            .join-teqpay .content .left .systems .system-item .exp .system-title strong {
                                font-weight: 600;
                            }

                        .join-teqpay .content .left .systems .system-item .exp p {
                            text-align: center;
                            font-size: 16px;
                            line-height: 25px;
                            color: #424755;
                            text-align: left;
                        }

        .join-teqpay .content .right {
            width: 610px;
            background: #FFFFFF;
            padding: 45px 85px;
        }

            .join-teqpay .content .right .form {
            }

                .join-teqpay .content .right .form .general-title {
                    font-size: 25px;
                    line-height: normal;
                    margin-bottom: 50px;
                }

                .join-teqpay .content .right .form form {
                }

                    .join-teqpay .content .right .form form .form-item {
                        width: 100%;
                    }

                        .join-teqpay .content .right .form form .form-item input {
                            width: 100%;
                            height: 50px;
                            border: 1px solid #EAEEF8;
                            padding: 0px 20px;
                            font-weight: 500;
                            font-size: 14px;
                            line-height: 3px;
                            color: #61687b;
                            outline: 0 !important;
                            box-shadow: none !important;
                            resize: none;
                            transition: .4s;
                        }

                        .join-teqpay .content .right .form form .form-item textarea {
                            width: 100%;
                            height: 50px;
                            border: 1px solid #EAEEF8;
                            padding: 0px 20px;
                            font-weight: 500;
                            font-size: 14px;
                            color: #61687b;
                            outline: 0 !important;
                            box-shadow: none !important;
                            resize: none;
                            transition: .4s;
                        }

                    .join-teqpay .content .right .form form .submit-form {
                        font-weight: 600;
                        font-size: 13px;
                        color: #fff;
                        background: #2264FF;
                        border: 0;
                        box-shadow: none !important;
                        outline: 0 !important;
                        width: 100%;
                        padding: 18px 0px;
                        transition: .4s;
                    }

        .join-teqpay .content .left .systems .system-item + .system-item {
            padding-top: 65px;
            border-top: 1px solid #EAEEF8;
            margin-top: 65px;
        }

        .join-teqpay .content .right .form form .form-item + .form-item {
            margin-top: 15px;
        }

        .join-teqpay .content .right .form form .form-item textarea {
            padding-top: 17px;
            height: 100px;
        }

        .join-teqpay .content .right .form form .policys {
            padding: 35px 50px;
        }

            .join-teqpay .content .right .form form .policys .policy {
                position: relative;
            }

                .join-teqpay .content .right .form form .policys .policy input {
                    appearance: none;
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    position: absolute;
                    left: 0;
                    top: 5px;
                }

                .join-teqpay .content .right .form form .policys .policy label {
                    margin-bottom: 0;
                    font-weight: normal;
                    font-size: 13px;
                    color: #61687b;
                    padding-left: 25px;
                    position: relative;
                    cursor: pointer;
                }

                    .join-teqpay .content .right .form form .policys .policy label a {
                        color: #61687B;
                        font-weight: 500;
                    }

                    .join-teqpay .content .right .form form .policys .policy label:before {
                        content: "";
                        position: absolute;
                        left: 0;
                        top: 50%;
                        transform: translateY(-50%);
                        width: 13px;
                        height: 13px;
                        border: 1px solid #A0A2A8;
                    }

                    .join-teqpay .content .right .form form .policys .policy label:after {
                        content: "";
                        position: absolute;
                        left: 2px;
                        top: 50%;
                        transform: translateY(-50%) scale(1.5);
                        opacity: 0;
                        width: 9px;
                        height: 9px;
                        background: #a0a2a8;
                        transition: 0.2s;
                    }

                .join-teqpay .content .right .form form .policys .policy + .policy {
                    margin-top: 25px;
                }

        .join-teqpay .content .right .form form .submit-form:hover {
            background: #1a4ec9;
        }

        .join-teqpay .content .right .form form .policys .policy input:checked ~ label:after {
            opacity: 1;
            transform: translateY(-50%) scale(1);
        }

        .join-teqpay .content .right .form form .form-item input:focus, .join-teqpay .content .right .form form .form-item textarea:focus {
            border-color: #2b64ff;
        }

@media only screen and (min-width: 1200px) {
    .join-teqpay .content .left .systems .system-item {
        transform: translateX(70px);
        opacity: 0;
    }

        .join-teqpay .content .left .systems .system-item .exp {
            transform: translateX(20px);
        }

    .join-teqpay .content .right {
        transform: translateX(-30px);
    }

        .join-teqpay .content .right .form .general-title {
            opacity: 0;
        }

        .join-teqpay .content .right .form form > div {
            opacity: 0;
        }

        .join-teqpay .content .right .form form .submit-form {
            opacity: 0;
        }
}

@media only screen and (max-width: 1366px) {
    .join-teqpay {
        padding-top: 180px;
    }

        .join-teqpay .content .left .systems .system-item .img {
            width: 60px;
        }

        .join-teqpay .content .left .systems .system-item:nth-child(2) .img {
            width: 90px;
        }

        .join-teqpay .content .left .systems .system-item .img .ico .ico-shadow {
            width: 60px;
        }

            .join-teqpay .content .left .systems .system-item .img .ico .ico-shadow img {
                width: 100%;
            }

        .join-teqpay .content .left .systems .system-item:nth-child(1) .img .ico .ico-shadow img {
            width: 45px;
        }

        .join-teqpay .content .left .systems .system-item .exp .system-title {
            font-size: 20px;
        }

        .join-teqpay .content .left .systems .system-item .exp p {
            font-size: 15px;
        }

        .join-teqpay .content .left .systems .system-item + .system-item {
            margin-top: 50px;
            padding-top: 50px;
        }

        .join-teqpay .content .left {
            width: 560px;
        }

        .join-teqpay .content {
            padding: 0 25px;
        }
}

@media only screen and (max-width: 1200px) {
    .join-teqpay {
        padding-top: 150px;
    }

        .join-teqpay .content {
            flex-direction: column;
        }

            .join-teqpay .content .left {
                width: 91%;
            }

                .join-teqpay .content .left .systems .system-item {
                    width: 48%;
                    border: 0 !important;
                }

                .join-teqpay .content .left .systems {
                    flex-direction: row;
                    flex-wrap: wrap;
                    justify-content: center;
                }

                    .join-teqpay .content .left .systems .system-item:nth-child(2) {
                        margin-left: 4%;
                        margin-top: 0;
                        padding-top: 0;
                    }

                    .join-teqpay .content .left .systems .system-item:nth-child(n+3) {
                        margin-top: 45px;
                    }

                    .join-teqpay .content .left .systems .system-item .img .ico .ico-shadow {
                        width: 40px;
                    }

            .join-teqpay .content .right {
                margin-top: 75px;
                width: 820px;
            }

            .join-teqpay .content .left .systems {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                justify-content: unset;
            }

                .join-teqpay .content .left .systems .system-item {
                    margin-left: 0 !important;
                    flex-direction: column;
                }

                    .join-teqpay .content .left .systems .system-item + .system-item {
                        margin-top: 0;
                        padding-top: 0;
                        border: 0;
                    }

                    .join-teqpay .content .left .systems .system-item .exp .system-title {
                        text-align: center;
                        margin-bottom: 5px;
                    }

                    .join-teqpay .content .left .systems .system-item .exp {
                        margin-left: 0;
                    }

                    .join-teqpay .content .left .systems .system-item .img .ico {
                        display: flex;
                        justify-content: center;
                    }

                    .join-teqpay .content .left .systems .system-item .img {
                        height: 135px;
                    }

                    .join-teqpay .content .left .systems .system-item .exp p {
                        text-align: center;
                    }
}

@media only screen and (max-width: 900px) {
    .join-teqpay .content {
        padding: 0;
    }

        .join-teqpay .content .right {
            width: 650px;
        }

        .join-teqpay .content .left .systems {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: unset;
        }

            .join-teqpay .content .left .systems .system-item {
                margin-left: 0 !important;
            }

                .join-teqpay .content .left .systems .system-item + .system-item {
                    margin-top: 0;
                    padding-top: 0;
                    border: 0;
                }
}

@media only screen and (max-width: 767px) {
    .join-teqpay .content .right {
        width: 100%;
        padding: 45px 24px;
        margin-top: 60px;
    }

        .join-teqpay .content .right .form .general-title {
            font-size: 20px;
        }

    .join-teqpay .content .left .systems .system-item .img {
        width: 55px;
        margin-bottom: 35px;
        height: 80px;
    }

    .join-teqpay .content .left .systems .system-item {
        flex-direction: column;
    }

        .join-teqpay .content .left .systems .system-item:nth-child(2) .img {
            width: 70px;
        }

        .join-teqpay .content .left .systems .system-item .exp .system-title {
            text-align: center;
            line-height: normal;
            margin-bottom: 10px;
        }

        .join-teqpay .content .left .systems .system-item .exp {
            margin-left: 0;
        }

            .join-teqpay .content .left .systems .system-item .exp p {
                text-align: center;
                font-size: 15px;
                line-height: 22px;
            }

        .join-teqpay .content .left .systems .system-item + .system-item {
        }

    .join-teqpay .content .left {
        padding-right: 5px;
    }

        .join-teqpay .content .left .systems .system-item .img .ico .ico-shadow {
            width: 60px;
        }

        .join-teqpay .content .left .systems .system-item:nth-child(1) .img .ico .ico-shadow {
            width: 70px;
        }

            .join-teqpay .content .left .systems .system-item:nth-child(1) .img .ico .ico-shadow img {
                width: 64px;
            }

    .join-teqpay .content .right .form form .policys {
        padding: 35px 30px;
    }

        .join-teqpay .content .right .form form .policys .policy label {
            font-size: 12px;
        }
}

/* Join Teqpay */

/* Payment */

.our-solutions-page .payment-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .our-solutions-page .payment-entry .left {
        width: 520px;
    }

        .our-solutions-page .payment-entry .left .title {
            margin-bottom: 115px;
        }

            .our-solutions-page .payment-entry .left .title h4 {
                font-weight: 600;
                font-size: 40px;
                line-height: 52px;
                color: #000000;
                margin-bottom: 15px;
            }

            .our-solutions-page .payment-entry .left .title p {
                font-weight: normal;
                font-size: 19px;
                line-height: 26px;
                color: #000;
            }

            .our-solutions-page .payment-entry .left .title h4 span {
                color: #2264ff;
            }

        .our-solutions-page .payment-entry .left .systems {
            display: flex;
        }

            .our-solutions-page .payment-entry .left .systems .system-item {
                display: flex;
                flex-direction: column;
            }

                .our-solutions-page .payment-entry .left .systems .system-item + .system-item {
                    margin-left: 75px;
                }

                .our-solutions-page .payment-entry .left .systems .system-item .img {
                    margin-bottom: 10px;
                }

                    .our-solutions-page .payment-entry .left .systems .system-item .img .bg img {
                    }

                    .our-solutions-page .payment-entry .left .systems .system-item .img .ico {
                        position: relative;
                        width: 30px;
                        height: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }

                        .our-solutions-page .payment-entry .left .systems .system-item .img .ico > img {
                            position: relative;
                            z-index: 2;
                            width: 100%;
                        }

                .our-solutions-page .payment-entry .left .systems .system-item:nth-child(1) .img .ico > img {
                    transform: rotate(21deg);
                    width: 25px;
                }

                .our-solutions-page .payment-entry .left .systems .system-item:nth-child(1) .img .ico .ico-shadow {
                    transform: rotate(15deg);
                    top: 5px;
                    width: 25px;
                }

                .our-solutions-page .payment-entry .left .systems .system-item .img .ico .ico-shadow {
                    position: absolute;
                    top: 50%;
                    left: 5px;
                    transform: translateY(-50%);
                    filter: blur(9px);
                    width: 100%;
                }

                    .our-solutions-page .payment-entry .left .systems .system-item .img .ico .ico-shadow img {
                        width: 100%;
                    }

                .our-solutions-page .payment-entry .left .systems .system-item .exp {
                }

                    .our-solutions-page .payment-entry .left .systems .system-item .exp .system-title {
                        font-weight: normal;
                        font-size: 23px;
                        color: #2264ff;
                        line-height: normal;
                    }

                        .our-solutions-page .payment-entry .left .systems .system-item .exp .system-title strong {
                            display: block;
                            line-height: normal;
                        }

    .our-solutions-page .payment-entry .rigth {
        width: 50%;
    }

        .our-solutions-page .payment-entry .rigth .payment-options {
            display: flex;
            flex-wrap: wrap;
        }

            .our-solutions-page .payment-entry .rigth .payment-options .option-item {
                display: flex;
                flex-direction: column;
                border: 1px solid #E9ECF4;
                width: 45%;
                padding: 55px 35px;
            }

                .our-solutions-page .payment-entry .rigth .payment-options .option-item img {
                    width: 30px;
                    margin-bottom: 13px;
                }

                .our-solutions-page .payment-entry .rigth .payment-options .option-item .title {
                    font-family: museo-slab, serif;
                    font-weight: normal;
                    font-size: 24px;
                    letter-spacing: -0.02em;
                    line-height: 34px;
                    color: #000;
                    margin-bottom: 10px;
                }

                .our-solutions-page .payment-entry .rigth .payment-options .option-item p {
                    margin-bottom: 0;
                    font-weight: normal;
                    font-size: 17px;
                    line-height: 26px;
                    color: #424755;
                }

                .our-solutions-page .payment-entry .rigth .payment-options .option-item:nth-child(even) {
                    margin-left: 10%;
                    transform: translateY(70px);
                }

                .our-solutions-page .payment-entry .rigth .payment-options .option-item:nth-child(n+3) {
                    margin-top: 35px;
                }

@media only screen and (min-width: 1200px) {
    .our-solutions-page .payment-entry .left {
        opacity: 0;
    }

    .our-solutions-page .payment-entry .rigth .payment-options .option-item {
        opacity: 0;
        transform: scale(.9);
    }
}

@media only screen and (max-width: 1200px) {
    .our-solutions-page .payment-entry {
        flex-direction: column;
    }

        .our-solutions-page .payment-entry .left {
            width: 100%;
            margin-bottom: 95px;
        }

            .our-solutions-page .payment-entry .left .systems {
                justify-content: center;
            }

            .our-solutions-page .payment-entry .left .title h4 {
                text-align: center;
                padding: 0 65px;
            }

            .our-solutions-page .payment-entry .left .title p {
                text-align: center;
                width: 500px;
                margin: 0 auto;
            }

            .our-solutions-page .payment-entry .left .title {
                margin-bottom: 70px;
            }

            .our-solutions-page .payment-entry .left .systems .system-item .img .ico {
                width: 60px;
                height: 70px;
            }

            .our-solutions-page .payment-entry .left .systems .system-item:nth-child(1) .img .ico > img {
                width: 40px;
            }

            .our-solutions-page .payment-entry .left .systems .system-item .exp .system-title {
                font-size: 29px;
            }

            .our-solutions-page .payment-entry .left .systems .system-item + .system-item {
                margin-left: 110px;
            }

        .our-solutions-page .payment-entry .rigth {
            width: 83%;
        }
}

@media only screen and (max-width: 900px) {
    .our-solutions-page {
        padding-top: 140px;
    }

        .our-solutions-page .payment-entry .left .title h4 {
            font-size: 30px;
            line-height: normal;
        }

        .our-solutions-page .payment-entry .left .title p {
            font-size: 18px;
        }

        .our-solutions-page .payment-entry .rigth .payment-options .option-item {
            padding: 35px 30px;
        }

            .our-solutions-page .payment-entry .rigth .payment-options .option-item p {
                font-size: 16px;
                line-height: 24px;
            }
}

@media only screen and (max-width: 767px) {
    .our-solutions-page .payment-entry .left .title h4 {
        font-size: 20px;
        padding: 0 42px;
    }

    .our-solutions-page .payment-entry .left .title p {
        font-size: 14px;
        width: 100%;
        line-height: normal;
        padding: 0 15px;
    }

    .our-solutions-page .payment-entry .left .systems {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

        .our-solutions-page .payment-entry .left .systems .system-item .img .ico {
            width: 40px;
            height: 60px;
        }

        .our-solutions-page .payment-entry .left .systems .system-item:nth-child(1) .img .ico > img {
            width: 35px;
        }

        .our-solutions-page .payment-entry .left .systems .system-item .img {
            display: flex;
            justify-content: center;
        }

        .our-solutions-page .payment-entry .left .systems .system-item .exp .system-title {
            font-size: 22px;
            text-align: center;
        }

        .our-solutions-page .payment-entry .left .systems .system-item + .system-item {
            margin-left: 0;
            margin: 25px 0;
            padding: 25px 0;
            position: relative;
        }

        .our-solutions-page .payment-entry .left .systems .system-item:nth-child(3) {
            margin-left: 0;
            margin-top: 0;
            padding: 0;
        }

        .our-solutions-page .payment-entry .left .systems .system-item {
            width: 40%;
        }

    .our-solutions-page .payment-entry .left {
        margin-bottom: 55px;
    }

    .our-solutions-page .payment-entry .rigth {
        width: 100%;
        padding-right: 45px;
    }
}

@media only screen and (max-width: 767px) {
    .our-solutions-page .payment-entry .rigth .payment-options {
        flex-wrap: nowrap;
    }

        .our-solutions-page .payment-entry .rigth .payment-options .option-item {
            margin-left: 0 !important;
            margin-top: 0 !important;
            transform: translateY(0) !important;
            height: 250px;
        }

            .our-solutions-page .payment-entry .rigth .payment-options .option-item .title {
                font-size: 22px;
            }

            .our-solutions-page .payment-entry .rigth .payment-options .option-item p {
                font-size: 15px;
                line-height: 24px;
            }

    .our-solutions-page .payment-entry .left .title {
        margin-bottom: 45px;
    }

    .our-solutions-page .payment-entry .left .systems .system-item:nth-child(2):before {
        content: "";
        position: absolute;
        left: -50px;
        right: -50px;
        top: 9px;
        height: 1px;
        background: #e9ecf4;
    }

    .our-solutions-page .payment-entry .left .systems .system-item:nth-child(2):after {
        content: "";
        position: absolute;
        left: -50px;
        right: -50px;
        bottom: 0px;
        height: 1px;
        background: #e9ecf4;
    }
}

/* Payment */

/* Blog List */

.blog-list {
    padding: 200px 0 100px;
}

    .blog-list .list-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 65px;
    }

        .blog-list .list-top .general-title {
            font-size: 33px;
            width: 490px;
            text-align: left;
            line-height: normal;
        }

        .blog-list .list-top .blog-filter {
            display: flex;
        }

            .blog-list .list-top .blog-filter .search {
                display: flex;
                align-items: center;
                background: #F8F7F7;
                border: 1px solid #EAEEF8;
                padding: 15px 20px;
                transition: .4s;
                cursor: pointer;
            }

                .blog-list .list-top .blog-filter .search svg {
                    stroke: #A0A2A8;
                    fill: none;
                    transition: .4s;
                }

                .blog-list .list-top .blog-filter .search input {
                    background: none;
                    border: none;
                    box-shadow: none;
                    outline: 0;
                    font-weight: normal;
                    font-size: 13px;
                    line-height: 17px;
                    color: #000000;
                    padding-left: 10px;
                    margin-left: 0;
                    overflow: hidden;
                    width: 0;
                    padding-left: 0;
                    transition: .4s;
                }

            .blog-list .list-top .blog-filter .calendar {
                margin-left: 15px;
                display: flex;
                align-items: center;
                background: #F8F7F7;
                border: 1px solid #EAEEF8;
                padding: 15px 20px;
                position: relative;
                transition: .4s;
                cursor: pointer;
            }

                .blog-list .list-top .blog-filter .calendar svg {
                    stroke: #A0A2A8;
                    fill: none;
                    transition: .4s;
                }

                .blog-list .list-top .blog-filter .calendar .dropdown {
                    width: 0;
                    transition: .4s;
                }

    .blog-list .content {
        display: flex;
    }

        .blog-list .content .blog-wrap {
            width: 80%;
            display: flex;
            flex-direction: column;
        }

            .blog-list .content .blog-wrap .entry-top {
                display: flex;
                margin-bottom: 110px;
            }

                .blog-list .content .blog-wrap .entry-top .latest-posted {
                    width: 49%;
                    display: block;
                }

                    .blog-list .content .blog-wrap .entry-top .latest-posted .img {
                        width: 100%;
                        height: 265px;
                        background-repeat: no-repeat;
                        background-position: center;
                        background-size: cover;
                        margin-bottom: 45px;
                    }

                    .blog-list .content .blog-wrap .entry-top .latest-posted .date {
                        font-weight: normal;
                        font-size: 11px;
                        color: #2264ff;
                        background: #EAEEF8;
                        padding: 8px 8px;
                        display: inline-block;
                        line-height: normal;
                        margin-bottom: 15px;
                    }

                    .blog-list .content .blog-wrap .entry-top .latest-posted .title {
                        font-weight: 600;
                        font-size: 24px;
                        line-height: 31px;
                        color: #000;
                        margin-bottom: 10px;
                    }

                    .blog-list .content .blog-wrap .entry-top .latest-posted .summary {
                        font-weight: normal;
                        font-size: 15px;
                        line-height: 20px;
                        color: #424755;
                    }

                .blog-list .content .blog-wrap .entry-top .last-two-posts {
                    width: 49%;
                    margin-left: 2%;
                    border: 1px solid #DFE0E3;
                }

                    .blog-list .content .blog-wrap .entry-top .last-two-posts .item {
                        padding: 45px 55px;
                        position: relative;
                        display: block;
                    }

                        .blog-list .content .blog-wrap .entry-top .last-two-posts .item + .item:before {
                            content: "";
                            position: absolute;
                            left: 30px;
                            top: 0;
                            right: 30px;
                            height: 1px;
                            background: #DFE0E3;
                        }

                        .blog-list .content .blog-wrap .entry-top .last-two-posts .item .date {
                            font-weight: normal;
                            font-size: 11px;
                            color: #2264ff;
                            background: #EAEEF8;
                            padding: 8px 8px;
                            display: inline-block;
                            line-height: normal;
                            margin-bottom: 15px;
                        }

                        .blog-list .content .blog-wrap .entry-top .last-two-posts .item .title {
                            font-weight: 600;
                            font-size: 24px;
                            line-height: 31px;
                            color: #000;
                            margin-bottom: 10px;
                        }

                        .blog-list .content .blog-wrap .entry-top .last-two-posts .item .summary {
                            font-weight: normal;
                            font-size: 15px;
                            line-height: 20px;
                            color: #424755;
                        }

            .blog-list .content .blog-wrap .show-more {
                font-weight: 500;
                font-size: 15px;
                color: #2264ff;
                border: 1px solid #2264ff;
                padding: 12px 40px;
                display: inline-block;
                width: max-content;
                margin: 60px auto 0;
                transition: .4s;
                cursor: pointer;
            }

        .blog-list .content .e-news {
            width: 18%;
            margin-left: 2%;
            padding-bottom: 110px;
        }

            .blog-list .content .e-news .holder {
                display: flex;
                flex-direction: column;
                background: #F1F2F5;
                padding: 55px 35px;
                position: sticky;
                top: 155px;
            }

                .blog-list .content .e-news .holder p {
                    font-family: museo-slab, serif;
                    font-weight: normal;
                    font-size: 19px;
                    letter-spacing: -0.02em;
                    text-align: center;
                    color: #272b34;
                }

                .blog-list .content .e-news .holder span {
                    font-weight: normal;
                    font-size: 13px;
                    letter-spacing: -0.02em;
                    line-height: 16px;
                    text-align: center;
                    color: #424755;
                    margin-bottom: 15px;
                }

                .blog-list .content .e-news .holder form {
                    display: flex;
                    flex-direction: column;
                }

                    .blog-list .content .e-news .holder form input {
                        font-weight: normal;
                        font-size: 12px;
                        line-height: 17px;
                        color: #a0a2a8;
                        border: 1px solid #DFE3ED;
                        background: #F8F7F7;
                        padding: 13px 15px;
                        text-align: center;
                        outline: 0 !important;
                        box-shadow: none;
                    }

                    .blog-list .content .e-news .holder form .sign-up {
                        color: #fff;
                        background: #2264FF;
                        text-align: center;
                        width: max-content;
                        font-weight: 500;
                        margin: 25px auto 0;
                        padding: 7px 25px;
                        box-shadow: none !important;
                        outline: 0 !important;
                        border: 1px solid #2b64ff;
                        transition: .4s;
                    }

                        .blog-list .content .e-news .holder form .sign-up:hover {
                            background: #f1f2f5;
                            color: #2264FF;
                        }

        .blog-list .content .blog-wrap .older-posts {
            display: flex;
            flex-wrap: wrap;
        }

            .blog-list .content .blog-wrap .older-posts .item-group {
                width: 49%;
                border: 1px solid #F0F1F2;
            }

                .blog-list .content .blog-wrap .older-posts .item-group .item {
                    padding: 55px 55px 80px;
                    position: relative;
                    display: block;
                }

                    .blog-list .content .blog-wrap .older-posts .item-group .item + .item:before {
                        content: "";
                        position: absolute;
                        left: 30px;
                        top: 0;
                        right: 30px;
                        height: 1px;
                        background: #F0F1F2;
                    }

                    .blog-list .content .blog-wrap .older-posts .item-group .item .date {
                        font-weight: normal;
                        font-size: 11px;
                        color: #2264ff;
                        background: #EAEEF8;
                        padding: 8px 8px;
                        display: inline-block;
                        line-height: normal;
                        margin-bottom: 15px;
                    }

                    .blog-list .content .blog-wrap .older-posts .item-group .item .title {
                        font-weight: 600;
                        font-size: 24px;
                        line-height: 31px;
                        color: #000;
                        margin-bottom: 15px;
                    }

                    .blog-list .content .blog-wrap .older-posts .item-group .item .summary {
                        font-weight: normal;
                        font-size: 15px;
                        line-height: 20px;
                        color: #424755;
                    }

                .blog-list .content .blog-wrap .older-posts .item-group:nth-child(even) {
                    margin-left: 2%;
                }

                .blog-list .content .blog-wrap .older-posts .item-group:nth-child(n+3) {
                    margin-top: 25px;
                }

        .blog-list .content .blog-wrap .show-more:hover {
            background: #2264ff;
            color: #ffff;
        }

    .blog-list .list-top .blog-filter .search.clicked input {
        width: 130px;
        padding-left: 10px;
    }

    .blog-list .list-top .blog-filter .search.clicked svg {
        stroke: #2264FF;
    }

    .blog-list .list-top .blog-filter .search input::placeholder {
        font-weight: 400;
        font-size: 13px;
        line-height: 17px;
        color: #636877;
    }

    .blog-list .list-top .blog-filter .search.clicked.focus {
        background: #fff;
    }

    .blog-list .list-top .blog-filter .calendar.clicked svg {
        stroke: #2264FF;
    }

    .blog-list .list-top .blog-filter .calendar .calendar-select {
        position: relative;
        overflow: hidden;
        width: 0;
        transition: .4s;
    }

        .blog-list .list-top .blog-filter .calendar .calendar-select .select-top {
            font-weight: normal;
            font-size: 17px;
            line-height: 17px;
            color: #a0a2a8;
            padding: 3px 15px 0 10px;
        }

    .blog-list .list-top .blog-filter .calendar .select-dropdown {
        position: absolute;
        opacity: 0;
        visibility: hidden;
        top: calc(100% + 5px);
        width: 100%;
        left: 0;
        background: #fff;
        border: 1px solid #EAEEF8;
        z-index: 2;
        padding: 10px 15px 15px;
        transition: .3s;
    }

        .blog-list .list-top .blog-filter .calendar .select-dropdown ul {
            margin-bottom: 0;
        }

            .blog-list .list-top .blog-filter .calendar .select-dropdown ul li {
                font-weight: 500;
                font-size: 15px;
                line-height: 17px;
                color: #61687b;
                padding: 10px 0;
                text-align: center;
                list-style-type: none;
                cursor: pointer;
                transition: .4s;
            }

                .blog-list .list-top .blog-filter .calendar .select-dropdown ul li + li {
                    border-top: 1px solid #EAEEF8;
                }

                .blog-list .list-top .blog-filter .calendar .select-dropdown ul li.active {
                    color: #2264FF;
                }

    .blog-list .list-top .blog-filter .calendar.clicked .calendar-select {
        width: 70px;
    }

    .blog-list .list-top .blog-filter .calendar .calendar-select .select-top:before {
        content: "";
        position: absolute;
        right: 0;
        top: 8px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6px 5px 0 5px;
        border-color: #A0A2A8 transparent transparent transparent;
        transition: .2s;
        transform: scale(0);
        transition-delay: .2s;
    }

    .blog-list .list-top .blog-filter .calendar.clicked .calendar-select .select-top:before {
        transform: scale(1);
    }

    .blog-list .list-top .blog-filter .calendar.clicked.dropdown {
        background: #fff;
    }

        .blog-list .list-top .blog-filter .calendar.clicked.dropdown .calendar-select .select-top:before {
            border-color: #2264FF transparent transparent transparent;
            transform: rotate(180deg) scale(1);
        }

    .blog-list .list-top .blog-filter .calendar .select-dropdown.active {
        opacity: 1;
        visibility: visible;
    }

@media only screen and (min-width: 1200px) {
    .blog-list .list-top {
        opacity: 0;
    }

    .blog-list .content {
        transform: translateY(140px) scale(1.2);
        opacity: 0;
    }
}

@media only screen and (max-width: 1200px) {
    .blog-list {
        padding: 140px 0 80px;
    }

        .blog-list .content {
            flex-direction: column-reverse;
        }

            .blog-list .content .e-news {
                width: 100%;
                margin-left: 0;
                padding-bottom: 35px;
            }

                .blog-list .content .e-news .holder {
                    padding: 30px 35px;
                }

                    .blog-list .content .e-news .holder form input {
                        width: 420px;
                        margin: 0 auto;
                    }

            .blog-list .content .blog-wrap {
                width: 100%;
            }

                .blog-list .content .blog-wrap .entry-top {
                    margin-bottom: 60px;
                }

                    .blog-list .content .blog-wrap .entry-top .last-two-posts .item .title {
                        font-size: 22px;
                        line-height: 28px;
                    }

                .blog-list .content .blog-wrap .older-posts .item-group .item .title {
                    font-size: 22px;
                    line-height: 28px;
                }

                .blog-list .content .blog-wrap .older-posts .item-group .item {
                    padding: 55px 50px 60px;
                }
}

@media only screen and (max-width: 900px) {
    .blog-list {
        padding: 140px 0 50px;
    }

        .blog-list .list-top .general-title {
            font-size: 27px;
            width: 360px;
        }

        .blog-list .content .e-news .holder p {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .blog-list .content .e-news .holder span {
            margin-bottom: 20px;
        }

        .blog-list .content .e-news .holder form .sign-up {
            font-size: 12px;
        }

        .blog-list .content .blog-wrap .entry-top {
            flex-direction: column;
        }

            .blog-list .content .blog-wrap .entry-top .latest-posted {
                width: 100%;
            }

                .blog-list .content .blog-wrap .entry-top .latest-posted .img {
                    height: 240px;
                    margin-bottom: 30px;
                }

            .blog-list .content .blog-wrap .entry-top .last-two-posts {
                margin-left: 0;
                width: 100%;
                margin-top: 35px;
            }

        .blog-list .content .blog-wrap .older-posts .item-group .item {
            padding: 35px 30px 30px;
        }

            .blog-list .content .blog-wrap .older-posts .item-group .item .title {
                font-size: 19px;
                line-height: normal;
            }

            .blog-list .content .blog-wrap .older-posts .item-group .item .summary {
                font-size: 14px;
            }
}

@media only screen and (max-width: 767px) {
    .blog-list {
        padding: 120px 0 40px;
    }

        .blog-list .list-top {
            flex-direction: column;
            margin-bottom: 50px;
        }

            .blog-list .list-top .general-title {
                text-align: center;
                margin-bottom: 35px;
            }

        .blog-list .content .e-news .holder form input {
            width: 100%;
        }

        .blog-list .content .e-news .holder form .sign-up {
            margin-top: 15px;
        }

        .blog-list .content .e-news .holder span {
            margin-bottom: 15px;
        }

        .blog-list .content .e-news .holder {
            padding: 25px 35px;
        }

        .blog-list .content .e-news {
            padding-bottom: 20px;
        }

        .blog-list .content .blog-wrap .entry-top .latest-posted .img {
            height: 170px;
            margin-bottom: 25px;
        }

        .blog-list .content .blog-wrap .entry-top .latest-posted .title {
            font-size: 19px;
            line-height: normal;
        }

        .blog-list .content .blog-wrap .entry-top .last-two-posts .item {
            padding: 40px 25px;
        }

            .blog-list .content .blog-wrap .entry-top .last-two-posts .item .date {
                margin-bottom: 10px;
            }

            .blog-list .content .blog-wrap .entry-top .last-two-posts .item .title {
                font-size: 20px;
            }

        .blog-list .content .blog-wrap .older-posts {
            flex-direction: column;
        }

            .blog-list .content .blog-wrap .older-posts .item-group {
                width: 100%;
            }

                .blog-list .content .blog-wrap .older-posts .item-group + .item-group {
                    margin-left: 0;
                    margin-top: 15px;
                }

        .blog-list .content .blog-wrap .show-more {
            margin: 50px auto 0;
        }
}

/* Blog List */

/* Blog Detail */

.blog-detail {
    padding: 185px 20vw 100px;
}

    .blog-detail .banner {
        height: 300px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        padding: 0 105px;
        position: relative;
        margin-bottom: 65px;
    }

        .blog-detail .banner:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, #000 100%);
        }

        .blog-detail .banner .text {
            width: 540px;
            position: relative;
        }

            .blog-detail .banner .text span {
                font-weight: normal;
                font-size: 13px;
                line-height: 20px;
                color: #ebebeb;
                display: block;
                margin-bottom: 10px;
            }

            .blog-detail .banner .text h1 {
                font-weight: 600;
                font-size: 24px;
                line-height: 31px;
                color: #fff;
                margin-bottom: 0;
            }

    .blog-detail .article {
        padding: 0 130px 0 40px;
        display: flex;
    }

        .blog-detail .article .social-media {
            width: 50px;
            padding-bottom: 105px;
        }

            .blog-detail .article .social-media .sticky-holder {
                position: sticky;
                top: 150px;
            }

                .blog-detail .article .social-media .sticky-holder .link-list {
                    display: flex;
                    flex-direction: column;
                    border: 1px solid #F0F0F0;
                    border-radius: 65px;
                    align-items: center;
                    padding: 10px 0;
                }

                    .blog-detail .article .social-media .sticky-holder .link-list .list-item {
                    }

                        .blog-detail .article .social-media .sticky-holder .link-list .list-item svg {
                            fill: #A0A2A8;
                            transition: .4s;
                        }

        .blog-detail .article .article-content {
            width: calc(100% - 80px);
            margin-left: 30px;
        }

            .blog-detail .article .article-content .texts {
            }

                .blog-detail .article .article-content .texts p {
                    font-weight: normal;
                    font-size: 15px;
                    line-height: 20px;
                    color: #424755;
                    margin-bottom: 35px;
                }

            .blog-detail .article .article-content .go-back {
                border-top: 1px solid #F0F0F0;
                padding-top: 45px;
                margin-top: 155px;
                display: flex;
                justify-content: center;
            }

                .blog-detail .article .article-content .go-back a {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    font-weight: 500;
                    font-size: 13px;
                    color: #a0a2a8;
                }

                .blog-detail .article .article-content .go-back svg {
                    fill: none;
                    stroke: #61687B;
                    margin-bottom: 5px;
                }

                .blog-detail .article .article-content .go-back span {
                }

        .blog-detail .article .social-media .sticky-holder .link-list .list-item + .list-item {
            margin-top: 10px;
        }

        .blog-detail .article .social-media .sticky-holder .link-list .list-item:last-child {
            margin-top: 15px;
        }

        .blog-detail .article .social-media .sticky-holder .link-list .list-item:hover svg {
            fill: #2b64ff;
        }

        .blog-detail .article .social-media .sticky-holder .link-list .list-item:last-child:hover svg {
            fill: #2b64ff;
        }

@media only screen and (min-width: 1200px) {
    .blog-detail .banner {
        opacity: 0;
    }

    .blog-detail .article .social-media .sticky-holder .link-list .list-item {
        opacity: 0;
    }

    .blog-detail .article .article-content .texts p {
        opacity: 0;
    }
}

@media only screen and (max-width: 1366px) {
    .blog-detail {
        padding: 185px 11vw 100px;
    }
}

@media only screen and (max-width: 1200px) {
    .blog-detail {
        padding: 155px 4vw 60px;
    }

        .blog-detail .banner {
            height: 250px;
        }

            .blog-detail .banner .text h1 {
                font-size: 22px;
            }

        .blog-detail .article .article-content .go-back {
            margin-top: 60px;
            padding-top: 35px;
        }
}

@media only screen and (max-width: 900px) {
    .blog-detail .banner {
        padding: 0 55px;
        height: 210px;
    }

        .blog-detail .banner .text h1 {
            font-size: 20px;
        }

    .blog-detail .article {
        padding: 0 45px 0 15px;
    }

        .blog-detail .article .article-content .go-back {
            margin-top: 100px;
        }
}

@media only screen and (max-width: 767px) {
    .blog-detail {
        padding: 115px 0px 40px;
    }

        .blog-detail .banner {
            height: 150px;
            padding: 0 25px;
            margin-bottom: 25px;
        }

            .blog-detail .banner .text span {
                font-size: 12px;
                line-height: normal;
                margin-top: 15px;
            }

            .blog-detail .banner .text h1 {
                font-size: 15px;
                line-height: normal;
            }

        .blog-detail .article {
            flex-direction: column;
            padding: 0;
        }

            .blog-detail .article .social-media {
                padding-bottom: 0;
                width: max-content;
                margin: 0 auto;
            }

                .blog-detail .article .social-media .sticky-holder .link-list {
                    flex-direction: row;
                    padding: 10px 15px 10px 20px;
                }

                    .blog-detail .article .social-media .sticky-holder .link-list .list-item + .list-item {
                        margin-top: 0;
                        margin-left: 10px;
                    }

                .blog-detail .article .social-media .sticky-holder {
                    position: initial;
                }

                    .blog-detail .article .social-media .sticky-holder .link-list .list-item:last-child {
                        margin-top: 0;
                        margin-left: 20px;
                    }

            .blog-detail .article .article-content {
                width: 100%;
                margin-left: 0;
                margin-top: 25px;
                text-align: center;
            }

                .blog-detail .article .article-content .go-back {
                    margin-top: 75px;
                }

                .blog-detail .article .article-content .go-back {
                    margin-top: 30px;
                    padding-top: 35px;
                }
}

/* Blog Detail */

/* Corporate Identity */

.corporate-identity {
    padding: 210px 0 50px;
}

    .corporate-identity .main-logo {
        background: #F1F2F5;
        display: flex;
        align-items: center;
        padding: 85px 50px 85px 93px;
        margin: 100px 190px;
    }

        .corporate-identity .main-logo img {
        }

        .corporate-identity .main-logo p {
            margin-bottom: 0;
            font-weight: 500;
            font-size: 25px;
            color: #000;
            margin-left: 140px;
            position: relative;
        }

            .corporate-identity .main-logo p:before {
                content: "";
                position: absolute;
                left: -75px;
                height: 140px;
                width: 1px;
                background: #DFE0E5;
                top: -50px;
            }

        .corporate-identity .main-logo .download {
            display: block;
            margin-left: 95px;
            background: #FCFCFC;
            padding: 15px 15px;
            font-weight: 500;
            font-size: 17px;
            color: #2264ff;
            transition: .4s;
            width: 170px;
        }

            .corporate-identity .main-logo .download svg {
                fill: none;
                stroke: #2264FF;
                margin-right: 10px;
                stroke-width: 2px;
                transition: .4s;
            }

            .corporate-identity .main-logo .download span {
            }

    .corporate-identity .other-usages {
        display: flex;
        justify-content: space-between;
    }

        .corporate-identity .other-usages .usage-item {
            width: 30%;
        }

            .corporate-identity .other-usages .usage-item .logo {
                height: 220px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .corporate-identity .other-usages .usage-item .logo img {
                    max-width: 80%;
                }

            .corporate-identity .other-usages .usage-item .bottom {
                background: #F1F2F5;
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 20px 15px;
            }

                .corporate-identity .other-usages .usage-item .bottom .left {
                }

                    .corporate-identity .other-usages .usage-item .bottom .left .title {
                        font-weight: 500;
                        font-size: 18px;
                        color: #000;
                    }

                    .corporate-identity .other-usages .usage-item .bottom .left .type {
                        font-weight: 500;
                        font-size: 15px;
                        color: #a0a2a8;
                    }

                .corporate-identity .other-usages .usage-item .bottom .download {
                    font-weight: 500;
                    font-size: 15px;
                    color: #2264ff;
                    display: flex;
                    align-items: center;
                    background: #fff;
                    padding: 10px 15px;
                    transition: .4s;
                }

                    .corporate-identity .other-usages .usage-item .bottom .download svg {
                        fill: none;
                        stroke: #2264FF;
                        margin-right: 10px;
                        width: 19px;
                        height: 18px;
                        stroke-width: 2px;
                        margin-top: -4px;
                        transition: .4s;
                    }

                    .corporate-identity .other-usages .usage-item .bottom .download:hover {
                        background: #2264ff;
                        color: #fff;
                    }

                        .corporate-identity .other-usages .usage-item .bottom .download:hover svg {
                            stroke: #fff;
                        }

    .corporate-identity .main-logo .download:hover {
        background: #2264ff;
        color: #fff;
    }

        .corporate-identity .main-logo .download:hover svg {
            stroke: #fff;
        }

    .corporate-identity .oter-text {
        font-weight: 500;
        font-size: 27px;
        color: #000;
    }

@media only screen and (min-width: 1200px) {
    .corporate-identity .main-logo {
        transform: scale(1.1);
        opacity: 0;
    }

    .corporate-identity .oter-text {
        opacity: 0;
    }

    .corporate-identity .other-usages .usage-item {
        transform: translateY(30px);
        opacity: 0;
    }
}

@media only screen and (max-width: 1366px) {
    .corporate-identity .main-logo {
        margin: 100px 100px;
    }
}

@media only screen and (max-width: 1200px) {
    .corporate-identity {
        padding: 150px 0 70px;
    }

        .corporate-identity .main-logo {
            margin: 100px 60px;
            padding: 85px 30px 85px 43px;
        }

            .corporate-identity .main-logo .download {
                margin-left: 45px;
            }

            .corporate-identity .main-logo img {
                width: 200px;
            }

            .corporate-identity .main-logo p {
                margin-left: 60px;
                text-align: center;
            }

                .corporate-identity .main-logo p:before {
                    left: -30px;
                }

        .corporate-identity .other-usages .usage-item .bottom .left .title {
            font-size: 19px;
            text-align: center;
        }

        .corporate-identity .other-usages .usage-item .bottom {
            flex-direction: column;
        }

            .corporate-identity .other-usages .usage-item .bottom .left .type {
                text-align: center;
            }

            .corporate-identity .other-usages .usage-item .bottom .left {
                margin-bottom: 15px;
            }

        .corporate-identity .other-usages .usage-item .logo img {
            max-width: 65%;
        }

        .corporate-identity .other-usages .usage-item {
            width: 32%;
        }
}

@media only screen and (max-width: 900px) {
    .corporate-identity .main-logo {
        margin: 90px 20px;
        flex-direction: column;
        padding: 45px 30px 45px 43px;
    }

        .corporate-identity .main-logo p:before {
            height: 1px;
            width: 355px;
            top: -24px;
        }

        .corporate-identity .main-logo .download {
            margin-left: 0;
        }

        .corporate-identity .main-logo p {
            margin-left: 0;
            margin: 55px 0 25px;
        }

    .corporate-identity .other-usages .usage-item .bottom .left .title {
        font-size: 18px;
    }

    .corporate-identity .other-usages {
        padding-right: 245px;
    }
}

@media only screen and (max-width: 767px) {
    .corporate-identity {
        padding: 110px 0 60px;
    }

        .corporate-identity .main-logo {
            margin: 60px 20px;
            padding: 45px 20px 45px;
        }

            .corporate-identity .main-logo img {
                width: 150px;
            }

            .corporate-identity .main-logo p {
                font-size: 18px;
                line-height: normal;
            }

        .corporate-identity .oter-text {
            font-size: 22px;
        }

        .corporate-identity .other-usages {
            padding-right: 40px;
        }

        .corporate-identity .main-logo p:before {
            width: 230px;
            left: -8px;
        }

        .corporate-identity .main-logo .download {
            font-size: 14px;
            display: flex;
            justify-content: center;
        }

        .corporate-identity .other-usages {
            padding-right: 40px;
        }
}

/* Corporate Identity */

/* News */

.news {
    padding: 230px 0 80px;
}

    .news .news-tab {
        display: flex;
    }

        .news .news-tab .tab-buttons {
            width: 25%;
            padding-bottom: 115px;
        }

            .news .news-tab .tab-buttons .sticky-holder {
                position: sticky;
                top: 150px;
            }

            .news .news-tab .tab-buttons .button-item {
                cursor: pointer;
            }

                .news .news-tab .tab-buttons .button-item .general-title {
                    text-align: left;
                    font-size: 35px;
                    line-height: normal;
                }

        .news .news-tab .tab-contents {
            width: 65%;
            margin-left: 10%;
            display: flex;
            flex-direction: column;
            position: relative;
            height: 845px;
            transition: .4s;
            overflow: hidden;
        }

            .news .news-tab .tab-contents .content-item {
                width: 100%;
                position: absolute;
                left: 0;
                top: 0;
                visibility: hidden;
            }

                .news .news-tab .tab-contents .content-item .new-list {
                }

                    .news .news-tab .tab-contents .content-item .new-list .new-item {
                        background: #F1F2F5;
                        display: flex;
                        padding: 35px 0;
                        align-items: center;
                        opacity: 0;
                        transform: scale(0.9);
                    }

                        .news .news-tab .tab-contents .content-item .new-list .new-item .left {
                            width: 50%;
                            padding: 0 60px;
                            border-right: 1px solid #DFE0E5;
                        }

                        .news .news-tab .tab-contents .content-item .new-list .new-item p {
                            margin-bottom: 0;
                            width: 50%;
                            padding: 0 60px;
                            font-weight: normal;
                            font-size: 15px;
                            line-height: 20px;
                            color: #424755;
                        }

                        .news .news-tab .tab-contents .content-item .new-list .new-item .left .date {
                            font-weight: 500;
                            font-size: 15px;
                            color: #2264ff;
                            margin-bottom: 5px;
                        }

                        .news .news-tab .tab-contents .content-item .new-list .new-item .left .title {
                            font-weight: 600;
                            font-size: 23px;
                            line-height: 29px;
                            color: #000;
                        }

        .news .news-tab .tab-buttons .button-item .general-title .have-line:before {
            opacity: 0;
            width: 0%;
            transition: 0.5s;
        }

        .news .news-tab .tab-buttons .button-item.active .general-title .have-line:before {
            opacity: 1;
            width: 100%;
        }

        .news .news-tab .tab-buttons .button-item + .button-item {
            margin-top: 45px;
        }

        .news .news-tab .tab-contents .content-item .new-list .new-item + .new-item {
            margin-top: 35px;
        }

        .news .news-tab .tab-contents .content-item.active {
            visibility: visible;
        }

    .news .select-holder {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 35px;
    }

        .news .select-holder .dropdown {
            border: 1px solid #DEE1E8;
            border-radius: 0;
            width: 75px !important;
        }

            .news .select-holder .dropdown button {
            }

                .news .select-holder .dropdown button .filter-option-inner {
                }

                    .news .select-holder .dropdown button .filter-option-inner .filter-option-inner-inner {
                        font-weight: 500;
                        font-size: 13px;
                        line-height: 33px;
                        color: #2264ff;
                    }

                .news .select-holder .dropdown button:after {
                    background-image: url(../img/down-arrow.svg) !important;
                    border: 0;
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: contain;
                    width: 16px;
                    height: 10px;
                    transition: 0.2s;
                }

                .news .select-holder .dropdown button:hover {
                    background: #fff0;
                }

            .news .select-holder .dropdown button {
                border: 0;
                background: #fff0;
                outline: 0 !important;
                box-shadow: none !important;
                border-radius: 0;
            }

            .news .select-holder .dropdown.show button:after {
                transform: rotate(180deg);
            }

            .news .select-holder .dropdown > .dropdown-menu {
                border-radius: 0;
                left: 50px;
                padding: 0;
                width: 100%;
                border: 1px solid #dee1e86b;
            }

            .news .select-holder .dropdown .dropdown-menu ul {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .news .select-holder .dropdown .dropdown-menu li {
            }

                .news .select-holder .dropdown .dropdown-menu li.active a {
                    background: #2264FF;
                    color: #ffffff;
                }

                .news .select-holder .dropdown .dropdown-menu li a span {
                }

                .news .select-holder .dropdown .dropdown-menu li a {
                    font-weight: 500;
                    font-size: 13px;
                    line-height: 33px;
                    color: #000000;
                    transition: .4s;
                }

                    .news .select-holder .dropdown .dropdown-menu li a:active {
                        background: #2264FF;
                        color: #ffffff;
                    }

@media only screen and (min-width: 1200px) {
    .news .news-tab .tab-buttons .button-item {
        opacity: 0;
        transform: translateY(20px) scale(.9);
    }
}

@media only screen and (max-width: 1200px) {
    .news {
        padding: 130px 0 80px;
    }

        .news .news-tab {
            flex-direction: column;
        }

            .news .news-tab .tab-buttons {
                width: 100%;
                padding-bottom: 70px;
            }

                .news .news-tab .tab-buttons .sticky-holder {
                    display: flex;
                }

                .news .news-tab .tab-buttons .button-item + .button-item {
                    margin-top: 0;
                }

        .news .select-holder {
            margin-bottom: 25px;
        }

        .news .news-tab .tab-buttons .button-item {
        }

            .news .news-tab .tab-buttons .button-item .general-title {
                text-align: center;
            }

        .news .news-tab .tab-contents {
            width: 100%;
            margin-left: 0;
        }
}

@media only screen and (max-width: 900px) {
    .news .news-tab .tab-buttons .button-item .general-title {
        font-size: 25px;
    }

    .news .news-tab .tab-buttons {
        padding-bottom: 55px;
    }

    .news .news-tab .tab-contents .content-item .new-list .new-item .left .title {
        font-size: 18px;
        line-height: normal;
    }

    .news .news-tab .tab-contents .content-item .new-list .new-item p {
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .news .news-tab .tab-buttons {
        padding: 0 45px 45px;
    }

    .news .news-tab .tab-contents .content-item .new-list .new-item {
        flex-direction: column;
    }

        .news .news-tab .tab-contents .content-item .new-list .new-item .left {
            width: 100%;
            padding: 0 30px;
        }

        .news .news-tab .tab-contents .content-item .new-list .new-item p {
            width: 100%;
            padding: 0 30px;
            margin-top: 20px;
        }

        .news .news-tab .tab-contents .content-item .new-list .new-item .left .title {
            font-size: 16px;
        }
}

/* News */

/* FAQ Page */

.faq-page {
    padding: 240px 0 100px;
}

    .faq-page .entry {
        text-align: center;
        margin-bottom: 115px;
    }

        .faq-page .entry .title {
            font-family: Volte;
            font-weight: 600;
            font-size: 40px;
            line-height: 52px;
            text-align: center;
            color: black;
            margin-bottom: 20px;
        }

            .faq-page .entry .title span {
                color: #2264ff;
            }

        .faq-page .entry p {
            font-weight: normal;
            font-size: 19px;
            color: #424755;
            width: 480px;
            margin: 0 auto;
        }

    .faq-page .tab-side {
        margin-top: 115px;
    }

        .faq-page .tab-side .first-tab {
            display: flex;
            flex-direction: column;
        }

            .faq-page .tab-side .first-tab .f-buttons {
                display: flex;
                justify-content: center;
                margin-bottom: 115px;
            }

                .faq-page .tab-side .first-tab .f-buttons .f-button-item {
                    border: 1px solid #D8DBE3;
                    font-weight: 600;
                    font-size: 17px;
                    line-height: 15px;
                    text-align: center;
                    color: #737479;
                    padding: 25px 60px;
                    background: #fff;
                    position: relative;
                    transition: .4s;
                    cursor: pointer;
                }

                    .faq-page .tab-side .first-tab .f-buttons .f-button-item + .f-button-item {
                        margin-left: 20px;
                    }

                    .faq-page .tab-side .first-tab .f-buttons .f-button-item.active {
                        background: #2264FF;
                        color: #fff;
                        border-color: #2264FF;
                    }

                    .faq-page .tab-side .first-tab .f-buttons .f-button-item:before {
                        content: "";
                        position: absolute;
                        left: 50%;
                        transform: translateX(-50%) translateY(0);
                        bottom: 0;
                        width: 0;
                        height: 0;
                        border-style: solid;
                        border-width: 10px 10px 0 10px;
                        border-color: #ffffff #ffffff00 #ffffff00 #ffffff00;
                        z-index: -1;
                        transition: .4s;
                    }

                    .faq-page .tab-side .first-tab .f-buttons .f-button-item.active:before {
                        transform: translateX(-50%) translateY(100%);
                        border-color: #2264FF #ffffff00 #ffffff00 #ffffff00;
                    }

            .faq-page .tab-side .first-tab .f-tab-contents {
                position: relative;
                height: 890px;
                width: 100%;
            }

                .faq-page .tab-side .first-tab .f-tab-contents .f-content-item {
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    transition: .4s;
                    opacity: 0;
                    visibility: hidden;
                    pointer-events: none;
                    z-index: -1;
                }

                    .faq-page .tab-side .first-tab .f-tab-contents .f-content-item.active {
                        opacity: 1;
                        visibility: visible;
                        pointer-events: all;
                        z-index: 1;
                    }

                    .faq-page .tab-side .first-tab .f-tab-contents .f-content-item .second-tab {
                    }

                        .faq-page .tab-side .first-tab .f-tab-contents .f-content-item .second-tab .s-buttons {
                            display: flex;
                            justify-content: center;
                            margin-bottom: 125px;
                        }

                            .faq-page .tab-side .first-tab .f-tab-contents .f-content-item .second-tab .s-buttons .s-button-item {
                                font-weight: 500;
                                font-size: 19px;
                                line-height: 20px;
                                text-align: center;
                                color: #737479;
                                padding: 0 20px 10px 20px;
                                border-bottom: 2px solid #D8DBE3;
                                transition: .4s;
                                cursor: pointer;
                            }

                        .faq-page .tab-side .first-tab .f-tab-contents .f-content-item .second-tab .s-tab-contents {
                            position: relative;
                            height: 730px;
                        }

                            .faq-page .tab-side .first-tab .f-tab-contents .f-content-item .second-tab .s-tab-contents .s-content-item {
                                position: absolute;
                                left: 0;
                                top: 0;
                                transition: .4s;
                                cursor: pointer;
                                opacity: 0;
                                visibility: hidden;
                                pointer-events: none;
                            }

                                .faq-page .tab-side .first-tab .f-tab-contents .f-content-item .second-tab .s-tab-contents .s-content-item .general-faq {
                                    margin: 0;
                                    opacity: 1 !important;
                                    visibility: visible !important;
                                }

                        .faq-page .tab-side .first-tab .f-tab-contents .f-content-item .second-tab .s-buttons .s-button-item + .s-button-item {
                            margin-left: 35px;
                        }

                        .faq-page .tab-side .first-tab .f-tab-contents .f-content-item .second-tab .s-buttons .s-button-item.active {
                            border-color: #2264FF;
                            color: #000;
                            transform: translateY(-10px);
                        }

                        .faq-page .tab-side .first-tab .f-tab-contents .f-content-item .second-tab .s-tab-contents .s-content-item.active {
                            opacity: 1;
                            visibility: visible;
                            pointer-events: all;
                        }

@media only screen and (min-width: 1200px) {
    .faq-page {
        opacity: 0;
        transform: translateY(40px);
    }
}

@media only screen and (max-width: 1200px) {
    .faq-page {
        padding: 170px 0 10px;
    }
}

@media only screen and (max-width: 900px) {
    .faq-page .tab-side .first-tab .f-buttons {
        width: 100%;
        padding: 0 40px 10px 40px;
        margin-bottom: 90px;
    }

        .faq-page .tab-side .first-tab .f-buttons .f-button-item + .f-button-item {
            margin-left: 0;
        }

        .faq-page .tab-side .first-tab .f-buttons .f-button-item {
            padding: 25px;
        }
}

@media only screen and (max-width: 767px) {
    .faq-page {
        padding: 130px 0 100px;
    }

        .faq-page .entry .title {
            font-size: 30px;
        }

        .faq-page .entry p {
            width: 100%;
            font-size: 18px;
        }

        .faq-page .tab-side {
            margin-top: 100px;
        }

        .faq-page .entry {
            margin-bottom: 100px;
        }

        .faq-page .tab-side .first-tab .f-tab-contents .f-content-item .second-tab .s-buttons {
            flex-wrap: wrap;
            margin-bottom: 50px;
            padding-right: 95px;
        }

            .faq-page .tab-side .first-tab .f-tab-contents .f-content-item .second-tab .s-buttons .s-button-item {
                width: 44%;
            }

                .faq-page .tab-side .first-tab .f-tab-contents .f-content-item .second-tab .s-buttons .s-button-item:nth-child(odd) {
                    margin-left: 0;
                }

            .faq-page .tab-side .first-tab .f-tab-contents .f-content-item .second-tab .s-buttons .s-button-item {
                margin-top: 35px;
            }

        .faq-page .tab-side .first-tab .f-buttons {
            margin-bottom: 20px;
        }

        .faq-page .tab-side .first-tab .f-tab-contents .f-content-item .second-tab .s-buttons .s-button-item.active {
            transform: initial;
        }

        .faq-page .tab-side .first-tab .f-tab-contents .f-content-item .second-tab .s-buttons .s-button-item + .s-button-item {
            margin-left: 0;
        }
}

/* FAQ Page */

/* Reference Page */

.references {
    padding: 220px 0 90px;
}

    .references .entry {
        margin-bottom: 95px;
    }

        .references .entry .title {
            font-weight: 600;
            font-size: 40px;
            line-height: 52px;
            text-align: center;
            color: #000;
            margin-bottom: 20px;
        }

            .references .entry .title span {
                color: #2264ff;
            }

        .references .entry p {
            width: 600px;
            margin: 0 auto;
            text-align: center;
            font-weight: normal;
            font-size: 19px;
            color: #424755;
        }

    .references .success-stories {
        overflow: hidden;
    }

        .references .success-stories .swiper-container {
            margin-left: auto;
            margin-right: auto;
            position: relative;
            overflow: hidden;
            list-style: none;
            z-index: 1;
            padding: 0px 540px 60px;
        }

            .references .success-stories .swiper-container .swiper-slide {
                outline: 0 !important;
                overflow: visible;
            }

                .references .success-stories .swiper-container .swiper-slide .slide-item {
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: cover;
                    height: 580px;
                    outline: 0 !important;
                }

                    .references .success-stories .swiper-container .swiper-slide .slide-item .play-btn {
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        width: 100px;
                        height: 100px;
                    }

                        .references .success-stories .swiper-container .swiper-slide .slide-item .play-btn svg {
                            width: 100%;
                            height: 100%;
                            fill: #fff;
                            opacity: 0;
                            transition: .4s;
                        }

                .references .success-stories .swiper-container .swiper-slide.swiper-slide-active .slide-item .play-btn svg {
                    opacity: 1;
                }

                .references .success-stories .swiper-container .swiper-slide .slide-item .info {
                    background: #FFFFFF;
                    position: absolute;
                    left: 15px;
                    right: 15px;
                    bottom: -50px;
                    z-index: 8;
                    display: flex;
                    justify-content: space-between;
                    padding: 20px 30px;
                    align-items: center;
                    opacity: 0;
                    transition: .4s;
                    transform: translateY(-20px);
                    will-change: transform;
                }

                .references .success-stories .swiper-container .swiper-slide.swiper-slide-active .slide-item .info {
                    opacity: 1;
                    transform: translateY(0px);
                }

                .references .success-stories .swiper-container .swiper-slide .slide-item a {
                    display: block;
                    width: 100%;
                    height: 100%;
                    outline: 0 !important;
                    position: relative;
                }

                .references .success-stories .swiper-container .swiper-slide .slide-item .info .left {
                }

                    .references .success-stories .swiper-container .swiper-slide .slide-item .info .left .name {
                        font-family: museo-slab, serif;
                        font-weight: normal;
                        font-size: 21px;
                        letter-spacing: -0.02em;
                        color: #000;
                        margin-bottom: 5px;
                    }

                    .references .success-stories .swiper-container .swiper-slide .slide-item .info .left p {
                        margin-bottom: 0;
                        font-weight: 500;
                        font-size: 16px;
                        line-height: 26px;
                        color: #a0a2a8;
                    }

                .references .success-stories .swiper-container .swiper-slide .slide-item .info .right {
                    max-width: 130px;
                }

                    .references .success-stories .swiper-container .swiper-slide .slide-item .info .right img {
                        width: 100%;
                    }

    .references .brands {
        padding-top: 175px;
    }

        .references .brands .title {
        }

            .references .brands .title .general-title {
                width: 750px;
                margin: 0 auto;
            }

            .references .brands .title p {
                font-weight: normal;
                font-size: 25px;
                line-height: 33px;
                text-align: center;
                color: #777b89;
                width: 620px;
                margin: 30px auto 80px;
            }

        .references .brands .tab-side {
            display: flex;
            flex-direction: column;
        }

            .references .brands .tab-side .tab-buttons {
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 65px;
                width: 100%;
            }

                .references .brands .tab-side .tab-buttons .button-item {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    width: 145px;
                    height: 145px;
                    border: 1px solid #D8DBE3;
                    font-weight: 500;
                    font-size: 14px;
                    letter-spacing: -0.02em;
                    line-height: 15px;
                    text-align: center;
                    color: #A0A2A8;
                    padding: 37px 30px 0;
                    transition: .4s;
                    position: relative;
                    background: #fafafa;
                    cursor: pointer;
                }

                    .references .brands .tab-side .tab-buttons .button-item svg {
                        margin-bottom: 10px;
                        fill: #A0A2A8;
                        transition: .4s;
                    }

            .references .brands .tab-side .tab-contents {
                position: relative;
                height: 350px;
                transition: .4s;
            }

                .references .brands .tab-side .tab-contents .content-item {
                    display: flex;
                    flex-wrap: wrap;
                    position: absolute;
                    left: 0;
                    top: 0;
                    visibility: hidden;
                }

                    .references .brands .tab-side .tab-contents .content-item.active {
                        visibility: visible;
                    }

                    .references .brands .tab-side .tab-contents .content-item .img-item {
                        padding: 0px 15px;
                        width: 20%;
                        height: 150px;
                        margin-top: 25px;
                        opacity: 0;
                        transform: scale(.9);
                    }

                        .references .brands .tab-side .tab-contents .content-item .img-item .img-holder img {
                            max-width: 80%;
                        }

            .references .brands .tab-side .tab-buttons .button-item + .button-item {
                margin-left: 55px;
            }

            .references .brands .tab-side .tab-buttons .button-item.active {
                background: #2264FF;
                color: #fff;
                border-color: #2264FF;
            }

            .references .brands .tab-side .tab-buttons .button-item:before {
                content: "";
                position: absolute;
                left: 50%;
                transform: translateX(-50%) translateY(0);
                bottom: 0;
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 10px 10px 0 10px;
                border-color: #ffffff #ffffff00 #ffffff00 #ffffff00;
                z-index: -1;
                transition: .4s;
            }

            .references .brands .tab-side .tab-buttons .button-item.active:before {
                transform: translateX(-50%) translateY(100%);
                border-color: #2264FF #ffffff00 #ffffff00 #ffffff00;
            }

            .references .brands .tab-side .tab-buttons .button-item.active svg {
                fill: #fff;
            }

            .references .brands .tab-side .tab-contents .content-item .img-item .img-holder {
                background: #fff;
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05);
            }

    .references .success-stories .swiper-container .swiper-slide .slide-item a:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: rgb(0 0 0 / 24%);
    }

@media only screen and (min-width: 1200px) {
    .references .entry .title {
        opacity: 0;
    }

    .references .entry p {
        opacity: 0;
        transform: translateY(20px);
    }

    .references .success-stories .swiper-container .swiper-slide .slide-item {
        opacity: 0;
        transform: scale(.9);
    }

    .references .brands .title {
        opacity: 0;
    }

    .references .brands .tab-side .tab-buttons .button-item {
        opacity: 0;
    }

    .references .brands .tab-side .tab-contents {
        opacity: 0;
    }
}

@media only screen and (max-width: 1200px) {
    .references {
        padding: 150px 0 90px;
    }

        .references .entry .title {
            font-size: 34px;
            line-height: normal;
            margin-bottom: 15px;
        }

        .references .entry p {
            font-size: 18px;
            line-height: 24px;
        }

        .references .success-stories .swiper-container {
            padding: 0px 160px 60px;
        }

            .references .success-stories .swiper-container .swiper-slide .slide-item {
                height: 340px;
            }

                .references .success-stories .swiper-container .swiper-slide .slide-item .play-btn {
                    width: 70px;
                    height: 70px;
                }

        .references .brands {
            padding-top: 95px;
        }

            .references .brands .title .general-title {
                font-size: 35px;
                width: 100%;
                line-height: normal;
            }

            .references .brands .title p {
                width: 590px;
                font-size: 24px;
            }

            .references .brands .tab-side .tab-buttons .button-item + .button-item {
                margin-left: 0;
            }

            .references .brands .tab-side .tab-buttons {
                padding: 0 75px;
            }

            .references .brands .tab-side .tab-contents .content-item .img-item {
                height: 120px;
                width: 25%;
            }

            .references .brands .title {
                padding: 0 145px;
            }
}

@media only screen and (max-width: 900px) {
    .references .brands .title {
        padding: 0 55px;
    }
}

@media only screen and (max-width: 767px) {
    .references {
        padding: 110px 0 90px;
    }

    .page-header {
        flex-direction: column-reverse;
        align-items: center;
        background-position: -680px 0px;
        margin-bottom: 60px;
    }

        .page-header .title-name {
            font-size: 21px;
            margin-bottom: 15px;
            max-width: 100%;
        }

        .page-header .general-title {
            text-align: center;
            font-size: 19px;
            max-width: 100%;
        }

    .references .entry .title {
        font-size: 27px;
    }

    .references .entry p {
        width: 100%;
        font-size: 16px;
    }

    .references .success-stories .swiper-container {
        padding: 0px 60px 60px;
    }

    .references .brands .title .general-title {
        font-size: 21px;
    }

    .references .brands .title p {
        width: 100%;
        font-size: 17px;
        line-height: normal;
        margin: 25px auto 69px;
    }

    .references .brands .tab-side .tab-buttons {
        margin-bottom: 30px;
        padding: 0 45px 0 0;
    }

    .references .brands .tab-side .tab-contents .content-item .img-item {
        width: 50%;
    }

    .references .success-stories .swiper-container .swiper-slide .slide-item {
        height: 260px;
    }

        .references .success-stories .swiper-container .swiper-slide .slide-item .info .left .name {
            font-size: 14px;
            margin-bottom: 0;
        }

        .references .success-stories .swiper-container .swiper-slide .slide-item .info {
            flex-direction: column;
            bottom: -60px;
        }

            .references .success-stories .swiper-container .swiper-slide .slide-item .info .left {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .references .success-stories .swiper-container .swiper-slide .slide-item .info .right {
                max-width: 80px;
                margin-top: 12px;
                margin: 5px auto 0;
            }

        .references .success-stories .swiper-container .swiper-slide .slide-item .play-btn {
            width: 60px;
            height: 60px;
        }
}

/* Reference Page */

/* Contact */

.contact {
    padding: 205px 0 100px;
}

    .contact .content {
        display: flex;
        flex-direction: column;
        width: 80%;
        margin: 0 auto;
    }

        .contact .content .contact-top {
            display: flex;
        }

            .contact .content .contact-top .info {
                width: 40%;
                background: #2264FF;
                padding: 75px 75px 50px;
            }

                .contact .content .contact-top .info .info-item {
                    display: flex;
                    align-items: center;
                }

                    .contact .content .contact-top .info .info-item svg {
                        fill: none;
                    }

                    .contact .content .contact-top .info .info-item .right {
                        margin-left: 26px;
                    }

                        .contact .content .contact-top .info .info-item .right span {
                            font-weight: normal;
                            font-size: 12px;
                            letter-spacing: 0.1em;
                            color: #b9cefd;
                        }

                        .contact .content .contact-top .info .info-item .right p {
                            margin-bottom: 0;
                            font-family: museo-slab, serif;
                            font-weight: normal;
                            font-size: 21px;
                            letter-spacing: -0.02em;
                            color: #FFF;
                        }

                .contact .content .contact-top .info .address {
                    display: flex;
                    align-items: center;
                    padding-top: 35px;
                    border-top: 1px solid #306DFC;
                    margin-top: 45px;
                }

                    .contact .content .contact-top .info .address svg {
                        min-width: 30px;
                        height: 30px;
                    }

                    .contact .content .contact-top .info .address address {
                        margin-bottom: 0;
                        font-weight: 500;
                        font-size: 12px;
                        text-align: left;
                        color: #a3bfff;
                        margin-left: 37px;
                    }

            .contact .content .contact-top .tab-buttons {
                width: 60%;
                display: flex;
            }

                .contact .content .contact-top .tab-buttons .button-item {
                    width: 33.3333%;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-end;
                    justify-content: flex-end;
                    padding: 20px 35px;
                    position: relative;
                    transition: .4s;
                    border: 5px solid #6d97fa00;
                    cursor: pointer;
                }

                    .contact .content .contact-top .tab-buttons .button-item svg, .contact .content .contact-top .tab-buttons .button-item img {
                        stroke: #fff;
                        position: absolute;
                        top: 40px;
                        left: 30px;
                        width: 41px;
                        height: 40px;
                    }

                    .contact .content .contact-top .tab-buttons .button-item span {
                        font-family: museo-slab, serif;
                        font-weight: normal;
                        font-size: 20px;
                        letter-spacing: -0.02em;
                        color: #fff;
                        width: 70px;
                    }

        .contact .content .contact-bottom {
            position: relative;
            margin-top: 25px;
            height: 500px;
        }

        .contact .content .contact-top .info .info-item + .info-item {
            margin-top: 30px;
        }

        .contact .content .contact-top .tab-buttons .button-item:nth-child(1) {
            background: #3571FC;
        }

        .contact .content .contact-top .tab-buttons .button-item:nth-child(2) {
            background: #5083F8;
        }

        .contact .content .contact-top .tab-buttons .button-item:nth-child(3) {
            background: #6390F8;
        }

        .contact .content .contact-top .tab-buttons .button-item.active {
            border-color: #6d97fa;
        }

        .contact .content .contact-bottom .bottom-item {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            opacity: 0;
            visibility: visible;
            pointer-events: none;
            box-shadow: 0 80px 90px -120px #4b5676;
            transition: .4s;
        }

            .contact .content .contact-bottom .bottom-item .get-big {
                position: absolute;
                right: 0;
                bottom: 0;
                background: #61687B;
                padding: 13px 25px;
                font-weight: 600;
                font-size: 13px;
                color: #fff;
                display: flex;
                align-items: center;
                transition: .4s;
            }

                .contact .content .contact-bottom .bottom-item .get-big:hover {
                    background: #2b64ff;
                }

                .contact .content .contact-bottom .bottom-item .get-big svg {
                    fill: #fff0;
                    stroke: #fff;
                    margin-right: 5px;
                }

            .contact .content .contact-bottom .bottom-item.active {
                opacity: 1;
                visibility: visible;
                pointer-events: all;
            }

            .contact .content .contact-bottom .bottom-item div#map {
                width: 100%;
                height: 500px;
                border: 8px solid #fff;
            }

            .contact .content .contact-bottom .bottom-item .write-us {
                display: flex;
                height: 500px;
                background: #fff;
                padding: 60px 85px 60px 85px;
            }

                .contact .content .contact-bottom .bottom-item .write-us .left {
                    width: 40%;
                    display: flex;
                    flex-direction: column;
                    margin-top: 75px;
                }

                    .contact .content .contact-bottom .bottom-item .write-us .left .general-title {
                        font-size: 30px;
                        line-height: 45px;
                        text-align: left;
                        margin-bottom: 15px;
                    }

                    .contact .content .contact-bottom .bottom-item .write-us .left p {
                        font-weight: normal;
                        font-size: 16px;
                        color: #61687b;
                    }

                .contact .content .contact-bottom .bottom-item .write-us .right {
                    width: 50%;
                    margin-left: 10%;
                }

                    .contact .content .contact-bottom .bottom-item .write-us .right form {
                        width: 100%;
                        display: flex;
                        flex-direction: column;
                    }

                        .contact .content .contact-bottom .bottom-item .write-us .right form .form-item {
                            width: 100%;
                        }

                            .contact .content .contact-bottom .bottom-item .write-us .right form .form-item input {
                                width: 100%;
                                border: 1px solid #EAEEF8;
                                padding: 20px 25px;
                                font-weight: 500;
                                font-size: 14px;
                                line-height: 3px;
                                color: #61687b;
                                outline: 0 !important;
                                transition: .4s;
                            }

                            .contact .content .contact-bottom .bottom-item .write-us .right form .form-item textarea {
                                width: 100%;
                                border: 1px solid #EAEEF8;
                                padding: 20px 25px;
                                font-weight: 500;
                                font-size: 14px;
                                color: #61687b;
                                outline: 0 !important;
                                transition: .4s;
                            }

                            .contact .content .contact-bottom .bottom-item .write-us .right form .form-item textarea {
                                height: 130px;
                                resize: none;
                            }

                        .contact .content .contact-bottom .bottom-item .write-us .right form button {
                            font-weight: 600;
                            font-size: 13px;
                            color: #fff;
                            background: #2264FF;
                            border: 1px solid #2264FF;
                            width: 130px;
                            padding: 15px 0;
                            margin-left: auto;
                            margin-top: 10px;
                            transition: .4s;
                        }

                            .contact .content .contact-bottom .bottom-item .write-us .right form button:hover {
                                background: #fff;
                                color: #2264FF;
                            }

                        .contact .content .contact-bottom .bottom-item .write-us .right form .form-item + .form-item {
                            margin-top: 15px;
                        }

                        .contact .content .contact-bottom .bottom-item .write-us .right form .form-item input:focus, .contact .content .contact-bottom .bottom-item .write-us .right form .form-item textarea:focus {
                            border: 1px solid #2b64ff;
                        }

                .contact .content .contact-bottom .bottom-item .write-us .i {
                    position: absolute;
                    bottom: 20px;
                    left: 50px;
                    font-weight: 400;
                    font-size: 12px;
                    line-height: 21px;
                    color: #b0b2ba;
                    right: 95px;
                    text-align: center;
                }

                    .contact .content .contact-bottom .bottom-item .write-us .i strong {
                        font-weight: 500;
                    }

            .contact .content .contact-bottom .bottom-item .authorized-inspection {
                height: 500px;
                background: #fff;
                display: flex;
                align-items: center;
                padding: 50px 100px;
                justify-content: space-between;
            }

                .contact .content .contact-bottom .bottom-item .authorized-inspection .left {
                }

                    .contact .content .contact-bottom .bottom-item .authorized-inspection .left img {
                    }

                .contact .content .contact-bottom .bottom-item .authorized-inspection .right {
                    display: flex;
                    flex-wrap: wrap;
                    width: 500px;
                    margin-left: 65px;
                }

                    .contact .content .contact-bottom .bottom-item .authorized-inspection .right .item {
                        display: flex;
                        flex-direction: column;
                    }

                        .contact .content .contact-bottom .bottom-item .authorized-inspection .right .item.item-full {
                            width: 100%;
                        }

                        .contact .content .contact-bottom .bottom-item .authorized-inspection .right .item.item-half {
                            width: 48%;
                        }

                            .contact .content .contact-bottom .bottom-item .authorized-inspection .right .item.item-half + .item.item-half {
                                margin-left: 4%;
                            }

                        .contact .content .contact-bottom .bottom-item .authorized-inspection .right .item + .item {
                            margin-top: 45px;
                        }

                        .contact .content .contact-bottom .bottom-item .authorized-inspection .right .item span {
                            font-weight: normal;
                            font-size: 12px;
                            letter-spacing: 0.1em;
                            color: #2264ff;
                        }

                        .contact .content .contact-bottom .bottom-item .authorized-inspection .right .item p {
                            margin-bottom: 0;
                            font-size: 18px;
                            text-align: left;
                            color: #000;
                        }

                            .contact .content .contact-bottom .bottom-item .authorized-inspection .right .item p strong {
                                font-weight: 600;
                            }

                        .contact .content .contact-bottom .bottom-item .authorized-inspection .right .item a {
                            font-weight: 500;
                            font-size: 18px;
                            line-height: 33px;
                            color: #61687b;
                            display: block;
                        }

                        .contact .content .contact-bottom .bottom-item .authorized-inspection .right .item address {
                            font-weight: 500;
                            font-size: 18px;
                            color: #61687b;
                            margin-bottom: 0;
                        }

@media only screen and (max-width: 1200px) {
    .contact {
        padding: 145px 0 100px;
    }

        .contact .content .contact-top .info {
            padding: 45px 35px 40px;
        }

            .contact .content .contact-top .info .address address {
                margin-left: 25px;
            }

        .contact .content {
            width: 100%;
        }

            .contact .content .contact-bottom .bottom-item .write-us {
                padding: 60px 45px 60px 35px;
            }

                .contact .content .contact-bottom .bottom-item .write-us .left .general-title {
                    font-size: 27px;
                    line-height: normal;
                }

            .contact .content .contact-bottom .bottom-item .authorized-inspection {
                padding: 50px 50px;
            }
}

@media only screen and (max-width: 900px) {
    .contact .content .contact-top {
        flex-direction: column;
    }

        .contact .content .contact-top .info {
            width: 100%;
        }

        .contact .content .contact-top .tab-buttons {
            width: 100%;
            height: 270px;
        }

        .contact .content .contact-top .info .info-item .right p {
            font-size: 18px;
        }

        .contact .content .contact-top .info .info-item + .info-item {
            margin-top: 20px;
        }

        .contact .content .contact-top .info .address {
            margin-top: 35px;
            padding-top: 25px;
        }

    .contact .content .contact-bottom .bottom-item .write-us .left .general-title {
        font-size: 21px;
    }

    .contact .content .contact-bottom .bottom-item .write-us .left p {
        font-size: 15px;
    }

    .contact .content .contact-bottom .bottom-item .authorized-inspection {
        flex-direction: column;
    }
}

@media only screen and (max-width: 767px) {
    .contact {
        padding: 125px 0 80px;
    }

        .contact .content .contact-top .info .info-item svg {
            width: 32px;
        }

        .contact .content .contact-top .info .info-item {
        }

        .contact .content .contact-top .info .address {
            margin-top: 25px;
            padding-top: 25px;
        }

        .contact .content .contact-top .tab-buttons .button-item span {
            font-size: 15px;
            width: 60px;
            text-align: center;
        }

        .contact .content .contact-top .tab-buttons .button-item {
            padding: 20px 10px;
            align-items: center;
        }

            .contact .content .contact-top .tab-buttons .button-item svg, .contact .content .contact-top .tab-buttons .button-item img {
                left: 50%;
                top: 22px;
                transform: translateX(-50%);
            }

        .contact .content .contact-bottom .bottom-item .write-us {
            padding: 30px 20px 60px;
            flex-direction: column;
        }

            .contact .content .contact-bottom .bottom-item .write-us .left {
                width: 100%;
                margin-top: 0px;
            }

                .contact .content .contact-bottom .bottom-item .write-us .left .general-title {
                    text-align: center;
                    font-size: 18px;
                    margin-bottom: 30px;
                }

                .contact .content .contact-bottom .bottom-item .write-us .left p {
                    text-align: center;
                    font-size: 14px;
                    line-height: normal;
                    margin-bottom: 29px;
                    display: none;
                }

            .contact .content .contact-bottom .bottom-item .write-us .right {
                width: 100%;
                margin-left: 0;
            }

                .contact .content .contact-bottom .bottom-item .write-us .right form .form-item input, .contact .content .contact-bottom .bottom-item .write-us .right form .form-item textarea {
                    height: 50px;
                    padding: 17px 15px;
                }

                .contact .content .contact-bottom .bottom-item .write-us .right form .form-item + .form-item {
                    margin-top: 10px;
                }

                .contact .content .contact-bottom .bottom-item .write-us .right form .form-item textarea {
                    height: 100px;
                }

                .contact .content .contact-bottom .bottom-item .write-us .right form button {
                    font-size: 12px;
                    padding: 12px 0;
                    margin-top: 5px;
                }

            .contact .content .contact-bottom .bottom-item .write-us .i {
                font-size: 11px;
                left: 25px;
                right: 25px;
                line-height: 18px;
                bottom: 15px;
            }

        .contact .content .contact-bottom .bottom-item .authorized-inspection .left img {
            width: 210px;
        }

        .contact .content .contact-bottom .bottom-item .authorized-inspection .right {
            width: 100%;
            margin-left: 0;
            margin-top: 31px;
        }

        .contact .content .contact-bottom .bottom-item .authorized-inspection {
            padding: 25px 20px;
            justify-content: center;
        }

            .contact .content .contact-bottom .bottom-item .authorized-inspection .right .item span {
                text-align: center;
                margin-bottom: 6px;
            }

            .contact .content .contact-bottom .bottom-item .authorized-inspection .right .item p {
                font-size: 15px;
                text-align: center;
            }

            .contact .content .contact-bottom .bottom-item .authorized-inspection .right .item.item-half {
                width: 100%;
            }

            .contact .content .contact-bottom .bottom-item .authorized-inspection .right .item + .item {
                margin-top: 16px;
            }

            .contact .content .contact-bottom .bottom-item .authorized-inspection .right .item a {
                text-align: center;
            }

            .contact .content .contact-bottom .bottom-item .authorized-inspection .right .item address {
                text-align: center;
                font-size: 15px;
            }

        .contact .content .contact-top .tab-buttons {
            height: 200px;
        }

        .contact .content .contact-top .info {
            padding: 30px;
        }
}

/* Contact */

/* Career */

.career {
    padding: 0 0 70px;
    background: #091518;
}

    .career .career-top {
        padding: 300px 48vw 341px 16vw;
        position: relative;
    }

        .career .career-top:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            right: 0;
            background: rgb(9 21 24 / 45%);
            z-index: 1;
        }

        .career .career-top:after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            height: 160px;
            background: linear-gradient(180deg, #0c1a1d 0%, rgba(12, 26, 29, 0.61) 50%, rgba(12, 26, 29, 0) 100%);
            z-index: 1;
        }

        .career .career-top .titles {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 2;
        }

            .career .career-top .titles span {
                font-weight: 300;
                font-size: 31px;
                color: #fff;
            }

            .career .career-top .titles p {
                font-weight: bold;
                font-size: 41px;
                color: #fff;
                width: 740px;
                margin-left: 20vw;
            }

        .career .career-top .background-image {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            left: 0;
            background-repeat: no-repeat;
            background-position: top;
            background-size: cover;
            z-index: 0;
        }

.career-main {
    max-width: 1280px;
    margin: auto;
    margin-top: -180px;
    position: relative;
}

.career-form {
    display: block;
}

.career-slider .swiper-container {
    padding: 50px 0px;
    max-width: 100%;
    overflow: hidden;
}

.career-slider input {
    display: none;
    appearance: none;
}

.career-slider label {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding-top: 0;
    cursor: pointer;
}

    .career-slider label .single-career-item {
        background: white;
        height: 340px;
        border-radius: 0;
        padding: 35px 45px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: .4s;
    }

.single-career-item .logo svg * {
    transition: .4s;
}

.single-career-item .logo svg .a, .single-career-item .logo svg .b, .single-career-item .logo svg .d {
    fill: rgb(76 119 167 / 0%);
    stroke-dasharray: 1;
}

.single-career-item .logo svg .a {
    stroke: #008c99;
}

.single-career-item .logo svg .b {
    stroke: #4c77a7;
}

.single-career-item .logo svg .c {
    fill: #225b94;
}

.single-career-item .logo svg .c, .single-career-item .logo svg .e {
    opacity: 0.091;
}

.single-career-item .logo svg .d {
    stroke: #7580bd;
}

.single-career-item .logo svg .e {
    fill: #484d8d;
}

.career-slider label .single-career-item .title h4 {
    transition: .4s;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    text-align: right;
    color: #42455d;
    margin-bottom: 0;
    width: 110px;
}

.career-slider label .single-career-item .logo {
    position: relative;
    width: 47px;
}

    .career-slider label .single-career-item .logo img {
        position: absolute;
        left: 0;
        top: 0;
        transition: .4s;
        width: 100%;
    }

        .career-slider label .single-career-item .logo img:nth-child(2) {
            opacity: 0;
        }

.career-slider label .single-career-item:hover .logo img:nth-child(1) {
    opacity: 0;
}

.career-slider label .single-career-item:hover .logo img:nth-child(2) {
    opacity: 1;
}

.career-slider label .single-career-item:hover {
    background: #2264FF;
}

    .career-slider label .single-career-item:hover .title h4 {
        color: #fff;
    }

.career-slider label .single-career-item .title {
    padding-left: 40px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.career-form {
    padding: 20px 60px;
    background: #FAFAFA;
    border: 1px solid #E6EFF2;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 275px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100px);
    display: flex;
    align-items: center;
    z-index: 2;
}

.career-form-wrapper {
    display: flex;
}

.form-department {
    width: 25%;
    border-right: 1px solid #E6EFF2;
}

.current-department {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 0 20px;
    padding-right: 60px;
}

    .current-department .title h4 {
        font-family: museo-slab, serif;
        font-weight: 500;
        font-size: 23px;
        line-height: 27px;
        color: #000;
    }

.career-form .form {
    flex: 1;
    padding: 30px 80px;
    padding-right: 0;
}

.career-form-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

    .career-form-title h3 {
        font-size: 20px;
        color: #717F81;
    }

.current-department .back {
}

    .current-department .back a {
        width: 50px;
        height: 50px;
        border: 1px solid #D6D6D6;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        background: #fff;
    }

        .current-department .back a .icon-arrow-back {
            width: 16px;
            height: 13px;
            background-image: url('../img/svg/arrow-back.svg');
        }

.career-form-main input:not([type="file"]), .career-form-main label {
    height: 65px;
    line-height: 65px;
    width: 100%;
    border: 1px solid #E0E0E0;
    padding: 0 30px;
    margin: 0;
    transition: .4s;
    outline: 0 !important;
    box-shadow: none !important;
    background: #fafafa;
    font-weight: normal;
    font-size: 14px;
    color: #61687b;
}

.career-form-main input[type="file"] {
    width: 1px;
    height: 1px;
    position: absolute;
    top: 40px;
    left: 100px;
}

.career-form-main .form-wrapper {
    display: flex;
    align-items: center;
    margin: 0 -10px;
    flex-wrap: wrap;
}

    .career-form-main .form-wrapper .item {
        padding: 0 10px;
    }

        .career-form-main .form-wrapper .item.item-6 {
            width: 50%;
            position: relative;
        }

        .career-form-main .form-wrapper .item.item-4 {
            width: 33.3%;
        }

.career-form-main input:not([type="file"]):focus {
    border-color: #2b64ff;
}

.career-form-main input:not([type="file"]) {
    transition: .4s;
}

.career-form-main .form-wrapper .item.item-8 {
    width: 66.6%;
}

.career-form-main label {
    color: #91A2BA;
    font-size: 13px;
    position: relative;
    cursor: pointer;
}

.career-form-main input:not([type="file"])::placeholder {
    color: #91A2BA;
}

.career-form-main label .file-btn {
    position: absolute;
    top: 8px;
    right: 5px;
    bottom: 8px;
    display: block;
    padding: 0 30px;
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: .4s;
    font-weight: bold;
    font-size: 15px;
    color: #61687b;
    border: 1px dashed #DEDEDE;
}

    .career-form-main label .file-btn .icon-upload {
        display: block;
        width: 20px;
        height: 18px;
        background-image: url('../img/svg/upload.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        margin-right: 15px;
    }

.captcha-wrapper {
    display: flex;
    align-items: center;
    margin-left: -2px;
}

    .captcha-wrapper .captcha {
        padding: 0 10px;
        width: 50%;
    }

        .captcha-wrapper .captcha .captcha_img {
            position: relative;
            width: 100%;
            height: 69px;
            border: 1px solid #e6eff2;
            border-radius: 55px;
        }

            .captcha-wrapper .captcha .captcha_img img {
                height: 65px;
                border-radius: 32px;
            }

            .captcha-wrapper .captcha .captcha_img a {
                position: absolute;
                top: 50%;
                right: 10px;
                transform: translateY(-50%);
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                background: #19C19E;
                border-radius: 50%;
            }

.career-form-main .form-wrapper .item button {
    width: 100%;
    height: 55px;
    border: none;
    background: #2264FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #fff;
    font-size: 15px;
    outline: 0 !important;
    box-shadow: none !important;
    border: 1px solid #2264FF;
    transition: .4s;
}

    .career-form-main .form-wrapper .item button:hover {
        background: #fff;
        color: #2264FF;
    }

.icon-bltk.icon-send {
    width: 20px;
    height: 20px;
    background-image: url('../img/svg/send.svg');
}

.pagination-dot {
    justify-content: center;
    display: flex;
    align-items: center;
    margin-top: 50px;
}

    .pagination-dot .swiper-pagination-bullet {
        display: block;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #D8D8D8;
        transition: .4s;
    }

        .pagination-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background: var(--blue-color);
            width: 12px;
            height: 12px;
        }

.current-department .a {
    fill: #008c99;
}

.current-department .b {
    fill: #4d77a8;
}

.current-department .c {
    fill: #225b94;
}

.current-department .d {
    fill: #7580bd;
}

.current-department .e {
    fill: #484d8d;
}

.current-department .logo {
    width: 65px;
    height: 65px;
}

    .current-department .logo svg {
        width: 100%;
        height: 100%;
        fill: #264cff;
    }

.captcha-wrapper .captcha a {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

.career .career-top .titles .general-title {
    color: #fff;
    text-align: left;
}

    .career .career-top .titles .general-title .have-line::before {
        height: 10px;
        bottom: -9px;
    }

.current-department .back a svg {
    fill: none;
    stroke: #000;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    stroke-width: 2px;
}

.career-form .form .policy {
    position: relative;
    display: flex;
    align-items: center;
}

    .career-form .form .policy input {
        position: absolute;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        border: 0;
    }

    .career-form .form .policy label {
        border: 0;
        font-weight: 500;
        font-size: 13px;
        letter-spacing: 0em;
        line-height: 35px;
        color: #7b7b7b;
        display: flex;
        align-items: center;
        padding: 0 30px;
        height: initial;
        cursor: pointer;
    }

        .career-form .form .policy label a {
            font-weight: 500;
            color: #000;
        }

        .career-form .form .policy label:before {
            content: "";
            position: absolute;
            left: 0;
            width: 17px;
            height: 17px;
            border: 1px solid #E0E0E0;
            top: 49%;
            transform: translateY(-50%);
        }

        .career-form .form .policy label:after {
            content: "";
            position: absolute;
            left: 3px;
            width: 11px;
            height: 11px;
            top: 49%;
            transform: translateY(-50%);
            background: black;
            opacity: 0;
            visibility: hidden;
            transition: .4s;
        }

    .career-form .form .policy input:checked ~ label:after {
        opacity: 1;
        visibility: visible;
    }

.career-form-main .form-wrapper .item:nth-child(n+3) {
    margin-top: 15px;
}

.career-form-main label .file-btn svg {
    fill: #61687B;
    margin-right: 10px;
    transition: .4s;
}

.career-form-main label:hover .file-btn {
    background: #707070;
    border: 1px solid #fff;
    color: #fff;
}

    .career-form-main label:hover .file-btn svg {
        fill: #fff;
    }

@media only screen and (min-width: 1200px) {
    .career .career-top .titles .general-title {
        transform: translateY(30px);
        opacity: 0;
    }

    .career-main .career-slider .swiper .swiper-slide {
        opacity: 0;
        transform: scale(.8);
    }
}

@media only screen and (max-width: 1366px) {
    .career .career-top .titles .general-title {
        font-size: 37px;
    }
}

@media only screen and (max-width: 1440px) {
    .career .career-top .titles span {
        font-size: 29px;
    }

    .career .career-top .titles p {
        font-size: 30px;
    }

    .career .career-top {
        padding: 210px 7vw 250px;
    }

    .career-main {
        max-width: 1240px;
    }
}

@media only screen and (max-width: 1200px) {
    .career-main {
        max-width: 960px;
    }

    .career .career-top .titles span {
        font-size: 25px;
    }

    .career .career-top .titles p {
        font-size: 25px;
        width: 530px;
    }

    .career-slider label .single-career-item {
        height: 340px;
        padding: 30px;
    }

    .career .career-top .titles .general-title .have-line::before {
        height: 6px;
        bottom: -3px;
    }
}

@media only screen and (max-width: 900px) {
    .career-main {
        max-width: 700px;
    }

    .career-form-wrapper {
        flex-direction: column;
    }

    .career-form {
        height: initial;
    }

    .form-department {
        width: 100%;
        border: 0;
    }

    .current-department {
        align-items: center;
        padding: 40px 0;
    }

        .current-department .logo {
            margin-bottom: 35px;
        }

    .career-form .form {
        padding: 30px 0 10px;
        border-top: 1px solid #0000000d;
    }
}

@media only screen and (max-width: 767px) {
    .career .career-top .titles {
        flex-direction: column;
        ;
        justify-content: center;
    }

        .career .career-top .titles span {
            font-size: 23px;
        }

        .career .career-top .titles p {
            width: 100%;
            font-size: 20px;
            text-align: center;
            margin-left: 0;
            margin-bottom: 0;
            margin-top: 15px;
        }

    .career-main .swiper {
        padding-right: 45px;
    }

    .career .career-top {
        padding: 130px 30px 250px;
    }

    .career {
        padding-bottom: 110px;
    }

        .career .career-top .titles .general-title {
            font-size: 29px;
            line-height: normal;
            text-align: center;
        }

    .career-main {
        max-width: 350px;
    }

    .current-department .logo {
        width: 50px;
        height: 50px;
        margin-bottom: 25px;
    }

    .current-department .title h4 {
        font-size: 23px;
    }

    .current-department {
        padding: 20px 0;
    }

    .career-form {
        padding: 20px 30px;
        top: -26px;
    }

    .career-form-title {
        align-items: center;
        flex-direction: column-reverse;
        margin-bottom: 35px;
    }

        .career-form-title .back {
            margin-bottom: 15px;
        }

    .career-form-main .form-wrapper {
        flex-direction: column;
    }

        .career-form-main .form-wrapper .item.item-6 {
            width: 100%;
        }

        .career-form-main .form-wrapper .item.item-8 {
            width: 100%;
        }

        .career-form-main .form-wrapper .item.item-4 {
            width: 100%;
        }

    .captcha-wrapper {
        flex-direction: column;
    }

        .captcha-wrapper .captcha {
            width: 100%;
        }

            .captcha-wrapper .captcha + .captcha {
                margin-top: 20px;
            }

    .career .career-top .titles .general-title .have-line::before {
        height: 6px;
        bottom: -7px;
    }

    .current-department .back {
        margin-bottom: 15px;
    }

    .career-form-main label {
        padding: 0 15px;
    }

    .career-form-main .form-wrapper .item + .item {
        margin-top: 20px;
    }

    .career-form-main input:not([type="file"]), .career-form-main label {
        padding: 0 15px;
    }

        .career-form-main label .file-btn svg {
            width: 14px;
        }

        .career-form-main label .file-btn {
            font-size: 12px;
            padding: 0 14px;
        }

    .career-form .form .policy label {
    }

    .career-form-wrapper {
        width: 100%;
    }

    .career-form-main input:not([type="file"]) ~ label {
        flex-direction: column;
        line-height: 20px !important;
    }

        .career-form-main input:not([type="file"]) ~ label a {
        }
}

/* Career */

/* E-Export */

.e-export {
    background: #091518;
    padding: 190px 0 50px;
}

    .e-export .content {
    }

        .e-export .content .mobile-info-text {
            display: none;
        }

        .e-export .content .tab-area {
        }

        .e-export .content .general-faq.dark {
            border: 5px solid #122429;
        }

            .e-export .content .general-faq.dark .title h4 {
                color: #2264FF;
            }

            .e-export .content .general-faq.dark .question-cards .card-item .title {
                color: #a0a2a8;
            }

            .e-export .content .general-faq.dark .question-cards .card-item.active .title {
                color: #fff;
            }

            .e-export .content .general-faq.dark .question-cards .card-item p {
                color: #A0A2A8;
                border-left: 1px solid #A0A2A8;
            }

        .e-export .content .tab-area .tab-contents {
            margin-bottom: 150px;
            position: relative;
            height: 320px;
            transition: .3s;
        }

            .e-export .content .tab-area .tab-contents .content-item {
                position: absolute;
                opacity: 0;
                visibility: hidden;
                width: 100%;
                transition: .3s;
            }

                .e-export .content .tab-area .tab-contents .content-item .general-title {
                    width: 50%;
                    margin: 0 auto;
                    color: #fff;
                    margin-bottom: 70px;
                }

                .e-export .content .tab-area .tab-contents .content-item p {
                    font-weight: normal;
                    font-size: 24px;
                    line-height: 33px;
                    text-align: center;
                    color: #fff;
                    width: 50%;
                    margin: 0 auto;
                    margin-top: 100px;
                }

                .e-export .content .tab-area .tab-contents .content-item .brand-list {
                    display: flex;
                    flex-wrap: wrap;
                    width: 80%;
                    margin: 0 auto;
                    height: 400px;
                    padding-bottom: 15px;
                }

                    .e-export .content .tab-area .tab-contents .content-item .brand-list .list-item {
                        width: 25%;
                        padding: 0;
                        height: 150px;
                        margin-top: 30px;
                    }

                        .e-export .content .tab-area .tab-contents .content-item .brand-list .list-item .holder {
                            background: #FFFFFF;
                            border-radius: 6px;
                            width: 100%;
                            height: 100%;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                        }

                            .e-export .content .tab-area .tab-contents .content-item .brand-list .list-item .holder img {
                                max-width: 80%;
                            }

        .e-export .content .tab-area .map-area {
            width: 1200px;
            margin: 0 auto;
            height: 390px;
            position: relative;
        }

            .e-export .content .tab-area .map-area img {
                width: 100%;
                height: 390px;
                opacity: .65;
            }

        .e-export .content .tab-area .tab-contents .content-item.active {
            opacity: 1;
            visibility: visible;
        }

        .e-export .content .tab-area .map-area .markers {
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
        }

            .e-export .content .tab-area .map-area .markers .marker {
                position: absolute;
                width: 24px;
                height: 24px;
                background: #2264FF;
                border-radius: 25px;
                cursor: pointer;
            }

                .e-export .content .tab-area .map-area .markers .marker:before {
                    content: "";
                    position: absolute;
                    left: 50%;
                    top: 50%;
                    transform: translate(-50%, -50%);
                    z-index: 2;
                    background: #B9CBF5;
                    width: 10px;
                    height: 10px;
                    border-radius: 15px;
                    transition: .4s;
                }

                .e-export .content .tab-area .map-area .markers .marker.active {
                    background: #fff;
                }

                    .e-export .content .tab-area .map-area .markers .marker.active:before {
                        background: #2b64ff;
                    }

        .e-export .content .tab-area .mobile-tab-buttons {
            display: none;
        }

            .e-export .content .tab-area .mobile-tab-buttons .swiper {
                padding-bottom: 7px;
            }

                .e-export .content .tab-area .mobile-tab-buttons .swiper .swiper-slide {
                }

                    .e-export .content .tab-area .mobile-tab-buttons .swiper .swiper-slide .general-title {
                        color: #fff;
                        font-size: 40px;
                    }

        .e-export .content .tab-area .tab-contents .content-item .brand-list .swiper-pagination {
            position: absolute;
            bottom: 0px;
        }

            .e-export .content .tab-area .tab-contents .content-item .brand-list .swiper-pagination .swiper-pagination-bullet {
                background: #ffffff;
                transition: .4s;
            }

                .e-export .content .tab-area .tab-contents .content-item .brand-list .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
                    background: #2b64ff;
                }


@media only screen and (min-width: 1200px) {
    .e-export .content .tab-area .tab-contents .content-item:nth-child(1) .general-title {
        opacity: 0;
        transform: translateY(20px);
    }

    .e-export .content .tab-area .tab-contents .content-item:nth-child(1) p {
        opacity: 0;
        transform: translateY(40px);
    }

    .e-export .content .tab-area .map-area img {
        transform: rotateX(30deg) translateY(-100px);
        opacity: 0;
    }

    .e-export .content .tab-area .map-area .markers .marker {
        opacity: 0;
        transform: scale(1.1);
    }

    .e-export .content .general-faq.dark {
        opacity: 0;
    }
}

@media only screen and (max-width: 1200px) {
    .e-export {
        padding: 240px 0 50px;
    }

        .e-export .content .tab-area .tab-contents .content-item .general-title {
            width: 70%;
            font-size: 39px;
        }

        .e-export .content .tab-area .tab-contents .content-item p {
            font-size: 22px;
            width: 70%;
            margin-top: 40px;
        }

        .e-export .content .tab-area .map-area {
            width: 890px;
            overflow: hidden;
        }

            .e-export .content .tab-area .map-area .markers {
                transform: scale(0.8) translateX(-145px) translateY(10px);
            }

        .e-export .content .tab-area .mobile-tab-buttons {
            display: block;
        }

        .e-export .content .tab-area .tab-contents .content-item .general-title {
            display: none;
        }

        .e-export .content .tab-area .mobile-tab-buttons .swiper .swiper-slide .general-title .have-line:before {
            height: 6px;
        }

        .e-export .content .tab-area .mobile-tab-buttons .swiper .swiper-slide {
            padding: 0 145px;
        }

        .e-export .content .tab-area .tab-contents .content-item .brand-list {
            width: 90%;
            display: block;
        }

        .e-export .content .mobile-info-text {
            display: block;
            text-align: center;
            font-size: 17px;
            line-height: 20px;
            color: #898c93;
            margin-bottom: 35px;
            opacity: 0;
            overflow: hidden;
            transition: .4s; /* height: 0; */
        }
}

@media only screen and (max-width: 900px) {
    .e-export {
        padding: 210px 0 20px;
    }

        .e-export .content .tab-area .tab-contents .content-item .general-title {
            font-size: 34px;
            line-height: 50px;
            margin-bottom: 50px;
        }

        .e-export .content .tab-area .tab-contents .content-item p {
            margin-top: 50px;
            font-size: 20px;
            width: 80%;
        }

        .e-export .content .tab-area .tab-contents {
            margin-bottom: 60px;
        }

        .e-export .content .tab-area .map-area {
            width: 700px;
        }

            .e-export .content .tab-area .map-area .markers {
                transform: scale(0.6) translateX(-247px) translateY(6px);
            }

        .e-export .content .general-faq.dark {
            margin-top: 75px;
        }

        .e-export .content .tab-area .tab-contents .content-item .brand-list {
            width: 100%;
        }

            .e-export .content .tab-area .tab-contents .content-item .brand-list .list-item {
                height: 130px;
            }

        .e-export .content .tab-area .mobile-tab-buttons .swiper {
            padding: 0 142px 7px;
        }

            .e-export .content .tab-area .mobile-tab-buttons .swiper .swiper-slide .general-title {
                font-size: 30px;
                line-height: normal;
            }
}

@media only screen and (max-width: 767px) {
    .e-export {
        padding: 115px 0 20px;
    }

        .e-export .content .tab-area .tab-contents .content-item .general-title {
            font-size: 23px;
            line-height: normal;
            width: 90%;
            margin-bottom: 15px;
        }

        .e-export .content .tab-area .tab-contents .content-item p {
            font-size: 15px;
            line-height: normal;
            margin-top: 25px;
        }

        .e-export .content .tab-area .tab-contents .content-item .brand-list .list-item {
            width: 50%;
            padding: 0;
        }

        .e-export .content .tab-area .map-area {
            width: 350px;
            height: 160px;
        }

            .e-export .content .tab-area .map-area .markers {
                transform: scale(0.29) translateX(-418px) translateY(-184px);
            }

            .e-export .content .tab-area .map-area img {
                height: 120px;
            }

        .e-export .content .tab-area .mobile-tab-buttons .swiper {
            padding: 0 0px 7px;
        }

            .e-export .content .tab-area .mobile-tab-buttons .swiper .swiper-slide .general-title {
                font-size: 23px;
            }

                .e-export .content .tab-area .mobile-tab-buttons .swiper .swiper-slide .general-title .have-line:before {
                    height: 4px;
                }

            .e-export .content .tab-area .mobile-tab-buttons .swiper .swiper-slide {
                padding: 0;
            }

        .e-export .content .tab-area .tab-contents .content-item .brand-list {
            height: 340px;
        }

        .e-export .content .mobile-info-text {
            font-size: 12px;
        }
}

/* E-Export */

/* Mobile Menu */

.mobile-menu {
    position: fixed;
    background: #fafafa;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
}

    .mobile-menu .menu-links {
        display: flex;
        flex-direction: column;
        padding: 20px 0px 0;
        height: 68%;
        overflow-y: auto;
        overflow-x: hidden;
        margin-bottom: 15px;
    }

        .mobile-menu .menu-links .link-item {
            position: relative;
        }

            .mobile-menu .menu-links .link-item > a {
                font-weight: 600;
                font-size: 30px;
                line-height: 27px;
                color: #000;
                display: block;
                padding: 35px 55px;
                position: relative;
            }

            .mobile-menu .menu-links .link-item ul {
                padding: 45px 85px;
                list-style-type: none;
                background: #e7e7e7;
                margin-bottom: 0;
                display: none;
            }

                .mobile-menu .menu-links .link-item ul li {
                }

                    .mobile-menu .menu-links .link-item ul li a {
                        font-family: Volte;
                        font-weight: 600;
                        font-size: 30px;
                        line-height: 27px;
                        text-align: left;
                        color: #5c5c5c;
                    }

    .mobile-menu .menu-corporate {
        display: flex;
        height: 30%;
        padding: 35px;
        background: white;
    }

        .mobile-menu .menu-corporate .left {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

            .mobile-menu .menu-corporate .left .title {
                font-family: museo-slab, serif;
                font-weight: normal;
                font-size: 40px;
                letter-spacing: -0.02em;
                color: #61687b;
                margin-bottom: 10px;
            }

            .mobile-menu .menu-corporate .left .links {
            }

                .mobile-menu .menu-corporate .left .links a {
                    font-weight: 500;
                    font-size: 23px;
                    color: #a0a2a8;
                    display: block;
                }

    .mobile-menu .menu-links .link-item ul li + li {
        margin-top: 29px;
    }

    .mobile-menu .menu-links .link-item > a span {
        position: absolute;
        right: 32px;
        top: 47%;
        transform: translateY(-50%);
        width: 25px;
        height: 25px;
    }

    .mobile-menu .menu-links .link-item.have-submenu > a {
        padding-right: 60px;
    }

    .mobile-menu .menu-links .link-item > a span:before {
        content: "";
        position: absolute;
        left: 46%;
        width: 2px;
        height: 100%;
        background: #2264FF;
        transition: .4s;
    }

    .mobile-menu .menu-links .link-item.active > a span:before {
        transform: rotate(90deg);
    }

    .mobile-menu .menu-links .link-item > a span:after {
        content: "";
        position: absolute;
        top: 46%;
        width: 100%;
        height: 2px;
        background: #2264FF;
    }

    .mobile-menu .menu-links .link-item + .link-item:before {
        content: "";
        position: absolute;
        left: 20px;
        top: 0;
        right: 20px;
        height: 1px;
        background: #EDEBEB;
    }

    .mobile-menu .menu-corporate .left .links a + a {
        margin-top: 8px;
    }

    .mobile-menu .menu-corporate .right {
        width: 50%;
    }

        .mobile-menu .menu-corporate .right .nav .log-in {
            font-weight: 500;
            font-size: 23px;
            color: #2264ff;
            background: #F8F7F7;
            padding: 25px 40px;
            display: block;
            transition: .4s;
            width: 100%;
            text-align: center;
        }

        .mobile-menu .menu-corporate .right .nav .be-teqpay {
            font-weight: 600;
            font-size: 23px;
            color: #fff;
            background: #2264FF;
            display: block;
            padding: 25px 30px;
            transition: .4s;
            width: 100%;
            text-align: center;
            margin: 25px 0;
        }

        .mobile-menu .menu-corporate .right .lang-holder {
            width: 100%;
            display: flex;
            background: #F8F7F7;
            height: 75px;
            border: 1px solid #EAEEF8;
        }

            .mobile-menu .menu-corporate .right .lang-holder span {
                font-family: museo-slab, serif;
                font-size: 28px;
                letter-spacing: -0.02em;
                line-height: 25px;
                color: #a0a2a8;
                width: 40%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding-right: 15px;
                margin: 0 auto;
            }

                    .mobile-menu dark .menu-corporate .right .lang-holder .lang {
                        background-color: #0c1a1d;
                        width: 60%;
                    }
                .mobile-menu  .menu-corporate .right .lang-holder .lang {
                   
                    width: 60%;
                }

                .mobile-menu .menu-corporate .right .lang-holder .lang .dropdown {
                    height: 100%;
                    outline: 0;
                    box-shadow: none;
                    width: 100%;
                }

                    .mobile-menu .menu-corporate .right .lang-holder .lang .dropdown button {
                        height: 100%;
                        border: none;
                        border-radius: 0;
                        outline: 0 !important;
                        box-shadow: none !important;
                        transition: .4s;
                        background: #fff;
                        font-size: 25px;
                    }

                        .mobile-menu .menu-corporate .right .lang-holder .lang .dropdown button:hover {
                            border: none;
                        }

                        .mobile-menu .menu-corporate .right .lang-holder .lang .dropdown button .filter-option {
                            height: 100%;
                            display: flex;
                            align-items: center;
                            padding-left: 19px;
                        }

                        .mobile-menu .menu-corporate .right .lang-holder .lang .dropdown button::after {
                            color: #A0A2A8;
                            width: 0;
                            height: 0;
                            border-style: solid;
                            border-width: 6px 6px 0 6px;
                            border-color: #A0A2A8 transparent transparent transparent;
                            margin-right: 15px;
                        }

                    .mobile-menu .menu-corporate .right .lang-holder .lang .dropdown .dropdown-menu {
                        top: 2px !important;
                        border-radius: 0;
                        border-top: 0;
                        padding: 0;
                        border: 1px solid #eaeef8;
                    }

                        .mobile-menu .menu-corporate .right .lang-holder .lang .dropdown .dropdown-menu ul {
                        }

                            .mobile-menu .menu-corporate .right .lang-holder .lang .dropdown .dropdown-menu ul li {
                                transition: .4s;
                            }

                                .mobile-menu .menu-corporate .right .lang-holder .lang .dropdown .dropdown-menu ul li a.active {
                                    background: #2264FF;
                                }

                                .mobile-menu .menu-corporate .right .lang-holder .lang .dropdown .dropdown-menu ul li a {
                                    transition: .4s;
                                    padding: 13px 0;
                                }

                                    .mobile-menu .menu-corporate .right .lang-holder .lang .dropdown .dropdown-menu ul li a:active {
                                        background: #2264FF;
                                    }

        .mobile-menu .menu-corporate .right .nav {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            flex-wrap: nowrap;
        }

        .mobile-menu .menu-corporate .right .lang-holder .lang .dropdown .dropdown-menu ul li a.active .text {
            color: #fff;
        }

    .mobile-menu .menu-links .link-item {
        opacity: 0;
        transform: translateX(15px);
    }

    .mobile-menu .menu-corporate {
        opacity: 0;
        transform: translateY(20px);
    }

    .mobile-menu.dark {
        background: #091518;
    }

        .mobile-menu.dark .menu-links .link-item > a {
            color: #fff;
        }

        .mobile-menu.dark .menu-links .link-item + .link-item:before {
            background: #122429;
        }

        .mobile-menu.dark .menu-links .link-item ul {
            background: #050c0e;
        }

            .mobile-menu.dark .menu-links .link-item ul li a {
                color: #c1c1c1;
            }

        .mobile-menu.dark .menu-corporate {
            background: #0c1a1d;
        }

            .mobile-menu.dark .menu-corporate .right .nav .log-in {
                background: #0C1A1D;
                border: 1px solid #13262B;
            }

            .mobile-menu.dark .menu-corporate .right .lang-holder > span {
                background: #0c1a1d;
            }

            .mobile-menu.dark .menu-corporate .right .lang-holder {
                border-color: #122529;
            }

                .mobile-menu.dark .menu-corporate .right .lang-holder .lang .dropdown button {
                    background: #091518;
                    color: #fff;
                }

                .mobile-menu.dark .menu-corporate .right .lang-holder .lang .dropdown .dropdown-menu {
                    background: #091518;
                    border-color: #122529;
                }

@media only screen and (max-width: 900px) {
    .mobile-menu .menu-corporate .left .title {
        font-size: 31px;
    }

    .mobile-menu .menu-corporate .left .links a {
        font-size: 19px;
    }

    .mobile-menu .menu-corporate .right .nav .log-in {
        font-size: 20px;
        padding: 20px 40px;
    }

    .mobile-menu .menu-corporate .right .nav .be-teqpay {
        padding: 20px 30px;
        margin: 10px 0;
    }

    .mobile-menu .menu-corporate .right .lang-holder {
        height: 69px;
    }

    .mobile-menu .menu-corporate {
        padding: 20px 60px;
    }
}

@media only screen and (max-width: 767px) {
    .mobile-menu .menu-links .link-item > a {
        font-size: 16px;
        padding: 15px 25px;
    }

        .mobile-menu .menu-links .link-item > a span {
            width: 16px;
            height: 16px;
        }

    .mobile-menu .menu-links .link-item ul li a {
        font-size: 16px;
    }

    .mobile-menu .menu-links .link-item ul li + li {
        margin-top: 10px;
    }

    .mobile-menu .menu-links .link-item ul {
        padding: 15px 45px;
    }

    .mobile-menu .menu-links {
        height: 60%;
    }

    .mobile-menu .menu-corporate .left .title {
        font-size: 17px;
    }

    .mobile-menu .menu-corporate .left .links a {
        font-size: 13px;
    }

    .mobile-menu .menu-corporate .right .nav .log-in {
        font-size: 15px;
        padding: 10px 40px;
    }

    .mobile-menu .menu-corporate .right .nav .be-teqpay {
        font-size: 13px;
        padding: 15px 30px;
        margin: 10px 0;
    }

    .mobile-menu .menu-corporate .right .lang-holder {
        height: 45px;
    }

        .mobile-menu .menu-corporate .right .lang-holder span {
            font-size: 15px;
        }

        .mobile-menu .menu-corporate .right .lang-holder .lang .dropdown button {
            font-size: 14px;
        }

        .mobile-menu .menu-corporate .right .lang-holder .lang .dropdown .dropdown-menu ul li a {
            padding: 2px 0;
        }

    .mobile-menu .menu-corporate .right .nav {
        justify-content: center;
    }

    .mobile-menu .menu-corporate {
        padding: 25px;
        height: 37%;
    }
}

/* Mobile Menu */




.mainpageani {
    height: 800vh;
}

    .mainpageani .box {
        padding-top: 150px;
        position: sticky;
        top: 0;
        height: 100vh;
    }

    .mainpageani #motionPath {
        overflow: visible;
        height: 100%;
        max-width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
    }

        .mainpageani #motionPath path {
            stroke-width: .1px;
        }

        .mainpageani #motionPath .astronaut {
            visibility: hidden;
        }

    .mainpageani .follower {
        display: inline-block;
        font-size: 85px;
    }

    .mainpageani .one {
        stroke: red;
        z-index: 3;
    }

        .mainpageani .one #path1 {
            stroke-dasharray: 618.985, 618.985, 20;
            stroke-dashoffset: 1238;
        }

    .mainpageani .circ {
        width: 73px;
        height: 73px;
        background: linear-gradient(2deg, #fafafa, transparent);
    }


/* Main Page */

.mainpage {
}

    .mainpage .sticky-height {
        height: 5900px;
    }

        .mainpage .sticky-height .sticky-holder {
            height: 100vh;
            position: sticky;
            top: 0;
        }

            .mainpage .sticky-height .sticky-holder .entrance {
                transform: translate(0px, 10px);
                width: 100%;
                height: 100%;
            }

                .mainpage .sticky-height .sticky-holder .entrance .first-text {
                    font-family: museo-slab, serif;
                    font-weight: normal;
                    font-size: 70px;
                    letter-spacing: -0.02em;
                    text-align: center;
                    width: 840px;
                    line-height: normal;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                }

                    .mainpage .sticky-height .sticky-holder .entrance .first-text > span:nth-last-child(-n+2) {
                        color: #2264FF;
                        font-weight: normal;
                    }

                .mainpage .sticky-height .sticky-holder .entrance .diamonds {
                    width: 1680px;
                    margin: 0 auto;
                    position: relative;
                    height: 100%;
                }

                    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item {
                        pointer-events: none;
                    }

                        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item svg {
                            position: absolute;
                            opacity: 1;
                        }

                            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item svg:nth-child(2) {
                                z-index: 0;
                            }

                            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item svg:nth-child(3) {
                                z-index: 1;
                            }

                        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item img {
                            position: absolute;
                            z-index: 2;
                        }

                        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.papara img {
                            width: 130px;
                            height: 105px;
                            top: 180px;
                            left: 344px;
                        }

                        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.papara svg {
                            top: 232px;
                            left: 343px;
                        }

                        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.alipay img {
                            width: 175px;
                            height: 142px;
                            top: 305px;
                            left: 101px;
                        }

                        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.alipay svg {
                            top: 376px;
                            left: 131px;
                        }

                        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.ininal img {
                            width: 150px;
                            height: 121px;
                            top: 650px;
                            left: 294px;
                        }

                        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.ininal svg {
                            top: 710px;
                            left: 294px;
                        }

                        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.iyzigo img {
                            width: 150px;
                            height: 121px;
                            left: 1421px;
                            top: 175px;
                        }

                        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.iyzigo svg {
                            left: 855px;
                            top: 235px;
                        }

                        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.tosla img {
                            width: 135px;
                            height: 110px;
                            top: 570px;
                            left: 1301px;
                        }

                        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.tosla svg {
                            top: 625px;
                            left: 855px;
                        }

                        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.fastpay svg {
                            top: 760px;
                            left: 870px;
                        }

                        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.fastpay img {
                            width: 150px;
                            height: 121px;
                            top: 700px;
                            left: 1610px;
                        }

                .mainpage .sticky-height .sticky-holder .entrance .first-text > span {
                    overflow: hidden;
                    display: inline-block;
                }

                    .mainpage .sticky-height .sticky-holder .entrance .first-text > span > span {
                        transform: translateY(0%) skewX(0deg);
                        display: block;
                    }

            .mainpage .sticky-height .sticky-holder .start-ani {
                position: absolute;
                bottom: 40px;
                left: 50%;
                transform: translateX(-50%);
            }

                .mainpage .sticky-height .sticky-holder .start-ani .center {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    cursor: pointer;
                    position: relative;
                    z-index: 2;
                }

                .mainpage .sticky-height .sticky-holder .start-ani .circ {
                    border: 1px solid #E6E6E6;
                    border-radius: 100%;
                    position: absolute;
                    left: 50%;
                    transform: translateX(-50%);
                    z-index: -1;
                }

                    .mainpage .sticky-height .sticky-holder .start-ani .circ.first {
                        width: 750px;
                        height: 750px;
                        top: -25px;
                    }

                    .mainpage .sticky-height .sticky-holder .start-ani .circ.sec {
                        width: 750px;
                        height: 750px;
                        top: -25px;
                    }

                .mainpage .sticky-height .sticky-holder .start-ani .center svg {
                    margin-bottom: 15px;
                }

                .mainpage .sticky-height .sticky-holder .start-ani .center span {
                    display: block;
                    font-weight: 500;
                    font-size: 11px;
                    letter-spacing: 0.2em;
                    text-align: center;
                    color: #939daa;
                }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.papara svg:nth-child(2) path {
                stroke-dasharray: 1700;
                stroke-dashoffset: 1700;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.papara svg:nth-child(3) path {
                stroke-dashoffset: 1810;
                stroke-dasharray: 1810, 0, 97;
                opacity: 0;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.alipay svg:nth-child(2) path {
                stroke-dasharray: 1620;
                stroke-dashoffset: 1620;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.alipay svg:nth-child(3) path {
                stroke-dashoffset: 1615;
                stroke-dasharray: 1615, 0, 110;
                opacity: 0;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.ininal svg:nth-child(2) path {
                stroke-dasharray: 1020;
                stroke-dashoffset: 1020;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.ininal svg:nth-child(3) path {
                stroke-dashoffset: 1020;
                stroke-dasharray: 1020, 0, 100;
                opacity: 0;
            }


            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.iyzigo svg:nth-child(2) path {
                stroke-dasharray: 1650;
                stroke-dashoffset: 1650;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.iyzigo svg:nth-child(3) path {
                stroke-dashoffset: 1715;
                stroke-dasharray: 1715, 0, 100;
                opacity: 0;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.tosla svg:nth-child(2) path {
                stroke-dasharray: 1190;
                stroke-dashoffset: 1190;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.tosla svg:nth-child(3) path {
                stroke-dashoffset: 1190;
                stroke-dasharray: 1190, 0, 100;
                opacity: 0;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.fastpay svg:nth-child(2) path {
                stroke-dasharray: 1300;
                stroke-dashoffset: 1300;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.fastpay svg:nth-child(3) path {
                stroke-dashoffset: 1300;
                stroke-dasharray: 1300, 0, 100;
                opacity: 0;
            }

@media only screen and (min-width: 1200px) {
    .mainpage .sticky-height .sticky-holder .entrance .first-text > span > span {
        transform: translateY(100%) skewX(10deg);
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item img {
        transform: translate(-50%, 100px) scale(0);
    }

    .mainpage .sticky-height .sticky-holder .entrance .first-text {
        top: 60%;
    }

    .mainpage .sticky-height .sticky-holder .start-ani .circ {
        transform: translateX(-50%) scale(0);
    }

    .mainpage .sticky-height .sticky-holder .start-ani .center {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* Phone Ani */

.mainpage .sticky-height .sticky-holder .phone-seat {
    height: 939px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .mainpage .sticky-height .sticky-holder .phone-seat .content {
        width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        position: relative;
    }

        .mainpage .sticky-height .sticky-holder .phone-seat .content .left {
        }

            .mainpage .sticky-height .sticky-holder .phone-seat .content .left .general-title {
                font-weight: normal;
                font-size: 42px;
                letter-spacing: -0.02em;
                line-height: 60px;
                text-align: left;
                color: #000;
                width: 450px;
                line-height: 55px;
                margin-bottom: 30px;
            }

            .mainpage .sticky-height .sticky-holder .phone-seat .content .left p {
                font-weight: normal;
                font-size: 25px;
                line-height: 33px;
                color: #777b89;
            }

        .mainpage .sticky-height .sticky-holder .phone-seat .content .right {
        }

            .mainpage .sticky-height .sticky-holder .phone-seat .content .right .circ {
                width: 500px;
                height: 500px;
                background: #2264FF;
                border-radius: 100%;
            }

                .mainpage .sticky-height .sticky-holder .phone-seat .content .right .circ img {
                    display: none;
                }

            .mainpage .sticky-height .sticky-holder .phone-seat .content .right #phone-cont {
                margin: 0 auto;
                position: relative;
                width: 500px;
                height: 500px;
                overflow: hidden;
                position: absolute;
                left: 50%;
                transform: translateX(-50%) translateY(0);
                top: 0;
            }

                .mainpage .sticky-height .sticky-holder .phone-seat .content .right #phone-cont canvas {
                    position: absolute;
                    left: 50%;
                    top: 50%;
                    transform: translate(-50%, -50%);
                }

@media only screen and (max-width: 1680px) {

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.papara svg {
        left: 308px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.papara img {
        left: 309px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.alipay svg {
        left: 96px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.alipay img {
        left: 66px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.ininal svg {
        left: 259px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.ininal img {
        left: 259px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.iyzigo svg {
        left: 825px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.iyzigo img {
        left: 1391px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.tosla svg {
        left: 825px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.tosla img {
        left: 1271px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.fastpay svg {
        left: 840px;
        width: 690px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.fastpay img {
        left: 1530px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds {
        width: 1600px;
    }
}

@media only screen and (max-width: 1600px) {
    .mainpage .sticky-height .sticky-holder .entrance .diamonds {
        width: 1440px;
    }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.papara svg {
            left: 313px;
            width: 410px;
            top: 152px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.papara img {
            left: 314px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.alipay svg {
            width: 615px;
            top: 310px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.ininal svg {
            left: 229px;
            width: 470px;
            top: 670px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.ininal img {
            left: 228px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.iyzigo svg {
            left: 735px;
            width: 515px;
            top: 185px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.iyzigo img {
            left: 1250px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.tosla svg {
            left: 735px;
            width: 405px;
            top: 585px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.tosla img {
            left: 1140px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.fastpay svg {
            left: 750px;
            width: 610px;
            top: 710px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.fastpay img {
            left: 1360px;
        }
}

@media only screen and (min-width: 1500px) and (max-width: 1550px) {
}


@media only screen and (max-width: 1440px) {
    .mainpage .sticky-height .sticky-holder .entrance .diamonds {
        width: 1366px;
    }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.papara svg {
            width: 400px;
            left: 285px;
            top: 142px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.papara img {
            left: 287px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.alipay svg {
            width: 575px;
            top: 290px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.iyzigo svg {
            left: 695px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.iyzigo img {
            left: 1261px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.ininal svg {
            left: 189px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.ininal img {
            left: 188px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.tosla svg {
            left: 695px;
            top: 545px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.tosla img {
            left: 1141px;
            top: 530px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.fastpay svg {
            width: 580px;
            left: 710px;
            top: 650px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.fastpay img {
            left: 1290px;
            top: 660px;
        }

    .mainpage .sticky-height .sticky-holder .entrance .first-text {
        font-size: 55px;
        width: 650px;
    }

    .mainpage .sticky-height .sticky-holder .start-ani .circ.sec {
        width: 620px;
        height: 620px;
    }

    .mainpage .sticky-height .sticky-holder .start-ani .circ.first {
        width: 620px;
        height: 620px;
    }

    .mainpage .sticky-height .sticky-holder .phone-seat {
        height: 810px;
    }
}

@media only screen and (max-width: 1366px) {
    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.papara img {
        top: 110px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.papara svg {
        top: 72px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.alipay img {
        top: 255px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.alipay svg {
        top: 240px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.ininal img {
        top: 480px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.ininal svg {
        top: 540px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.iyzigo img {
        top: 145px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.iyzigo svg {
        top: 205px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.tosla img {
        top: 500px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.tosla svg {
        top: 555px;
    }

    .mainpage .sticky-height .sticky-holder .start-ani .circ.first {
        width: 500px;
        height: 500px;
    }

    .mainpage .sticky-height .sticky-holder .start-ani .circ.sec {
        width: 500px;
        height: 500px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .first-text {
        font-size: 45px;
        width: 530px;
    }

    .mainpage .sticky-height .sticky-holder .phone-seat {
        height: 650px;
    }
}

@media only screen and (max-width: 1200px) {
    .mainpage .sticky-height .sticky-holder .entrance .diamonds {
        width: 100%;
    }

    .mainpage .sticky-height {
        height: initial;
    }

        .mainpage .sticky-height .sticky-holder {
            height: initial;
        }

            .mainpage .sticky-height .sticky-holder .entrance {
                height: 800px;
            }

            .mainpage .sticky-height .sticky-holder .start-ani {
                display: none;
            }

            .mainpage .sticky-height .sticky-holder .entrance .first-text b {
                color: #2264ff;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.papara img {
                top: 140px;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.alipay img {
                left: 40px;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.ininal img {
                top: 530px;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.iyzigo img {
                left: 720px;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.tosla img {
                left: 840px;
                top: 400px;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.fastpay img {
                left: 600px;
                top: 590px;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item svg {
                display: none;
            }

            .mainpage .sticky-height .sticky-holder .phone-seat .content {
                width: 100%;
                padding: 0 55px;
            }

                .mainpage .sticky-height .sticky-holder .phone-seat .content .left .general-title {
                    font-size: 33px;
                    width: initial;
                    line-height: 45px;
                }

                .mainpage .sticky-height .sticky-holder .phone-seat .content .left p {
                    font-size: 22px;
                }

                .mainpage .sticky-height .sticky-holder .phone-seat .content .left {
                    width: 400px;
                }

                .mainpage .sticky-height .sticky-holder .phone-seat .content .right .circ {
                    overflow: hidden;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 450px;
                    height: 450px;
                }

                    .mainpage .sticky-height .sticky-holder .phone-seat .content .right .circ img {
                        margin-top: 155px;
                        display: block;
                        width: 255px;
                    }
}


@media only screen and (max-width: 900px) {
    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.papara img {
        width: 100px;
        height: 85px;
        left: 190px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.alipay img {
        width: 145px;
        height: 120px;
        top: 230px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.ininal img {
        top: 520px;
        left: 150px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.iyzigo img {
        left: 480px;
        width: 120px;
        height: 101px;
        top: 185px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.tosla img {
        left: 600px;
        top: 260px;
    }

    .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.fastpay img {
        left: 500px;
        top: 530px;
    }

    .mainpage .sticky-height .sticky-holder .phone-seat .content {
        flex-direction: column;
    }

        .mainpage .sticky-height .sticky-holder .phone-seat .content .left .general-title {
            text-align: center;
        }

        .mainpage .sticky-height .sticky-holder .phone-seat .content .left p {
            text-align: center;
        }

        .mainpage .sticky-height .sticky-holder .phone-seat .content .left {
            width: 600px;
            margin-bottom: 35px;
        }

        .mainpage .sticky-height .sticky-holder .phone-seat .content .right {
            margin-bottom: 125px;
        }

    .mainpage .sticky-height .sticky-holder .phone-seat {
        height: initial;
    }
}

@media only screen and (max-width: 767px) {
    .mainpage {
        overflow: hidden;
    }

        .mainpage .sticky-height .sticky-holder .entrance .first-text {
            width: 100%;
            padding: 0 15px;
            font-size: 29px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.papara img {
            height: initial;
            width: 85px;
            top: 125px;
            left: 120px;
        }

        .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.alipay img {
            height: initial;
            width: 110px;
            left: -40px;
            top: 215px;
        }

        .mainpage .sticky-height .sticky-holder .entrance {
            height: 100vh;
        }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.ininal img {
                height: initial;
                width: 90px;
                left: 50px;
                top: 430px;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.iyzigo img {
                height: initial;
                width: 100px;
                left: initial;
                right: -40px;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.tosla img {
                height: initial;
                width: 100px;
                left: initial;
                right: -20px;
                top: 400px;
            }

            .mainpage .sticky-height .sticky-holder .entrance .diamonds .diamond-item.fastpay img {
                height: inherit;
                width: 120px;
                left: initial;
                right: 55px;
            }

        .mainpage .sticky-height .sticky-holder .phone-seat .content .left {
            width: 100%;
        }

        .mainpage .sticky-height .sticky-holder .phone-seat {
            margin-top: 95px;
        }

            .mainpage .sticky-height .sticky-holder .phone-seat .content .left .general-title {
                font-size: 21px;
                line-height: 33px;
                margin-bottom: 15px;
            }

            .mainpage .sticky-height .sticky-holder .phone-seat .content {
                padding: 0 15px;
            }

                .mainpage .sticky-height .sticky-holder .phone-seat .content .left p {
                    font-size: 17px;
                    line-height: normal;
                }

                .mainpage .sticky-height .sticky-holder .phone-seat .content .right .circ {
                    width: 350px;
                    height: 350px;
                }

                .mainpage .sticky-height .sticky-holder .phone-seat .content .right {
                    margin-bottom: 80px;
                }

                    .mainpage .sticky-height .sticky-holder .phone-seat .content .right .circ img {
                        width: 200px;
                    }
}

/* Main Comment */

.main-comment { /* margin-top: 1390px; */
    height: 200vh;
    background: #2264FF;
    padding: 140px 0 130px;
}

    .main-comment .sticky-holder {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: sticky;
        top: 0;
        height: 100vh;
        padding-top: 135px;
    }

    .main-comment .general-title {
        width: 900px;
        color: #fff;
        margin-bottom: 135px;
    }

        .main-comment .general-title .have-line::before {
            background: linear-gradient(to right, #ffffff 0%, #9eb9f800 100%);
        }

    .main-comment .slideble {
        width: 100%;
        overflow-x: hidden;
        height: max-content;
    }

        .main-comment .slideble .slide-wrapper {
            display: flex;
            flex-wrap: nowrap;
            padding-left: 500px;
            padding-right: 500px;
        }

            .main-comment .slideble .slide-wrapper .comment-item {
                min-width: 790px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding: 0 155px;
                position: relative;
                height: 310px;
            }

                .main-comment .slideble .slide-wrapper .comment-item .title {
                    font-weight: normal;
                    font-size: 40px;
                    line-height: 50px;
                    text-align: left;
                    color: #fff;
                    width: 260px;
                    margin-bottom: 25px;
                }

                    .main-comment .slideble .slide-wrapper .comment-item .title strong {
                        font-weight: 600;
                    }

                .main-comment .slideble .slide-wrapper .comment-item p {
                    font-weight: normal;
                    font-size: 22px;
                    line-height: 31px;
                    color: #fff;
                    margin-bottom: 0;
                }

    .main-comment .slide-progress {
        position: absolute;
        width: 500px;
        height: 1px;
        background: #6190FD;
        bottom: 60px;
    }

        .main-comment .slide-progress .line {
            position: absolute;
            left: 0;
            top: 0;
            width: 0%;
            height: 1px;
            background: #fff;
        }

    .main-comment .slideble .slide-wrapper .comment-item + .comment-item:before {
        content: "";
        position: absolute;
        left: 0;
        height: 300px;
        width: 1px;
        background: #427AFF;
    }

@media only screen and (max-width: 1440px) {
    .main-comment .sticky-holder {
        padding-top: 60px;
    }
}

@media only screen and (max-width: 1366px) {
    .main-comment .general-title {
        font-size: 38px;
        line-height: normal;
        margin-bottom: 45px;
    }
}

@media only screen and (max-width: 1200px) {
    .main-comment .slideble .slide-wrapper {
        padding: 0;
    }

    .main-comment {
        height: initial;
        padding: 0;
    }

        .main-comment .sticky-holder {
            height: 660px;
        }

        .main-comment .general-title {
            font-size: 30px;
            width: 600px;
        }

        .main-comment .slideble .slide-wrapper .comment-item .title {
            font-size: 33px;
        }

        .main-comment .slideble {
            padding: 0 220px;
        }

            .main-comment .slideble .slide-wrapper .comment-item {
                padding-right: 0;
                min-width: initial;
            }

                .main-comment .slideble .slide-wrapper .comment-item + .comment-item:before {
                    height: 230px;
                }

        .main-comment .slide-progress .line {
            transition: .4s;
        }
}

@media only screen and (max-width: 900px) {
    .main-comment .slideble {
        padding: 0 70px;
    }
}

@media only screen and (max-width: 767px) {
    .main-comment .general-title {
        width: 100%;
        font-size: 22px;
        line-height: 33px;
        padding: 0 15px;
        margin-bottom: 55px;
    }

    .main-comment .slideble .slide-wrapper .comment-item {
        padding: 0;
        height: 230px;
    }

        .main-comment .slideble .slide-wrapper .comment-item .title {
            font-size: 26px;
            text-align: center;
            width: initial;
            margin-bottom: 15px;
        }

        .main-comment .slideble .slide-wrapper .comment-item p {
            text-align: center;
            font-size: 18px;
            line-height: normal;
        }

        .main-comment .slideble .slide-wrapper .comment-item + .comment-item:before {
            display: none;
        }

    .main-comment .slide-progress {
        width: 280px;
    }

    .main-comment .sticky-holder {
        height: 590px;
    }
}

/* Main Comment */


/* Main Slogan */

.main-slogan {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    padding-top: 135px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

    .main-slogan:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: #0000007a;
    }

    .main-slogan:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 580px;
        background: linear-gradient(#010006 0%, rgba(1, 0, 6, 0.97) 56.14%, rgba(1, 0, 6, 0.83) 81.1%, rgba(1, 0, 6, 0) 100%);
    }

    .main-slogan .content {
        max-width: 650px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 1;
    }

        .main-slogan .content .general-title {
            color: white;
            margin-bottom: 80px;
            font-weight: 600;
        }

        .main-slogan .content p {
            font-weight: normal;
            font-size: 30px;
            line-height: 37px;
            text-align: center;
            color: #fff;
        }

        .main-slogan .content .link {
            font-weight: 600;
            font-size: 15px;
            color: #fff;
            width: max-content;
            border: 1px solid white;
            padding: 13px 30px;
            margin-top: 35px;
            display: block;
            position: relative;
            transition: .4s;
        }

            .main-slogan .content .link:before {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: 0;
                background: #fff;
                transition: .5s;
                z-index: -1;
            }

            .main-slogan .content .link:hover {
                color: #2264ff;
            }

                .main-slogan .content .link:hover:before {
                    width: 100%;
                }

    .main-slogan .bg-img {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        z-index: -1;
    }


@media only screen and (min-width: 1200px) {
    .main-slogan {
        transform: scale(.85) translateY(70px);
        will-change: transform;
        overflow: hidden;
    }

        .main-slogan .bg-img {
            bottom: -170px;
        }
}

@media only screen and (max-width: 1366px) {
    .main-slogan {
        padding-top: 90px;
    }

        .main-slogan .content .general-title {
            font-size: 35px;
            line-height: 45px;
            margin-bottom: 50px;
        }

        .main-slogan .content p {
            font-size: 24px;
            line-height: normal;
        }
}

@media only screen and (max-width: 1200px) {
    .main-slogan {
        height: 700px;
    }
}

@media only screen and (max-width: 767px) {
    .main-slogan .content .general-title {
        font-size: 27px;
        padding: 0 15px;
    }

    .main-slogan {
        padding-top: 60px;
        height: 640px;
    }

        .main-slogan .content p {
            padding: 0 25px;
            font-size: 19px;
        }
}

/* Main Slogan */

/* Main Compare */

.main-compare {
    padding: 260px 0 290px;
}

    .main-compare .content {
        display: flex;
        justify-content: center;
    }

        .main-compare .content .card-area {
            width: 790px;
            position: relative;
        }

        .main-compare .content .tab-controll {
            width: 660px;
            margin-left: 50px;
        }

        .main-compare .content .card-area .card-tab {
            display: flex;
            position: absolute;
            left: 0;
            top: 0;
            transition: .4s;
            z-index: 1;
        }

            .main-compare .content .card-area .card-tab .card-item {
                transform: scale(0);
                transition: .6s;
                transition-delay: 0s;
            }

            .main-compare .content .card-area .card-tab.active .card-item {
                transform: scale(1);
                transition-delay: 0.3s;
            }

            .main-compare .content .card-area .card-tab .card-item .title {
                font-weight: 600;
                font-size: 17px;
                color: #61687b;
                margin-left: 15px;
                margin-bottom: 10px;
            }

                .main-compare .content .card-area .card-tab .card-item .title.line {
                    padding-bottom: 15px;
                    position: relative;
                    width: max-content;
                    margin-top: -15px;
                }

            .main-compare .content .card-area .card-tab .card-item .card-inner {
                background: #fff;
                width: 400px;
                display: flex;
                flex-direction: column;
                padding: 35px;
                box-shadow: 0px 35px 45px rgba(143, 159, 195, 0.09);
            }

                .main-compare .content .card-area .card-tab .card-item .card-inner.mini {
                    width: 300px;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                }

                .main-compare .content .card-area .card-tab .card-item .card-inner .property {
                    display: flex;
                    align-items: center;
                    background: #FAF7F7;
                    font-weight: 500;
                    font-size: 12px;
                    color: #a0a2a8;
                    padding: 20px 30px;
                }

                    .main-compare .content .card-area .card-tab .card-item .card-inner .property svg {
                        margin-right: 15px;
                    }

                .main-compare .content .card-area .card-tab .card-item .card-inner .top {
                    display: flex;
                    justify-content: space-between;
                }

                    .main-compare .content .card-area .card-tab .card-item .card-inner .top .top-item {
                        width: 48%;
                        background: #FAF7F7;
                        display: flex;
                        align-items: center;
                        padding: 10px 20px;
                        font-weight: 500;
                        font-size: 12px;
                        color: #a0a2a8;
                    }

                        .main-compare .content .card-area .card-tab .card-item .card-inner .top .top-item svg {
                            margin-right: 10px;
                        }

                .main-compare .content .card-area .card-tab .card-item .card-inner .bottom {
                    margin-top: 10px;
                }

                    .main-compare .content .card-area .card-tab .card-item .card-inner .bottom .paying-systems {
                        display: flex;
                        flex-wrap: wrap;
                        margin: 0 -5px;
                    }

                        .main-compare .content .card-area .card-tab .card-item .card-inner .bottom .paying-systems .system-item {
                            width: 33.3333%;
                            position: relative;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            height: 50px;
                            margin-top: 10px;
                        }

                            .main-compare .content .card-area .card-tab .card-item .card-inner .bottom .paying-systems .system-item img {
                                max-width: 75%;
                                max-height: 90%;
                            }

        .main-compare .content .tab-controll .general-title {
            text-align: left;
            margin-bottom: 20px;
        }

        .main-compare .content .tab-controll p {
            font-weight: normal;
            font-size: 25px;
            line-height: 33px;
            color: #777b89;
            margin-bottom: 45px;
        }

        .main-compare .content .tab-controll .tab-buttons {
            width: 500px;
            display: flex;
            justify-content: space-between;
            border: 1px solid #D8DBE3;
            padding: 5px;
        }

            .main-compare .content .tab-controll .tab-buttons .button-item {
                width: 48%;
                font-weight: 500;
                font-size: 17px;
                color: #2264ff;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 17px 15px;
                transition: .4s;
                cursor: pointer;
            }

        .main-compare .content .card-area .card-tab .card-item .title.line:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 6px;
            background: #E8E9EB;
        }

        .main-compare .content .card-area .card-tab .card-item .title.line:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 10px;
            width: 80%;
            height: 6px;
            background: #E8E9EB;
        }

        .main-compare .content .card-area .card-tab .card-item .card-inner .property + .property {
            margin-top: 10px;
        }

        .main-compare .content .card-area .card-tab .card-item .card-inner .bottom .paying-systems .system-item:before {
            content: "";
            position: absolute;
            left: 5px;
            right: 5px;
            top: 0;
            bottom: 0;
            border: 2px solid #FAF7F7;
        }

        .main-compare .content .card-area .card-tab .card-item + .card-item {
            margin-left: 35px;
        }

        .main-compare .content .tab-controll .tab-buttons .button-item.active {
            background: #2264FF;
            color: #fff;
        }

        .main-compare .content .card-area .card-tab.active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }

        .main-compare .content .card-area .card-tab .card-item .card-inner.mid {
            width: 360px;
            height: 270px;
        }

        .main-compare .content .card-area .card-tab .card-item .card-inner .fake-form {
        }

            .main-compare .content .card-area .card-tab .card-item .card-inner .fake-form .form-item {
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }

                .main-compare .content .card-area .card-tab .card-item .card-inner .fake-form .form-item span {
                    font-weight: 500;
                    font-size: 12px;
                    color: #a0a2a8;
                    margin-right: 10px;
                }

                .main-compare .content .card-area .card-tab .card-item .card-inner .fake-form .form-item .input {
                    width: 165px;
                    height: 30px;
                    border: 1px solid #F0F0F0;
                }

                .main-compare .content .card-area .card-tab .card-item .card-inner .fake-form .form-item + .form-item {
                    margin-top: 20px;
                }

                .main-compare .content .card-area .card-tab .card-item .card-inner .fake-form .form-item.cvv .input {
                    width: 55px;
                }

                .main-compare .content .card-area .card-tab .card-item .card-inner .fake-form .form-item.cvv .lines {
                    width: 110px;
                    height: 30px;
                    position: relative;
                }

                    .main-compare .content .card-area .card-tab .card-item .card-inner .fake-form .form-item.cvv .lines:before {
                        content: "";
                        position: absolute;
                        left: 15px;
                        height: 6px;
                        width: 45px;
                        top: 8px;
                        background: #E8E9EB;
                    }

                    .main-compare .content .card-area .card-tab .card-item .card-inner .fake-form .form-item.cvv .lines:after {
                        content: "";
                        position: absolute;
                        left: 15px;
                        height: 6px;
                        width: 65px;
                        top: 17px;
                        background: #E8E9EB;
                    }

        .main-compare .content .card-area .card-tab .card-item .card-inner .card {
            border: none;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 35px 0;
        }

        .main-compare .content .card-area .card-tab .card-item.no-title {
            margin-top: 36px;
            margin-left: 10px;
        }

            .main-compare .content .card-area .card-tab .card-item.no-title .card-inner.mid {
                padding: 0;
            }

        .main-compare .content .card-area .card-tab .card-item .card-inner .card img {
        }

        .main-compare .content .card-area .card-tab .card-item .card-inner .submit {
            height: -webkit-fill-available;
            border-top: 10px solid #f2f3f6;
            display: flex;
            align-items: center;
            justify-content: space-around;
        }

            .main-compare .content .card-area .card-tab .card-item .card-inner .submit .lines {
                width: 170px;
                height: 100%;
                margin-left: 15px;
                position: relative;
            }

                .main-compare .content .card-area .card-tab .card-item .card-inner .submit .lines:before {
                    content: "";
                    position: absolute;
                    left: 0;
                    height: 6px;
                    width: 75%;
                    top: 18px;
                    background: #F4F4F4;
                }

                .main-compare .content .card-area .card-tab .card-item .card-inner .submit .lines:after {
                    content: "";
                    position: absolute;
                    left: 0;
                    height: 6px;
                    width: 100%;
                    top: 29px;
                    background: #F4F4F4;
                }

            .main-compare .content .card-area .card-tab .card-item .card-inner .submit .button {
                background: #F4F4F4;
                width: 110px;
                height: 30px;
            }

@media only screen and (max-width: 1440px) {
    .main-compare {
        padding: 200px 0;
    }

        .main-compare .content .tab-controll {
            width: 500px;
            margin-left: 0;
        }

            .main-compare .content .tab-controll .general-title {
                font-size: 35px;
                line-height: 45px;
            }

            .main-compare .content .tab-controll p {
                font-size: 20px;
                line-height: normal;
            }
}

@media only screen and (max-width: 1366px) {
    .main-compare .content .tab-controll {
        width: 400px;
    }

        .main-compare .content .tab-controll .general-title {
            font-size: 28px;
        }

        .main-compare .content .tab-controll p {
            font-size: 17px;
        }

        .main-compare .content .tab-controll .tab-buttons .button-item {
            font-size: 15px;
        }

        .main-compare .content .tab-controll .tab-buttons {
            width: 100%;
        }
}

@media only screen and (max-width: 1200px) {
    .main-compare {
        padding: 120px 0;
    }

        .main-compare .content {
            flex-direction: column-reverse;
            align-items: center;
        }

            .main-compare .content .card-area {
                height: 340px;
                margin-top: 75px;
            }

            .main-compare .content .tab-controll .general-title {
                font-size: 32px;
                text-align: center;
            }

            .main-compare .content .tab-controll {
                width: 500px;
            }

                .main-compare .content .tab-controll p {
                    text-align: center;
                }

            .main-compare .content .card-area .card-tab {
                left: 50%;
                transform: translateX(-50%);
            }
}

@media only screen and (max-width: 900px) {
    .main-compare .content .card-area {
        width: 750px;
        transform: scale(.9);
    }
}

@media only screen and (max-width: 767px) {
    .main-compare .content .card-area .card-tab {
        flex-direction: column;
        align-items: center;
    }

    .main-compare .content .card-area {
        width: 100%;
        height: 600px;
        margin-top: 35px;
    }

    .main-compare .content .tab-controll {
        width: 100%;
    }

        .main-compare .content .tab-controll .general-title {
            font-size: 23px;
            line-height: 35px;
            margin-bottom: 15px;
        }

    .main-compare {
        padding: 70px 0 90px;
    }

        .main-compare .content .tab-controll p {
            font-size: 14px;
            margin-bottom: 35px;
        }

        .main-compare .content .tab-controll .tab-buttons .button-item {
            font-size: 12px;
        }

        .main-compare .content .card-area .card-tab .card-item .card-inner {
            width: 360px !important;
        }

        .main-compare .content .card-area .card-tab .card-item + .card-item {
            margin-left: 0;
            margin-top: 35px;
        }
}

@media only screen and (min-width: 1450px) {
    .question-cards {
        width: 1050px !important;
    }
}


@media only screen and (max-width: 766px) {
    .swiper-android .swiper-slide, .swiper-wrapper {
        width: 280px !important;
    }


}
@media only screen and (max-width: 511px) {
    .corporate-tab .left .tab-contents {
        margin: 0 -15px;
        position: relative;
        height: 650px !important;
        transition: .4s;
    }
}


@media (min-width:512px) and ( max-width: 780px) {
    .corporate-tab .left .tab-contents {
        margin: 0 -15px;
        position: relative;
        height: 765px !important;
        transition: .4s;
    }
}