/* Fonts */
@font-face {
    font-family: "Lato";
    src: url("Fonts/Lato-Bold.woff2") format("woff2"), url("Fonts/Lato-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lato";
    src: url("Fonts/Lato-Black.woff2") format("woff2"), url("Fonts/Lato-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lato";
    src: url("Fonts/Lato-Light.woff2") format("woff2"), url("Fonts/Lato-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lato";
    src: url("Fonts/Lato-Medium.woff2") format("woff2"), url("Fonts/Lato-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lato";
    src: url("Fonts/Lato-Semibold.woff2") format("woff2"), url("Fonts/Lato-Semibold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lato";
    src: url("Fonts/Lato-Regular.woff2") format("woff2"), url("Fonts/Lato-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* General Bootstrap */

html {
    font-size: 5.208vw;
    font-weight: 400;
    font-family: "Lato", sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    font-variant-ligatures: none;
    -webkit-font-variant-ligatures: none;
    -webkit-font-smoothing: antialiased;
}

    html.lock {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

body {
    position: relative;
    min-height: 100vh;
    font-size: 0;
    background-color: #e5e5e5;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-appearance: none !important;
    -webkit-font-smoothing: antialiased;
}

    *:focus {
        outline: none !important;
    }

a {
    text-decoration: none;
}

b,
strong {
    font-weight: 700;
}

.clearfix {
    clear: both;
}

.vcenter {
    font-size: 0;
}

    .vcenter > * {
        display: inline-block;
        vertical-align: middle;
    }

    .vcenter:before {
        content: "";
        display: inline-block;
        height: 100%;
        width: 0;
        vertical-align: middle;
    }

.font * {
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

.font img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
}

/* Social Icons */

a.social-icon {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    display: inline-block;
}

    a.social-icon:before {
        font-family: FontAwesome;
        font-size: inherit;
        color: inherit;
        line-height: inherit;
    }

    a.social-icon.facebook:before {
        content: "\f09a";
    }

    a.social-icon.facebook-square:before {
        content: "\f082";
    }

    a.social-icon.facebook-official:before {
        content: "\f230";
    }

    a.social-icon.twitter:before {
        content: "\f099";
    }

    a.social-icon.twitter-square:before {
        content: "\f081";
    }

    a.social-icon.youtube:before {
        content: "\f16a";
    }

    a.social-icon.instagram:before {
        content: "\f16d";
    }

    a.social-icon.linkedin:before {
        content: "\f0e1";
    }

    a.social-icon.spotify:before {
        content: "\f1bc";
    }

    a.social-icon.medium:before {
        content: "\f23a";
    }

    a.social-icon.vimeo:before {
        content: "\f27d";
    }

    a.social-icon.facebook:hover,
    a.social-icon.facebook-square:hover,
    a.social-icon.facebook-official:hover {
        color: #3c5a96;
    }

    a.social-icon.facebook:active,
    a.social-icon.facebook-square:active,
    a.social-icon.facebook-official:active {
        color: #253e6f;
    }

    a.social-icon.twitter:hover,
    a.social-icon.twitter-square:hover {
        color: #1dcaff;
    }

    a.social-icon.twitter:active,
    a.social-icon.twitter-square:active {
        color: #00aced;
    }

    a.social-icon.youtube:hover {
        color: #e03130;
    }

    a.social-icon.youtube:active {
        color: #b11618;
    }

    a.social-icon.instagram:hover {
        color: #ee583f;
    }

    a.social-icon.instagram:active {
        color: #bd3381;
    }

    a.social-icon.linkedin:hover {
        color: #1176b5;
    }

    a.social-icon.linkedin:active {
        color: #0f496a;
    }

    a.social-icon.spotify:hover {
        color: #1db954;
    }

    a.social-icon.spotify:active {
        color: #1d9e74;
    }

/* Loading */

.loading {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 9999;
    background: rgba(0,0,0,.75);
    display: none;
}

    .loading .load {
        width: 150px;
        animation: loading 3s linear infinite;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -75px;
        margin-top: -75px;
    }

        .loading .load .loading-inner {
            stroke-dashoffset: 0;
            stroke-dasharray: 300;
            stroke-width: 10;
            stroke-miterlimit: 10;
            stroke-linecap: round;
            animation: loading-circle 2s linear infinite;
            stroke: #16478E;
            fill: transparent;
        }

@keyframes loading {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loading-circle {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -600;
    }
}

/* General */

.container {
    position: relative;
    display: block;
    width: 14.48rem;
    max-width: 100%;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
    margin-left: auto;
    margin-right: auto;
}

button {
    cursor: pointer;
}

/*  Form */

form.general {
    display: inline-block;
    width: calc(100% + 0.18rem);
    margin: -0.07rem -0.09rem;
}

    form.general .form-item {
        display: inline-block;
        position: relative;
        width: calc(100% - 0.18rem);
        margin: 0.07rem 0.09rem;
        text-align: center;
        vertical-align: middle;
    }

        form.general .form-item.half {
            width: calc(50% - 0.18rem);
        }

        form.general .form-item input[type="text"],
        form.general .form-item input[type="email"],
        form.general .form-item input[type="password"],
        form.general .form-item textarea {
            width: 100%;
            text-align: center;
            height: 0.56rem;
            padding-left: 0.24rem;
            padding-right: 0.24rem;
            font-weight: 400;
            font-size: 0.14rem;
            line-height: 1.2em;
            color: #404040;
            box-shadow: none;
            background-color: white;
            border: 1px solid rgba(64, 64, 64, 0.4);
            border-radius: 0.2rem;
            -webkit-border-radius: 0.2rem;
            -moz-border-radius: 0.2rem;
            -ms-border-radius: 0.2rem;
            -o-border-radius: 0.2rem;
            resize: none
        }

        form.general .form-item textarea {
            padding: .15rem;
            height: 1.5rem;
        }

            form.general .form-item input[type="text"]::placeholder,
            form.general .form-item input[type="email"]::placeholder,
            form.general .form-item input[type="password"]::placeholder,
            form.general .form-item textarea::placeholder {
                color: rgba(64, 64, 64, 0.5);
            }

        form.general .form-item[a-error] input[type="text"],
        form.general .form-item[a-error] input[type="email"],
        form.general .form-item[a-error] input[type="password"],
        form.general .form-item[a-error] textarea {
            border-color: #e41818 !important;
        }

        form.general .form-item.file-input {
            text-align: center;
            padding: 0.2rem 0.24rem;
            font-weight: 400;
            font-size: 0.14rem;
            line-height: 1.2em;
            color: rgba(64, 64, 64, 0.5);
            box-shadow: none;
            background-color: white;
            border: 1px solid rgba(64, 64, 64, 0.4);
            border-radius: 0.2rem;
            -webkit-border-radius: 0.2rem;
            -moz-border-radius: 0.2rem;
            -ms-border-radius: 0.2rem;
            -o-border-radius: 0.2rem;
        }

        form.general .form-item[a-error].file-input {
            border-color: #e41818 !important;
        }

        form.general .form-item.file-input img {
            display: block;
            width: .36rem;
            margin: 0px auto;
            margin-bottom: .17rem;
        }

        form.general .form-item.file-input label {
            width: 100%;
            display: inline-block;
            margin: 0px auto;
        }

        form.general .form-item input[type="file"] {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            opacity: 0;
            cursor: pointer;
        }

        form.general .form-item input[type="file"i]::-webkit-file-upload-button {
            display: none;
        }

        form.general .form-item .checkbox {
            position: relative;
            width: 100%;
            margin-top: .12rem;
            text-align: left;
        }

        form.general .form-item input[type="checkbox"] {
            position: absolute;
            left: -9999px;
        }

        form.general .form-item .checkbox input[type="checkbox"] ~ label {
            position: relative;
            display: block;
            padding-left: 0.24rem;
            font-weight: 400;
            font-size: 0.14rem;
            line-height: 1.2em;
            color: #404040;
            cursor: pointer;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        form.general .form-item .checkbox input[type="checkbox"][disabled] ~ label {
            cursor: default;
        }

        form.general .form-item .checkbox input[type="checkbox"] ~ label a {
            font-weight: 700;
            color: #222
        }

        form.general .form-item .checkbox input[type="checkbox"] ~ label:before {
            content: "";
            position: absolute;
            width: 0.16rem;
            height: 0.16rem;
            left: 0;
            top: 0;
            border: 1px solid #404040;
            background-color: #e6e7e8;
            box-sizing: border-box;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            transition: 0.2s all ease;
            -webkit-transition: 0.2s all ease;
            -ms-transition: 0.2s all ease;
            -moz-transition: 0.2s all ease;
            -o-transition: 0.2s all ease;
        }

        form.general .form-item[a-error] .checkbox input[type="checkbox"] ~ label:before {
            border-color: #e41818 !important;
        }

        form.general .form-item .checkbox input[type="checkbox"]:checked ~ label:before {
            border-color: #000;
        }

        form.general .form-item .checkbox input[type="checkbox"] ~ label:after {
            content: "";
            position: absolute;
            content: "";
            position: absolute;
            width: 0.08rem;
            height: 0.08rem;
            left: 0.04rem;
            top: 0.04rem;
            background-color: #000;
            box-sizing: border-box;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            transition: 0.2s all ease;
            -webkit-transition: 0.2s all ease;
            -ms-transition: 0.2s all ease;
            -moz-transition: 0.2s all ease;
            -o-transition: 0.2s all ease;
            opacity: 0;
        }

        form.general .form-item .checkbox input[type="checkbox"]:checked ~ label:after {
            opacity: 1;
        }

        form.general .form-item [a-submit].btn-general {
            background-color: black;
            margin: 0px auto;
            color: white;
            margin-top: .2rem;
            border: none;
        }

    form.general .btn-general {
        margin: 0px auto;
    }
    /*  Select 2 */
    /* Select2 */
    form.general .form-item .select2-container {
        width: 100% !important;
    }

        form.general .form-item .select2-container.select2-container--disabled {
            opacity: 0.5;
        }

    form.general .form-item .select2-container--default .select2-selection--single {
        background-color: #282828;
        height: 0.56rem;
        line-height: 0.56rem;
        border: 1px solid rgba(64, 64, 64, 0.4);
        background-color: white;
        border-radius: 0.2rem;
        -webkit-border-radius: 0.2rem;
        -moz-border-radius: 0.2rem;
        -ms-border-radius: 0.2rem;
        -o-border-radius: 0.2rem;
    }

    form.general .form-item[a-error] .select2-container--default .select2-selection--single {
        border-color: #e41818 !important;
    }

    form.general .form-item .select2-container--default .select2-selection--single:before {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 100%;
    }

    form.general .form-item .select2-container .select2-selection--single .select2-selection__rendered {
        display: inline-block;
        vertical-align: middle;
        width: 100%;
        height: 0.2rem;
        padding-left: 0.24rem;
        padding-right: 0.24rem;
        font-weight: 400;
        font-size: 0.14rem;
        line-height: 1.286em;
        color: #404040;
    }

    form.general .form-item .select2-container--default .select2-selection--single .select2-selection__placeholder {
        color: #7e7f73;
    }

    form.general .form-item[a-error] .select2-container--default .select2-selection--single .select2-selection__placeholder {
        color: #e41818;
    }

    form.general .form-item[a-error] .select2-container.select2-container--open .select2-selection--single .select2-selection__placeholder {
        color: white;
    }

    form.general .form-item .select2-container--default .select2-selection--single .select2-selection__arrow {
        position: absolute;
        height: auto;
        width: auto;
        top: 50%;
        right: 0.24rem;
        font-size: 0;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }

    form.general .form-item .select2-container.select2-container--open .select2-selection--single {
        background-color: #282828;
        border-color: #282828 !important;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

        form.general .form-item .select2-container.select2-container--open .select2-selection--single .select2-selection__rendered {
            color: white;
        }

/* Select2 Dropdown */

.select2-dropdown {
    border: 0 1px 1px 1px solid rgba(64, 64, 64, 0.1);
    background-color: white;
    overflow: hidden;
}

.select2-results__option {
    font-weight: 800;
    font-size: 0.12rem;
    line-height: 3em;
    color: #404040;
    text-align: center;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    color: #000000;
    background-color: rgba(64, 64, 64, 0.1);
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: rgba(64, 64, 64, 0.2);
}

/* Button */

.btn-general {
    display: block;
    width: 2.61rem;
    max-width: 100%;
    text-align: center;
    padding: 0.15rem;
    border: 0;
    border-radius: 0.2rem;
    -webkit-border-radius: 0.2rem;
    -moz-border-radius: 0.2rem;
    -ms-border-radius: 0.2rem;
    -o-border-radius: 0.2rem;
}

    .btn-general span {
        font-size: 0.18rem;
        font-weight: 700;
        line-height: 1.4em;
    }

.title.general {
    font-weight: 600;
    font-size: 0.32rem;
    line-height: 1.2em;
}

/*  Popup */

.popup-wrapper {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    z-index: 200;
}

    .popup-wrapper.register {
        background-color: rgba(33,33,33,.8);
    }

    .popup-wrapper:before {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 100%;
    }

    .popup-wrapper .popup-container {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        width: 14.2rem;
        height: 68.11vh;
        min-height: 7rem;
        max-width: calc(100% - 0.8rem);
        margin-left: 0.4rem;
        margin-right: 0.4rem;
        background-color: white;
        padding: 0.7rem 1.15rem 0.7rem 1.15rem;
        overflow: hidden;
        border-radius: 0.15rem;
        -webkit-border-radius: 0.15rem;
        -moz-border-radius: 0.15rem;
        -ms-border-radius: 0.15rem;
        -o-border-radius: 0.15rem;
    }

    .popup-wrapper.form-popup .popup-container {
        padding: 0;
    }

        .popup-wrapper.form-popup .popup-container .left {
            overflow: hidden;
        }

            .popup-wrapper.form-popup .popup-container .left img {
                position: absolute;
            }

        .popup-wrapper.form-popup .popup-container .right {
            text-align: center;
        }

            .popup-wrapper.form-popup .popup-container .right .content {
                padding: .4rem .6rem;
            }

                .popup-wrapper.form-popup .popup-container .right .content form.general {
                    padding-left: .4rem;
                    padding-right: .4rem;
                }

                .popup-wrapper.form-popup .popup-container .right .content * + form.general {
                    margin-top: .2rem;
                }

    .popup-wrapper.form .popup-container {
        padding: 0;
    }

    .popup-wrapper .popup-container .btn-close {
        position: absolute;
        top: 0.4rem;
        right: 0.4rem;
        cursor: pointer;
        z-index: 2;
    }

    .popup-wrapper .popup-container .left {
        display: inline-block;
        position: relative;
        width: 47%;
        height: 100%;
        vertical-align: middle;
    }

    .popup-wrapper.form .popup-container .left {
        overflow: hidden;
        border-radius: 0.15rem;
        -webkit-border-radius: 0.15rem;
        -moz-border-radius: 0.15rem;
        -ms-border-radius: 0.15rem;
        -o-border-radius: 0.15rem;
    }

        .popup-wrapper.form .popup-container .left img {
            position: absolute;
        }

    .popup-wrapper .popup-container .left .content {
        display: inline-block;
        vertical-align: middle;
        width: 100%;
    }

    .popup-wrapper.detail .popup-container .left {
        padding-right: 0.2rem;
    }

        .popup-wrapper.detail .popup-container .left .slider {
            display: inline-block;
            width: 100%;
        }

            .popup-wrapper.detail .popup-container .left .slider .item {
                height: 3.71rem;
                background-position: center;
                background-size: cover;
                background-repeat: no-repeat;
            }

                .popup-wrapper.detail .popup-container .left .slider .item.video {
                    position: relative;
                    width: 100%;
                    background-color: black;
                }

                    .popup-wrapper.detail .popup-container .left .slider .item.video video {
                        position: relative;
                        width: 100%;
                        height: 100%;
                    }

                    .popup-wrapper.detail .popup-container .left .slider .item.video .btn-play {
                        position: absolute;
                        width: 1.48rem;
                        top: 50%;
                        left: 50%;
                        z-index: 2;
                        text-align: center;
                        color: white;
                        margin-left: -.74rem;
                        margin-top: -.74rem;
                    }

                        .popup-wrapper.detail .popup-container .left .slider .item.video .btn-play img {
                            width: 100%;
                        }

        .popup-wrapper.detail .popup-container .left .nav {
            display: inline-block;
            width: 100%;
            text-align: left;
        }

            .popup-wrapper.detail .popup-container .left .nav .buttons {
                display: inline-block;
            }

            .popup-wrapper.detail .popup-container .left .nav .btn {
                display: inline-block;
                width: 1rem;
                height: 0.69rem;
                vertical-align: middle;
                padding-left: 0.15rem;
                padding-right: 0.15rem;
                text-align: center;
                color: #ffffff;
                background-color: #404040;
                cursor: pointer;
                margin-right: 0.2rem;
                border-radius: 0.05rem;
                -webkit-border-radius: 0.05rem;
                -moz-border-radius: 0.05rem;
                -ms-border-radius: 0.05rem;
                -o-border-radius: 0.05rem;
            }

                .popup-wrapper.detail .popup-container .left .nav .btn span {
                    font-weight: 400;
                    font-size: 0.16rem;
                    line-height: 1.5em;
                    text-align: center;
                }

            .popup-wrapper.detail .popup-container .left .nav .images {
                display: inline-block;
                vertical-align: middle;
                text-align: left;
                height: 0.8rem;
                margin-top: 0.11rem;
                overflow: auto;
                white-space: nowrap;
                padding-right: 0.05rem;
            }

                .popup-wrapper.detail .popup-container .left .nav .images .item {
                    display: inline-block;
                    width: 1rem;
                    height: 0.69rem;
                    background-position: center;
                    background-size: cover;
                    cursor: pointer;
                }

                .popup-wrapper.detail .popup-container .left .nav .images * + .item {
                    margin-left: 0.2rem;
                }

    .popup-wrapper .popup-container .right {
        display: inline-block;
        width: 53%;
        vertical-align: top;
        height: 100%;
        padding: 0;
        text-align: left;
    }

    .popup-wrapper.form .popup-container .right {
        text-align: center;
        padding: 0.4rem;
        position: relative;
    }

        .popup-wrapper.form .popup-container .right form.general .form-message {
            display: none;
            width: 100%;
            font-size: .16rem;
            color: #f00;
            margin-top: .2rem;
        }

    .popup-wrapper.detail .popup-container .right .content {
        width: 100%;
        padding-right: 0.3rem;
        padding-left: 0.3rem;
    }

        .popup-wrapper.detail .popup-container .right .content .buttons {
            display: block;
            width: calc(100% + .4rem);
            margin: -.1rem -.2rem;
        }

        .popup-wrapper.detail .popup-container .right .content * + .buttons {
            margin-top: 0.5rem;
        }

        .popup-wrapper.detail .popup-container .right .content .buttons .btn {
            display: inline-block;
            background-color: black;
            color: white;
            margin: .1rem .2rem;
        }

        .popup-wrapper.detail .popup-container .right .content .props {
            display: inline-block;
            width: 100%;
            text-align: right;
        }

        .popup-wrapper.detail .popup-container .right .content * + .props {
            margin-top: 0.4rem;
        }

        .popup-wrapper.detail .popup-container .right .content .props > * {
            display: inline-block;
            width: 50%;
            vertical-align: middle;
            text-align: left;
        }

        .popup-wrapper.detail .popup-container .right .content .props span {
            display: inline-block;
            vertical-align: middle;
            font-weight: 700;
            font-size: 0.18rem;
            line-height: 1.333em;
            color: #404040;
        }

        .popup-wrapper.detail .popup-container .right .content .props .detail .icon {
            display: inline-block;
            vertical-align: middle;
            width: 0.4rem;
        }

        .popup-wrapper.detail .popup-container .right .content .props .floor {
            text-align: right;
        }

    .popup-wrapper .popup-container .right .title {
        font-weight: 700;
        font-size: 0.22rem;
        line-height: 1.091em;
        color: #000000;
    }

    .popup-wrapper .popup-container .right .text {
        font-weight: 400;
        font-size: 0.16rem;
        line-height: 1.5em;
        color: #000000;
    }

    .popup-wrapper .popup-container .right * + .text {
        margin-top: .2rem;
    }

    .popup-wrapper .popup-container .right .text span + span:before {
        content: '|';
        position: relative;
        margin-left: .10rem;
        margin-right: .15rem;
        top: -.01rem;
    }

    .popup-wrapper .popup-container .right .form-wizard {
        display: inline-block;
        width: 100%;
    }

    .popup-wrapper .popup-container .right .content.approve {
        display: none !important;
    }

        .popup-wrapper .popup-container .right .content.approve.active {
            display: inline-block !important;
        }

    .popup-wrapper .popup-container .right .form-wizard .step-tabs {
        display: inline-block;
        width: 100%;
    }

    .popup-wrapper .popup-container .right * + .form-wizard {
        margin-top: 0.19rem;
    }

    .popup-wrapper .popup-container .right .form-wizard .step-tabs {
        display: inline-block;
        width: 100%;
        position: relative;
    }

        .popup-wrapper .popup-container .right .form-wizard .step-tabs .step-title {
            display: inline-block;
            position: relative;
            cursor: pointer;
            vertical-align: top;
        }

            .popup-wrapper .popup-container .right .form-wizard .step-tabs .step-title::before {
                content: "";
                width: 100%;
                top: 0.2rem;
                position: absolute;
                right: 50%;
                height: 0.01rem;
                background-color: rgba(64, 64, 64, 0.5);
            }

            .popup-wrapper .popup-container .right .form-wizard .step-tabs .step-title:first-child::before {
                content: none;
            }

            .popup-wrapper .popup-container .right .form-wizard .step-tabs .step-title span {
                display: inline-block;
                width: 0.4rem;
                height: 0.4rem;
                background-color: #c4c4c4;
                text-align: center;
                position: relative;
                font-weight: 700;
                font-size: 0.12rem;
                line-height: 0.4rem;
                color: #ffffff;
                z-index: 2;
                border-radius: 50%;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                -ms-border-radius: 50%;
                -o-border-radius: 50%;
            }

            .popup-wrapper .popup-container .right .form-wizard .step-tabs .step-title.active span {
                background-color: #404040;
            }

            .popup-wrapper .popup-container .right .form-wizard .step-tabs .step-title .text {
                margin-top: 0.08rem;
                display: block;
                font-weight: 700;
                font-size: 0.12rem;
                line-height: 1.2em;
                color: #404040;
            }

    .popup-wrapper .popup-container .right .form-wizard .steps {
        display: inline-block;
        width: 100%;
    }

    .popup-wrapper.register .popup-container .right .steps {
        max-width: 4.2rem;
    }

    .popup-wrapper .popup-container .right .form-wizard * + .steps {
        margin-top: 0.4rem;
    }

    .popup-wrapper .popup-container .right .form-wizard .steps .step-item {
        display: none;
    }

        .popup-wrapper .popup-container .right .form-wizard .steps .step-item.active {
            display: inline-block;
        }

    .popup-wrapper .popup-container .right .form-wizard .buttons {
        display: inline-block;
        text-align: center;
        width: 100%;
    }

    .popup-wrapper .popup-container .right .form-wizard * + .buttons {
        margin-top: 0.4rem;
    }

    .popup-wrapper .popup-container .right .form-wizard .buttons .btn.next {
        background-color: #b4b4b4;
        color: white;
        margin: 0px auto;
    }

    .popup-wrapper .popup-container .right .form-wizard .buttons .btn.prev {
        display: inline-block;
        position: relative;
        font-weight: 400;
        font-size: 0.14rem;
        line-height: 1.2em;
        color: #000000;
        cursor: pointer;
        text-decoration: underline;
    }

    .popup-wrapper .popup-container .right .form-wizard .buttons .btn.skip {
        display: inline-block;
        position: relative;
        font-weight: 400;
        font-size: 0.14rem;
        line-height: 1.2em;
        color: #000000;
        cursor: pointer;
        text-decoration: underline;
    }

    .popup-wrapper .popup-container .right .form-wizard .buttons * + .btn.prev {
        margin-top: 0.18rem;
    }

    .popup-wrapper .popup-container .right .form-wizard .buttons * + .btn.skip {
        margin-top: 0.18rem;
    }

    .popup-wrapper .popup-container .right .form-wizard .buttons .btn.prev {
        visibility: hidden;
        opacity: 0;
        transition: all 0.2s ease-in-out;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
    }

    .popup-wrapper .popup-container .right .form-wizard .buttons button {
        background-color: #b4b4b4;
        color: white;
        margin: 0px auto;
    }

    .popup-wrapper .popup-container .right .form-wizard:not([data-current-step="0"]) .buttons .btn.prev {
        visibility: visible;
        opacity: 1;
    }

    .popup-wrapper .popup-container .right .success-message {
        display: none;
        text-align: center;
    }

        .popup-wrapper .popup-container .right .success-message .icon {
            display: inline-block;
            width: 1.15rem;
        }

        .popup-wrapper .popup-container .right .success-message .text {
            display: inline-block;
            width: 100%;
            font-weight: 700;
            font-size: 0.28rem;
            line-height: 0.857em;
            color: #000000;
        }

        .popup-wrapper .popup-container .right .success-message * + .text {
            margin-top: 0.63rem;
        }

    .popup-wrapper .popup-container .right .sms-approve {
        display: none;
        text-align: center;
        max-width: 100%;
        width: 4.14rem;
        height: 100%;
        position: relative;
    }

        .popup-wrapper .popup-container .right .sms-approve.active {
            display: inline-block;
        }

        .popup-wrapper .popup-container .right .sms-approve .title {
            position: absolute;
            text-align: center;
            width: 100%;
            left: 0;
            top: 0;
        }

        .popup-wrapper .popup-container .right .sms-approve .prev-content {
            position: absolute;
            text-align: center;
            width: 100%;
            left: 0;
            bottom: 0;
            display: inline-block;
            font-weight: 400;
            font-size: 0.14rem;
            line-height: 1.2em;
            color: #000000;
            cursor: pointer;
            text-decoration: underline;
        }

        .popup-wrapper .popup-container .right .sms-approve form.general {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            padding-top: .5rem;
            padding-bottom: .5rem;
        }

            .popup-wrapper .popup-container .right .sms-approve form.general .timer {
                font-size: .24rem;
                font-weight: 400;
                line-height: 1.2em;
                color: #404040;
                margin-bottom: 0.48rem;
                display: inline-block;
            }

            .popup-wrapper .popup-container .right .sms-approve form.general .form-item input[type="text"] {
                padding-right: 1.37rem;
            }

            .popup-wrapper .popup-container .right .sms-approve form.general .approve-resend {
                position: absolute;
                right: 0;
                border: 0;
                top: 50%;
                height: 0.4rem;
                margin-top: -0.2rem;
                outline: none;
                color: #404040;
                font-size: .14rem;
                border-left: 1px solid rgba(64, 64, 64, 0.5);
                width: 1.13rem;
                background: transparent;
                padding: 0 0.12rem;
            }

                .popup-wrapper .popup-container .right .sms-approve form.general .approve-resend span {
                    display: inline-block;
                    vertical-align: middle;
                    width: calc(100% - .32rem);
                    text-align: left;
                }

                .popup-wrapper .popup-container .right .sms-approve form.general .approve-resend img {
                    display: inline-block;
                    vertical-align: middle;
                    width: .21rem;
                }

            .popup-wrapper .popup-container .right .sms-approve form.general .buttons {
                display: inline-block;
                width: 100%;
            }

            .popup-wrapper .popup-container .right .sms-approve form.general * + .buttons {
                margin-top: .27rem;
            }

            .popup-wrapper .popup-container .right .sms-approve form.general .buttons .btn.btn-general {
                background-color: black;
                color: white;
            }

    .popup-wrapper.media .popup-container {
        padding: 0;
    }

        .popup-wrapper.media .popup-container .video {
            width: 100%;
            height: 100%;
        }

            .popup-wrapper.media .popup-container .video iframe {
                width: 100% !important;
                height: 100% !important;
            }

        .popup-wrapper.media .popup-container .media-bg {
            width: calc(100% - 0.4rem);
            height: calc(100% - 0.4rem);
            margin: .2rem;
            background-position: center;
            background-size: contain;
            background-repeat: no-repeat;
        }

/*  Page Header */
section.page-header {
    position: relative;
    z-index: 2;
}

    section.page-header .page-title {
        display: inline-block;
        min-width: 4.6rem;
        height: 0.36rem;
        font-weight: 800;
        font-size: 0.14rem;
        line-height: 1.2em;
        color: #ffffff;
        background-color: #404040;
        text-align: center;
        padding: 0.1rem 0.25rem;
        overflow: hidden;
    }

/*  Header  */

header {
    background-color: white;
    width: 100%;
    position: relative;
    z-index: 5;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

    header .container {
        width: 15.54rem;
    }

    header .menu {
        display: inline-block;
        width: 100%;
        padding-top: 0.6rem;
        padding-bottom: 0.4rem;
        position: relative;
        z-index: 2;
        background-color: white;
    }

        header .menu .left {
            display: inline-block;
            width: 1.92rem;
            vertical-align: middle;
        }

            header .menu .left img {
                width: 100%;
            }

        header .menu .right {
            display: inline-block;
            width: 2.94rem;
            vertical-align: middle;
            text-align: right;
        }

            header .menu .right a {
                display: inline-block;
                vertical-align: middle;
            }

                header .menu .right a + a {
                    margin-left: .25rem;
                }

                header .menu .right a img {
                    height: .6rem;
                    width: auto;
                    max-width: 100%;
                }

        header .menu .center {
            display: inline-block;
            width: calc(100% - 4.86rem);
            vertical-align: middle;
        }

            header .menu .center .items {
                display: inline-block;
                width: 100%;
                text-align: center;
            }

                header .menu .center .items .item .sub-menu {
                    display: none;
                    background-color: #E5E5E5;
                    padding: .08rem 0;
                }

                    header .menu .center .items .item .sub-menu .item {
                        color: black;
                        padding: .08rem;
                    }

                header .menu .center .items .item {
                    display: inline-block;
                    font-weight: 600;
                    font-size: 0.16rem;
                    line-height: 1.2em;
                    color: #404040;
                    vertical-align: middle;
                    cursor: pointer;
                    transition: all .3s ease-in-out;
                    -webkit-transition: all .3s ease-in-out;
                    -moz-transition: all .3s ease-in-out;
                    -ms-transition: all .3s ease-in-out;
                    -o-transition: all .3s ease-in-out;
                }

                    header .menu .center .items .item > a {
                        padding: 0.13rem;
                        color: inherit;
                        display: inline-block;
                        vertical-align: middle;
                        font-size: inherit;
                    }

                    header .menu .center .items .item img {
                        display: inline-block;
                        width: 0.18rem;
                        vertical-align: middle;
                        margin-right: .05rem;
                    }

    header .infobar {
        background-color: #fdcb41;
        padding: 0.29rem 0;
        position: relative;
        z-index: 2;
    }

        header .infobar .left {
            display: inline-block;
            width: 25%;
            vertical-align: middle;
        }

            header .infobar .left a {
                display: inline-block;
                vertical-align: middle;
            }

            header .infobar .left * + a {
                margin-left: 0.28rem;
            }

            header .infobar .left a img {
                height: 0.19rem;
                width: auto;
            }

        header .infobar .right {
            display: inline-block;
            width: 25%;
            vertical-align: middle;
            text-align: right;
        }

            header .infobar .right .item {
                display: inline-block;
            }

            header .infobar .right * + .item {
                margin-left: 0.45rem;
            }

            header .infobar .right .item span {
                display: inline-block;
                vertical-align: middle;
                font-weight: 700;
                font-size: 0.14rem;
                line-height: 1.2em;
                color: #404040;
            }

            header .infobar .right .item img {
                display: inline-block;
                vertical-align: middle;
                width: 0.2rem;
                margin-left: 0.09rem;
            }

        header .infobar .center {
            width: 50%;
            display: inline-block;
            vertical-align: middle;
            text-align: center;
        }

            header .infobar .center .text {
                font-weight: 700;
                font-size: 0.14rem;
                line-height: 1.2em;
                color: #5e5e5e;
            }

    header .sub-menu-container {
        position: absolute;
        z-index: 1;
        display: inline-block;
        width: 100%;
        background-color: #404040;
        padding: .2rem 0;
        bottom: 0;
        left: 0;
        transition: transform .3s ease-in-out;
        -webkit-transition: transform .3s ease-in-out;
        -moz-transition: transform .3s ease-in-out;
        -ms-transition: transform .3s ease-in-out;
        -o-transition: transform .3s ease-in-out;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }

        header .sub-menu-container.active {
            transform: translateY(100%);
            -webkit-transform: translateY(100%);
            -moz-transform: translateY(100%);
            -ms-transform: translateY(100%);
            -o-transform: translateY(100%);
        }

        header .sub-menu-container .sub-menu {
            display: none;
            width: 100%;
            vertical-align: middle;
            text-align-last: left;
            padding-right: 2.94rem;
        }

            header .sub-menu-container .sub-menu .item {
                display: inline-block;
                padding: 0.13rem;
                font-weight: 600;
                font-size: 0.16rem;
                line-height: 1.2em;
                color: white;
                vertical-align: middle;
            }

    header .search-bar {
        position: absolute;
        z-index: 1;
        display: inline-block;
        width: 100%;
        background-color: white;
        padding: .2rem 0 .4rem 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        bottom: 0;
        left: 0;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }

        header .search-bar.active {
            transform: translateY(100%);
            -webkit-transform: translateY(100%);
            -moz-transform: translateY(100%);
            -ms-transform: translateY(100%);
            -o-transform: translateY(100%);
        }

        header .search-bar .form-item input[type="text"] {
            border-color: rgba(0, 0, 0, 0.1);
            border-radius: 0;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            -o-border-radius: 0;
        }

        header .search-bar .text {
            display: inline-block;
            width: 100%;
            margin-top: .2rem;
            font-weight: 500;
            font-size: 0.16rem;
            line-height: 1.2em;
            color: #404040;
            vertical-align: middle;
            text-align: center;
        }

            header .search-bar .text a {
                font-weight: 700;
                color: inherit;
                text-decoration: underline;
            }

            header .search-bar .text * + a {
                margin-left: .03rem;
            }
/*  Footer */
footer {
    width: 100%;
    background-color: #303030;
    border-top: 0.08rem solid #fdcb41;
    padding-top: 0.67rem;
    padding-bottom: 0.75rem;
}

* footer {
    margin-top: 0.92rem;
}

footer .logos {
    display: inline-block;
    vertical-align: top;
    width: 2.4rem;
}

    footer .logos .logo {
        display: inline-block;
        width: 1.5rem;
    }

        footer .logos .logo + .logo {
            margin-top: .1rem;
        }

        footer .logos .logo a {
            display: inline-block;
        }

            footer .logos .logo a img {
                display: inline-block;
                width: 100%;
            }

        footer .logos .logo.store a {
            width: 1.5rem;
        }

            footer .logos .logo.store a img {
                width: 100%;
            }

footer .menu-wrapper {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 2.4rem);
    padding-left: .56rem;
}

    footer .menu-wrapper .item {
        display: inline-block;
        vertical-align: top;
    }

    footer .menu-wrapper * + .item {
        padding-left: 0.8rem;
    }

    footer .menu-wrapper .item .title {
        font-weight: 700;
        font-size: 0.18rem;
        line-height: 1.2em;
        color: #f9f9f9;
    }

    footer .menu-wrapper .item .content {
        display: block;
        width: 100%;
    }

    footer .menu-wrapper .item .text {
        font-weight: 300;
        font-size: 0.16rem;
        line-height: 1.2em;
        color: #f9f9f9;
        margin-top: 0.14rem;
    }

    footer .menu-wrapper .item.newsletter .title {
        font-size: 0.2rem;
    }

    footer .menu-wrapper .item.newsletter .text {
        font-size: 0.18rem;
    }

    footer .menu-wrapper .item.newsletter a.btn {
        background-color: #fdcb41;
    }

        footer .menu-wrapper .item.newsletter a.btn span {
            color: #1d1d1b;
        }

    footer .menu-wrapper .item .menu-link {
        display: block;
    }

    footer .menu-wrapper .item .menu-link {
        display: block;
        font-weight: 300;
        font-size: 0.16rem;
        line-height: 1.2em;
        color: #f9f9f9;
        margin-top: 0.14rem;
    }

    footer .menu-wrapper .item .title + .text {
        margin-top: 0.18rem;
    }

    footer .menu-wrapper .item.newsletter * + .text {
        margin-top: 0.04rem;
    }

    footer .menu-wrapper .item.newsletter * + a.btn {
        margin-top: 0.4rem;
    }

/*  Easy Access */

section.easy-access {
    display: none;
}

/*Main Slider*/

section.main-slider {
    display: inline-block;
    width: 100%;
}

section.page-header + section.main-slider {
    margin-top: -0.36rem;
}

section.main-slider .item {
    display: inline-block;
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 43.75%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

    section.main-slider .item img {
        position: absolute;
    }

    section.main-slider .item .img-cont {
        width: 100%;
    }

    section.main-slider .item .text {
        text-align: center;
        position: absolute;
        top: 0;
        left: 0;
        font-weight: 800;
        font-size: 0.14rem;
        line-height: 1.2em;
        color: #ffffff;
        background-color: #404040;
        width: 4.6rem;
        height: auto;
        padding: 0.1rem;
        z-index: 1;
    }

    section.main-slider .item .title {
        text-align: center;
        position: absolute;
        bottom: 0.2rem;
        left: 0;
        font-weight: 700;
        font-size: 0.24rem;
        line-height: 1.2em;
        color: #000000;
        background-color: white;
        width: 5.3rem;
        height: auto;
        padding: 0.2rem 0.15rem;
        z-index: 1;
    }

    section.main-slider .item .content a.btn {
        background-color: #0767c3;
    }

    section.main-slider .item .content * + a.btn {
        margin-top: 0.45rem;
    }

section.main-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    height: 0;
    width: 100%;
}

    section.main-slider .owl-nav > div {
        position: absolute;
        display: inline-block;
        background-color: #282828;
        opacity: .2;
        top: 0;
        margin-top: -.68rem;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 0.15rem;
        width: 0.68rem;
        height: 0.68rem;
        transition: all 0.2s ease-in-out;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
    }

    section.main-slider .owl-nav > .owl-prev {
        left: 0;
        background-image: url(Icons/slider-left-arrow.svg);
        margin-right: 0.05rem;
    }

    section.main-slider .owl-nav > .owl-next {
        right: 0;
        background-image: url(Icons/slider-right-arrow.svg);
        background-size: 0.15rem;
    }

section.main-slider .owl-dots {
    position: relative;
    height: 0.12rem;
    margin-top: 0.5rem;
    text-align: center;
}

    section.main-slider .owl-dots .owl-dot {
        width: 0.12rem;
        height: 0.12rem;
        display: inline-block;
        background-color: #c4c4c4;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }

        section.main-slider .owl-dots .owl-dot.active {
            background-color: black;
        }

    section.main-slider .owl-dots * + .owl-dot {
        margin-left: 0.1rem;
    }

/*  Blocks */

section.blocks {
    width: 100%;
    display: inline-block;
}

* + section.blocks {
    margin-top: 0.64rem;
}

section.blocks .items {
    display: inline-block;
    width: 100%;
}

section.blocks .slider {
    margin-left: -0.1rem;
    margin-right: -0.1rem;
}

section.blocks .small-block {
    display: inline-block;
    width: 33.33%;
    height: 4.66rem;
    padding: 0.1rem;
    vertical-align: middle;
}

    section.blocks .small-block .wrapper {
        height: 100%;
        position: relative;
    }

        section.blocks .small-block .wrapper:before {
            content: "";
            display: inline-block;
            height: 100%;
            width: 0;
            vertical-align: bottom;
        }

        section.blocks .small-block .wrapper .bg-color {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }

        section.blocks .small-block .wrapper .bg-image {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 2;
            opacity: 0.06;
        }

        section.blocks .small-block .wrapper .text-block {
            display: inline-block;
            width: 100%;
            position: relative;
            z-index: 3;
        }

            section.blocks .small-block .wrapper .text-block .content {
                display: inline-block;
                width: 100%;
                padding: 0.3rem 0.5rem;
            }

                section.blocks .small-block .wrapper .text-block .content .title {
                    display: block;
                    white-space: normal;
                    font-weight: 400;
                    font-size: 0.4rem;
                    line-height: 1.2em;
                    color: #404040;
                }

                section.blocks .small-block .wrapper .text-block .content .text {
                    display: block;
                    white-space: normal;
                    font-weight: 300;
                    font-size: 0.18rem;
                    line-height: 1.2em;
                    color: #404040;
                }

                section.blocks .small-block .wrapper .text-block .content * + .text {
                    margin-top: 0.2rem;
                }

                section.blocks .small-block .wrapper .text-block .content a.btn {
                    margin-left: auto;
                    margin-right: auto;
                    background-color: black;
                }

                section.blocks .small-block .wrapper .text-block .content * + a.btn {
                    margin-top: 0.56rem;
                }

                section.blocks .small-block .wrapper .text-block .content a.btn span {
                    color: white;
                }

section.blocks .slider .large-block {
    display: inline-block;
    width: 66.66%;
    padding: 0.1rem;
    vertical-align: middle;
}

    section.blocks .slider .large-block .wrapper .owl-carousel .item {
        display: inline-block;
        width: 100%;
        height: 4.46rem;
        overflow: hidden;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    section.blocks .slider .large-block .wrapper .owl-carousel .owl-item {
        overflow: hidden;
    }

    section.blocks .slider .large-block .wrapper .owl-carousel .owl-nav {
        position: absolute;
        top: 0.65rem;
        right: 0;
    }

        section.blocks .slider .large-block .wrapper .owl-carousel .owl-nav > div {
            display: inline-block;
            background-color: #282828;
            width: 0.68rem;
            height: 0.68rem;
        }

        section.blocks .slider .large-block .wrapper .owl-carousel .owl-nav > .owl-prev {
            background-image: url(Icons/slider-left-arrow.svg);
            background-position: center;
            background-repeat: no-repeat;
            background-size: 0.15rem;
            margin-right: 0.05rem;
        }

        section.blocks .slider .large-block .wrapper .owl-carousel .owl-nav > .owl-next {
            background-image: url(Icons/slider-right-arrow.svg);
            background-position: center;
            background-repeat: no-repeat;
            background-size: 0.15rem;
        }

    section.blocks .slider .large-block .wrapper {
        height: 100%;
    }

section.blocks .row {
    height: 4.46rem;
    margin-left: -0.1rem;
    margin-right: -0.1rem;
}

    section.blocks .row .column {
        height: 100%;
        display: inline-block;
        vertical-align: middle;
    }

        section.blocks .row .column.one-third {
            width: 33.33%;
        }

        section.blocks .row .column.one-fourth {
            width: 25%;
        }

        section.blocks .row .column.two-third {
            width: 66.66%;
        }

        section.blocks .row .column.two-half {
            width: 50%;
        }

        section.blocks .row .column.full {
            width: 100%;
        }

        section.blocks .row .column .box-item {
            width: 100%;
            height: 100%;
            display: inline-block;
            padding: 0.1rem;
            position: relative;
        }

            section.blocks .row .column .box-item .content {
                width: 100%;
                height: 100%;
            }

                section.blocks .row .column .box-item .content .title {
                    font-weight: 900;
                    font-size: 0.24rem;
                    line-height: 1.2em;
                }

                section.blocks .row .column .box-item .content .text {
                    width: 100%;
                    font-weight: 500;
                    font-size: 0.2rem;
                    line-height: 1.2em;
                }

                section.blocks .row .column .box-item .content * + .text {
                    margin-top: 0.28rem;
                }

                section.blocks .row .column .box-item .content .text-block {
                    width: 100%;
                    height: 100%;
                    padding: 0.47rem;
                }

                    section.blocks .row .column .box-item .content .text-block:after {
                        content: '';
                        position: absolute;
                        right: .45rem;
                        bottom: .55rem;
                        background-image: url(Icons/box-arrow.svg);
                        width: .63rem;
                        height: .1rem;
                        background-size: contain;
                        background-position: center;
                        background-repeat: no-repeat;
                    }

                    section.blocks .row .column .box-item .content .text-block:before {
                        content: "";
                        display: inline-block;
                        height: 100%;
                        width: 0;
                        vertical-align: bottom;
                    }

                    section.blocks .row .column .box-item .content .text-block .box-content {
                        display: inline-block;
                        width: 100%;
                        padding-right: 0.45rem;
                        padding-bottom: 0.45rem;
                    }

                section.blocks .row .column .box-item .content .image-block {
                    position: relative;
                    overflow: hidden;
                    height: 100%;
                }

                    section.blocks .row .column .box-item .content .image-block img {
                        position: absolute;
                    }

                section.blocks .row .column .box-item .content .text-image-block {
                    width: 100%;
                    height: 100%;
                }

                    section.blocks .row .column .box-item .content .text-image-block .image-block {
                        width: 100%;
                        height: calc(50% - 0.09rem);
                    }

                    section.blocks .row .column .box-item .content .text-image-block .text-block {
                        width: 100%;
                        height: calc(50% - 0.09rem);
                        margin-top: 0.18rem;
                    }

                section.blocks .row .column .box-item .content .video {
                    position: relative;
                    width: 100%;
                    height: 100%;
                }

                    section.blocks .row .column .box-item .content .video:before {
                        content: '';
                        width: 100%;
                        height: 100%;
                        background-color: #0000008c;
                        position: absolute;
                        left: 0;
                        top: 0;
                        z-index: 1;
                    }

                    section.blocks .row .column .box-item .content .video[a-playing="true"]:before {
                        content: none;
                    }

                    section.blocks .row .column .box-item .content .video video {
                        position: relative;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }

                    section.blocks .row .column .box-item .content .video .btn-play {
                        position: absolute;
                        width: 100%;
                        top: 50%;
                        z-index: 2;
                        text-align: center;
                        transform: translateY(-50%);
                        -webkit-transform: translateY(-50%);
                        -moz-transform: translateY(-50%);
                        -ms-transform: translateY(-50%);
                        -o-transform: translateY(-50%);
                        color: white;
                        /* margin-top: 0.5rem; */
                    }

                        section.blocks .row .column .box-item .content .video .btn-play img {
                            width: 1.48rem;
                        }

                        section.blocks .row .column .box-item .content .video .btn-play * + .text {
                            margin-top: 0.5rem;
                        }

/* Slider*/

section.slider {
    display: inline-block;
    width: 100%;
}

* + section.slider {
    margin-top: 0.8rem;
}

section.slider .title {
    color: black;
    text-align: center;
}

section.slider * + .carousel {
    margin-top: 0.5rem;
}

section.slider .carousel[data-items="3"] .item {
    height: 0;
    padding-bottom: 110%;
}

section.slider .carousel[data-items="4"] .item {
    height: 0;
    padding-bottom: 140%;
}

section.slider .item {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 4.5rem;
    overflow: hidden;
}

    section.slider .item img {
        position: absolute;
    }

    section.slider .item .img-cont {
        width: 100%;
    }

    section.slider .item .content {
        display: inline-block;
        position: absolute;
        width: 100%;
        bottom: 0.45rem;
        left: 0;
        padding-left: 0.6rem;
    }

        section.slider .item .content .text {
            width: 60%;
            font-weight: 400;
            font-size: 0.18rem;
            line-height: 1.2em;
            color: #ffffff;
        }

        section.slider .item .content .title {
            width: 60%;
            font-weight: 700;
            font-size: 0.32rem;
            line-height: 1.2em;
            color: #ffffff;
        }

        section.slider .item .content * + .title {
            margin-top: 0.14rem;
        }

        section.slider .item .content a.btn {
            background-color: #0767c3;
        }

        section.slider .item .content * + a.btn {
            margin-top: 0.45rem;
        }

section.slider .owl-nav {
    display: none;
}

section.slider .owl-dots {
    display: block !important;
    position: relative;
    height: 0.12rem;
    margin-top: 0.5rem;
    text-align: center;
}

    section.slider .owl-dots .owl-dot {
        width: 0.12rem;
        height: 0.12rem;
        display: inline-block;
        background-color: #c4c4c4;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }

        section.slider .owl-dots .owl-dot.active {
            background-color: black;
        }

    section.slider .owl-dots * + .owl-dot {
        margin-left: 0.1rem;
    }

* + section.announcements {
    margin-top: 0.5rem;
}

section.announcements .header {
    padding-left: 0.7rem;
}

section.announcements .wrapper {
    display: inline-block;
    width: 100%;
}

section.announcements * + .wrapper {
    margin-top: 0.32rem;
}

section.announcements .wrapper .news {
    display: inline-block;
    width: 44.45%;
    height: 4.51rem;
    vertical-align: top;
    padding: 0.2rem 0.26rem;
    background-color: white;
}

    section.announcements .wrapper .news .items {
        height: 100%;
        overflow: auto;
        padding-right: 0.2rem;
    }

        section.announcements .wrapper .news .items::-webkit-scrollbar {
            width: 0.04rem;
        }

        section.announcements .wrapper .news .items::-webkit-scrollbar-track {
            background: #aaaaaa;
        }

        section.announcements .wrapper .news .items::-webkit-scrollbar-thumb {
            background: #545454;
        }

            section.announcements .wrapper .news .items::-webkit-scrollbar-thumb:hover {
                background: #444;
            }

        section.announcements .wrapper .news .items .item {
            display: block;
            width: 100%;
            padding: 0.2rem 0.26rem;
            background-color: white;
            transition: all 0.2s ease-in-out;
            -webkit-transition: all 0.2s ease-in-out;
            -moz-transition: all 0.2s ease-in-out;
            -ms-transition: all 0.2s ease-in-out;
            -o-transition: all 0.2s ease-in-out;
        }

            section.announcements .wrapper .news .items .item .title {
                font-weight: 600;
                font-size: 0.2rem;
                line-height: 1.2em;
                color: #000000;
                transition: all 0.2s ease-in-out;
                -webkit-transition: all 0.2s ease-in-out;
                -moz-transition: all 0.2s ease-in-out;
                -ms-transition: all 0.2s ease-in-out;
                -o-transition: all 0.2s ease-in-out;
            }

            section.announcements .wrapper .news .items .item .text {
                font-weight: 300;
                font-size: 0.16rem;
                line-height: 1.2em;
                color: #000000;
                transition: all 0.2s ease-in-out;
                -webkit-transition: all 0.2s ease-in-out;
                -moz-transition: all 0.2s ease-in-out;
                -ms-transition: all 0.2s ease-in-out;
                -o-transition: all 0.2s ease-in-out;
            }

            section.announcements .wrapper .news .items .item * + .text {
                margin-top: 0.2rem;
            }

section.announcements .wrapper .image-box {
    display: inline-block;
    width: 55.55%;
    height: 4.51rem;
    vertical-align: top;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

    section.announcements .wrapper .image-box img {
        position: absolute;
    }

/*  Events */

* + section.events {
    margin-top: 0.7rem;
}

section.events .categories {
    display: inline-block;
    width: 100%;
}

    section.events .categories form.general .form-item {
        width: auto;
    }

        section.events .categories form.general .form-item .select2-container {
            width: 2rem !important;
            max-width: 100%;
        }

        section.events .categories form.general .form-item .select2-container--default .select2-selection--single {
            background-color: #282828;
            border-radius: 0;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            -o-border-radius: 0;
        }

        section.events .categories form.general .form-item .select2-container .select2-selection--single .select2-selection__rendered {
            color: white;
        }

        section.events .categories form.general .form-item .select2-container .select2-selection--single .select2-selection__arrow b {
            border-color: white transparent transparent;
        }

        section.events .categories form.general .form-item .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
            border-color: transparent transparent white transparent;
        }

section.events .items {
    display: inline-block;
    margin: -0.4rem -0.12rem;
    width: calc(100% + 0.24rem);
}

section.events .categories + .items {
    padding-top: 0.33rem;
}

section.events .items .item {
    display: inline-block;
    margin: 0.4rem 0.12rem;
    width: calc(33.33% - 0.24rem);
    cursor: pointer;
    vertical-align: top;
}

    section.events .items .item .img-box {
        position: relative;
        padding-bottom: 100%;
        overflow: hidden;
    }

        section.events .items .item .img-box img {
            position: absolute;
        }

    section.events .items .item .title {
        font-weight: 700;
        font-size: 0.16rem;
        line-height: 1.2em;
        color: #000000;
        text-align: center;
    }

    section.events .items .item * + .title {
        margin-top: 0.24rem;
    }

/*  Movies */

* + section.shows {
    margin-top: 0.4rem;
}

section.shows .buttons {
    display: inline-block;
    width: 100%;
}

    section.shows .buttons .item {
        display: inline-block;
        font-weight: 700;
        font-size: 0.16rem;
        line-height: 1.2em;
        color: #404040;
        padding: 0.26rem 0.5rem;
        border: 1px solid #404040;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

        section.shows .buttons .item.active {
            background-color: #404040;
            color: white;
        }

    section.shows .buttons * + .item {
        margin-left: 0.2rem;
    }

section.shows .items {
    display: inline-block;
    margin: -0.4rem -0.12rem;
    width: calc(100% + 0.24rem);
}

section.shows * + .items {
    margin-top: 0.32rem;
}

section.shows .items .item {
    display: inline-block;
    margin: 0.4rem 0.12rem;
    width: calc(25% - 0.24rem);
    vertical-align: top;
}

    section.shows .items .item .img-box {
        position: relative;
        padding-bottom: 147.81%;
        overflow: hidden;
    }

        section.shows .items .item .img-box img {
            position: absolute;
        }

    section.shows .items .item .title {
        font-weight: 900;
        font-size: 0.18rem;
        line-height: 1.2em;
        color: #404040;
    }

    section.shows .items .item * + .text {
        margin-top: 0.16rem;
    }

    section.shows .items .item .text {
        font-weight: 400;
        font-size: 0.16rem;
        line-height: 1.2em;
        color: #404040;
    }

    section.shows .items .item * + .title {
        margin-top: 0.24rem;
    }

    section.shows .items .item .buttons {
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    section.shows .items .item * + .buttons {
        margin-top: 0.34rem;
    }

    section.shows .items .item .buttons .btn {
        margin-left: auto;
        margin-right: auto;
    }

        section.shows .items .item .buttons .btn.buy-ticket {
            color: black;
            background-color: #fdcb41;
        }

    section.shows .items .item .buttons * + .btn.trailer {
        margin-top: 0.16rem;
    }

    section.shows .items .item .buttons .btn.trailer {
        color: white;
        background-color: black;
    }

/*  Stores */

section.stores .views {
    display: inline-block;
    width: 100%;
}

* + section.stores .views {
    margin-top: 0.42rem;
}

section.stores .views .items {
    display: inline-block;
    width: calc(100% - 2.5rem);
    vertical-align: middle;
}

    section.stores .views .items .item {
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        opacity: 0.4;
    }

        section.stores .views .items .item.active {
            opacity: 1;
        }

    section.stores .views .items * + .item {
        margin-left: 0.29rem;
    }

    section.stores .views .items .item img {
        display: inline-block;
        width: 0.12rem;
        vertical-align: middle;
    }

    section.stores .views .items .item span {
        display: inline-block;
        vertical-align: middle;
        font-weight: 700;
        font-size: 0.16rem;
        line-height: 1.6em;
        color: #404040;
    }

    section.stores .views .items .item * + span {
        margin-left: 0.16rem;
    }

section.stores .views .search {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    text-align: right;
    position: relative;
    padding-top: .05rem;
    padding-bottom: .05rem;
    overflow: hidden;
}

section.stores .views * + .search {
    width: 2.5rem;
}

section.stores .views .search .toggler {
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

    section.stores .views .search .toggler span {
        display: inline-block;
        max-width: calc(100% - .36rem);
        font-weight: 700;
        font-size: 0.16rem;
        line-height: 1.2em;
        color: #404040;
        vertical-align: middle;
    }

    section.stores .views .search .toggler img {
        display: inline-block;
        vertical-align: middle;
        height: 0.2rem;
        margin-top: .02rem;
    }

    section.stores .views .search .toggler * + img {
        margin-left: 0.16rem;
    }

section.stores .views .search form.general {
    width: calc(100% - .36rem);
    z-index: 3;
    position: absolute;
    margin: 0;
    left: calc(-100% + .36rem);
    top: 0;
    height: 100%;
    overflow: hidden;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

section.stores .views .search.active form.general {
    left: 0;
}

section.stores .views .search form.general .form-item {
    width: 100%;
    margin: 0;
    height: 100%;
}

    section.stores .views .search form.general .form-item input[type=text] {
        height: 100%;
        background-color: #e5e5e5;
        border-top: 0;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }

section.stores [a-tab-item] {
    display: none;
}

    section.stores [a-tab-item].active {
        display: block;
    }

section.stores .tabs {
    display: inline-block;
    width: calc(100% + 0.2rem);
    margin: -0.08rem -0.1rem;
    padding-top: 0.38rem;
}

    section.stores .tabs .item {
        display: inline-block;
        width: calc(16.66% - 0.2rem);
        margin: 0.08rem 0.1rem;
        border: 1px solid rgba(64, 64, 64, 0.2);
        cursor: pointer;
        text-align: center;
        height: 0.7rem;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
    }

        section.stores .tabs .item span {
            font-weight: 700;
            font-size: 0.16rem;
            line-height: 1.2em;
            color: #404040;
            transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -ms-transition: all .3s ease-in-out;
            -o-transition: all .3s ease-in-out;
        }

        section.stores .tabs .item.active {
            background-color: #404040;
            border-color: #404040;
        }

            section.stores .tabs .item.active span {
                color: white;
            }

section.stores .brand-logos {
    display: inline-block;
    width: calc(100% + 0.2rem);
    margin: -0.12rem -0.1rem;
}

section.stores * + .brand-logos {
    margin-top: 0.39rem;
}

section.stores .brand-logos .item {
    display: inline-block;
    width: calc(16.66% - 0.2rem);
    margin: 0.12rem 0.1rem;
    border: 1px solid rgba(64, 64, 64, 0.2);
    cursor: pointer;
    text-align: center;
    height: 1.8rem;
    padding: 0.2rem;
}

    section.stores .brand-logos .item img {
        max-width: 100%;
        max-height: 100%;
    }

section.stores .floor-plan .carousel {
    margin-top: 0.38rem;
    margin-bottom: 1.6rem;
}

    section.stores .floor-plan .carousel .owl-item {
        opacity: 0.2;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }

        section.stores .floor-plan .carousel .owl-item.center {
            opacity: 1;
        }

    section.stores .floor-plan .carousel .item {
        display: inline-block;
        width: 100%;
        padding-bottom: 64.51%;
        position: relative;
    }

        section.stores .floor-plan .carousel .item img {
            position: absolute;
        }

    section.stores .floor-plan .carousel .owl-dots {
        position: relative;
        height: 0.12rem;
        margin-top: 0.5rem;
        text-align: center;
    }

        section.stores .floor-plan .carousel .owl-dots .owl-dot {
            width: 1.33rem;
            height: 0.7rem;
            display: inline-block;
            vertical-align: middle;
            font-weight: 700;
            font-size: 0.16rem;
            line-height: 1.2em;
            color: #404040;
            border: 1px solid rgba(64, 64, 64, 0.2);
            text-align: center;
            background-color: transparent;
            transition: all 0.4s ease-in-out;
            -webkit-transition: all 0.4s ease-in-out;
            -moz-transition: all 0.4s ease-in-out;
            -ms-transition: all 0.4s ease-in-out;
            -o-transition: all 0.4s ease-in-out;
        }

            section.stores .floor-plan .carousel .owl-dots .owl-dot:before {
                content: "";
                display: inline-block;
                height: 100%;
                width: 0;
                vertical-align: middle;
            }

            section.stores .floor-plan .carousel .owl-dots .owl-dot.active {
                color: white;
                background-color: #404040;
            }

        section.stores .floor-plan .carousel .owl-dots * + .owl-dot {
            margin-left: 0.2rem;
        }

section.stores .floor-plan .store-list {
    display: inline-block;
    width: 100%;
}

    section.stores .floor-plan .store-list .category {
        display: inline-block;
        vertical-align: top;
        width: 25%;
        margin-bottom: .3rem;
    }

        section.stores .floor-plan .store-list .category .title {
            font-weight: 700;
            font-size: 0.16rem;
            line-height: 1.2em;
            color: #000000;
        }

        section.stores .floor-plan .store-list .category ul {
            display: inline-block;
            width: 100%;
            padding: 0;
            margin-top: .1rem;
        }

            section.stores .floor-plan .store-list .category ul li {
                display: inline-block;
                width: 100%;
                padding: 0;
            }

                section.stores .floor-plan .store-list .category ul li a {
                    display: inline-block;
                    padding: .07rem 0;
                    font-weight: 400;
                    font-size: 0.16rem;
                    line-height: 1.2em;
                    color: #000000;
                }

/*  Text image */
section.page-header + section.text-image {
    margin-top: -0.36rem;
}

section.text-image .items {
    display: inline-block;
    width: 100%;
}

    section.text-image .items .item .img-boxes {
        display: inline-block;
        width: 50%;
        vertical-align: middle;
        padding-right: 0.1rem;
    }

        section.text-image .items .item .img-boxes .img-box {
            display: inline-block;
            width: 100%;
            vertical-align: middle;
            position: relative;
        }

            section.text-image .items .item .img-boxes .img-box img {
                width: 100%;
            }

        section.text-image .items .item .img-boxes.owl-carousel .img-box {
            height: 6rem;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }

        section.text-image .items .item .img-boxes.owl-carousel .owl-nav {
            position: absolute;
            bottom: 0;
            right: .1rem;
            left: 0;
            top: 50%;
        }

            section.text-image .items .item .img-boxes.owl-carousel .owl-nav > div {
                position: absolute;
                top: 0;
                display: inline-block;
                background-color: #282828;
                width: 0.68rem;
                height: 0.68rem;
            }

            section.text-image .items .item .img-boxes.owl-carousel .owl-nav > .owl-prev {
                background-image: url(Icons/slider-left-arrow.svg);
                background-position: center;
                background-repeat: no-repeat;
                background-size: 0.15rem;
                margin-right: 0.05rem;
                left: 0;
            }

            section.text-image .items .item .img-boxes.owl-carousel .owl-nav > .owl-next {
                background-image: url(Icons/slider-right-arrow.svg);
                background-position: center;
                background-repeat: no-repeat;
                background-size: 0.15rem;
                right: 0;
            }

    section.text-image .items .item .content {
        display: inline-block;
        width: 50%;
        vertical-align: middle;
        text-align: left;
        padding-top: .6rem;
        padding-bottom: .6rem;
        padding-left: 0.5rem;
        padding-right: 1.1rem;
        direction: ltr;
    }

    section.text-image .items .item:nth-child(even) .img-boxes {
        padding-right: 0;
        padding-left: .1rem;
    }

        section.text-image .items .item:nth-child(even) .img-boxes.owl-carousel {
            direction: ltr;
        }

            section.text-image .items .item:nth-child(even) .img-boxes.owl-carousel .owl-nav {
                left: .1rem;
                right: 0;
            }

    section.text-image .items .item:nth-child(even) {
        direction: rtl;
    }

        section.text-image .items .item:nth-child(even) .content {
            padding-right: 0.5rem;
            padding-left: 1.1rem;
        }

        section.text-image .items .item:nth-child(even) .img-box {
            padding-right: 0;
        }

    section.text-image .items .item .content .title {
        display: inline-block;
        width: 100%;
        font-weight: 700;
        font-size: 0.18rem;
        line-height: 1.333em;
        color: #000000;
    }

    section.text-image .items .item .content * + .text {
        margin-top: 0.18rem;
    }

    section.text-image .items .item .content .text {
        display: inline-block;
        width: 100%;
        font-weight: 400;
        font-size: 0.14rem;
        line-height: 1.6em;
        color: #000000;
    }

    section.text-image .items .item .content .btn {
        background-color: #fdcb41;
        color: #1d1d1b;
    }

    section.text-image .items .item .content * + .btn {
        margin-top: 0.3rem;
    }

/*  Banner */

section.page-header + section.banner {
    margin-top: -0.36rem;
}

section.banner img {
    display: block;
    width: 100%;
}

/* Positions */

* + section.positions {
    margin-top: 0.6rem;
}

section.positions .header {
    text-align: center;
}

    section.positions .header .title {
        font-weight: 900;
        font-size: 0.24rem;
        line-height: 1.2em;
        color: #000000;
    }

    section.positions .header .text {
        font-weight: 400;
        font-size: 0.16rem;
        line-height: 1.2em;
        color: #000000;
    }

        section.positions .header .text b,
        section.positions .header .text strong {
            font-weight: 900;
        }

    section.positions .header * + .text {
        margin-top: 0.32rem;
    }

section.positions .items {
    display: inline-block;
    width: 100%;
}

section.positions * + .items {
    margin-top: 0.8rem;
}

section.positions .items * + .item {
    margin-top: 0.18rem;
}

section.positions .items .item .item-header {
    display: inline-block;
    width: 100%;
}

section.positions .items .item .item-header {
    border: 1px solid rgba(64, 64, 64, 0.5);
    display: inline-block;
    width: 100%;
    padding: 0.43rem 0.46rem;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    cursor: pointer;
}

section.positions .items .item.active .item-header {
    background-color: #ffd142;
    border-color: #ffd142;
}

section.positions .items .item .item-header .title {
    display: inline-block;
    width: 15%;
    vertical-align: middle;
    font-weight: 700;
    font-size: 0.18rem;
    line-height: 1.2em;
    color: #404040;
}

section.positions .items .item .item-header .text {
    display: inline-block;
    width: 70%;
    vertical-align: middle;
    font-weight: 400;
    font-size: 0.18rem;
    line-height: 1.2em;
    color: #404040;
    text-align: center;
}

section.positions .items .item .item-header .arrow {
    display: inline-block;
    width: 15%;
    vertical-align: middle;
    text-align: right;
}

    section.positions .items .item .item-header .arrow img {
        display: inline-block;
        width: 0.14rem;
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

section.positions .items .item.active .item-header .arrow img {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

section.positions .items .item .content {
    width: 100%;
    padding: 0.41rem 0.46rem;
    display: none;
}

    section.positions .items .item .content .text {
        display: inline-block;
        width: 100%;
        font-weight: 400;
        font-size: 0.14rem;
        line-height: 1.2em;
        color: #000000;
    }

    section.positions .items .item .content .btn {
        background-color: black;
        color: white;
    }

    section.positions .items .item .content * + .btn {
        margin-top: 0.41rem;
    }

/* Services */

section.services {
    margin-top: .6rem;
    display: inline-block;
    width: 100%;
}

    section.services .boxes {
        display: inline-block;
        width: calc(100% + 0.2rem);
        margin: -0.12rem -0.1rem;
    }

        section.services .boxes .item {
            display: inline-block;
            vertical-align: top;
            width: calc(16.66% - 0.2rem);
            margin: 0.12rem 0.1rem;
            border: 1px solid rgba(64, 64, 64, 0.2);
            text-align: center;
            padding: 0.3rem 0.2rem;
        }

            section.services .boxes .item img {
                width: .5rem;
            }

            section.services .boxes .item .text {
                display: inline-block;
                width: 100%;
                font-weight: 700;
                font-size: 0.16rem;
                line-height: 1.2em;
                color: #404040;
            }

            section.services .boxes .item * + .text {
                margin-top: .3rem;
            }

            section.services .boxes .item .text + .text {
                margin-top: .1rem;
                font-size: .12rem;
            }

/* Text Section */

* + section.text-section {
    margin-top: 0.4rem;
}

section.text-section .content {
    display: block;
    width: 9.5rem;
    max-width: 100%;
    margin: auto;
}

    section.text-section .content .title {
        font-weight: 700;
        font-size: 0.18rem;
        line-height: 1.333em;
        color: #000000;
    }

    section.text-section .content .text {
        font-weight: 400;
        font-size: 0.14rem;
        line-height: 1.333em;
        color: #000000;
    }

    section.text-section .content * + .text {
        margin-top: 0.14rem;
    }

/*  Search Results */

section.search-results {
    padding-top: .4rem;
}

    section.search-results .items {
        display: inline-block;
        width: 100%;
    }

        section.search-results .items .item {
            display: block;
            width: 100%;
            padding: 0.3rem 0.26rem;
            background-color: white;
        }

        section.search-results .items * + .item {
            margin-top: .2rem;
        }

        section.search-results .items .item .title {
            font-weight: 600;
            font-size: 0.2rem;
            line-height: 1.2em;
            color: #000000;
        }

        section.search-results .items .item .text {
            font-weight: 300;
            font-size: 0.14rem;
            line-height: 1.2em;
            color: #000000;
        }

        section.search-results .items .item * + .text {
            margin-top: .1rem;
        }

        section.search-results .items .item .detail-btn {
            display: inline-block;
            font-weight: 500;
            font-size: 0.16rem;
            line-height: 1.2em;
            color: #000000;
            text-decoration: underline;
        }

        section.search-results .items .item * + .detail-btn {
            margin-top: .1rem;
        }

/*  Not Found */

section.not-found {
    padding-top: .8rem;
    padding-bottom: .8rem;
    text-align: center;
}

    section.not-found .title {
        font-weight: 600;
        font-size: 0.84rem;
        line-height: 1.2em;
        color: #000000;
    }

    section.not-found .text {
        font-weight: 300;
        font-size: 0.32rem;
        line-height: 1.2em;
        color: #000000;
    }

    section.not-found * + .text {
        margin-top: .3rem;
    }

    section.not-found .btn {
        display: inline-block;
        font-weight: 500;
        font-size: 0.16rem;
        line-height: 1.2em;
        color: #000000;
        text-decoration: underline;
    }

    section.not-found * + .btn {
        margin-top: .4rem;
    }

/* Annaouncement Popup */

.popup-wrapper.announcementPopup .popup-container {
    padding: 0;
    width: 9rem;
    height: 5rem;
    min-height: auto;
    max-height: 80vh;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background-color: transparent;
    overflow: hidden;
    border-radius: .15rem;
    -webkit-border-radius: .15rem;
    -moz-border-radius: .15rem;
    -ms-border-radius: .15rem;
    -o-border-radius: .15rem;
}

    .popup-wrapper.announcementPopup .popup-container .content {
        width: 100%;
        height: 100%;
    }

        .popup-wrapper.announcementPopup .popup-container .content .image {
            display: block;
            width: 100%;
            height: 100%;
        }

            .popup-wrapper.announcementPopup .popup-container .content .image img {
                position: absolute;
            }

        .popup-wrapper.announcementPopup .popup-container .content .video {
            position: relative;
            width: 100%;
            height: 100%;
        }

            .popup-wrapper.announcementPopup .popup-container .content .video:before {
                content: '';
                width: 100%;
                height: 100%;
                background-color: #0000008c;
                position: absolute;
                left: 0;
                top: 0;
                z-index: 1;
            }

            .popup-wrapper.announcementPopup .popup-container .content .video[a-playing="true"]:before {
                content: none;
            }

            .popup-wrapper.announcementPopup .popup-container .content .video video {
                position: relative;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .popup-wrapper.announcementPopup .popup-container .content .video .btn-play {
                position: absolute;
                width: 100%;
                top: 50%;
                z-index: 2;
                text-align: center;
                transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -o-transform: translateY(-50%);
                color: white;
                /* margin-top: 0.5rem; */
            }

                .popup-wrapper.announcementPopup .popup-container .content .video .btn-play img {
                    width: 1.48rem;
                }

                .popup-wrapper.announcementPopup .popup-container .content .video .btn-play * + .text {
                    margin-top: 0.5rem;
                }

    /* cookie-settings  */
    .popup-wrapper.cookie-settings .popup-container {
        width: 7rem;
        margin: 0;
        border: none;
        border-radius: 0;
        padding: 0;
        height: auto;
        min-height: auto;
    }

    .popup-wrapper.cookie-settings .popup-container .content {
        width: 100%;
        height: 100%;
    }

    .popup-wrapper.cookie-settings .popup-container .head {
        width: 100%;
        height: 0.8rem;
        padding: .24rem;
        border-bottom: 1px solid #EEEEEE;
    }

    .popup-wrapper.cookie-settings .popup-container .head .logo {
        float: left;
        height: .32rem;
    }

    .popup-wrapper.cookie-settings .popup-container .head .close-icon {
        float: right;
        margin-top: 0.05rem;
        cursor: pointer;
    }

    .popup-wrapper.cookie-settings .popup-container .body {
        padding: .24rem;
    }

    .popup-wrapper.cookie-settings .popup-container .body .item + * {
        margin-top: .24rem;
    }

    .popup-wrapper.cookie-settings .popup-container .body .item .item-header {
        border: 1px solid #EEEEEE;
        height: .62rem;
        position: relative;
        cursor: pointer;
    }

    .popup-wrapper.cookie-settings .popup-container .body .item .item-header::before {
        content: "";
        background-image: url('Icons/accordion-open.svg');
        position: absolute;
        left: .16rem;
        top: 50%;
        transform: translateY(-50%);
        width: .19rem;
        height: .19rem;
        background-size: cover;
    }

    .popup-wrapper.cookie-settings .popup-container .body .item.active .item-header::before {
        background-image: url('Icons/accordion-close.svg');
    }

    .popup-wrapper.cookie-settings .popup-container .body .item .item-header .title {
        font-weight: 500;
        font-size: 0.16rem;
        line-height: 1.5em;
        color: #262626;
        text-align: left;
        margin-top: .19rem;
        margin-left: .56rem;
    }

    .popup-wrapper.cookie-settings .popup-container .body .item .item-body {
        display: none;
        border: 1px solid #EEEEEE;
        border-top: none;
        padding: .16rem;
    }

    .popup-wrapper.cookie-settings .popup-container .body .item .item-body .text {
        font-weight: 400;
        font-size: 0.14rem;
        line-height: 1.2em;
        color: #525252;
        text-align:left;
    }


    .popup-wrapper.cookie-settings .switch-container {
        position: absolute;
        top: 50%;
        right: .16rem;
    }

    .popup-wrapper.cookie-settings .switch {
        position: relative;
        display: inline-block;
        width: .52rem;
        height: .3rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .popup-wrapper.cookie-settings .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .popup-wrapper.cookie-settings .switch .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: .15rem;
    }

    .popup-wrapper.cookie-settings .switch .slider:before {
        position: absolute;
        content: "";
        height: .26rem;
        width: .26rem;
        left: 2px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
    }

    .popup-wrapper.cookie-settings .switch input:checked ~ .slider:before {
        -webkit-transform: translateX(0.22rem) translateY(-50%);
        -ms-transform: translateX(0.22rem) translateY(-50%);
        transform: translateX(0.22rem) translateY(-50%);
    }

    .popup-wrapper.cookie-settings .popup-container .body .buttons {
        margin: 0.24rem 0;
        height: 0.3rem;
    }

    .popup-wrapper.cookie-settings .popup-container .body .buttons .btn {
        border: none;
        width: 48%;
        height: .52rem;
    }

    .popup-wrapper.cookie-settings .popup-container .body .buttons .btn span{
        font-weight: 700;
        font-size: 0.16rem;
        line-height: 1.5em;
    }

    .popup-wrapper.cookie-settings .popup-container .body .buttons .btn.save{
        float: left;
    }

    .popup-wrapper.cookie-settings .popup-container .body .buttons .btn.allSave{
        float: right;
    }

    /* cookie-info  */
    .cookie-info {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: left;
        z-index: 10;
        padding: .25rem 0;
    }

    .cookie-info .bg-color {
        position: absolute;
        z-index: 0;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }

    .cookie-info .text {
        text-align: center;
        font-weight: 400;
        font-size: 0.14rem;
        line-height: 1.714em;
        color: #404040;
    }

    .cookie-info .text a {
        color: inherit;
        text-decoration: underline;
    }

    .cookie-info .buttons {
        text-align: center;
    }

    .cookie-info .buttons .btn {
        width: 1.9rem;
        height: .52rem;
        font-size: .14rem;
        border: none;
    }

    .cookie-info .buttons .btn span{
        font-weight: 700;
        font-size: 0.16rem;
        line-height: 1.5em;
    }

    .cookie-info .buttons .btn.refuse {
        margin: 0 .24rem 0 .24rem;
    }

    .cookie-info .buttons * + .btn {
        margin-top: .24rem;
    }

/* The End */